/* ---------- Tokens ---------- */
:root {
  --bg: #0C0B09;
  --bg-2: #141210;
  --bg-3: #1C1915;
  --text: #EDE6D4;
  --text-mute: #8C867A;
  --text-dim: #5C564B;
  --gold: #C9A24E;
  --gold-soft: rgba(201, 162, 78, 0.18);
  --line: rgba(237, 230, 212, 0.12);
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --pad: clamp(20px, 5vw, 80px);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
em, i { font-style: italic; }

::selection { background: var(--gold); color: var(--bg); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: linear-gradient(to bottom, rgba(12,11,9,.85), rgba(12,11,9,0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.brand__word {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mute);
}
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--gold); color: var(--bg) !important; }

@media (max-width: 600px) {
  .brand__word { display: none; }
  .nav__links { gap: 14px; font-size: 11px; letter-spacing: 0.16em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.9) brightness(0.75);
}
.hero__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(12,11,9,0) 0%, rgba(12,11,9,0.55) 60%, rgba(12,11,9,0.95) 100%),
    linear-gradient(to bottom, rgba(12,11,9,0.4) 0%, rgba(12,11,9,0) 30%, rgba(12,11,9,0.85) 100%);
}
.hero__content {
  text-align: center;
  padding: 0 var(--pad);
  max-width: 1100px;
}
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.display {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(68px, 15vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  color: var(--text);
}
.display__line { display: block; }
.display__line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.role {
  font-family: var(--sans);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 44px;
}
.role .dot { color: var(--gold); margin: 0 10px; }

.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: #d7b36a; transform: translateY(-1px); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); background: rgba(237,230,212,0.05); }
.btn--lg { padding: 18px 32px; font-size: 13px; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  overflow: hidden;
}
.hero__scroll span {
  position: absolute; top: -20px; left: 0;
  width: 1px; height: 20px;
  background: var(--text);
  animation: scroll-down 2.2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(68px); opacity: 0; }
}

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
  background: var(--bg-2);
  position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }
.ticker__track {
  display: flex; align-items: center; gap: 44px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  animation: ticker 40s linear infinite;
}
.ticker__track span { flex: 0 0 auto; }
.ticker__sep { color: var(--gold); font-style: normal; font-size: 0.7em; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  max-width: 1440px;
  margin: 0 auto;
}
.section__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section__label::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 56px;
  max-width: 18ch;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__photo {
  margin: 0;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.about__photo::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(12,11,9,0.4);
  pointer-events: none;
}
.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 24px;
}
.lead em { color: var(--gold); font-style: italic; }
.about__copy p { color: var(--text-mute); max-width: 52ch; }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ---------- Credits ---------- */
.credits__list { border-top: 1px solid var(--line); }
.credits__list li {
  display: grid;
  grid-template-columns: 140px 1fr 1.2fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease);
}
.credits__list li:hover { padding-left: 12px; }
.credits__role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.credits__work {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.credits__who {
  font-family: var(--sans);
  color: var(--text);
  font-size: 15px;
}
.credits__who em { color: var(--text-mute); font-style: italic; font-size: 13px; }
.credits__note {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 760px) {
  .credits__list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .credits__note { text-align: left; }
}

/* ---------- Reel ---------- */
.reel__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.reel__card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 2px;
  cursor: pointer;
  isolation: isolate;
}
.reel__card video, .reel__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .3s var(--ease);
}
.reel__card[data-aspect="16:9"] { grid-column: span 12; aspect-ratio: 16/9; }
.reel__card[data-aspect="9:16"] { grid-column: span 4; aspect-ratio: 9/16; }

@media (min-width: 1100px) {
  .reel__card[data-aspect="16:9"] { grid-column: span 8; }
  .reel__card[data-aspect="9:16"] { grid-column: span 4; }
}
@media (max-width: 760px) {
  .reel__card[data-aspect="9:16"] { grid-column: span 6; }
}
@media (max-width: 480px) {
  .reel__card[data-aspect="9:16"] { grid-column: span 12; }
}

.reel__card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.7), transparent 50%);
  pointer-events: none;
}
.reel__card__label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text);
}
.reel__card__label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  margin-right: 10px; vertical-align: middle;
}
.reel__card:hover video, .reel__card:hover img { transform: scale(1.03); }

/* video overlay play state */
.reel__card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 2;
  width: 64px; height: 64px;
  border: 1px solid rgba(237,230,212,0.6);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text);
  transition: all .25s var(--ease);
  pointer-events: none;
}
.reel__card:hover .reel__card__play {
  background: var(--gold); border-color: var(--gold); color: var(--bg);
}
.reel__card--playing .reel__card__play { opacity: 0; }
.reel__card--playing::after { opacity: 0; }

/* Lightbox for inline playback */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  place-items: center;
  padding: 4vw;
}
.lightbox[open] { display: grid; }
.lightbox video {
  max-width: 100%; max-height: 88vh;
  border-radius: 2px;
}
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Contact ---------- */
.contact { text-align: left; }
.contact__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 48px;
  max-width: 18ch;
}
.contact__headline span { display: block; }
.contact__headline .italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }
.contact__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.contact__meta > div { display: flex; flex-direction: column; gap: 6px; }
.meta__label {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.contact__meta span:not(.meta__label) { color: var(--text-mute); font-size: 14px; }
@media (max-width: 640px) {
  .contact__meta { grid-template-columns: 1fr 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px var(--pad);
  border-top: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__left, .footer__right {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.1em;
}
.footer__right a { transition: color .2s var(--ease); }
.footer__right a:hover { color: var(--gold); }

/* ---------- Motion / Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .hero__scroll span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
