:root {
  --ink: #11100f;
  --ink-soft: #292724;
  --cream: #f4f0e8;
  --paper: #fffdf8;
  --gold: #e6ad23;
  --gold-light: #f4cc69;
  --wine: #732f2f;
  --line: rgba(17, 16, 15, 0.16);
  --wrap: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .25s, color .25s, min-height .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(17,16,15,.97);
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; line-height: 1.05; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold-light);
  font: italic 700 1.5rem var(--serif);
}
.brand-name { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.brand-name strong { font-size: .82rem; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { position: relative; font-size: .85rem; text-decoration: none; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transition: right .2s;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta {
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 700;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fff;
  background: #181614;
  overflow: hidden;
}
.hero-video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; filter: saturate(.78) contrast(1.04); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(12,11,10,.86) 0%, rgba(12,11,10,.58) 52%, rgba(12,11,10,.27) 100%),
    linear-gradient(0deg, rgba(12,11,10,.62) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 2; padding-block: 150px 130px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-eyebrow { color: var(--gold-light); }
.hero h1 {
  max-width: 930px;
  margin: 0;
  font: 400 clamp(3.2rem, 7.5vw, 7.2rem)/.93 var(--serif);
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--wine); }
.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.scroll-cue::after { content: " ↓"; color: var(--gold); }
.video-control {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 25px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(17,16,15,.5);
  color: #fff;
  padding: 8px 12px;
  font-size: .75rem;
  cursor: pointer;
}

.section { padding: 120px 0; }
.section-heading { max-width: 760px; }
.section-heading-wide { max-width: 900px; }
.section-heading h2, .contact h2, .founder h2 {
  margin: 0;
  font: 400 clamp(2.5rem, 5.2vw, 5.2rem)/1 var(--serif);
  letter-spacing: -.045em;
}
.section-heading > p:last-child { max-width: 650px; margin: 24px 0 0; color: #5b5751; font-size: 1.08rem; }
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: start; }
.lead-copy { font: 400 1.42rem/1.45 var(--serif); }
.intro-copy p { margin-top: 0; }
.house-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border: 1px solid var(--line); }
.house-card { min-height: 330px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--line); }
.house-card:last-child { border-right: 0; }
.house-card h3 { margin: auto 0 10px; font: 400 2rem var(--serif); }
.house-card p { margin: 0; color: #5c5750; }
.card-number { font-size: .8rem; letter-spacing: .16em; color: var(--wine); }
.card-note { margin-top: 28px; color: var(--wine); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.house-card-accent { background: var(--gold); }
.house-card-accent .card-number, .house-card-accent .card-note { color: var(--ink); }

.method { background: var(--paper); }
.method-list { list-style: none; padding: 0; margin: 70px 0 0; border-top: 1px solid var(--line); }
.method-item {
  display: grid;
  grid-template-columns: 75px 1fr minmax(220px, 340px);
  gap: 28px;
  align-items: center;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
}
.method-index { color: var(--wine); font-size: .78rem; letter-spacing: .15em; }
.method-item h3 { margin: 0; font: 400 2.2rem var(--serif); }
.method-item p { margin: 4px 0 0; color: #5d5953; }
.method-item strong { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }

.offers { background: #eae3d7; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 64px; align-items: stretch; }
.offer-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  background: var(--paper);
  border-top: 5px solid var(--wine);
}
.offer-card h3 { margin: 15px 0 20px; font: 400 2.15rem/1.03 var(--serif); }
.offer-card p { color: #5b5751; }
.offer-card ul { margin: 22px 0 0; padding-left: 20px; }
.offer-card a { color: var(--wine); font-weight: 700; text-decoration: none; }
.offer-type { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.offer-featured { margin-top: -22px; margin-bottom: 22px; background: var(--ink); color: #fff; border-top-color: var(--gold); }
.offer-featured p { color: rgba(255,255,255,.76); }
.offer-featured a { color: var(--gold-light); }
.offer-badge {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  padding: 7px 11px;
  background: var(--gold);
  color: var(--ink);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bootcamp { background: var(--gold); }
.bootcamp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.bootcamp-intro h2 { margin: 0; max-width: 620px; font: 400 clamp(2.8rem, 5vw, 5.3rem)/.98 var(--serif); letter-spacing: -.05em; }
.bootcamp-intro > p:last-of-type { max-width: 590px; font-size: 1.08rem; }
.bootcamp-link { margin-top: 36px; }
.bootcamp .eyebrow { color: var(--ink); }
.bootcamp-stats { display: flex; gap: 35px; margin-top: 45px; padding-top: 25px; border-top: 1px solid rgba(17,16,15,.32); }
.bootcamp-stats div { display: flex; flex-direction: column; }
.bootcamp-stats strong { font: 400 2.25rem var(--serif); }
.bootcamp-stats span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.timeline { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(17,16,15,.34); }
.timeline li { display: grid; grid-template-columns: 105px 1fr; gap: 28px; padding: 25px 0; border-bottom: 1px solid rgba(17,16,15,.34); }
.timeline > li > span { font-size: .78rem; font-weight: 700; letter-spacing: .06em; }
.timeline h3 { margin: 0; font: 400 1.75rem var(--serif); }
.timeline p { margin: 3px 0 0; }

.proof { background: var(--wine); color: #fff; }
.section-heading-light .eyebrow { color: var(--gold-light); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.proof-item { min-height: 230px; display: flex; flex-direction: column; justify-content: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.3); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: var(--gold-light); font: 400 4rem/1 var(--serif); }
.proof-item span { margin-top: 18px; line-height: 1.4; }
.proof-note { max-width: 850px; margin: 35px 0 0; color: rgba(255,255,255,.75); }

.response { background: var(--paper); }
.response-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.response-copy > p:first-child { margin-top: 0; }
.response-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.response-tags span { padding: 8px 12px; border: 1px solid var(--line); font-size: .8rem; }

.founder { background: var(--cream); }
.founder-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 8vw; align-items: center; }
.founder-image { margin: 0; }
.founder-image img { width: 100%; aspect-ratio: 1.28; object-fit: cover; filter: saturate(.86); }
.founder-image figcaption { margin-top: 12px; font: italic 1rem var(--serif); color: #6a655e; }
.founder-copy blockquote { margin: 34px 0 0; padding: 20px 0 20px 24px; border-left: 4px solid var(--gold); font: italic 1.18rem/1.5 var(--serif); }

.main-waitlist { color: #fff; background: var(--ink); }
.main-waitlist-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: start; }
.main-waitlist .eyebrow { color: var(--gold-light); }
.main-waitlist h2 { margin: 0; font: 400 clamp(2.7rem, 5vw, 5.2rem)/1 var(--serif); letter-spacing: -.045em; }
.main-waitlist-copy > p:not(.eyebrow) { max-width: 540px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.main-waitlist-copy ul { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; color: rgba(255,255,255,.78); list-style: none; }
.main-waitlist-copy li { position: relative; padding-left: 25px; }
.main-waitlist-copy li::before { position: absolute; left: 0; content: "✓"; color: var(--gold); font-weight: 700; }
.main-waitlist-card { padding: clamp(24px, 4vw, 40px); color: var(--ink); background: var(--paper); border-top: 5px solid var(--gold); }
.waitlist-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.waitlist-field { display: grid; gap: 7px; }
.waitlist-field-wide { grid-column: 1 / -1; }
.waitlist-field label { font-size: .82rem; font-weight: 700; }
.waitlist-field input {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(17,16,15,.25);
  border-radius: 0;
  font: inherit;
}
.waitlist-field input:focus { outline: 3px solid rgba(230,173,35,.25); border-color: var(--wine); }
.waitlist-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 22px 0; color: #5b5751; font-size: .78rem; line-height: 1.5; }
.waitlist-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--wine); }
.waitlist-submit { width: 100%; border: 0; cursor: pointer; font: inherit; }
.waitlist-submit[disabled] { cursor: wait; opacity: .65; transform: none; }
.waitlist-status { min-height: 24px; margin: 14px 0 0; color: var(--wine); font-size: .87rem; font-weight: 700; }
.waitlist-success { padding: 35px 20px; text-align: center; }
.waitlist-success strong { display: block; margin-bottom: 8px; color: var(--wine); font: 400 2rem var(--serif); }
.waitlist-success p { margin: 0; }
.waitlist-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact { padding: 105px 0; background: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.contact .eyebrow { color: var(--ink); }
.contact-action p { margin-top: 0; font-size: 1.05rem; }

.site-footer { padding: 58px 0 24px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 54px; height: 70px; object-fit: cover; object-position: 50% 28%; background: #fff; }
.footer-brand p { margin: 0; line-height: 1.35; }
.footer-brand span { color: rgba(255,255,255,.6); font-size: .78rem; }
.footer-contact { display: flex; flex-direction: column; font-size: .9rem; }
.footer-contact a { text-decoration: none; }
.footer-contact span { color: rgba(255,255,255,.58); }
.footer-top { color: var(--gold-light); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.46); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  :root { --wrap: min(100% - 36px, 760px); }
  .site-header { padding-inline: 18px; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 43px;
    height: 43px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: #fff;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 110px 34px 44px;
    background: rgba(17,16,15,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s, transform .22s;
  }
  .brand, .menu-toggle { position: relative; z-index: 2; }
  .main-nav.is-open { z-index: 1; opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { font: 400 2rem var(--serif); }
  .main-nav .nav-cta { margin-top: 12px; font: 700 .9rem var(--sans); }
  .intro-grid, .bootcamp-grid, .response-grid, .founder-grid, .main-waitlist-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .house-grid, .offers-grid { grid-template-columns: 1fr; }
  .house-card { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .house-card:last-child { border-bottom: 0; }
  .offer-featured { margin: 0; }
  .offer-card { min-height: 380px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.3); }
  .founder-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 28px); }
  .section { padding: 85px 0; }
  .brand-name { display: none; }
  .hero-content { padding-block: 130px 135px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-bottom { display: none; }
  .video-control { right: 14px; bottom: 14px; }
  .method-item { grid-template-columns: 42px 1fr; gap: 15px; }
  .method-item strong { grid-column: 2; }
  .bootcamp-stats { gap: 18px; justify-content: space-between; }
  .bootcamp-stats strong { font-size: 1.7rem; }
  .timeline li { grid-template-columns: 82px 1fr; gap: 15px; }
  .waitlist-fields { grid-template-columns: 1fr; }
  .waitlist-field-wide { grid-column: auto; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .proof-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; }
}
