@font-face {
  font-family: "DM Serif Display";
  src: url("/assets/fonts/dm-serif-display-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #19171F;
  --plum: #302B3F;
  --steel: #64758B;
  --steel-text: #4E5D72; /* steel darkened to meet 4.5:1 on ivory */
  --gold: #C19A6B;
  --ivory: #F4EFE7;
  --white: #FFFFFF;
  --line: #D9D1C4;
  --error: #9B2C2C;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0 0 .5em; color: var(--plum); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--plum); color: var(--ivory); padding: 8px 14px; z-index: 10; border-radius: 6px; }
.skip:focus { left: 8px; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel-text); margin-bottom: .9em;
}
.eyebrow--gold { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .8em 1.5em; border-radius: 999px; border: 2px solid transparent;
  font: 700 1rem/1.2 var(--sans); text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn--primary { background: var(--plum); color: var(--ivory); }
.btn--primary:hover { background: var(--ink); color: var(--ivory); }
.btn--ghost { border-color: var(--plum); color: var(--plum); background: transparent; }
.btn--ghost:hover { background: var(--plum); color: var(--ivory); }
.btn[disabled] { opacity: .6; cursor: progress; }

/* Hero */
.hero { position: relative; display: grid; background: var(--ivory); overflow: hidden; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.hero__inner { position: relative; padding: 28px var(--gutter) 40px; max-width: 640px; }
.hero__logo { width: min(300px, 62vw); margin: 0 0 clamp(28px, 6vh, 56px) -8px; }
.hero h1 .plus { color: #8A6A3F; } /* gold deepened for 4.5:1 on ivory */
.lede { font-size: 1.15rem; color: var(--ink); max-width: 34em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6em; }
@media (max-width: 859px) {
  .hero__img { order: 2; height: 260px; }
}
@media (min-width: 860px) {
  .hero { min-height: min(88vh, 860px); align-items: center; }
  /* Image sits in the right ~62% so live copy stays on the open ivory wall */
  .hero__img { position: absolute; top: 0; bottom: 0; right: 0; left: 38%; }
  .hero__img img { object-position: left center; }
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(244,239,231,1) 0%, rgba(244,239,231,1) 38%, rgba(244,239,231,0) 50%);
  }
  .hero__inner { z-index: 2; margin-left: max(var(--gutter), calc((100vw - 1180px) / 2 + var(--gutter))); padding: 48px 0; max-width: 560px; }
}

/* Question */
.question { position: relative; background: var(--ink); padding: clamp(48px, 8vw, 96px) 0; }
.question__img { display: none; }
@media (min-width: 1000px) {
  .question__img { display: block; position: absolute; inset: 0; }
  .question__img img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
}
.question .wrap { position: relative; }
.card {
  background: var(--white); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px);
  max-width: 640px; box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.card h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.card .eyebrow--gold { color: #8A6A3F; } /* deeper gold for contrast on white */

/* Forms */
.form { display: grid; gap: 18px; }
fieldset { border: 0; padding: 0; margin: 0; }
.choices { display: grid; gap: 8px; }
.hint { margin: 0 0 4px; color: var(--steel-text); font-size: .95rem; font-weight: 600; }
.check { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; background: var(--white); line-height: 1.4; }
.check:hover { border-color: var(--steel); }
.check:has(input:checked) { border-color: var(--plum); background: #F8F5F0; }
.check input { width: 20px; height: 20px; margin: 1px 0 0; flex: none; accent-color: var(--plum); }
.check:has(input:disabled) { opacity: .55; cursor: not-allowed; }
.consents { display: grid; gap: 8px; }
.grid { display: grid; gap: 14px; }
@media (min-width: 620px) { .grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .95rem; }
.req, .opt { font-weight: 500; font-size: .8rem; color: var(--steel-text); margin-left: 4px; }
input[type=text], input[type=email], select {
  width: 100%; min-height: 48px; padding: 10px 12px; font: 500 1rem var(--sans); color: var(--ink);
  background: var(--white); border: 1px solid #A9A091; border-radius: 10px;
}
input[type=text]:focus, input[type=email]:focus, select:focus { border-color: var(--plum); }
[aria-invalid="true"] { border-color: var(--error) !important; }
.error { color: var(--error); font-weight: 600; font-size: .95rem; margin: 0; min-height: 0; }
.error:empty { display: none; }
.notice { font-size: .92rem; color: #3D3A45; background: var(--ivory); border-left: 4px solid var(--gold); padding: 12px 14px; border-radius: 6px; margin: 0; }
.notice--small { background: none; border: 0; padding: 0; }
.check em, .notice em, .next-step em { font-style: normal; font-weight: 700; } /* Manrope has no italic */
.status { margin: 0; font-weight: 600; }
.status.is-ok { color: #2F5D3A; }
.status.is-err { color: var(--error); }
.form .btn { justify-self: start; }
.next-step { margin: -6px 0 0; font-size: .95rem; color: var(--steel-text); }
.skip-q { margin: -8px 0 0; font-size: .92rem; }
.skip-q a { color: var(--steel-text); }

/* Exploring */
.exploring { padding: clamp(56px, 9vw, 110px) 0; background: var(--ivory); }
.intro { max-width: 46em; font-size: 1.1rem; }
.tiles { display: grid; gap: 18px; margin-top: 32px; }
@media (min-width: 700px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tile { background: var(--white); border-radius: var(--radius); padding: 26px 24px; border-top: 4px solid var(--gold); }
.tile p { margin: 0; color: #3D3A45; }

/* Founder */
.founder { padding: clamp(56px, 9vw, 110px) 0; background: var(--white); }
.founder__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 800px) { .founder__grid { grid-template-columns: 360px 1fr; gap: 64px; } }
.founder__photo img { border-radius: var(--radius); width: min(360px, 100%); }
.role { font-weight: 700; color: var(--steel-text); margin-top: -.3em; }
.creds { padding: 0; margin: 0 0 1.2em; list-style: none; display: grid; gap: 8px; }
.creds li { padding-left: 22px; position: relative; }
.creds li::before { content: ""; position: absolute; left: 0; top: .62em; width: 10px; height: 10px; border-radius: 3px; background: var(--gold); }

/* Brief */
.brief { position: relative; background: var(--ivory); }
.brief__img img { width: 100%; height: 220px; object-fit: cover; object-position: left center; }
.brief__wrap { padding-top: 0; padding-bottom: clamp(48px, 8vw, 96px); }
.brief__panel { background: rgba(255,255,255,.96); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); margin-top: -40px; position: relative; box-shadow: 0 16px 50px rgba(48,43,63,.12); }
.brief__panel .eyebrow--gold { color: #8A6A3F; }
.brief h2 em { font-style: normal; }
.by { display: block; font-family: var(--sans); font-size: .95rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--steel-text); margin-top: .5em; }
.topics { padding-left: 1.2em; margin: 0 0 1em; }
.topics li { margin-bottom: 4px; }
.cadence { font-weight: 600; color: var(--plum); }
.form--brief { margin-top: 8px; }
@media (min-width: 1000px) {
  .brief { min-height: 760px; display: flex; align-items: center; }
  .brief__img { position: absolute; inset: 0; }
  .brief__img img { height: 100%; }
  .brief__wrap { display: flex; justify-content: flex-end; padding-top: 72px; padding-bottom: 72px; }
  .brief__panel { width: 560px; margin-top: 0; }
}

/* Thank-you page */
.brief--page { min-height: 100vh; }
.thanks__logo { width: 180px; margin: 0 0 18px -6px; }
.thanks__done { font-weight: 700; color: #2F5D3A; margin-bottom: 1.2em; }
.brief--page h1 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.brief--page h1 em { font-style: normal; }
.thanks__skip { margin: 18px 0 0; font-size: .95rem; }
.brief > .wrap > .brief__panel > .btn { margin-top: 4px; }

/* Founding */
.founding { background: var(--ivory); padding: 0 0 clamp(56px, 9vw, 100px); }
.founding__inner { border-top: 1px solid var(--line); padding-top: clamp(40px, 6vw, 64px); max-width: 820px; }
.founding h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }

/* Footer */
.footer { background: var(--plum); color: var(--ivory); padding: 56px 0 40px; }
.footer a { color: var(--ivory); }
.footer a:hover { color: var(--gold); }
.footer__logo { width: 220px; margin-left: -6px; margin-bottom: 8px; }
.footer__desc { font-weight: 600; letter-spacing: .02em; }
.footer__legal { font-size: .9rem; opacity: .85; margin: 24px 0 0; }

/* Privacy page */
.page { padding: 40px 0 80px; }
.page .wrap { max-width: 780px; }
.page h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page h2 { font-size: 1.45rem; margin-top: 1.6em; }
.page__logo { width: 200px; margin: 0 0 32px -6px; }
