@font-face {
  font-family: "Prata";
  src: url("assets/fonts/prata-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-ext-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-ext-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --sage: #959987;
  --sage-light: #b2b6a4;
  --ivory: #f7f4ee;
  --paper: #fcfbf8;
  --ink: #292b27;
  --ink-soft: #55584f;
  --line: rgba(41, 43, 39, 0.18);
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 40px));
  --serif: "Prata", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.2em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #5d624f; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: clamp(5.5rem, 10vw, 9rem) 0; }
.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: 1rem; top: 1rem; z-index: 1000;
  transform: translateY(-180%); background: var(--ink); color: white;
  padding: 0.75rem 1rem; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(252, 251, 248, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(15px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(41,43,39,.05); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: 10.4rem; display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.03em; white-space: nowrap; }
.brand-title { width: 100%; margin-top: .4rem; color: var(--ink-soft); font-size: .72rem; letter-spacing: .17em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2rem); font-size: .88rem; }
.main-nav a { position: relative; text-decoration: none; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -.4rem; height: 1px;
  background: var(--ink); transition: right 180ms ease;
}
.main-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: .72rem 1.15rem; background: var(--sage); color: var(--ink); border: 1px solid var(--sage); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 7px; }
.menu-toggle { position: relative; z-index: 120; }
.menu-toggle .menu-line { display: block; width: 21px; height: 1px; background: var(--ink); transition: transform 180ms ease; }

.hero { min-height: 100svh; padding-top: 82px; background: linear-gradient(90deg, var(--ivory) 0%, var(--ivory) 43%, #f3f1f2 76%, #f3f1f2 100%); overflow: hidden; }
.hero-grid { min-height: calc(100svh - 82px); display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(350px, .86fr); align-items: center; gap: clamp(2rem, 4vw, 5rem); }
.hero-copy { padding: clamp(3.5rem, 7vh, 5.5rem) 0; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1.5rem; font-size: .86rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #4b4f46; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: 1.08; }
h1 { max-width: 760px; font-size: clamp(3rem, 5.15vw, 5.35rem); }
h1 em { display: block; color: #6b705f; font-style: normal; }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.8rem); }
h3 { margin: 0; font-size: 1.05rem; line-height: 1.35; }
.hero-text { max-width: 650px; margin-top: 1.8rem; color: var(--ink-soft); }
.hero-text p { margin: .85rem 0 0; }
.hero-text .hero-lead { margin-top: 0; color: var(--ink); font-size: 1.05rem; }
.launch-copy { margin: 1.8rem 0 0; color: var(--ink-soft); font-size: 1.05rem; font-weight: 700; }
.hero-actions { margin-top: .9rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: .82rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius); font-weight: 700; text-decoration: none; cursor: pointer; transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--sage); border-color: var(--sage); }
.button-primary:hover { background: var(--sage-light); border-color: var(--ink); }
.button-secondary { color: var(--ink); background: transparent; border-color: var(--sage); }
.button-secondary:hover { background: var(--sage-light); border-color: var(--ink); }
.button-arrow { width: .85rem; height: .85rem; margin-left: .45rem; flex: none; overflow: visible; }
.button-arrow path { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: square; stroke-linejoin: miter; }
.button-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.text-link { font-weight: 700; text-decoration-thickness: 1px; }
.text-link span { display: inline-block; margin-left: .3rem; transition: transform 150ms ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.portrait-stage { position: relative; align-self: stretch; min-height: calc(100svh - 82px); display: flex; align-items: flex-end; justify-content: center; background: transparent; }
.portrait-stage picture, .portrait-stage img { display: block; width: 100%; height: calc(100svh - 82px); }
.portrait-stage picture { -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 100%); mask-image: linear-gradient(to right, transparent, #000 12%, #000 100%); }
.portrait-stage img { object-fit: contain; object-position: center bottom; }

.about { background: var(--ivory); }
.about.section-pad { padding: clamp(2.5rem, 4vw, 4rem) 0; }
.about-grid { display: grid; grid-template-columns: .25fr 1.75fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.about-mark { width: 132px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-size: 2.8rem; color: #6b705f; }
.about-copy h2 { margin-bottom: 1.5rem; font-size: clamp(2.65rem, 4vw, 4rem); }
.about-copy h2 span { color: #6b705f; }
.about-copy p { color: var(--ink-soft); font-size: 1rem; line-height: 1.58; text-align: justify; text-justify: inter-word; hyphens: auto; }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 4vw, 3.75rem); }
.about-body p:first-child { margin-top: 0; }

.for-you { background: var(--ink); color: var(--paper); }
.for-you.section-pad { padding: clamp(3.75rem, 6vw, 5.75rem) 0; }
.for-you-heading { max-width: 900px; }
.for-you-heading h2 { max-width: 820px; font-size: clamp(2.65rem, 4vw, 4.25rem); }
.for-you-intro,
.for-you-subtitle { max-width: 650px; color: rgba(252, 251, 248, .76); font-size: 1rem; line-height: 1.6; }
.for-you-intro { margin: 1.5rem 0 0; }
.for-you-subtitle { margin: .35rem 0 0; color: var(--sage-light); font-weight: 400; }
.for-you-list { margin-top: 2.75rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(252, 251, 248, .28); border-bottom: 1px solid rgba(252, 251, 248, .28); }
.for-you-list article { min-height: 250px; padding: clamp(1.5rem, 2.5vw, 2.25rem); border-right: 1px solid rgba(252, 251, 248, .28); display: grid; grid-template-rows: 4.25rem 8rem; align-content: center; }
.for-you-list article:first-child { border-left: 1px solid rgba(252, 251, 248, .28); }
.for-you-list h3 { display: flex; align-items: center; color: var(--paper); font-size: 1rem; letter-spacing: .045em; text-transform: uppercase; }
.for-you-list p { margin: .75rem 0 0; color: rgba(252, 251, 248, .72); font-size: 1rem; line-height: 1.6; text-align: justify; text-justify: inter-word; hyphens: auto; }
.support-note { max-width: 900px; margin: 2rem 0 0; padding-left: 1rem; border-left: 3px solid var(--sage-light); color: rgba(252, 251, 248, .72); font-size: 1rem; }
blockquote { margin: 0; padding: 1.5rem 0 0; border-top: 1px solid var(--ink); font-family: var(--serif); font-size: 1.25rem; line-height: 1.55; color: #5c604f; }
blockquote p { margin: 0; }

.forms-section { background: var(--paper); }
.signup-shell { max-width: 1180px; }
.forms-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); }
.form-card { padding: clamp(2.5rem, 6vw, 5rem); background: var(--white); }
.form-card-newsletter { scroll-margin-top: 110px; background: var(--sage-light); border: 1px solid var(--line); }
.form-card-contact { scroll-margin-top: 110px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-left: 0; background: var(--ivory); }
.form-card-contact .button { align-self: flex-start; }
.form-heading h2 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
.form-heading > p:last-child { max-width: 610px; margin: 1.2rem 0 2.3rem; color: var(--ink-soft); }
form { display: grid; gap: 1.25rem; }
.signup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.honeypot { position: absolute; left: -9999px; }
.field { display: grid; gap: .45rem; }
.field label, fieldset legend { font-weight: 700; font-size: .88rem; }
.field label span, fieldset legend span { font-weight: 400; color: var(--ink-soft); }
input[type="text"], input[type="email"], select, textarea {
  width: 100%; border: 1px solid rgba(41,43,39,.4); border-radius: 0;
  background: rgba(252,251,248,.62); color: var(--ink); padding: .82rem .9rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input[type="text"], input[type="email"], select { min-height: 50px; }
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(41,43,39,.12); }
.check-row { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.check-row input { width: 1.1rem; height: 1.1rem; margin: .22rem 0 0; accent-color: var(--ink); }
.consent-row { max-width: 680px; margin: .15rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(41,43,39,.2); color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }
form .button { justify-self: start; margin-top: .25rem; }
.form-footnote { margin: -.5rem 0 0; color: var(--ink-soft); font-size: .76rem; }
.form-error { margin: 0; color: #7a3e2e; font-size: .82rem; }
.form-success { padding: 1.4rem 0 0; border-top: 1px solid rgba(41,43,39,.2); }
.form-success:focus { outline: none; }
.form-success[hidden], .form-error[hidden] { display: none; }
.form-success > span { width: 3rem; aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 1.2rem; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 1.3rem; }
.form-success h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; }
.form-success p { max-width: 560px; margin: .75rem 0 0; color: var(--ink-soft); }

.site-footer { scroll-margin-top: 92px; padding: 4rem 0 2rem; background: var(--ink); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .55fr; gap: 3rem; align-items: start; }
.brand-footer { color: var(--paper); }
.brand-footer .brand-title { color: var(--sage-light); }
.footer-disclaimer { max-width: 520px; margin: 1.5rem 0 0; color: rgba(252,251,248,.6); font-size: .82rem; }
.footer-links { display: grid; gap: .55rem; font-size: .86rem; }
.footer-links a, .footer-links button { width: fit-content; color: rgba(252,251,248,.78); background: none; border: 0; padding: 0; text-decoration: underline; text-decoration-color: transparent; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--paper); text-decoration-color: currentColor; }
.copyright { margin: 0; color: rgba(252,251,248,.55); font-size: .78rem; text-align: right; }

.consent-banner {
  position: fixed; z-index: 300; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 920px; margin-inline: auto; padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper); border: 1px solid var(--ink); box-shadow: 0 22px 80px rgba(20,22,19,.24);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem;
}
.consent-banner[hidden] { display: none; }
.consent-kicker { margin: 0 0 .4rem; color: #656a59; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.consent-banner h2 { font-size: 1.55rem; letter-spacing: -.02em; }
.consent-banner p:not(.consent-kicker) { max-width: 630px; margin: .7rem 0 0; font-size: .86rem; color: var(--ink-soft); }
.consent-actions { display: flex; gap: .65rem; }
.consent-actions .button { min-height: 46px; }

.legal-page { background: var(--ivory); }
.simple-header { position: static; border-bottom: 1px solid var(--line); }
.legal-main { padding: clamp(4rem, 8vw, 7rem) 0; }
.legal-shell { max-width: 840px; }
.legal-main h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.legal-intro { margin: 2rem 0 3rem; padding: 1rem 1.2rem; background: #eee2c4; border-left: 4px solid #7d6840; }
.legal-main h2 { margin: 3rem 0 1rem; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.02em; }
.legal-main h3 { margin-top: 1.8rem; }
.legal-main p, .legal-main li { color: var(--ink-soft); }
.placeholder { color: #7a3e2e; font-weight: 700; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.legal-table th, .legal-table td { padding: .85rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { width: 32%; background: rgba(178,182,164,.25); }

.thank-you-page { min-height: 100svh; display: grid; place-items: center; background: var(--ivory); padding: 2rem; }
.thank-you-card { width: min(700px, 100%); padding: clamp(2.5rem, 7vw, 5rem); background: var(--paper); border: 1px solid var(--line); text-align: center; }
.thank-you-mark { width: 74px; aspect-ratio: 1; display: grid; place-items: center; margin: 0 auto 2rem; border-radius: 50%; background: var(--sage); font-size: 1.7rem; }
.thank-you-card h1 { font-size: clamp(2.5rem, 7vw, 4.7rem); }
.thank-you-card p { max-width: 520px; margin: 1.5rem auto 2rem; color: var(--ink-soft); }

@media (max-width: 980px) {
  .main-nav { gap: .9rem; }
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 1rem; }
  h1 { font-size: clamp(3.1rem, 7vw, 5rem); }
  .about-grid { grid-template-columns: .3fr 1.7fr; }
  .footer-grid { grid-template-columns: 1fr .5fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 650px); }
  html { scroll-padding-top: 74px; }
  .header-inner { min-height: 72px; }
  .site-header { background: var(--paper); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] .menu-line-one { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-line-two { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 72px 0 0; z-index: 110; display: none; flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: 0; overflow-y: auto;
    padding: 2rem max(20px, calc((100vw - 650px) / 2)); background: var(--paper);
  }
  .main-nav.open { display: flex; }
  .main-nav a { flex: none; padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.4rem; line-height: 1.35; }
  .main-nav .nav-cta { margin-top: 1rem; padding: 1rem; border: 1px solid var(--ink); text-align: center; font-family: var(--sans); font-size: .95rem; }
  .hero { padding-top: 72px; }
  .hero { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory) 54%, #f3f1f2 74%, #f3f1f2 100%); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 4rem 0 1rem; }
  h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .hero-text .hero-lead { font-size: 1.03rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .portrait-stage { min-height: 540px; max-height: 690px; }
  .portrait-stage picture, .portrait-stage img { height: 100%; }
  .portrait-stage picture { -webkit-mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 100%); mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 100%); }
  .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-mark { width: 110px; font-size: 2.4rem; }
  .about-body { grid-template-columns: 1fr; }
  .about-copy p { text-align: left; hyphens: manual; }
  .for-you-list { margin-top: 2.5rem; grid-template-columns: 1fr; }
  .for-you-list article { min-height: 0; padding: 1.75rem 1.4rem; border-left: 1px solid rgba(252, 251, 248, .28); border-top: 1px solid rgba(252, 251, 248, .28); grid-template-rows: auto auto; align-content: start; }
  .for-you-list article:first-child { border-top: 0; }
  .for-you-list p { text-align: left; hyphens: manual; }
  .forms-grid { grid-template-columns: 1fr; }
  .signup-fields { grid-template-columns: 1fr; }
  .form-card-newsletter, .form-card-contact { scroll-margin-top: 86px; }
  .form-card-contact { border-top: 0; border-left: 1px solid var(--line); }
  .form-card { padding: 2rem 1.25rem; }
  .site-footer { padding-bottom: 2rem; }
  .copyright { grid-column: auto; }
  .consent-banner { grid-template-columns: 1fr; align-items: start; gap: 1.1rem; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; }
  .legal-table th { width: 100%; border-bottom: 0; }
}

@media (max-width: 430px) {
  .button { width: 100%; }
  .text-link { margin-top: .2rem; }
  .portrait-stage { min-height: 500px; }
  .consent-actions { grid-template-columns: 1fr; }
}

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