:root {
  --paper: #fffdf9;
  --cream: #f8f1e8;
  --cream-2: #efe2d1;
  --gold: #bb873d;
  --gold-deep: #9d6a29;
  --ink: #22201e;
  --muted: #6e6963;
  --line: rgba(150, 107, 49, .18);
  --shadow: 0 24px 70px rgba(77, 54, 28, .13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

::selection { background: rgba(187, 135, 61, .25); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(187, 135, 61, .08);
}
.nav-wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}
.brand {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .95rem;
  font-weight: 600;
}
.main-nav a,
.footer-links a { position: relative; }
.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #c99a56, #a86f2b);
  box-shadow: 0 12px 30px rgba(168, 111, 43, .22);
}
.button-primary:hover { box-shadow: 0 16px 36px rgba(168, 111, 43, .3); }
.button-secondary {
  color: var(--gold-deep);
  background: rgba(255,255,255,.72);
  border-color: rgba(168, 111, 43, .55);
}
.button-secondary:hover { background: #fff; }

.hero {
  position: relative;
  padding: 74px 0 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 15%, rgba(225, 195, 152, .16), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fcf7f0 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero-glow-one { width: 420px; height: 420px; background: rgba(223, 191, 145, .12); left: -170px; top: 120px; }
.hero-glow-two { width: 360px; height: 360px; background: rgba(207, 164, 105, .12); right: -130px; bottom: -110px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 74px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 8px 14px;
  border: 1px solid rgba(168, 111, 43, .55);
  border-radius: 99px;
  background: rgba(255, 255, 255, .52);
}
.hero h1,
.section h2,
.waitlist h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.hero h1 {
  max-width: 720px;
  margin: 23px 0 25px;
  font-size: clamp(3.15rem, 5.55vw, 5.7rem);
}
.hero-lead {
  max-width: 640px;
  margin: 0;
  color: #4e4944;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}
.trust-note {
  max-width: 560px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.trust-note svg {
  flex: 0 0 22px;
  width: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual { position: relative; }
.image-frame {
  overflow: hidden;
  border-radius: 38px 38px 38px 110px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.hero-image { aspect-ratio: 1.02; }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.floating-card {
  position: absolute;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 15px;
  background: rgba(255, 253, 249, .86);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(72, 49, 25, .13);
}
.floating-card span {
  display: block;
  color: var(--gold-deep);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.floating-card strong { font-size: .91rem; }
.floating-card-top { top: 38px; left: -34px; }
.floating-card-bottom { right: -28px; bottom: 42px; }

.value-strip { position: relative; z-index: 3; margin-top: -10px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 251, 246, .94);
  border: 1px solid rgba(187, 135, 61, .12);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(90, 64, 34, .08);
}
.value-item {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 26px;
  position: relative;
}
.value-item + .value-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: var(--line);
}
.value-item svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.value-item p { margin: 0; font-weight: 600; }

.section { padding: 112px 0; }
.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading h2,
.concept h2,
.waitlist h2 {
  margin: 8px 0 12px;
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
}
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }

.how { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(187, 135, 61, .17);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #fdf9f4 100%);
  box-shadow: 0 12px 30px rgba(90, 65, 34, .045);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(187, 135, 61, .35);
  box-shadow: 0 22px 42px rgba(90, 65, 34, .09);
}
.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -18px;
  top: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--paper);
  border-radius: 50%;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.step-top span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  border: 1px solid rgba(187, 135, 61, .35);
  border-radius: 50%;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.25rem;
}
.step-top svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: #8b7b68;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-card h3 {
  margin: 0 0 16px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.25;
}
.step-card p { margin: 0; color: var(--muted); }

.concept {
  background: linear-gradient(135deg, #fbf5ed, #fffdf9 54%, #f7ede1);
}
.concept-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 68px;
}
.concept-lead { color: #56504a; font-size: 1.04rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.benefit {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(187, 135, 61, .17);
  border-radius: 15px;
  background: rgba(255,255,255,.68);
}
.benefit span { color: var(--gold); font-size: 1.6rem; }
.benefit p { margin: 0; font-size: .9rem; font-weight: 600; line-height: 1.35; }
.concept-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.concept-visual img { width: 100%; min-height: 410px; object-fit: cover; }
.image-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  min-width: 195px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(38, 31, 25, .72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 15px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.15rem;
}
.image-caption strong { color: #f0c888; }

.audiences { background: #fff; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.audience-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
  border: 1px solid rgba(187, 135, 61, .16);
  border-radius: 24px;
  background: #fbf4eb;
  box-shadow: 0 16px 38px rgba(83, 58, 28, .07);
}
.audience-image { min-height: 100%; overflow: hidden; }
.audience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.audience-card:hover .audience-image img { transform: scale(1.035); }
.audience-copy { align-self: center; padding: 34px; }
.card-label {
  margin: 0 0 7px;
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.audience-copy h3 {
  margin: 0 0 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}
.audience-copy > p:not(.card-label) { color: var(--muted); }
.audience-copy a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: var(--gold-deep);
  font-weight: 700;
}
.audience-copy a span { transition: transform .2s ease; }
.audience-copy a:hover span { transform: translateX(4px); }

.waitlist { padding: 34px 0 80px; background: #fff; }
.waitlist-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr .95fr;
  align-items: center;
  gap: 28px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(187, 135, 61, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 10%, rgba(255,255,255,.8), transparent 26%),
    linear-gradient(125deg, #f1e1ce 0%, #fbf5ec 52%, #ead4b6 100%);
  box-shadow: var(--shadow);
}
.waitlist-card::after {
  content: "✦";
  position: absolute;
  right: -22px;
  bottom: -70px;
  color: rgba(255,255,255,.54);
  font-size: 14rem;
  line-height: 1;
}
.waitlist-mark {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  border: 1px solid rgba(168, 111, 43, .45);
  border-radius: 50%;
  font-size: 2rem;
  background: rgba(255,255,255,.35);
}
.waitlist-copy,
.waitlist-form { position: relative; z-index: 1; }
.waitlist-copy h2 { font-size: clamp(2.2rem, 3.4vw, 3.45rem); }
.waitlist-copy p:last-child { margin: 0; color: #5d554d; }
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 6px;
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(150,107,49,.13);
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(85, 60, 30, .08);
}
.form-row input {
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
}
.form-row input::placeholder { color: #8d847b; }
.form-row .button { min-height: 48px; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 13px;
  color: #655d55;
  font-size: .76rem;
  line-height: 1.4;
}
.consent-row input { margin-top: 2px; accent-color: var(--gold-deep); }
.form-note { margin: 10px 0 0; color: #73695f; font-size: .76rem; }
.form-message { min-height: 23px; margin: 8px 0 0; font-size: .84rem; font-weight: 700; }
.form-message.success { color: #38633f; }
.form-message.error { color: #8b3232; }
.honeypot { position: absolute !important; left: -99999px !important; opacity: 0 !important; }

.site-footer {
  padding: 52px 0 24px;
  background: #faf6f0;
  border-top: 1px solid rgba(187, 135, 61, .1);
}
.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.footer-grid p { margin: 12px 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 30px; font-weight: 600; }
.footer-links span { color: var(--muted); font-weight: 400; }
.footer-links span a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(187, 135, 61, .45); text-underline-offset: 4px; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  color: #9a9289;
  border-top: 1px solid rgba(187, 135, 61, .14);
  text-align: center;
  font-size: .8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .09s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .27s; }

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

@media (max-width: 1080px) {
  .nav-wrap { gap: 20px; }
  .main-nav { gap: 20px; }
  .hero-grid { gap: 42px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:not(:last-child)::after { display: none; }
  .concept-grid { gap: 38px; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-image { height: 235px; }
  .waitlist-card { grid-template-columns: auto 1fr; }
  .waitlist-form { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .site-header { position: sticky; }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 76px; }
  .menu-toggle { display: block; order: 2; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background: rgba(255,253,249,.98);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(60, 44, 26, .12);
    transition: .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 12px; }
  .nav-cta { display: none; }
  .hero { padding-top: 46px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead, .trust-note { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(630px, 100%); margin-inline: auto; }
  .floating-card-top { left: 12px; }
  .floating-card-bottom { right: 12px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 96px; justify-content: flex-start; padding-left: 10%; }
  .value-item + .value-item::before { top: 0; left: 8%; width: 84%; height: 1px; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-copy { text-align: center; }
  .benefits-grid { text-align: left; }
  .audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .floating-card { display: none; }
  .image-frame { border-radius: 28px 28px 28px 70px; }
  .section { padding: 82px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .concept-visual img { min-height: 330px; }
  .audience-card { grid-template-columns: 1fr; }
  .audience-copy { padding: 28px; }
  .waitlist { padding-top: 16px; }
  .waitlist-card { grid-template-columns: 1fr; padding: 28px 20px; text-align: center; }
  .waitlist-mark { margin-inline: auto; }
  .form-row { grid-template-columns: 1fr; padding: 7px; }
  .form-row input { text-align: center; }
  .consent-row { text-align: left; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 20px; }
}
