/* ============================================================
   BILLY LUTHER — BILLYLU INC
   Filmmaker · Writer · Director
   ============================================================ */

:root {
  --cream:        #FFFFFF;
  --warm-white:   #F4FBFA;
  --charcoal:     #0D0D0D;
  --ink:          #1A1A1A;
  --earth:        #00B5AD;
  --rust:         #D94050;
  --gold:         #00CEC4;
  --light-earth:  #E0F7F6;
  --muted:        rgba(13, 13, 13, 0.6);

  --serif:    'Playfair Display', 'Times New Roman', serif;
  --type:     'Special Elite', 'Courier Prime', 'Courier New', monospace;
  --mono:     'Courier Prime', 'Courier New', monospace;

  --container:  1440px;
  --gutter:     clamp(1.5rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--mono);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--rust); color: var(--cream); }

/* ────────────────────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 181, 173, 0.18);
  transition: transform .3s ease, background .3s ease;
}

.nav--hidden { transform: translateY(-100%); }
.nav--dark   {
  background: rgba(13, 13, 13, 0.85);
  border-bottom-color: rgba(0, 206, 196, 0.2);
}
.nav--dark .nav__logo,
.nav--dark .nav__links a { color: var(--cream); }

.nav__logo {
  font-family: var(--type);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--earth);
  text-transform: uppercase;
}
.nav__logo b {
  font-weight: 400;
  color: var(--rust);
}

.nav__links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  opacity: 0.7;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav__links a:hover,
.nav__links a:focus-visible { opacity: 1; color: var(--rust); }

.nav__cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 0.55rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1 !important;
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--rust); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  font-family: var(--type);
  font-size: 1.5rem;
  color: var(--charcoal);
}

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  padding-top: 4.5rem;
  position: relative;
}

.hero__left {
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.hero__eyebrow {
  font-family: var(--type);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--rust);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .2s;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}

.hero__name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp .8s ease forwards .35s;
}
.hero__name span {
  display: block;
  color: var(--earth);
  font-style: italic;
  font-weight: 400;
}

.hero__summary {
  font-family: var(--mono);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp .8s ease forwards .5s;
}
.hero__summary b { font-weight: 700; color: var(--rust); }
.hero__summary em { font-style: italic; color: var(--earth); font-weight: 400; }

.hero__cta {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp .8s ease forwards .65s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s, transform .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--primary:hover { background: var(--rust); transform: translateY(-2px); }
.btn--ghost {
  color: var(--earth);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--earth);
}
.btn--ghost:hover { color: var(--rust); border-color: var(--rust); }

.hero__routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 181, 173, 0.2);
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp .8s ease forwards .8s;
}
.hero__routes a {
  color: var(--earth);
  border-bottom: 1px dotted var(--earth);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.hero__routes a:hover { color: var(--rust); border-bottom-color: var(--rust); }
.hero__routes span:not(:last-child)::after {
  content: "·";
  margin-left: 1.5rem;
  color: var(--earth);
  opacity: 0.5;
}

/* HERO RIGHT — IMAGE / REEL */
.hero__right {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 60vh;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards .25s;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: contrast(1.05);
}
.hero__bg-text {
  position: absolute;
  bottom: -3rem;
  right: -1.5rem;
  font-family: var(--serif);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  opacity: 0.08;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
  z-index: 2;
}

/* Reel play button overlay (placeholder) */
.hero__reel {
  position: absolute;
  inset: auto auto 7rem 2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream);
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background .2s, transform .2s, border-color .2s;
}
.hero__reel:hover { background: rgba(217, 64, 80, 0.85); border-color: var(--rust); transform: translateY(-1px); }
.hero__reel-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}
.hero__reel-icon::before { content: "▶"; margin-left: 2px; }
.hero__reel small {
  display: block;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  opacity: 0.85;
  margin-top: 2px;
  text-transform: uppercase;
}

/* HERO STATS */
.hero__stats {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--charcoal);
  padding: 1.2rem clamp(1.25rem, 3vw, 2.5rem);
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  z-index: 4;
  border-top: 1px solid rgba(0, 206, 196, 0.2);
}
.hero__stats .stat__num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stats .stat__label {
  font-family: var(--type);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  opacity: 0.65;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* ────────────────────────────────────────────────────────────
   AWARDS TICKER
   ──────────────────────────────────────────────────────────── */
.ticker {
  background: var(--charcoal);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 206, 196, 0.25);
  border-bottom: 1px solid rgba(0, 206, 196, 0.25);
}
.ticker__track {
  display: flex;
  gap: 3.5rem;
  animation: ticker 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.85;
}
.ticker__dot {
  color: var(--rust);
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ────────────────────────────────────────────────────────────
   PRESS WORDMARKS
   ──────────────────────────────────────────────────────────── */
.press {
  padding: 3.5rem var(--gutter);
  background: var(--cream);
  border-bottom: 1px solid var(--light-earth);
}
.press__label {
  font-family: var(--type);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}
.press__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--serif);
  color: var(--charcoal);
  opacity: 0.75;
}
.press__row span {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: italic;
  white-space: nowrap;
  transition: opacity .2s, color .2s;
}
.press__row span:hover { opacity: 1; color: var(--rust); }

/* ────────────────────────────────────────────────────────────
   ABOUT
   ──────────────────────────────────────────────────────────── */
.about {
  background: var(--charcoal);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about__label {
  font-family: var(--type);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 0.4rem;
}
.about__label small {
  display: block;
  margin-top: 0.5rem;
  color: var(--rust);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.about__text {
  color: var(--cream);
  opacity: 0.92;
  max-width: 64ch;
}
.about__text p {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-weight: 300;
  font-family: var(--mono);
}
.about__text p:last-child { margin-bottom: 0; }
.about__text em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}

.about__pullquote {
  font-family: var(--type);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.7;
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--rust);
}

/* ────────────────────────────────────────────────────────────
   FULL-BLEED QUOTE IMAGE
   ──────────────────────────────────────────────────────────── */
.quote-img {
  height: 75vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  background: #000;
}
.quote-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.quote-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.4) 75%,
    rgba(0, 0, 0, 0.8) 100%);
}
.quote-img__body {
  position: absolute;
  inset: auto var(--gutter) 3rem var(--gutter);
  z-index: 2;
  max-width: 700px;
}
.quote-img__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}
.quote-img__attr {
  font-family: var(--type);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.9rem;
  opacity: 0.85;
}

/* ────────────────────────────────────────────────────────────
   A-SEQUENCE  (scoped — does NOT touch global body)
   ──────────────────────────────────────────────────────────── */
.asequence {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  background: var(--charcoal);
  overflow: hidden;
  font-family: var(--type);
  isolation: isolate;
}
.asequence__bar {
  position: absolute;
  inset: 1.5rem var(--gutter) auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.asequence__bar-label { color: rgba(255, 255, 255, 0.35); }
.asequence__bar-hint  { color: var(--gold); opacity: 0.6; }

.asequence__counter {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
  z-index: 5;
}

.asequence__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.asequence__anchor {
  position: absolute;
  font-family: var(--type);
  font-size: clamp(20rem, 50vw, 38rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}
.asequence__permA {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--type);
  font-size: clamp(8rem, 18vw, 18rem);
  color: rgba(0, 206, 196, 0.07);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  transition: color .5s ease;
}
.asequence__rule {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 206, 196, 0.15), transparent);
  transform: translateY(3rem);
  z-index: 1;
}

.asequence__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--type);
  font-size: clamp(1.5rem, 3.8vw, 3.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .8s ease;
  text-align: center;
  width: 90vw;
  z-index: 2;
  padding: 0 1rem;
}
.asequence__title.is-visible {
  opacity: 1;
  color: rgba(255, 255, 255, 0.78);
}
.asequence__title .a {
  color: var(--gold);
  font-size: 1.08em;
  text-shadow: 0 0 30px rgba(0, 206, 196, 0.6);
  transition: text-shadow .5s ease;
}
.asequence__title.is-visible .a {
  text-shadow: 0 0 40px rgba(0, 206, 196, 0.9),
               0 0 80px rgba(0, 206, 196, 0.4);
}

.asequence__year,
.asequence__platform {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--type);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .8s ease .25s;
  z-index: 2;
  padding: 0 1rem;
  text-align: center;
}
.asequence__year {
  top: calc(50% - 5.5rem);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: var(--rust);
}
.asequence__platform {
  top: calc(50% + 4rem);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.35);
}
.asequence__year.is-visible    { opacity: 0.85; }
.asequence__platform.is-visible { opacity: 1; }

.asequence__dots {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 5;
}
.asequence__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background .4s, transform .4s;
}
.asequence__dot.is-active {
  background: var(--gold);
  transform: scale(1.5);
}
.asequence__controls {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 5;
}
.asequence__btn {
  font-family: var(--type);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  transition: color .3s;
}
.asequence__btn:hover { color: var(--gold); }

/* ────────────────────────────────────────────────────────────
   SELECTED WORKS
   ──────────────────────────────────────────────────────────── */
.works {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter);
  background: var(--warm-white);
}
.works__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-earth);
}
.works__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.works__link {
  font-family: var(--type);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--earth);
  text-transform: uppercase;
  border-bottom: 1px solid var(--earth);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.works__link:hover { color: var(--rust); border-color: var(--rust); }

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--light-earth);
}

.work {
  background: var(--warm-white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 230px;
}
.work:hover { background: var(--cream); }
.work__year {
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--rust);
  text-transform: uppercase;
}
.work__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.work__platform {
  font-family: var(--type);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--earth);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.work__desc {
  font-family: var(--mono);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.72;
}
.work__arrow {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  font-family: var(--type);
  letter-spacing: 0.18em;
  color: var(--rust);
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}
.work:hover .work__arrow { opacity: 1; transform: translateX(0); }

.work--featured {
  background: var(--charcoal);
  color: var(--cream);
  grid-column: span 1;
}
.work--featured:hover { background: #1c1c1a; }
.work--featured .work__year     { color: var(--gold); }
.work--featured .work__title    { color: var(--cream); }
.work--featured .work__platform { color: var(--gold); opacity: 0.85; }
.work--featured .work__desc     { color: var(--cream); opacity: 0.7; }
.work--featured .work__arrow    { color: var(--gold); }
.work--featured .work__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--type);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--rust);
  background: rgba(217, 64, 80, 0.12);
  border: 1px solid rgba(217, 64, 80, 0.4);
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   BYGONE
   ──────────────────────────────────────────────────────────── */
.bygone {
  background: var(--rust);
  padding: clamp(4rem, 7vw, 6.5rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bygone::before {
  content: "BYGONE";
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(20rem, 40vw, 40rem);
  bottom: -8rem;
  right: -8rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bygone__left, .bygone__right { position: relative; z-index: 1; }

.bygone__eyebrow {
  font-family: var(--type);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bygone__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.bygone__tagline {
  font-family: var(--type);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  opacity: 0.8;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.bygone__body {
  font-family: var(--mono);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 48ch;
}

.btn--bygone {
  background: var(--cream);
  color: var(--rust);
}
.btn--bygone:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}

.bygone__card {
  background: rgba(0, 0, 0, 0.18);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.bygone__rec {
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--cream);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.bygone__rec::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  animation: blink 1.6s ease-in-out infinite;
}
.bygone__hook {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-family: var(--mono);
}
.countdown__unit {
  text-align: center;
  min-width: 60px;
}
.countdown__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--type);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
  margin-top: 0.45rem;
}
.countdown__sep {
  color: var(--cream);
  opacity: 0.35;
  align-self: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.bygone__date {
  margin-top: 1.5rem;
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   CONTACT
   ──────────────────────────────────────────────────────────── */
.contact {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter);
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.contact__lead {
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.72;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.contact__detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-earth);
}
.contact__detail:last-child { border-bottom: none; }
.contact__detail dt {
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--earth);
  text-transform: uppercase;
}
.contact__detail dd { font-family: var(--mono); font-size: 0.95rem; color: var(--charcoal); }
.contact__detail dd a {
  border-bottom: 1px dotted rgba(0, 181, 173, 0.5);
  transition: color .2s, border-color .2s;
}
.contact__detail dd a:hover { color: var(--rust); border-bottom-color: var(--rust); }

.contact__form {
  background: var(--light-earth);
  padding: clamp(2rem, 3.5vw, 3rem);
}
.contact__form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.contact__form p {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.65;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--type);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--earth);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(0, 181, 173, 0.3);
  padding: 0.8rem 1rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(217, 64, 80, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }

.btn--submit {
  width: 100%;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.05rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s;
}
.btn--submit:hover { background: var(--rust); }

.form__success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(0, 181, 173, 0.1);
  border: 1px solid var(--earth);
  color: var(--earth);
  font-family: var(--mono);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form__success.is-visible { display: block; }

/* ────────────────────────────────────────────────────────────
   STAMP STRIP (BillyLu / Desilu)
   ──────────────────────────────────────────────────────────── */
.stamp {
  background: var(--charcoal);
  padding: clamp(4rem, 6vw, 5.5rem) var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(0, 206, 196, 0.18);
  position: relative;
}
.stamp__img {
  max-width: 220px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}
.stamp__caption {
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1.9;
}
.stamp__caption b {
  color: var(--cream);
  font-weight: 400;
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.18em;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 2.5rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(0, 206, 196, 0.18);
}
.footer__left {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.footer__left small {
  display: block;
  font-family: var(--type);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.footer__right {
  font-family: var(--type);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: var(--cream);
  opacity: 0.45;
  text-align: right;
  line-height: 1.8;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.25; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-block; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--light-earth);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav--dark .nav__links.is-open { background: var(--ink); }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4.5rem; }
  .hero__left { padding: 3rem 1.5rem 3rem; order: 2; }
  .hero__right { min-height: 60vh; order: 1; }
  .hero__bg-text { font-size: 14rem; }
  .hero__stats { padding: 1rem 1.25rem; gap: 1.5rem; }
  .hero__stats .stat__num { font-size: 1.4rem; }
  .hero__reel { left: 1.25rem; bottom: 6rem; }

  .about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2rem; }

  .quote-img { height: 60vh; }
  .quote-img__body { inset: auto 1.5rem 2rem 1.5rem; }

  .works { padding: 4rem 1.5rem; }
  .works__grid { grid-template-columns: 1fr; }

  .bygone { grid-template-columns: 1fr; padding: 4rem 1.5rem; }

  .contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .contact__detail { grid-template-columns: 80px 1fr; gap: 0.5rem; }

  .footer { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__right { text-align: left; }

  .asequence { height: 80vh; }
}

@media (max-width: 540px) {
  :root { --gutter: 1.25rem; }
  .hero__name { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn { width: 100%; justify-content: center; }
  .btn--ghost { width: auto; }
  .press__row { gap: 1.25rem; }
  .countdown { gap: 0.5rem; }
  .countdown__unit { min-width: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker__track { animation: none; }
}

/* ────────────────────────────────────────────────────────────
   ABOUT PHOTO (left column of about section)
   ──────────────────────────────────────────────────────────── */
.about__photo {
  margin: 2.5rem 0 0;
  padding: 0;
}
.about__photo picture { display: block; }
.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: saturate(1.05) contrast(1.02);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 18px 50px rgba(0, 0, 0, 0.5);
}
.about__photo figcaption {
  font-family: var(--type);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.85rem;
  opacity: 0.75;
}

@media (max-width: 720px) {
  .about__photo { margin-top: 1.5rem; max-width: 320px; }
}

/* ────────────────────────────────────────────────────────────
   WORKS DIVIDER (full-bleed desert vista before grid)
   ──────────────────────────────────────────────────────────── */
.works-divider {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 360px;
  max-height: 600px;
  overflow: hidden;
  background: #1a1a1a;
}
.works-divider picture { display: block; height: 100%; }
.works-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.works-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}
.works-divider__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--gutter) clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  z-index: 2;
}
.works-divider__line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

/* ────────────────────────────────────────────────────────────
   REPRESENTATION BLOCK (sits under contact details)
   ──────────────────────────────────────────────────────────── */
.contact__reps {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13, 13, 13, 0.12);
}
.contact__reps-title {
  font-family: var(--type);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--earth);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.contact__reps dd {
  line-height: 1.6;
}
.contact__reps dd a {
  color: var(--earth);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact__reps dd a:hover { color: var(--charcoal); }
