:root{
  --brand: #C3AE90;
  --brand-glow: #A88F68;
  --background: #FAF7F2;
  --foreground: #1C1B19;
  --card: #FFFFFF;
  --border: #E4DCCE;
  --muted: #F1EBE0;
  --muted-foreground: #6B6862;
  --radius: .75rem;
  --gradient-brand: linear-gradient(135deg, #C3AE90, #E4D2AE);
  --shadow-glow: 0 1px 0 0 rgba(255,255,255,.5), 0 8px 24px -12px rgba(28,27,25,.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*,*:before,*:after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}
a{ color:inherit; }

.font-mono{ font-family: var(--font-mono); }
.font-mono-tag{
  font-family: var(--font-mono);
  letter-spacing: 0;
  color: var(--brand-glow);
  font-size: .75rem;
}

/* background grid (disabled) */
.bg-grid{ position: relative; isolation: isolate; }
.bg-grid:before{
  display: none;
  content:"";
  position:absolute; inset:0; z-index:-1; pointer-events:none;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--brand) 20%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--brand) 20%, transparent) 1px, transparent 1px);
  background-position: top;
  background-size: 48px 48px;
}

header{ border-bottom: 1px solid var(--border); }
.header-inner{
  max-width: 72rem; margin: 0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.25rem 1.25rem;
}
.logo{ display:flex; flex-direction:column; line-height:1; text-decoration:none; }
.logo .word{ font-family: var(--font-display); font-size: 1.35rem; font-weight:600; letter-spacing:.04em; color: var(--foreground); }
.logo .sub{ font-family: var(--font-mono); font-size:.6rem; letter-spacing:.3em; color: var(--muted-foreground); margin-top:.15rem; }

main{ overflow-x:hidden; padding-bottom: 1rem; }

/* hero */
.hero{ padding: 2.5rem 1rem 1rem; }
@media(min-width:768px){ .hero{ padding-left:2.5rem; padding-right:2.5rem; } }
.hero-inner{ max-width: 900px; margin: 0 auto; text-align:center; }

.pill{
  display:inline-flex; align-items:center; gap:.5rem;
  border-radius:9999px;
  border: 1px solid color-mix(in oklab, var(--brand) 50%, transparent);
  background: color-mix(in oklab, var(--brand) 14%, transparent);
  padding: .375rem 1rem;
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .18em; font-size: .7rem;
  color: var(--brand-glow);
}

h1{
  margin: 1.5rem auto 0; max-width: 46rem;
  font-family: var(--font-display);
  font-weight: 600; line-height: 1.1;
  font-size: 2.25rem; letter-spacing: -0.01em;
}
@media(min-width:640px){ h1{ font-size: 3rem; } }
@media(min-width:768px){ h1{ font-size: 3.75rem; } }

.lead{
  margin: 1.25rem auto 0; max-width: 42rem;
  font-size: .95rem; line-height: 1.7; color: var(--muted-foreground);
}
@media(min-width:640px){ .lead{ font-size: 1.05rem; } }

/* video placeholder */
.video-wrap{ max-width: 900px; margin: 2rem auto 0; }
.video-card{
  overflow:hidden; border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 90%, transparent);
  box-shadow: var(--shadow-glow);
}
.video-ratio{ position:relative; width:100%; aspect-ratio: 16/9; }
.video-fill{
  position:absolute; inset:0; display:grid; place-items:center;
  background: linear-gradient(135deg, color-mix(in oklab, var(--brand) 18%, transparent), transparent);
}
.play-btn{
  margin: 0 auto; display:grid; place-items:center;
  height: 4rem; width: 4rem; border-radius:9999px;
  background-image: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
}
.play-btn svg{ height:1.75rem; width:1.75rem; color:#fff; }
.video-caption{ margin-top: 1rem; font-family: var(--font-mono); color: var(--muted-foreground); font-size: .75rem; }

/* section heading pill */
section{ scroll-margin-top: 1.5rem; }
.section-heading{
  max-width: 85%; margin: 0 auto;
  display:flex; align-items:center; justify-content:center;
  border-radius: 1rem; border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 90%, transparent);
  padding: .5rem 1rem;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(4px);
}
@media(min-width:640px){ .section-heading{ max-width:75%; } }
@media(min-width:768px){ .section-heading{ max-width:65%; } }
@media(min-width:1024px){ .section-heading{ max-width:900px; } }
.section-heading h2{
  text-align:center; font-family: var(--font-display); font-weight:600;
  font-size: 1.25rem; margin: 0;
}
@media(min-width:640px){ .section-heading h2{ font-size:1.5rem; } }
@media(min-width:768px){ .section-heading h2{ font-size:1.75rem; } }

.section-sub{
  max-width: 900px; margin: 1rem auto 0; padding: 0 1rem;
  text-align:center; font-size: .9rem; color: var(--muted-foreground);
}

/* apply / booking section */
#apply{ padding-top: 3.5rem; }
.form-wrap{ margin-top: 2rem; }
@media(min-width:640px){ .form-wrap{ max-width:900px; margin-left:auto; margin-right:auto; padding: 0 1rem; } }
.form-card{
  overflow:hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--card);
}
@media(min-width:640px){
  .form-card{ border-radius: 1rem; border: 1px solid var(--border); box-shadow: var(--shadow-glow); }
}
.form-note{
  max-width:900px; margin: 1rem auto 0; padding: 0 1rem;
  text-align:center; font-size:.75rem; color: var(--muted-foreground);
}

/* results */
#wins{ padding-top: 5rem; padding-bottom: 2rem; }
.results-wrap{ max-width: 64rem; margin: 2rem auto 0; padding: 0 1rem; }
.results-grid{ display:grid; gap: 1rem; grid-template-columns: 1fr; }
@media(min-width:640px){ .results-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .results-grid{ grid-template-columns: 1fr 1fr 1fr; } }
figure{
  margin:0; overflow:hidden; border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 90%, transparent);
}
.result-thumb{
  aspect-ratio: 4/3; display:grid; place-items:center;
  background: color-mix(in oklab, var(--muted) 70%, transparent);
}
.result-thumb p{
  font-family: var(--font-mono); color: var(--muted-foreground); font-size: .8rem;
  margin:0; padding: 0 1rem; text-align:center;
}
figcaption{ padding: .75rem 1rem; font-size: .75rem; color: var(--muted-foreground); }
.disclaimer{ margin-top: 1.5rem; text-align:center; font-size: .75rem; color: var(--muted-foreground); }
.cta-wrap{ margin-top:2rem; text-align:center; }
.cta-btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: .75rem;
  background-image: var(--gradient-brand);
  padding: 1rem 2.25rem; font-size: 1rem; font-weight:700; color: var(--foreground);
  text-decoration:none; box-shadow: var(--shadow-glow);
  transition: filter .15s ease, transform .1s ease;
}
.cta-btn:hover{ filter:brightness(1.05); }
.cta-btn:active{ transform: scale(.98); }
.cta-btn.full{ width:100%; border:none; cursor:pointer; }

footer{ border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner{
  max-width: 48rem; margin:0 auto; padding: 0 1.25rem;
  text-align:center; font-size: .75rem; line-height:1.7; color: var(--muted-foreground);
}
.footer-inner p{ margin: 0 0 .75rem; }
.footer-logo{ display:flex; flex-direction:column; align-items:center; gap:.15rem; padding-bottom: .75rem; }
.footer-logo .word{ font-family: var(--font-display); font-weight:600; font-size:1rem; color: var(--foreground); }
.footer-logo .sub{ font-family: var(--font-mono); font-size:.55rem; letter-spacing:.3em; color: var(--muted-foreground); }
.footer-inner a{ color: var(--foreground); opacity:.8; text-decoration: underline; text-underline-offset: 4px; }

/* confirmed page extras */
.confirm-card{ border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; backdrop-filter: blur(4px); }
@media(min-width:768px){ .confirm-card{ padding: 2.5rem; } }
.confirm-card h3{ font-family: var(--font-display); font-weight:600; font-size:1.75rem; line-height:1.2; margin:0; color: var(--foreground); }
@media(min-width:768px){ .confirm-card h3{ font-size:2.5rem; } }
.confirm-card h3 span{ color: var(--brand-glow); }
.divider-or{ display:flex; align-items:center; gap:1rem; margin: 2rem 0; }
.divider-or .line{ height:1px; flex:1; background: var(--border); }
.divider-or span{ font-size:.7rem; font-weight:600; letter-spacing:.2em; color: var(--muted-foreground); }
.unknown-sender{ margin-top:1.5rem; border-radius: .75rem; background:#fff; padding:1.25rem; color:#222; box-shadow: 0 8px 24px -12px rgba(0,0,0,.15); border:1px solid #e5e5e5; }
.unknown-sender h4{ margin:0 0 .5rem; font-size:1rem; font-weight:700; }
.unknown-sender p{ margin:.5rem 0 0; font-size:.85rem; line-height:1.5; color:#444; }
.unknown-sender .actions{ margin-top:1.1rem; display:flex; align-items:center; gap:1rem; }
.unknown-sender button.primary{ border:none; border-radius:.4rem; background:#1a73e8; color:#fff; padding:.55rem 1rem; font-size:.85rem; font-weight:600; cursor:default; }
.unknown-sender button.link{ border:none; background:none; color:#1a73e8; font-size:.85rem; font-weight:600; cursor:default; }
.callout-warn{ margin-top:1rem; border-radius:.6rem; border-left:4px solid var(--brand); background: color-mix(in oklab, var(--brand) 16%, transparent); padding:.75rem 1rem; font-size:.85rem; color: var(--brand-glow); }
.callout-muted{ margin-top:.5rem; border-radius:.6rem; background: var(--muted); padding:.75rem 1rem; font-size:.85rem; color: var(--muted-foreground); }

.faq-grid{ display:grid; gap:1.5rem; grid-template-columns:1fr; }
@media(min-width:768px){ .faq-grid{ grid-template-columns:1fr 1fr; } }
.faq-card{ overflow:hidden; border-radius:1rem; border:1px solid var(--border); background: var(--card); }
.faq-video{ position:relative; width:100%; aspect-ratio:16/9; background:#161512; }
.faq-video .play-btn{ height:3rem; width:3rem; }
.faq-video .play-btn svg{ height:1.25rem; width:1.25rem; }
.faq-video p{ margin-top:.75rem; font-size:.7rem; }
.faq-card .q{ padding:1.1rem 1.25rem; font-family: var(--font-display); font-weight:600; font-size:1.1rem; }

.testi-grid{ display:grid; gap:1rem; grid-template-columns:1fr; }
@media(min-width:640px){ .testi-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:1024px){ .testi-grid{ grid-template-columns:1fr 1fr 1fr; } }
.testi-card{ border-radius:1rem; border:1px solid var(--border); background: var(--card); padding:1.25rem; }
.testi-card p.quote{ margin:0; font-size:.9rem; line-height:1.6; color: var(--foreground); }
.testi-card p.who{ margin-top:.75rem; font-family: var(--font-mono); font-size:.7rem; color: var(--muted-foreground); }

.gift-box{ margin: 4rem auto 0; max-width:900px; padding:0 1rem; }
.gift-inner{ border-radius:1rem; border:1px solid var(--border); background: var(--card); padding:2rem; text-align:center; }
.gift-inner p{ margin:0; font-size:.9rem; color: var(--muted-foreground); }
.gift-inner a{ margin-top:.75rem; display:inline-flex; align-items:center; gap:.5rem; font-size:.9rem; font-weight:700; color: var(--brand-glow); text-decoration:underline; text-underline-offset:4px; }

/* lead-magnet opt-in form */
.optin-wrap{ max-width: 480px; margin: 2rem auto 0; padding: 0 1rem; }
.optin-card{ border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; box-shadow: var(--shadow-glow); }
@media(min-width:640px){ .optin-card{ padding: 2.25rem; } }
.field{ margin-bottom: 1.1rem; text-align:left; }
.field label{ display:block; font-family: var(--font-mono); font-size:.68rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; color: var(--muted-foreground); margin-bottom:.4rem; }
.field label .optional-tag{ text-transform:none; font-weight:400; letter-spacing:0; color: var(--muted-foreground); opacity:.8; }
.field input{
  width:100%; padding:.8rem 1rem; border-radius:.6rem;
  border:1px solid var(--border); background: var(--background);
  font-family: var(--font-body); font-size:.95rem; color: var(--foreground);
}
.field input:focus{ outline:2px solid var(--brand); outline-offset:1px; }
.field input::placeholder{ color: color-mix(in oklab, var(--muted-foreground) 70%, transparent); }
.optin-disclaimer{ margin-top:.9rem; text-align:center; font-size:.7rem; color: var(--muted-foreground); }

.expect-list{ max-width:640px; margin:2.5rem auto 0; padding:0 1.25rem; display:grid; gap:.9rem; }
.expect-item{ display:flex; align-items:flex-start; gap:.75rem; text-align:left; font-size:.92rem; line-height:1.55; color: var(--foreground); }
.expect-item .check{
  flex:none; display:grid; place-items:center; height:1.5rem; width:1.5rem; border-radius:9999px;
  background-image: var(--gradient-brand); margin-top:.1rem;
}
.expect-item .check svg{ height:.85rem; width:.85rem; color:#fff; }

.about-card{ max-width:640px; margin:3rem auto 0; padding:0 1.25rem; }
.about-card .inner{ display:flex; gap:1.25rem; align-items:center; border-radius:1rem; border:1px solid var(--border); background: var(--card); padding:1.5rem; text-align:left; }
.about-card .avatar{ flex:none; height:3.5rem; width:3.5rem; border-radius:9999px; background: var(--gradient-brand); }
.about-card p{ margin:0; font-size:.88rem; line-height:1.6; color: var(--muted-foreground); }
.about-card p strong{ color: var(--foreground); }

/* simple thank-you / confirmation page */
.confirm-hero{ max-width: 560px; margin: 3rem auto 0; padding: 0 1.25rem; text-align:center; }
.confirm-icon{ margin:0 auto; display:grid; place-items:center; height:4.5rem; width:4.5rem; border-radius:9999px; background-image: var(--gradient-brand); box-shadow: var(--shadow-glow); }
.confirm-icon svg{ height:2rem; width:2rem; color:#fff; }
.next-step-box{ max-width:560px; margin:2.5rem auto 0; padding:0 1.25rem; }
.next-step-box .inner{ border-radius:1rem; border:1px solid var(--border); background: var(--card); padding:1.5rem; text-align:center; }
.next-step-box p{ margin:0 0 .9rem; font-size:.85rem; color: var(--muted-foreground); }

/* ============ editorial opt-in page (elevatecademy-inspired) ============ */
.ed-page{ background: var(--background); }

.ed-hero{
  position:relative; min-height:100vh; width:100%;
  background: #1C1B19 center/cover no-repeat;
  display:flex; flex-direction:column; justify-content:space-between;
}
.ed-hero.short{ min-height:62vh; }
.ed-hero.short .ed-hero-content{ padding-bottom:3rem; }
.ed-hero-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:0; }
.ed-hero.short .ed-hero-img{ object-position:center 40%; }
.ed-hero:after{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.75) 100%);
}
.ed-hero-nav{
  position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between;
  padding: 1.75rem 1.5rem;
}
@media(min-width:768px){ .ed-hero-nav{ padding: 2rem 3rem; } }
.ed-hero-logo{ display:flex; flex-direction:column; line-height:1; text-decoration:none; }
.ed-hero-logo .word{ font-family: var(--font-display); font-weight:600; font-size:1.2rem; letter-spacing:.04em; color:#fff; }
.ed-hero-logo .sub{ font-family: var(--font-mono); font-size:.55rem; letter-spacing:.3em; color:rgba(255,255,255,.75); margin-top:.15rem; }
.ed-hero-navlink{
  font-family: var(--font-mono); font-size:.65rem; letter-spacing:.2em; text-transform:uppercase;
  color:#fff; text-decoration:none; padding-bottom:.4rem; border-bottom:1px solid rgba(255,255,255,.5);
}
.ed-hero-content{ position:relative; z-index:2; padding: 2rem 1.5rem 3.5rem; max-width:52rem; }
@media(min-width:768px){ .ed-hero-content{ padding: 2rem 3rem 5rem; } }
.ed-hero-content h1{
  margin:0; color:#fff; font-family: var(--font-display); font-weight:600;
  font-size:2.1rem; line-height:1.12; letter-spacing:-.01em;
}
@media(min-width:640px){ .ed-hero-content h1{ font-size:3rem; } }
@media(min-width:1024px){ .ed-hero-content h1{ font-size:3.6rem; } }
.ed-hero-lines{ margin-top:1.5rem; }
.ed-hero-lines p{ margin:0 0 .35rem; font-size:.95rem; color:rgba(255,255,255,.82); }
.ed-hero-lines p.strong{ font-weight:700; color:#fff; margin-top:.75rem; }
.ed-hero-lead{ margin-top:1.25rem; max-width:34rem; font-size:.9rem; line-height:1.65; color:rgba(255,255,255,.8); }
.ed-hero-cta{
  display:inline-flex; margin-top:2rem; align-items:center; justify-content:center;
  background:#fff; color:#1C1B19; border-radius:.4rem; padding:1.1rem 2rem;
  font-family: var(--font-mono); font-size:.7rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase;
  text-decoration:none;
}

.ed-section{ padding: 5rem 1.5rem; }
@media(min-width:768px){ .ed-section{ padding: 7rem 3rem; } }
.ed-section.dark{ background:#161512; color:rgba(255,255,255,.92); }
.ed-section.light{ background: var(--background); color: var(--foreground); }
.ed-section-inner{ max-width:44rem; margin:0 auto; }
.ed-eyebrow{ width:2.5rem; height:2px; background: var(--brand); margin-bottom:1.75rem; }
.ed-h2{ font-family: var(--font-display); font-weight:600; font-size:2rem; line-height:1.15; margin:0 0 1.5rem; }
@media(min-width:768px){ .ed-h2{ font-size:2.6rem; } }
.ed-body p{ margin:0 0 1rem; font-size:.98rem; line-height:1.75; opacity:.85; }
.ed-body p.tight{ margin-bottom:0; }
.ed-body p strong{ opacity:1; }

.ed-divider-list{ margin-top:1.75rem; }
.ed-divider-list .row{ padding: 1.1rem 0; border-top:1px solid currentColor; opacity:.9; font-size:1.05rem; border-color: rgba(120,110,95,.25); }
.ed-section.dark .ed-divider-list .row{ border-color: rgba(255,255,255,.15); }
.ed-divider-list .row:last-child{ border-bottom:1px solid rgba(120,110,95,.25); }
.ed-section.dark .ed-divider-list .row:last-child{ border-bottom-color: rgba(255,255,255,.15); }

.ed-check-list{ margin-top:1.75rem; }
.ed-check-list .row{
  display:flex; align-items:center; gap:.75rem; padding: 1.1rem 0;
  border-top:1px solid var(--border); font-size:1rem;
}
.ed-check-list .row:last-child{ border-bottom:1px solid var(--border); }
.ed-check-list .row svg{ flex:none; height:1rem; width:1rem; color: var(--brand-glow); }

.ed-italic-line{ font-family: var(--font-display); font-style:italic; font-size:1.6rem; margin-top:1.75rem; }

.ed-split{ display:grid; grid-template-columns:1fr; gap:2rem; align-items:center; max-width:72rem; margin:0 auto; }
@media(min-width:900px){ .ed-split{ grid-template-columns:1fr 1fr; gap:4rem; } }
.ed-split img{ width:100%; border-radius:.5rem; display:block; object-fit:cover; max-height:640px; }
.ed-split .ed-h2{ font-size:1.75rem; }
@media(min-width:768px){ .ed-split .ed-h2{ font-size:2.15rem; } }
.ed-split .signature{ margin-top:1.5rem; font-family: var(--font-display); font-style:italic; font-size:1.15rem; opacity:.75; }

.ed-final{ text-align:center; }
.ed-final .ed-h2{ font-size:2.1rem; }
@media(min-width:768px){ .ed-final .ed-h2{ font-size:2.75rem; } }
.ed-final .sub{ font-family: var(--font-mono); font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; opacity:.6; margin-bottom:.75rem; }
.ed-final .italic{ font-family: var(--font-display); font-style:italic; font-size:1.75rem; margin: .5rem 0 2.25rem; }
.ed-final .ed-hero-cta{ background:#fff; color:#1C1B19; }

.ed-form-section{ padding: 4rem 1.5rem 5rem; background: var(--background); }
.ed-form-section .ed-section-inner{ max-width:32rem; }
.ed-form-section .ed-eyebrow{ margin-left:auto; margin-right:auto; }
.ed-form-section h2{ text-align:center; }
.ed-form-section p.center{ text-align:center; }

/* legal pages */
.legal-page{ padding: 3.5rem 1.25rem 2rem; }
.legal-inner{ max-width:44rem; margin:0 auto; }
.legal-inner h1{ font-family: var(--font-display); font-weight:600; font-size:2rem; margin:0 0 .5rem; }
.legal-updated{ font-family: var(--font-mono); font-size:.7rem; color: var(--muted-foreground); letter-spacing:.05em; margin-bottom:2.5rem; }
.legal-inner h2{ font-family: var(--font-display); font-weight:600; font-size:1.3rem; margin:2.25rem 0 .75rem; }
.legal-inner h2:first-of-type{ margin-top:0; }
.legal-inner p{ font-size:.92rem; line-height:1.75; color: var(--foreground); opacity:.85; margin:0 0 1rem; }
.legal-inner ul, .legal-inner ol{ margin:0 0 1rem; padding-left:1.25rem; }
.legal-inner li{ font-size:.92rem; line-height:1.75; opacity:.85; margin-bottom:.4rem; }
.legal-inner strong{ opacity:1; }
.legal-inner a{ color: var(--brand-glow); text-decoration:underline; text-underline-offset:3px; }
.legal-note{ margin-top:3rem; padding:1rem 1.25rem; border-radius:.75rem; background: var(--muted); font-size:.8rem; line-height:1.6; color: var(--muted-foreground); }
