*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #080808;
  --surface: #111;
  --border: #1e1e1e;
  --border-mid: #2a2a2a;
  --cream: #f0ece4;
  --muted: #888;
  --dim: #555;
  --gold: #c9a463;
  --gold-dim: #8a7346;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Fade in ── */
.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link:hover { color: var(--cream); }
.nav-link.active {
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
}

.nav-external {
  color: var(--dim);
}
.nav-external:hover { color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--cream);
  color: var(--black);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: #444;
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.btn-gold:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Divider ── */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.72) 55%, rgba(8,8,8,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Page hero (non-video, inner pages) ── */
.page-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 32px 40px;
}

.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.page-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
}

/* ── Sections ── */
section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 40px;
}

.section-label em {
  color: var(--gold);
  font-style: normal;
}

/* ── Sample / video placeholder ── */
.sample-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  max-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.sample-overlay { text-align: center; }

.sample-play {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(240,236,228,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: border-color 0.2s;
}

.sample-wrap:hover .sample-play { border-color: var(--gold); }

.sample-play svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
  margin-left: 3px;
}

.sample-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sample-sub { font-size: 12px; color: var(--dim); }

.sample-wrap a { position: absolute; inset: 0; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }

.step-num { font-size: 10px; color: var(--gold-dim); letter-spacing: 0.1em; padding-top: 3px; }

.step-title { font-size: 15px; color: var(--cream); font-weight: 400; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Pricing ── */
.pricing { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }

.plan {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  transition: background 0.2s;
}
.plan:last-child { border-bottom: none; }
.plan.featured { background: var(--surface); }
.plan:hover { background: #131313; }

.plan-badge { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

.plan-name { font-size: 18px; color: var(--cream); font-weight: 400; margin-bottom: 8px; font-family: 'Playfair Display', serif; }

.plan-desc { font-size: 12px; color: var(--dim); line-height: 1.6; max-width: 320px; }

.plan-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; flex-shrink: 0; }

.plan-price { font-size: 30px; color: var(--cream); letter-spacing: -0.03em; white-space: nowrap; font-weight: 300; }
.plan-price small { font-size: 12px; color: var(--dim); letter-spacing: 0; }

/* ── Strip (social proof / CTA) ── */
.strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.strip-text {}
.strip-title { font-size: 17px; color: var(--cream); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.strip-sub { font-size: 13px; color: var(--muted); }

/* ── Stat + testimonials ── */
.stat-line {
  text-align: center;
  padding-bottom: 56px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-caption {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-photo {
  width: 100%;
  border: 1px solid var(--border-mid);
  display: block;
}

.testimonial-name {
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.testimonial-role {
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── What We Do ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-item-num { font-size: 10px; color: var(--gold-dim); letter-spacing: 0.1em; margin-bottom: 14px; }
.about-item-title { font-size: 15px; color: var(--cream); font-weight: 400; margin-bottom: 8px; }
.about-item-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Centered CTA strip ── */
.strip-cta .strip-inner {
  flex-direction: column;
  text-align: center;
  padding: 64px 32px;
  gap: 24px;
}

/* ── Work featured ── */
.work-featured {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  aspect-ratio: 21/9;
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  margin-bottom: 64px;
  transition: border-color 0.2s;
}
.work-featured:hover { border-color: var(--gold-dim); }

.work-featured-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--black);
}

.work-featured-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.55) 100%);
  transition: opacity 0.3s ease;
}

.work-featured-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.work-featured-play {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(240,236,228,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.work-featured:hover .work-featured-play { border-color: var(--gold); }

.work-featured-play svg { width: 22px; height: 22px; fill: var(--cream); margin-left: 3px; }

.work-featured-badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-featured-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--cream);
  font-weight: 400;
}

.work-featured-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── Work grid ── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.work-card:hover { border-color: var(--gold-dim); }

.work-card a { position: absolute; inset: 0; }

.work-card-play {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(240,236,228,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.work-card:hover .work-card-play { border-color: var(--gold); }

.work-card-play svg { width: 16px; height: 16px; fill: var(--cream); margin-left: 2px; }

.work-card-name {
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 20px;
}
.work-card-sub {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; color: var(--cream); font-weight: 400; margin-bottom: 10px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── Forms ── */
.t-field { margin-bottom: 20px; }
.t-label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.t-input { width: 100%; background: var(--surface); border: 1px solid var(--border-mid); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; padding: 12px 16px; outline: none; transition: border-color 0.2s; -webkit-font-smoothing: antialiased; }
.t-input::placeholder { color: var(--dim); }
.t-input:focus { border-color: var(--gold-dim); }
.t-textarea { resize: vertical; min-height: 110px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left { font-size: 11px; color: var(--dim); }
.footer-left a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-left a:hover { color: var(--cream); }

.footer-right { font-size: 11px; color: var(--dim); }
.footer-right a { color: var(--muted); text-decoration: none; letter-spacing: 0.1em; transition: color 0.2s; }
.footer-right a:hover { color: var(--gold); }

/* ── Mobile ── */
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 61px; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links .nav-link {
    width: 100%;
    padding: 14px 32px;
    border-bottom: none !important;
  }
  .nav-toggle { display: flex; }

  .testimonials { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  nav { padding: 18px 20px; }
  .hero { padding: 100px 20px 60px; }
  section { padding: 60px 20px; }

  .plan { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
  .plan-right { align-items: center; flex-direction: row; gap: 24px; }

  .strip-inner { padding: 32px 20px; flex-direction: column; align-items: flex-start; }

  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
}
