/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink:        #0F0C09;
  --deep:       #1A1410;
  --mid-brown:  #3A2A1A;
  --gold:       #B8924A;
  --gold-dim:   #8A6533;
  --gold-pale:  #F0DEB8;
  --cream:      #FAF6F0;
  --warm-white: #FDFAF6;
  --sage:       #6B8F71;
  --terracotta: #A07868;
  --stone:      #9A9688;
  --olive:      #B5A46A;
  --muted:      #8A7A6A;
  --mid:        #5A4A3A;
  --border:     rgba(184,146,74,0.15);
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --page-bg:    #FDFAF6;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.4;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav.scrolled {
  background: rgba(15,12,9,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #B8924A;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: #B8924A; font-style: normal; font-weight: 400; }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-pale); }

/* ── SHARED ───────────────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 900px; margin: 0 auto; padding: 96px 48px; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 20px;
}
.section-heading em { font-style: italic; color: var(--gold); }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-pale); transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 90px;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(160,120,104,0.06) 0%, transparent 50%),
    var(--page-bg);
}

.hero-content { max-width: 780px; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.6vw, 24px);
  font-style: italic;
  color: var(--mid);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 20px;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}

.hero-detail {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.55s both;
}

.hero .btn-primary { animation: fadeUp 0.8s var(--ease) 0.65s both; }

.hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  animation: fadeUp 0.8s var(--ease) 0.75s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MOMENTS (IS THIS YOU) ────────────────────────────────── */
.moments-section { background: var(--ink); }
.moments-section .section-heading { color: var(--cream); }

.moment-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.moment-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 12px; }
.moment-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
}

.moments-close {
  margin-top: 36px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 620px;
}
.moments-close strong { color: var(--cream); font-weight: 400; }

/* ── COST OF WAITING ──────────────────────────────────────── */
.why-now-section{
    background:#F8F5EF;
    padding:110px 30px;
}
.why-now-container{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}
.why-now-label{
    font-size:13px;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#B89445;
    margin-bottom:30px;
}
.why-now-title{
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(34px, 5vw, 52px);
    font-weight:300;
    line-height:1.12;
    color:#1F1B17;
    margin-bottom:45px;
}
.why-now-title span{
    color:#B89445;
    font-style:italic;
}
.why-now-copy{
    font-family:'Jost', sans-serif;
    font-size:16px;
    line-height:1.85;
    color:var(--mid);
}
.why-now-copy p{
    margin-bottom:28px;
}
.why-now-copy ul{
    list-style:none;
    padding:0;
    margin:45px 0;
}
.why-now-copy li{
    margin:18px 0;
}
.why-now-copy li::before{
    content:"• ";
    color:#B89445;
}
.highlight{
    font-family:'Cormorant Garamond', serif;
    font-size:21px;
    font-style:italic;
    line-height:1.5;
    color:#1F1B17;
    margin-top:35px;
}
.gold-button{
    display:inline-block;
    margin-top:55px;
    background:#B89445;
    color:#111;
    text-decoration:none;
    padding:22px 60px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    transition:0.3s;
}
.gold-button:hover{ opacity:.9; }
@media (max-width:768px){
    .why-now-section{ padding:80px 25px; }
    .highlight{ font-size:19px; }
}

/* ── THE 4 PARTS ──────────────────────────────────────────── */
.parts-section { background: var(--cream); }
.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(181,164,106,0.12);
  margin-top: 48px;
}
.part-card {
  background: var(--warm-white);
  padding: 36px 24px;
  border-bottom: 3px solid var(--gold);
}
.part-card:nth-child(1) { border-color: var(--olive); }
.part-card:nth-child(2) { border-color: var(--sage); }
.part-card:nth-child(3) { border-color: var(--terracotta); }
.part-card:nth-child(4) { border-color: var(--stone); }
.part-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.part-card:nth-child(1) .part-letter { color: var(--olive); }
.part-card:nth-child(2) .part-letter { color: var(--sage); }
.part-card:nth-child(3) .part-letter { color: var(--terracotta); }
.part-card:nth-child(4) .part-letter { color: var(--stone); }
.part-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.part-teaser { font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ── OUTCOME ──────────────────────────────────────────────── */
.outcome-section { background: var(--deep); text-align: center; }
.outcome-section .section-heading { color: var(--cream); }
.outcome-list {
  max-width: 560px;
  margin: 36px auto 0;
  text-align: left;
}
.outcome-item {
  font-size: 16px;
  color: var(--cream);
  line-height: 1.7;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
}
.outcome-item::before { content: '✦'; color: var(--gold); font-size: 11px; margin-top: 4px; flex-shrink: 0; }

/* ── HOST ─────────────────────────────────────────────────── */
.host-section { background: var(--cream); }
.host-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}
.host-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid-brown);
  overflow: hidden;
}
.host-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.host-content p { font-size: 16px; color: var(--mid); line-height: 1.85; margin-bottom: 16px; }
.host-content p strong { color: var(--ink); font-weight: 500; }
.host-content .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--gold); }
.testimonials-section .section-inner { padding: 120px 48px; }
.testimonials-section .eyebrow {
  color: var(--warm-white);
  font-size: 15px;
  letter-spacing: 0.3em;
}
.testimonials-section .section-heading { color: var(--ink); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 18px;
}
.testimonial-card cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── REGISTER ─────────────────────────────────────────────── */
.register-section { background: var(--ink); text-align: center; }
.register-section .section-heading { color: var(--cream); }
.register-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(250,246,240,0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.register-form { max-width: 480px; margin: 0 auto; }
.register-form input[type="text"],
.register-form input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: rgba(250,246,240,0.06);
  border: 1px solid rgba(184,146,74,0.3);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
}
.register-form input:focus { border-color: var(--gold); }
.register-form .btn-primary { width: 100%; margin-top: 8px; }
.register-note { font-size: 11px; color: rgba(250,246,240,0.35); margin-top: 16px; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); }
.footer-name span { color: var(--gold); font-style: italic; }
.footer-copy { font-size: 11px; color: var(--muted); }
.footer-copy a { color: inherit; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .section-inner { padding: 72px 24px; }
  .parts-grid { grid-template-columns: 1fr 1fr; }
  .host-grid { grid-template-columns: 1fr; }
  .host-photo { max-width: 340px; margin: 0 auto; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .parts-grid { grid-template-columns: 1fr; }
}
