:root {
  --ink: #08130d;
  --ink-soft: #12251a;
  --paper: #f2f0e8;
  --paper-strong: #fbfaf5;
  --sand: #d7c7ac;
  --mint: #91c3a0;
  --mint-dark: #316b49;
  --sage: #8ea797;
  --muted: #657067;
  --line: rgba(8, 19, 13, 0.15);
  --line-dark: rgba(242, 240, 232, 0.14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1360px, calc(100vw - 96px));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
h1, h2, h3, p, blockquote, figure { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--mint); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 132px 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: 18px;
  top: 18px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  translate: 0 -160%;
  transition: translate .2s;
}
.skip-link:focus { translate: 0 0; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .015em;
  line-height: 1.35;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.button-primary { background: var(--mint); color: var(--ink); }
.button-primary:hover { background: #a7ceb1; }
.button-quiet { border-color: rgba(242, 240, 232, .3); color: var(--paper); }
.button-quiet:hover { border-color: var(--paper); background: rgba(242, 240, 232, .06); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.is-scrolled {
  background: rgba(8, 19, 13, .92);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 76px; display: flex; align-items: center; gap: 32px; }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand-light { color: var(--paper); font-weight: 400; }
.desktop-nav { display: flex; gap: 4px; margin-left: auto; }
.desktop-nav a {
  padding: 10px 13px;
  color: rgba(242, 240, 232, .68);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--paper); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 17px;
  border: 1px solid rgba(126, 232, 166, .5);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--mint); color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; color: inherit; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 6px 0; background: currentColor; transition: rotate .25s, translate .25s; }
.menu-button[aria-expanded="true"] > span:nth-child(2) { translate: 0 3.5px; rotate: 45deg; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { translate: 0 -3.5px; rotate: -45deg; }
.mobile-nav {
  display: none;
  height: calc(100vh - 76px);
  padding: 32px max(24px, calc((100vw - var(--shell)) / 2));
  flex-direction: column;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  text-decoration: none;
}
.mobile-nav.is-open { display: flex; }

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 76px;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.hero::after { display: none; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, .98fr);
  gap: clamp(50px, 6vw, 110px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 92px 0 82px;
}
.hero-copy { max-width: 730px; }
.hero-eyebrow { color: var(--mint); }
.hero h1 {
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.1vw, 122px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
}
.hero h1 em { color: var(--mint); font-weight: 400; }
.hero-lead { max-width: 650px; margin-bottom: 14px; color: rgba(242, 240, 232, .77); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; }
.hero-support { max-width: 610px; margin-bottom: 38px; color: rgba(242, 240, 232, .48); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-portrait {
  align-self: center;
  margin: 0;
  background: var(--paper);
}
.hero-photo { position: relative; overflow: hidden; background: var(--ink-soft); }
.hero-photo img {
  width: 100%;
  height: clamp(310px, 27vw, 400px);
  object-fit: cover;
  object-position: center;
}
.hero-logo-band { color: var(--ink); background: var(--paper); }
.hero-logo-band > p {
  margin: 0;
  padding: 13px 18px 11px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-logo-grid img {
  width: 100%;
  height: 72px;
  padding: 17px 20px;
  object-fit: contain;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  filter: grayscale(1);
  opacity: .62;
}
.hero-logo-grid img:nth-child(3n) { border-right: 0; }
.hero-logo-grid img:nth-child(n + 4) { border-bottom: 0; }

.section-intro { margin-bottom: 78px; }
.split-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(50px, 9vw, 150px); align-items: end; }
.split-intro h2, .about-heading h2, .trust h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
.split-intro > p { max-width: 500px; margin-bottom: 8px; color: var(--muted); font-size: 17px; }

.recognition { background: var(--paper-strong); }
.signal-list { border-top: 1px solid var(--line); }
.signal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .85fr) minmax(300px, 1fr);
  gap: clamp(35px, 7vw, 110px);
  align-items: start;
  padding: 37px 0;
  border-bottom: 1px solid var(--line);
}
.signal::before { display: none; }
.signal h3 { margin: 0; font-family: var(--serif); font-size: clamp(27px, 2.8vw, 42px); font-weight: 500; letter-spacing: -.025em; line-height: 1.04; }
.signal p { max-width: 580px; margin: 0; color: var(--muted); font-size: 15px; }

.personal-story { background: #dcd0bc; }
.story-grid { display: grid; grid-template-columns: minmax(380px, .92fr) minmax(420px, 1.08fr); gap: clamp(60px, 9vw, 150px); align-items: center; }
.personal-story-kj { background: #d3d9d1; }
.story-grid-reverse { grid-template-columns: minmax(420px, 1.08fr) minmax(380px, .92fr); }
.story-photo { position: relative; margin-bottom: 0; }
.story-photo::before { display: none; }
.story-photo img { position: relative; width: 100%; height: 620px; object-fit: cover; object-position: 48% 50%; filter: saturate(.82) contrast(1.02); }
.story-photo figcaption { position: relative; margin-top: 16px; color: #4f5b52; font-family: var(--serif); font-size: 15px; font-style: italic; }
.story-photo-kj img { object-position: 50% 40%; }
.story-copy .eyebrow { color: var(--mint-dark); }
.story-copy h2 { max-width: 760px; margin-bottom: 34px; font-family: var(--serif); font-size: clamp(48px, 5.5vw, 82px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.story-text { columns: 2; column-gap: 34px; color: #3e493f; }
.story-text p { break-inside: avoid; margin-bottom: 18px; font-size: 15px; }
.story-copy blockquote { margin: 42px 0 0; padding: 24px 0 0 28px; border-top: 1px solid rgba(8,19,13,.25); border-left: 3px solid var(--mint-dark); font-family: var(--serif); font-size: clamp(24px, 2.4vw, 35px); font-style: italic; line-height: 1.22; }

.services { color: var(--paper); background: var(--ink); }
.light-intro .eyebrow { color: var(--mint); }
.light-intro > p { color: rgba(242,240,232,.54); }
.service-list { border-top: 1px solid var(--line-dark); }
.service-item { border-bottom: 1px solid var(--line-dark); }
.service-item summary { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(170px, .45fr) 34px; gap: 24px; align-items: center; padding: 34px 0; cursor: pointer; list-style: none; }
.service-item summary::-webkit-details-marker { display: none; }
.service-number { display: none; }
.service-title { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 52px); font-weight: 500; letter-spacing: -.025em; line-height: 1; }
.service-audience { color: rgba(242,240,232,.52); font-family: var(--serif); font-size: 15px; font-style: italic; font-weight: 400; letter-spacing: 0; text-align: left; }
.service-toggle { position: relative; width: 27px; height: 27px; justify-self: end; }
.service-toggle::before, .service-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 1px; background: var(--mint); translate: -50% -50%; transition: rotate .3s; }
.service-toggle::after { rotate: 90deg; }
.service-item[open] .service-toggle::after { rotate: 0deg; }
.service-body { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(170px, .45fr) 34px; gap: 24px; }
.service-body p { grid-column: 1 / 3; max-width: 760px; margin: -3px 0 36px; color: rgba(242,240,232,.62); font-size: 16px; }

.about { background: var(--paper-strong); }
.about-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(50px, 8vw, 130px); align-items: end; margin-bottom: 80px; }
.about-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -30px; }
.about-heading h2 { max-width: 850px; }
.about-heading > p:last-child { max-width: 530px; margin: 0; color: var(--muted); font-size: 17px; }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--ink); }
.person-card { background: var(--paper); }
.person-photo { height: 560px; overflow: hidden; background: #d7d8d0; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); }
.jos-photo img { object-position: 47% 50%; }
.kj-photo img { object-position: 50% 37%; }
.person-copy { padding: 44px 46px 50px; }
.person-role { margin-bottom: 12px; color: var(--mint-dark); font-family: var(--serif); font-size: 15px; font-style: italic; font-weight: 400; letter-spacing: 0; }
.person-copy h3 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.person-copy > p:not(.person-role) { max-width: 580px; color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 26px 0 30px; padding: 0; list-style: none; }
.tag-list li { padding: 0; border: 0; color: #3f5146; font-size: 12px; font-weight: 600; letter-spacing: 0; }
.tag-list li:not(:last-child)::after { content: "·"; margin-left: 7px; color: var(--mint-dark); }
.text-link { display: inline-flex; gap: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--mint-dark); color: var(--mint-dark); font-size: 13px; font-weight: 700; text-decoration: none; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 70px; margin-top: 48px; border-top: 1px solid var(--line); }
.principles article { padding: 34px 0; border-bottom: 1px solid var(--line); background: transparent; }
.principles span { display: none; }
.principles h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.06; }
.principles p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.method { color: var(--paper); background: #123522; }
.method-grid { display: grid; grid-template-columns: minmax(350px, .8fr) minmax(500px, 1.2fr); gap: clamp(70px, 11vw, 170px); align-items: start; }
.method-heading { position: sticky; top: 125px; }
.method-heading .eyebrow { color: var(--mint); }
.method-heading h2 { margin-bottom: 34px; font-family: var(--serif); font-size: clamp(58px, 7vw, 104px); font-weight: 500; letter-spacing: -.05em; line-height: .82; }
.method-heading h2 em { color: var(--mint); font-weight: 400; }
.method-heading > p:last-child { max-width: 480px; color: rgba(242,240,232,.56); }
.method-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(242,240,232,.2); }
.method-steps li { display: grid; grid-template-columns: 84px 1fr; gap: 25px; padding: 45px 0; border-bottom: 1px solid rgba(242,240,232,.2); }
.method-steps > li > span { color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.method-steps h3 { margin-bottom: 10px; font-family: var(--serif); font-size: clamp(35px, 4vw, 54px); font-weight: 500; line-height: 1; }
.method-steps p { max-width: 540px; margin: 0; color: rgba(242,240,232,.58); }

.trust { padding-bottom: 110px; background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 9vw, 150px); align-items: end; margin-bottom: 0; }
.trust h2 { max-width: 800px; }
.trust-grid > p { margin-bottom: 3px; color: var(--muted); }

.contact { padding: 150px 0; color: var(--paper); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: minmax(380px, .9fr) minmax(480px, 1.1fr); gap: clamp(70px, 10vw, 160px); align-items: start; }
.contact-copy .eyebrow { color: var(--mint); }
.contact-copy h2 { margin-bottom: 32px; font-family: var(--serif); font-size: clamp(52px, 6vw, 86px); font-weight: 500; letter-spacing: -.045em; line-height: .93; }
.contact-copy h2 em { color: var(--mint); font-weight: 400; }
.contact-copy > p { max-width: 580px; color: rgba(242,240,232,.58); font-size: 16px; }
.contact-links { margin: 42px 0; border-top: 1px solid var(--line-dark); }
.contact-links a { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; }
.contact-links span { color: rgba(242,240,232,.44); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { color: var(--mint); font-size: 14px; }
.contact-copy blockquote { margin: 48px 0 0; padding-left: 25px; border-left: 2px solid var(--mint); color: rgba(242,240,232,.72); font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.25; }
.form-panel { padding: 14px 42px 42px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; margin: 0 -42px 38px; padding: 17px 42px; border-bottom: 1px solid var(--line-dark); color: rgba(242,240,232,.42); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 21px; }
.field label { display: block; margin-bottom: 8px; color: rgba(242,240,232,.58); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid rgba(242,240,232,.25); border-radius: 0; padding: 12px 2px; background: transparent; color: var(--paper); outline: none; transition: border-color .2s, background .2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--mint); background: rgba(126,232,166,.035); }
.field textarea { min-height: 120px; resize: vertical; }
.field select { color-scheme: dark; }
.honeypot { position: absolute; left: -9999px; }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 17px 0 0; color: rgba(242,240,232,.35); font-size: 10px; text-align: center; }
.inline-button { border: 0; border-bottom: 1px solid currentColor; padding: 0; background: none; color: inherit; cursor: pointer; }

.site-footer { color: var(--paper); background: #050c08; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; padding: 76px 0 64px; }
.footer-brand { margin-bottom: 22px; font-size: 34px; }
.footer-top > div:first-child p { color: rgba(242,240,232,.4); font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h2 { margin-bottom: 14px; color: rgba(242,240,232,.35); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a, .footer-column button { border: 0; padding: 0; background: none; color: rgba(242,240,232,.68); font-size: 12px; text-decoration: none; cursor: pointer; }
.footer-column a:hover, .footer-column button:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid var(--line-dark); color: rgba(242,240,232,.32); font-size: 10px; letter-spacing: .06em; }
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }

.chat-button { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: inline-flex; align-items: center; gap: 11px; min-height: 48px; border: 1px solid rgba(242,240,232,.3); padding: 11px 17px; background: var(--ink); color: var(--paper); box-shadow: 0 10px 30px rgba(0,0,0,.16); font-size: 12px; font-weight: 600; cursor: pointer; }
.chat-button svg { width: 21px; height: 21px; }
.chat-panel { position: fixed; right: 24px; bottom: 86px; z-index: 95; width: min(410px, calc(100vw - 32px)); height: min(590px, calc(100vh - 120px)); color: var(--paper); background: var(--ink); border: 1px solid var(--line-dark); box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.chat-panel[hidden] { display: none; }
.chat-head { height: 74px; display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line-dark); }
.chat-head > div { display: flex; flex-direction: column; }
.chat-head strong { font-family: var(--serif); font-size: 19px; }
.chat-head span { color: rgba(242,240,232,.52); font-family: var(--serif); font-size: 13px; font-style: italic; }
.chat-head i { display: none; }
.chat-head button { border: 0; background: none; color: var(--paper); font-size: 28px; cursor: pointer; }
.chat-mount { height: calc(100% - 74px); overflow: hidden; }
.chat-mount > zapier-interfaces-chatbot-embed { display: block; width: 100%; height: 100%; }

.legal-dialog { width: min(720px, calc(100vw - 32px)); max-height: min(820px, calc(100vh - 40px)); border: 1px solid rgba(126,232,166,.3); padding: 42px; color: var(--paper); background: var(--ink); box-shadow: 0 30px 120px rgba(0,0,0,.55); }
.legal-dialog::backdrop { background: rgba(1,8,4,.8); backdrop-filter: blur(5px); }
.dialog-head { display: flex; align-items: start; justify-content: space-between; }
.dialog-head .eyebrow { color: var(--mint); }
.dialog-head button { border: 0; background: none; color: var(--paper); font-size: 30px; cursor: pointer; }
.legal-dialog h2 { margin: 12px 0 28px; font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1; }
.legal-dialog h3 { margin: 26px 0 5px; color: var(--mint); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.legal-dialog p { color: rgba(242,240,232,.64); font-size: 14px; }
.legal-dialog a:not(.button) { color: var(--mint); }

.reveal, .reveal.is-visible { opacity: 1; translate: none; transition: none; }

.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: var(--paper); background: var(--ink); }
.thanks-card { width: min(850px, 100%); padding: clamp(38px, 7vw, 80px); border: 1px solid var(--line-dark); background: radial-gradient(circle at 90% 10%, rgba(126,232,166,.13), transparent 30%); }
.thanks-card .brand { margin-bottom: 90px; }
.thanks-card .eyebrow { color: var(--mint); }
.thanks-card h1 { margin-bottom: 30px; font-family: var(--serif); font-size: clamp(56px, 8vw, 100px); font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.thanks-card h1 em { color: var(--mint); font-weight: 400; }
.thanks-card > p:not(.eyebrow) { max-width: 560px; margin-bottom: 34px; color: rgba(242,240,232,.58); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 56px, 1000px); }
  .desktop-nav { display: none; }
  .nav-cta { margin-left: auto; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; padding-top: 120px; }
  .hero-copy { max-width: 850px; }
  .hero-portrait { width: min(850px, 100%); margin-left: auto; }
  .hero-photo img { height: min(50vw, 480px); }
  .signal { grid-template-columns: minmax(220px, .8fr) 1fr; }
  .story-grid { grid-template-columns: .85fr 1.15fr; gap: 60px; }
  .story-grid-reverse { grid-template-columns: 1.15fr .85fr; }
  .story-photo img { height: 550px; }
  .story-text { columns: 1; }
  .principles { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: .8fr 1.2fr; gap: 70px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 40px); }
  .section { padding: 100px 0; }
  .nav-cta { display: none; }
  .hero-grid { min-height: auto; padding: 112px 0 74px; }
  .hero h1 { font-size: clamp(58px, 13vw, 92px); }
  .split-intro, .story-grid, .about-heading, .method-grid, .trust-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-intro { gap: 32px; }
  .signal { grid-template-columns: 1fr; gap: 14px; }
  .signal p { grid-column: auto; }
  .story-grid { gap: 75px; }
  .story-grid-reverse .story-photo { order: -1; }
  .story-photo { width: calc(100% - 18px); }
  .story-photo img { height: 500px; }
  .service-item summary { grid-template-columns: 1fr 30px; gap: 15px; }
  .service-audience { display: none; }
  .service-body { grid-template-columns: 1fr; gap: 15px; }
  .service-body p { grid-column: auto; }
  .about-heading { gap: 30px; }
  .about-heading .eyebrow { margin-bottom: 0; }
  .people-grid { grid-template-columns: 1fr; }
  .method-heading { position: static; }
  .method-grid { gap: 70px; }
  .trust-grid { gap: 35px; }
  .contact-grid { gap: 80px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 82px 0; }
  .nav-shell { min-height: 68px; }
  .brand { font-size: 24px; }
  .hero { padding-top: 68px; }
  .hero-grid { padding-top: 85px; }
  .hero h1 { font-size: 56px; line-height: .92; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-photo img { height: min(56vw, 480px); }
  .split-intro h2, .about-heading h2, .trust h2, .story-copy h2 { font-size: 48px; }
  .signal { padding: 28px 0; }
  .signal:hover { padding-inline: 0; }
  .signal h3 { font-size: 29px; }
  .story-photo img { height: 420px; }
  .story-copy blockquote { padding-left: 20px; font-size: 24px; }
  .service-item summary { padding: 28px 0; }
  .service-title { font-size: 29px; }
  .person-photo { height: 440px; }
  .person-copy { padding: 34px 24px 40px; }
  .principles { grid-template-columns: 1fr; }
  .principles span { margin-bottom: 28px; }
  .method-heading h2 { font-size: 66px; }
  .method-steps li { grid-template-columns: 48px 1fr; padding: 34px 0; }
  .hero-photo img { height: min(64vw, 350px); }
  .hero-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-grid img { height: 70px; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .hero-logo-grid img:nth-child(3n) { border-right: 1px solid var(--line); }
  .hero-logo-grid img:nth-child(2n) { border-right: 0; }
  .hero-logo-grid img:nth-child(n + 4) { border-bottom: 1px solid var(--line); }
  .hero-logo-grid img:nth-child(n + 5) { border-bottom: 0; }
  .contact { padding: 90px 0; }
  .contact-copy h2 { font-size: 50px; }
  .contact-links a { flex-direction: column; gap: 4px; }
  .form-panel { padding: 10px 22px 30px; }
  .form-heading { margin-inline: -22px; padding-inline: 22px; flex-direction: column; gap: 3px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px 30px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .chat-button { right: 16px; bottom: 16px; }
  .chat-button span { display: none; }
  .chat-panel { right: 16px; bottom: 78px; }
  .legal-dialog { padding: 28px 22px; }
  .legal-dialog h2 { font-size: 39px; }
}

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