@font-face {
  font-family: "Geist";
  src: url("/assets/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #f7f5f0;
  --surface-strong: #eef2f6;
  --ink: #081a30;
  --muted: #435366;
  --dim: #586271;
  --accent: #dfb75e;
  --accent-hover: #edc777;
  --accent-ink: #081a30;
  --rule: rgba(8, 26, 48, 0.14);
  --rule-strong: rgba(8, 26, 48, 0.3);
  --focus: #155eb0;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding-block: clamp(88px, 10vw, 152px); }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: var(--rule);
  transform: translateY(100%);
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wordmark { display: inline-flex; flex-direction: column; line-height: 0.82; font-weight: 900; letter-spacing: -0.055em; }
.wordmark span { font-size: 1.02rem; }
.wordmark small { margin-top: 7px; color: var(--accent); font-size: 0.52rem; letter-spacing: 0.28em; }
.wordmark img { width: 154px; height: 77px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); font-size: 0.8rem; font-weight: 700; }
.site-nav a { color: var(--muted); transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.site-nav .nav-cta { min-height: 44px; display: inline-flex; align-items: center; padding-inline: 18px; background: var(--accent); color: var(--accent-ink); }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--accent-ink); background: var(--accent-hover); }
.menu-button { display: none; min-width: 58px; min-height: 44px; border: 1px solid var(--rule-strong); background: transparent; cursor: pointer; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, 100dvh);
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--bg);
}
.hero-media { position: absolute; z-index: -3; inset: var(--header-height) 0 0 55%; background: #082c55; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; filter: grayscale(1); mix-blend-mode: luminosity; opacity: 0.8; }
.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: var(--header-height) 0 0 55%;
  background: linear-gradient(to top, rgba(4, 17, 35, 0.95), transparent 70%);
}
.hero-layout {
  min-height: min(740px, calc(100dvh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 48px;
  padding-block: clamp(42px, 7vh, 78px) 48px;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  margin: 0 0 22px;
  color: #80601c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 5.6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-transform: none;
}
.hero-lede { max-width: 470px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms var(--ease), background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.button:active { transform: scale(0.98); }
.button-primary { background: var(--accent); color: var(--accent-ink); }
.button-primary:hover { background: var(--accent-hover); }
.text-link { display: inline-block; padding-block: 7px 5px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: 0.9rem; font-weight: 750; }
.hero-caption {
  align-self: end;
  justify-self: end;
  max-width: 390px;
  margin: 0;
  padding: 22px 0 0 24px;
  border-top: 2px solid var(--accent);
  color: #ded8cf;
  font-size: 1rem;
  font-weight: 650;
}

.proof-strip { border-block: 1px solid var(--rule); background: var(--surface); }
.proof-grid { display: grid; grid-template-columns: 0.8fr 1.15fr 1.1fr; }
.proof-grid div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; border-right: 1px solid var(--rule); }
.proof-grid div:first-child { padding-left: 0; }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { font-size: 1.18rem; line-height: 1.1; letter-spacing: -0.025em; }
.proof-grid span { margin-top: 7px; color: var(--dim); font-size: 0.79rem; }

h2 { margin: 0; font-size: clamp(2.6rem, 5.4vw, 5.3rem); font-weight: 850; line-height: 0.94; letter-spacing: -0.06em; text-wrap: balance; }
h3 { margin: 0; font-size: 1.28rem; line-height: 1.15; letter-spacing: -0.035em; }
p { text-wrap: pretty; }

.problem { background: var(--bg); }
.problem-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: clamp(60px, 9vw, 132px); align-items: start; }
.section-copy { position: sticky; top: calc(var(--header-height) + 48px); }
.section-copy p, .method-intro p, .planning-copy > p, .felix-copy > p, .owner-copy p { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 1.06rem; line-height: 1.65; }
.problem-rail { border-top: 1px solid var(--rule-strong); }
.lever { padding: 30px 0 34px; border-bottom: 1px solid var(--rule); }
.lever h3 { color: #80601c; font-size: clamp(1.35rem, 2.3vw, 2rem); }
.lever p { max-width: 520px; margin: 12px 0 0; color: var(--muted); }

.method { background: var(--surface); }
.method-intro { max-width: 850px; }
.method-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 70px; border-top: 1px solid var(--rule-strong); }
.method-item { position: relative; min-height: 245px; padding: 34px 28px 24px 0; border-right: 1px solid var(--rule); }
.method-item + .method-item { padding-left: 28px; }
.method-item:last-child { border-right: 0; }
.method-item::before { content: ""; position: absolute; top: -2px; left: 0; width: 44px; height: 3px; background: var(--accent); }
.method-item p { margin: 18px 0 0; color: var(--dim); font-size: 0.92rem; line-height: 1.6; }

.planning { overflow: hidden; }
.planning-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); align-items: center; gap: clamp(52px, 8vw, 118px); }
.planning-image { min-height: 620px; margin: 0; overflow: hidden; background: var(--surface); }
.planning-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center; }
.planning-copy h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.planning-points { margin: 40px 0 0; }
.planning-points div { padding: 20px 0; border-top: 1px solid var(--rule); }
.planning-points dt { color: var(--ink); font-weight: 760; }
.planning-points dd { margin: 7px 0 0; color: var(--dim); font-size: 0.9rem; line-height: 1.55; }

.venues { background: var(--surface-strong); }
.venues-layout { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(60px, 10vw, 150px); }
.venues-title h2 { position: sticky; top: calc(var(--header-height) + 48px); font-size: clamp(2.8rem, 5.2vw, 5.1rem); }
.venue-types { display: flex; flex-direction: column; border-top: 1px solid var(--rule-strong); }
.venue-types span { padding: 25px 0; border-bottom: 1px solid var(--rule); color: var(--muted); font-size: clamp(1.25rem, 2.4vw, 2.25rem); font-weight: 650; letter-spacing: -0.035em; transition: color 160ms ease, padding-left 220ms var(--ease); }
.venue-types span:hover { padding-left: 18px; color: var(--accent); }

.felix { background: var(--bg); }
.felix-layout { display: grid; grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(60px, 9vw, 132px); }
.felix-copy h2 { font-size: clamp(2.8rem, 5.3vw, 5.2rem); }
.felix-copy .text-link { margin-top: 26px; }
.felix-image { order: -1; margin: 0; max-height: 780px; overflow: hidden; border-bottom: 4px solid var(--accent); background: var(--surface); }
.felix-image img { width: 100%; height: 100%; max-height: 780px; object-fit: cover; object-position: center 30%; }

.owner-list { border-top: 1px solid var(--rule); background: var(--surface); }
.owner-layout { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr); gap: clamp(58px, 9vw, 136px); align-items: start; }
.owner-copy { position: sticky; top: calc(var(--header-height) + 48px); }
.owner-copy h2 { font-size: clamp(3rem, 5.6vw, 5.5rem); }
.form-panel { position: relative; min-height: 570px; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--rule-strong); background: var(--bg); }
.lead-form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label, .label-row label { color: var(--ink); font-size: 0.8rem; font-weight: 750; }
.label-row { display: flex; justify-content: space-between; gap: 16px; }
.label-row span { color: var(--dim); font-size: 0.75rem; }
input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 140ms ease, background 140ms ease;
}
input::placeholder { color: #626a74; opacity: 1; }
input:hover { border-color: var(--ink); }
input:focus-visible { border-color: var(--focus); box-shadow: 0 0 0 2px rgba(21, 94, 176, 0.18); }
input[aria-invalid="true"] { border-color: var(--accent); }
.field-error { min-height: 16px; color: #a32d20; font-size: 0.75rem; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px 12px; align-items: start; }
.consent input { width: 20px; min-height: 20px; height: 20px; padding: 0; margin-top: 2px; accent-color: var(--accent); }
.consent label { color: var(--muted); font-size: 0.75rem; line-height: 1.5; }
.consent .field-error { grid-column: 2; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; margin-top: 4px; }
.form-submit[disabled] { cursor: wait; opacity: 0.7; }
.privacy-note { margin: -5px 0 0; color: var(--dim); font-size: 0.73rem; line-height: 1.5; }
.form-status { min-height: 0; color: #a32d20; font-size: 0.84rem; }
.form-status:not(:empty) { min-height: 42px; padding: 11px 12px; border: 1px solid rgba(255, 90, 54, 0.5); background: rgba(255, 90, 54, 0.08); }
.success-panel { min-height: 470px; display: flex; flex-direction: column; justify-content: center; }
.success-mark { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 0 26px; background: var(--accent); color: var(--accent-ink); font-size: 1.6rem; font-weight: 900; }
.success-panel h3 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.success-panel p:last-child { max-width: 520px; margin: 22px 0 0; color: var(--muted); font-size: 1.02rem; }

.site-footer { border-top: 1px solid var(--rule); background: var(--bg); }
.footer-layout { min-height: 150px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; }
.footer-layout p { margin: 0; color: var(--dim); font-size: 0.75rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero-layout { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 32px; }
  .hero-actions { flex-wrap: wrap; gap: 18px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid div:nth-child(2) { border-right: 0; }
  .proof-grid div:last-child { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--rule); }
  .problem-layout, .planning-layout, .venues-layout, .felix-layout, .owner-layout { grid-template-columns: 1fr; }
  .section-copy, .venues-title h2, .owner-copy { position: static; }
  .problem-rail { margin-top: 10px; }
  .method-track { grid-template-columns: 1fr 1fr; }
  .method-item:nth-child(2) { border-right: 0; }
  .method-item:nth-child(n + 3) { border-top: 1px solid var(--rule); }
  .planning-image { min-height: 500px; }
  .planning-image img { min-height: 500px; }
  .felix-image { order: 0; max-height: 680px; }
  .owner-copy { max-width: 760px; }
  .form-panel { max-width: 760px; width: 100%; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-layout p:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-height: 76px; }
  .shell { width: min(100% - 32px, 620px); }
  .section-space { padding-block: 80px; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: fixed;
    z-index: 21;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 16px;
    border-top: 1px solid var(--rule);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 160ms ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a, .site-nav a:not(.nav-cta) { min-height: 52px; display: flex; align-items: center; padding-inline: 12px; border-bottom: 1px solid var(--rule); }
  .site-nav .nav-cta { margin-top: 14px; justify-content: center; border-bottom: 0; }
  .hero { min-height: 0; }
  .hero-media { inset: auto 0 0; height: 270px; }
  .hero-media img { object-position: 60% center; }
  .hero-scrim {
    inset: auto 0 0; height: 270px;
    background: linear-gradient(to top, rgba(4, 17, 35, 0.96), transparent);
  }
  .hero-layout { min-height: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 160px; padding-block: 42px 26px; }
  .hero-copy { padding-bottom: 34px; }
  .hero h1 { max-width: 520px; font-size: clamp(2.8rem, 12.2vw, 4.6rem); line-height: 1; }
  .hero-lede { max-width: 520px; margin-top: 20px; font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 26px; }
  .button-primary { width: 100%; }
  .hero-caption { align-self: flex-end; max-width: 330px; padding: 14px 0 0 16px; font-size: 0.78rem; }
  .proof-grid { display: block; }
  .proof-grid div, .proof-grid div:first-child, .proof-grid div:last-child { min-height: 94px; padding: 18px 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--rule); }
  .proof-grid div:last-child { border-bottom: 0; }
  .problem-layout { gap: 46px; }
  .method-track { display: block; margin-top: 48px; }
  .method-item, .method-item + .method-item { min-height: auto; padding: 28px 0 32px; border-right: 0; border-top: 1px solid var(--rule); }
  .method-item:first-child { border-top: 0; }
  .planning-image, .planning-image img { min-height: 430px; }
  .planning-image img { object-position: 46% center; }
  .venues-layout, .felix-layout, .owner-layout { gap: 48px; }
  .venue-types span { padding: 20px 0; font-size: 1.35rem; }
  .felix-image { max-height: 540px; }
  .form-panel { min-height: 0; padding: 24px 18px; }
  .footer-layout { min-height: 210px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #23354b; --dim: #23354b; --rule: rgba(8, 26, 48, 0.45); --rule-strong: rgba(8, 26, 48, 0.7); }
}
