/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #05060A;
  --deep: #080A0F;
  --gold: #B8976A;
  --gold-dim: #7A6145;
  --gold-bright: #D4AF78;
  --cream: #E8E0D0;
  --muted: #5A5248;
  --faint: #2A2520;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'IM Fell English', Georgia, serif;
  overflow-x: hidden;
  cursor: crosshair;
}

/* WordPress admin bar fix */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar nav { top: 46px; }
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,6,10,0.9), transparent);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 15px; letter-spacing: 8px;
  color: var(--gold); text-decoration: none;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 4px;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--gold-dim); font-size: 20px; cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 40px;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,6,10,0.85) 100%);
  pointer-events: none;
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.h-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--faint), transparent);
  animation: lineFloat linear infinite; opacity: 0;
}
@keyframes lineFloat {
  0%   { transform: translateY(0);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,106,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1; }
}
.hero-eyebrow {
  position: relative; z-index: 2;
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 7px; color: var(--gold-dim);
  margin-bottom: 32px;
  animation: fadeUp 1.2s ease both;
}
.hero-title {
  position: relative; z-index: 2;
  font-family: 'Cinzel', serif;
  font-size: clamp(72px, 14vw, 160px); font-weight: 300;
  letter-spacing: 20px; color: var(--cream); line-height: 1;
  text-shadow: 0 0 80px rgba(184,151,106,0.15);
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-rule {
  position: relative; z-index: 2;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 32px auto;
  animation: fadeUp 1.2s 0.4s ease both;
}
.hero-tagline {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 28px); font-style: italic; font-weight: 300;
  color: var(--gold); letter-spacing: 2px;
  animation: fadeUp 1.2s 0.6s ease both;
}
.hero-sub {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 300; color: var(--muted);
  margin-top: 16px; letter-spacing: 1px;
  animation: fadeUp 1.2s 0.8s ease both;
}
.hero-cta {
  position: relative; z-index: 2;
  margin-top: 56px; display: flex; gap: 20px; justify-content: center;
  animation: fadeUp 1.2s 1s ease both;
}
.btn-primary {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
  color: var(--black); background: var(--gold);
  border: none; padding: 16px 40px; cursor: pointer;
  text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 0 40px rgba(184,151,106,0.3); }
.btn-ghost {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px;
  color: var(--gold-dim); background: transparent;
  border: 1px solid var(--faint); padding: 16px 40px;
  cursor: pointer; text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1.2s 1.4s ease both;
}
.hero-scroll span { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 4px; color: var(--muted); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── DIVIDER ── */
.section-divider {
  display: flex; align-items: center; gap: 20px;
  padding: 0 60px; margin: 0 auto; max-width: 1100px;
}
.divider-line { flex: 1; height: 1px; background: var(--faint); }
.divider-mark { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold-dim); }

/* ── CONCEPT ── */
.concept { padding: 120px 60px; max-width: 900px; margin: 0 auto; text-align: center; }
.concept-number { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px; color: var(--gold-dim); margin-bottom: 40px; }
.concept-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 44px); font-style: italic; font-weight: 300;
  line-height: 1.6; color: var(--cream); margin-bottom: 32px;
}
.concept-body { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; line-height: 1.9; color: var(--muted); }

/* ── FEATURES ── */
.features { padding: 80px 60px 120px; max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 80px; }
.features-eyebrow { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px; color: var(--gold-dim); margin-bottom: 16px; }
.features-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 52px); font-weight: 300; color: var(--cream); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feature-card {
  padding: 48px 44px; background: var(--deep); border: 1px solid var(--faint);
  position: relative; overflow: hidden; transition: border-color 0.4s, background 0.4s;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { border-color: rgba(184,151,106,0.25); background: #0A0C12; }
.feature-card:hover::before { opacity: 1; }
.feature-num { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold-dim); margin-bottom: 24px; }
.feature-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--gold); margin-bottom: 16px; letter-spacing: 1px; }
.feature-desc { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--muted); }
.feature-example {
  margin-top: 24px; padding: 16px 20px; border-left: 1px solid var(--faint);
  font-family: 'IM Fell English', serif; font-style: italic; font-size: 13px;
  color: rgba(184,151,106,0.5); line-height: 1.7;
}

/* ── TIMELINE ── */
.timeline-section {
  padding: 120px 60px; background: var(--deep);
  border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint);
}
.timeline-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.timeline-eyebrow { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px; color: var(--gold-dim); margin-bottom: 16px; }
.timeline-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 300; color: var(--cream); margin-bottom: 60px; line-height: 1.4; }
.timeline-track { position: relative; display: flex; justify-content: space-between; align-items: flex-start; padding: 0 20px; }
.timeline-track::before {
  content: ''; position: absolute; top: 10px; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--faint), var(--gold-dim), var(--faint), transparent);
}
.tl-node { display: flex; flex-direction: column; align-items: center; gap: 16px; flex: 1; }
.tl-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--gold-dim); background: var(--black);
  position: relative; z-index: 1; transition: all 0.3s; cursor: pointer;
}
.tl-dot.active { background: var(--gold-dim); box-shadow: 0 0 20px rgba(184,151,106,0.4); }
.tl-dot:hover { border-color: var(--gold); box-shadow: 0 0 16px rgba(184,151,106,0.3); }
.tl-year { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; color: var(--muted); }
.tl-label { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: var(--gold-dim); text-align: center; max-width: 100px; }
.timeline-scenario { margin-top: 60px; padding: 40px; border: 1px solid var(--faint); background: rgba(184,151,106,0.03); text-align: left; }
.scenario-label { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 4px; color: var(--gold-dim); margin-bottom: 20px; }
.scenario-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; font-weight: 300; line-height: 1.9; color: var(--cream); }
.scenario-note { margin-top: 20px; font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 3px; color: rgba(90,82,72,0.6); }

/* ── PRICING ── */
.pricing { padding: 120px 60px; max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 80px; }
.pricing-eyebrow { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px; color: var(--gold-dim); margin-bottom: 16px; }
.pricing-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 300; color: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--faint); }
.price-card { background: var(--black); padding: 40px 28px; transition: background 0.3s; position: relative; }
.price-card:hover { background: var(--deep); }
.price-card.featured { background: var(--deep); border-top: 1px solid var(--gold-dim); }
.price-tier { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold-dim); margin-bottom: 20px; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.price-period { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--muted); margin-bottom: 32px; font-style: italic; }
.price-divider { height: 1px; background: var(--faint); margin-bottom: 28px; }
.price-feature { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.6; margin-bottom: 10px; padding-left: 16px; position: relative; }
.price-feature::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); }
.price-cta {
  margin-top: 32px; font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px;
  color: var(--gold-dim); background: none; border: 1px solid var(--faint);
  padding: 12px 20px; cursor: pointer; width: 100%; transition: all 0.3s;
}
.price-cta:hover { border-color: var(--gold-dim); color: var(--gold); }
.price-card.featured .price-cta { background: var(--gold-dim); color: var(--black); border-color: var(--gold-dim); }
.price-card.featured .price-cta:hover { background: var(--gold); border-color: var(--gold); }

/* ── FINAL CTA ── */
.final-cta { padding: 160px 60px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184,151,106,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.final-question { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 8vw, 90px); font-style: italic; font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 16px; }
.final-answer { font-family: 'Cormorant Garamond', serif; font-size: clamp(14px, 2vw, 18px); font-weight: 300; color: var(--muted); margin-bottom: 56px; letter-spacing: 1px; }

/* ── FOOTER ── */
footer {
  padding: 48px 60px; border-top: 1px solid var(--faint);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 6px; color: var(--gold-dim); }
.footer-note { font-family: 'Cormorant Garamond', serif; font-size: 12px; font-style: italic; color: var(--muted); }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 3px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-dim); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(5,6,10,0.97); padding: 20px 24px; gap: 20px; }
  .nav-mobile-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .timeline-track { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .timeline-track::before { display: none; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .concept, .features, .pricing, .timeline-section, .final-cta { padding-left: 24px; padding-right: 24px; }
  .section-divider { padding: 0 24px; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 52px;
    letter-spacing: 8px;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
  }
}