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

:root {
  --gold: #C9A96E;
  --blue: #5EB4FF;
  --cream: #F5F0EB;
  --charcoal: #1A1A2E;
  --ink: #0C0C0C;
  --warm-gray: #8A8178;
  --rule: #D4CFC8;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ======================== NAV ======================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--ink);
  padding: 0 3rem;
  height: 90px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 128px; opacity: 0.95; }
.text-logo {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.5rem; color: var(--gold); letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-family: var(--sans); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none;
  padding: 0 1.25rem; height: 90px; display: flex; align-items: center;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.nav-link:hover { color: rgba(255,255,255,0.8); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  font-family: var(--sans); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); background: none; border: 1px solid var(--gold);
  padding: 0.55rem 1.6rem; cursor: pointer;
  transition: background 0.3s, color 0.3s; margin-left: 1.25rem;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-direction: column;
  justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px; background: rgba(255,255,255,0.7);
  transition: transform 0.2s;
}
.nav-mobile {
  display: none; position: fixed; top: 90px; left: 0; right: 0; z-index: 99;
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column; padding: 1rem 0;
}
.nav-mobile.active { display: flex; }
.nav-mobile-link {
  font-family: var(--sans); font-weight: 400; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 0.85rem 3rem; transition: color 0.2s;
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--gold); }
.nav-mobile-link.gold { color: var(--gold); }

/* ======================== PAGE HERO ======================== */
.page-hero {
  background: var(--ink); padding: 8rem 2rem 5rem; text-align: center;
}
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.hero-rule { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 2.5rem; }
.page-hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem); color: #FFFFFF;
  line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.01em;
}
.page-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.7;
}
.page-hero-epigraph {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.8rem); color: #FFFFFF;
  line-height: 1.45; margin-bottom: 1.25rem; letter-spacing: -0.005em;
}
.page-hero-attribution {
  font-size: 0.85rem; color: var(--gold); font-weight: 300; opacity: 0.8;
  letter-spacing: 0.03em;
}

/* ======================== EDITORIAL ======================== */
.editorial { max-width: 680px; margin: 0 auto; padding: 5rem 2rem; }
.editorial-wide { max-width: 960px; margin: 0 auto; padding: 5rem 2rem; }

.section-num {
  font-family: var(--serif); font-size: 0.85rem; color: var(--warm-gray);
  letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.section-head {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.section-body {
  font-size: 0.95rem; color: #5A5A5A; font-weight: 300;
  line-height: 1.85; margin-bottom: 1.5rem;
}

hr.fine { border: none; height: 1px; background: var(--rule); margin: 0; }

/* PULL QUOTE */
.pull-quote { padding: 4rem 2rem; text-align: center; background: var(--cream); }
.pull-quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--charcoal); max-width: 600px; margin: 0 auto;
  line-height: 1.4; position: relative;
}
.pull-quote blockquote::before {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--gold); margin: 0 auto 1.5rem;
}

/* ======================== PROCESS ======================== */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.process-step {
  padding: 2rem; border-right: 1px solid var(--rule);
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--gold); opacity: 0.6; margin-bottom: 0.75rem; line-height: 1;
}
.process-title {
  font-family: var(--serif); font-weight: 600; font-size: 1rem;
  color: var(--charcoal); margin-bottom: 0.75rem;
}
.process-desc {
  font-size: 0.85rem; color: #5A5A5A; font-weight: 300; line-height: 1.8;
}

/* ======================== VIDEO PLACEHOLDER ======================== */
.video-placeholder {
  background: var(--ink); border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
}
.video-placeholder-inner { text-align: center; }
.video-placeholder-inner p {
  margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
}

/* ======================== AI SECTION ======================== */
.ai-section {
  background: var(--charcoal); padding: 4rem 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ai-section .section-head {
  color: #FFFFFF; font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 0.75rem;
}
.ai-section .section-body {
  color: rgba(255,255,255,0.45); max-width: 520px; margin: 0 auto 2rem;
}
.ai-grid {
  max-width: 640px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.ai-item {
  padding: 0.85rem 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.5);
  font-weight: 300; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ai-item:nth-child(even) { border-right: none; }
.ai-item:nth-last-child(-n+2) { border-bottom: none; }
.ai-item span { color: var(--gold); margin-right: 0.5rem; font-size: 0.65rem; }

/* ======================== OTB ======================== */
.otb-section { background: var(--cream); }

/* ======================== CTA ======================== */
.final-cta { background: var(--cream); padding: 6rem 2rem; text-align: center; }
.final-cta .section-head { margin-bottom: 0.75rem; }
.final-cta .section-body { max-width: 440px; margin: 0 auto 2.5rem; }
.btn-cta {
  font-family: var(--sans); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); background: var(--ink); border: none;
  padding: 0.95rem 3rem; cursor: pointer; transition: opacity 0.3s;
}
.btn-cta:hover { opacity: 0.8; }
.cta-aside { margin-top: 1.25rem; font-size: 0.78rem; color: var(--warm-gray); font-weight: 300; }

/* ======================== FOOTER ======================== */
footer {
  background: var(--ink); padding: 2.5rem 2rem;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-rule { width: 40px; height: 1px; background: rgba(255,255,255,0.15); margin: 0 auto 1.5rem; }
footer p { font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

/* ======================== COOKIE BAR ======================== */
.cookie-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 2rem; align-items: center; justify-content: center; gap: 1.5rem;
}
.cookie-bar.active { display: flex; }
.cookie-bar p {
  font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 300;
}
.cookie-bar a { color: var(--gold); text-decoration: none; }
.cookie-bar button {
  font-family: var(--sans); font-weight: 500; font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); border: none;
  padding: 0.5rem 1.5rem; cursor: pointer; white-space: nowrap;
  transition: opacity 0.3s;
}
.cookie-bar button:hover { opacity: 0.85; }

/* ======================== LEGAL PAGES ======================== */
.legal { max-width: 720px; margin: 0 auto; padding: 2rem; }
.legal h1 {
  font-family: var(--serif); font-weight: 700; font-size: 2rem;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.legal .legal-updated {
  font-size: 0.78rem; color: var(--warm-gray); margin-bottom: 2.5rem;
  font-weight: 300;
}
.legal h2 {
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem;
  margin-top: 2.5rem; margin-bottom: 0.75rem;
}
.legal p, .legal li {
  font-size: 0.88rem; color: #5A5A5A; font-weight: 300; line-height: 1.85;
  margin-bottom: 1rem;
}
.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.35rem; }
.legal a { color: var(--charcoal); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-logo { height: 80px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .editorial, .editorial-wide { padding: 3.5rem 1.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }
  .process-step:last-child { border-bottom: none; }

  .ai-grid { grid-template-columns: 1fr; }
  .ai-item { border-right: none; }
  .ai-item:last-child { border-bottom: none; }

  .pull-quote { padding: 3rem 1.5rem; }
  .final-cta { padding: 4rem 1.5rem; }

  .cookie-bar { flex-direction: column; text-align: center; gap: 0.75rem; padding: 1.25rem 1.5rem; }
}

@media (min-width: 769px) {
  .nav-hamburger { display: none; }
}

/* ======================== TESTIMONIAL ======================== */
.testimonial {
  background: var(--ink); padding: 4.5rem 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #FFFFFF; max-width: 640px; margin: 0 auto 1.75rem;
  line-height: 1.6; position: relative;
}
.testimonial blockquote::before {
  content: ''; display: block; width: 40px; height: 2px;
  background: var(--gold); margin: 0 auto 1.5rem;
}
.testimonial cite {
  font-style: normal; display: block;
}
.testimonial cite strong {
  font-family: var(--sans); font-weight: 500; font-size: 0.88rem;
  color: var(--gold); display: block; margin-bottom: 0.2rem;
}
.testimonial cite span {
  font-family: var(--sans); font-weight: 300; font-size: 0.78rem;
  color: rgba(255,255,255,0.4); letter-spacing: 0.02em;
}

/* ======================== OFFER CARD ======================== */
.offer-card {
  background: var(--ink); color: #FFFFFF;
  max-width: 560px; margin: 0 auto; padding: 3rem 2.5rem;
  text-align: center;
}
.offer-price {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3rem); color: var(--gold);
  margin-bottom: 0.25rem;
}
.offer-terms {
  font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 300;
  margin-bottom: 2rem;
}
.offer-list {
  list-style: none; text-align: left; max-width: 400px; margin: 0 auto 2rem;
}
.offer-list li {
  font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 300;
  padding: 0.4rem 0 0.4rem 1.25rem; position: relative; line-height: 1.6;
}
.offer-list li::before {
  content: '\2014'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.7rem;
}
.offer-cta {
  font-family: var(--sans); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); border: none;
  padding: 0.85rem 2.5rem; cursor: pointer; transition: opacity 0.3s;
}
.offer-cta:hover { opacity: 0.85; }

/* ======================== STEP GRID ======================== */
.step-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 800px; margin: 0 auto;
}
.step-item {
  padding: 2rem; border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.step-item:nth-child(even) { border-right: none; }
.step-item:nth-child(n+3) { border-bottom: none; }
.step-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
  color: var(--gold); opacity: 0.5; margin-bottom: 0.5rem; line-height: 1;
}
.step-title {
  font-family: var(--serif); font-weight: 600; font-size: 1rem;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem; color: #5A5A5A; font-weight: 300; line-height: 1.75;
}

@media (max-width: 768px) {
  .testimonial { padding: 3rem 1.5rem; }
  .offer-card { padding: 2.5rem 1.5rem; }
  .step-grid { grid-template-columns: 1fr; }
  .step-item { border-right: none; }
  .step-item:nth-child(n+3) { border-bottom: 1px solid var(--rule); }
  .step-item:last-child { border-bottom: none; }
}
