/* ─── PrimeLogic — static stylesheet ─────────────────────────────────── */

:root {
  --ink:      #0d1b2a;
  --navy:     #13284a;
  --navy2:    #1a3766;
  --rule:     rgba(13,27,42,0.12);
  --rule-dk:  rgba(255,255,255,0.14);
  --ivory:    #f6f2ea;
  --ivory2:   #ede7db;
  --paper:    #fbf9f4;
  --muted:    #5a6677;
  --accent:   #c9a24a;

  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans:  Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --pad-x: 48px;
  --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

/* ─── Shared bits ─────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow--brass { color: var(--accent); display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
.eyebrow--brass .eyebrow__tick { display: inline-block; width: 28px; height: 1px; background: var(--accent); }
.eyebrow--dim { color: rgba(246,242,234,0.55); margin-bottom: 28px; }

.h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 0 0 40px;
  font-weight: 400;
  max-width: 860px;
  text-wrap: pretty;
}
.h2 em { font-style: italic; color: var(--navy2); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary-ivory {
  background: var(--ivory); color: var(--ink);
  box-shadow: 0 1px 0 var(--accent) inset, 0 12px 30px rgba(0,0,0,0.35);
}
.btn--ghost-dark {
  color: var(--ivory); border-color: var(--rule-dk);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn--primary-light {
  background: var(--ivory); color: var(--ink);
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px; padding: 10px 16px;
}
.btn--ghost-light {
  color: var(--ivory); border-color: var(--rule-dk);
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px; padding: 10px 16px;
}

/* ─── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,244,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.nav__mark { width: 28px; height: 28px; flex: none; }
.nav__wordmark { font-family: var(--serif); font-size: 19px; letter-spacing: -0.2px; font-weight: 500; }
.nav__tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1px; color: var(--muted);
  text-transform: uppercase; padding-left: 12px; margin-left: 4px;
  border-left: 1px solid var(--rule);
}
.nav__links { display: flex; gap: 32px; font-size: 14px; }
.nav__links a { text-decoration: none; padding: 4px 0; position: relative; }
.nav__links a:hover { color: var(--navy2); }
.nav__cta {
  font-size: 13px; font-weight: 500; padding: 10px 20px;
  background: var(--ink); color: var(--ivory); text-decoration: none; border-radius: 2px;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--navy2); }

.nav__toggle {
  display: none; background: none; border: none; padding: 8px;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 120px max(var(--pad-x), calc(50% - var(--max-w) / 2)) 110px;
  color: var(--ivory);
  background: radial-gradient(ellipse at 85% 15%, var(--navy2) 0%, var(--navy) 45%, var(--ink) 100%);
  border-bottom: 1px solid var(--rule-dk);
}
.hero__bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 75%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 75%, transparent 100%);
  pointer-events: none;
}
.hero__glow-brass {
  position: absolute; top: -120px; right: -140px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,162,74,0.28) 0%, transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.hero__glow-navy {
  position: absolute; bottom: -160px; left: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,55,102,0.55) 0%, transparent 65%);
  filter: blur(14px); pointer-events: none;
}
.hero__ruler {
  position: absolute; left: max(var(--pad-x), calc(50% - var(--max-w) / 2)); right: max(var(--pad-x), calc(50% - var(--max-w) / 2)); top: 0; height: 1px;
  background: var(--rule-dk);
}
.hero__ruler span {
  position: absolute; top: 0; width: 1px; height: 6px; background: var(--rule-dk);
}
.hero__ruler span:nth-child(1)  { left: 0%; }
.hero__ruler span:nth-child(2)  { left: 8.33%; }
.hero__ruler span:nth-child(3)  { left: 16.66%; }
.hero__ruler span:nth-child(4)  { left: 25%; }
.hero__ruler span:nth-child(5)  { left: 33.33%; }
.hero__ruler span:nth-child(6)  { left: 41.66%; }
.hero__ruler span:nth-child(7)  { left: 50%; }
.hero__ruler span:nth-child(8)  { left: 58.33%; }
.hero__ruler span:nth-child(9)  { left: 66.66%; }
.hero__ruler span:nth-child(10) { left: 75%; }
.hero__ruler span:nth-child(11) { left: 83.33%; }
.hero__ruler span:nth-child(12) { left: 91.66%; }
.hero__ruler span:nth-child(13) { left: 100%; }

.hero__content { position: relative; max-width: 1000px; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.98; letter-spacing: -2.6px;
  margin: 0 0 32px; color: var(--ivory);
}
.hero__title-em {
  font-style: italic;
  background: linear-gradient(90deg, var(--ivory), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__lede {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5; max-width: 620px; margin: 0 0 44px;
  color: rgba(246,242,234,0.78);
}
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__meta {
  margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--rule-dk);
  display: flex; gap: 48px; font-family: var(--mono); font-size: 11px;
  color: rgba(246,242,234,0.65); letter-spacing: 1px; line-height: 1.8;
  flex-wrap: wrap;
}

/* ─── Client marquee ──────────────────────────────────────────────── */
.client-marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0; background: var(--ivory); overflow: hidden;
}
.client-marquee__track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: plmarquee 40s linear infinite;
  width: max-content;
}
.client-marquee__track span {
  font-family: var(--mono); font-size: 13px; letter-spacing: 3px;
  color: var(--muted); font-weight: 500;
}
@keyframes plmarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section scaffolding ─────────────────────────────────────────── */
/* Full-width sections cap their inner content to --max-w. We do this
   by using calc-based horizontal padding so the visual content sits in
   a centered band but section backgrounds (ivory, ink) still bleed
   edge-to-edge. */
.section {
  padding: 120px max(var(--pad-x), calc(50% - var(--max-w) / 2));
  border-bottom: 1px solid var(--rule);
}
.section--ivory { background: var(--ivory); }
.section--about {
  padding: 120px max(var(--pad-x), calc(50% - var(--max-w) / 2));
  display: grid; grid-template-columns: 220px 1fr; gap: 72px;
  border-bottom: 1px solid var(--rule);
}
.section__gutter { }
.section__header {
  display: grid; grid-template-columns: 220px 1fr; gap: 72px;
  margin-bottom: 64px;
}

.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; font-size: 16px; line-height: 1.7; }
.about__cols p { margin: 0; }

/* ─── Stats ────────────────────────────────────────────────────────── */
.stats {
  background: var(--ink); color: var(--ivory);
  padding: 88px max(var(--pad-x), calc(50% - var(--max-w) / 2));
}
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  border-top: 1px solid var(--rule-dk);
  padding-top: 48px;
}
.stat { padding-left: 24px; border-left: 1px solid var(--rule-dk); }
.stat:first-child { padding-left: 0; border-left: none; }
.stat__num {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 88px);
  line-height: 1; letter-spacing: -2px; font-weight: 400;
}
.stat__label { font-size: 13px; opacity: 0.7; margin-top: 14px; max-width: 200px; }

/* ─── Services ─────────────────────────────────────────────────────── */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.svc-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 24px; min-height: 340px;
}
.svc-card:last-child { border-right: none; }
.svc-card__row { display: flex; justify-content: space-between; align-items: baseline; }
.svc-card__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 2px; }
.svc-card__tag { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1.5px; }
.svc-card__title {
  font-family: var(--serif); font-size: 30px; margin: 0;
  line-height: 1.1; font-weight: 500; letter-spacing: -0.5px;
}
.svc-card__body { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.svc-card__list {
  margin: auto 0 0; padding: 0; list-style: none; font-size: 13px;
  border-top: 1px dashed var(--rule); padding-top: 16px;
}
.svc-card__list li { padding: 6px 0; display: flex; gap: 10px; }
.svc-card__list span { color: var(--accent); }

/* ─── Process ──────────────────────────────────────────────────────── */
.process__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin: 0; padding: 0; list-style: none;
}
.process__step {
  position: relative;
  padding: 28px 24px 28px 20px;
  border-left: 1px solid var(--rule);
}
.process__step::before {
  content: ""; position: absolute; left: -5px; top: 30px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink);
}
.process__step--first::before { background: var(--accent); }
.process__label { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 2px; margin-bottom: 20px; }
.process__title { font-family: var(--serif); font-size: 26px; margin: 0 0 10px; font-weight: 500; letter-spacing: -0.4px; }
.process__body { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ─── Why ──────────────────────────────────────────────────────────── */
.why__wrap { display: grid; grid-template-columns: 220px 1fr; gap: 72px; }
.why__body .h2 { margin-bottom: 56px; }
.why__row {
  display: grid; grid-template-columns: 60px 1fr 1fr; gap: 40px;
  padding: 32px 0; border-top: 1px solid var(--rule);
  align-items: start;
}
.why__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 2px; }
.why__title { font-family: var(--serif); font-size: 28px; margin: 0; font-weight: 500; letter-spacing: -0.4px; line-height: 1.15; }
.why__copy { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ─── Founder ──────────────────────────────────────────────────────── */
.founder {
  padding: 120px max(var(--pad-x), calc(50% - var(--max-w) / 2));
  background: var(--ink); color: var(--ivory);
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.founder__title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04; letter-spacing: -1.5px; margin: 0 0 28px; font-weight: 400;
  text-wrap: pretty;
}
.founder__lede { font-size: 17px; line-height: 1.65; opacity: 0.82; max-width: 520px; margin: 0 0 36px; }
.founder__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.founder__photos { position: relative; min-height: 620px; padding: 20px 0; }
.polaroid {
  position: absolute; margin: 0;
  border: 6px solid var(--ivory); background: var(--ivory);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}
.polaroid img { width: 100%; height: auto; object-fit: contain; }
.polaroid figcaption {
  padding: 10px 14px 4px; display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: var(--muted);
}
.polaroid--back  { top: 0; left: 2%; width: 62%; transform: rotate(-5deg); }
.polaroid--front { bottom: 0; right: 2%; width: 58%; transform: rotate(4deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08); }

/* ─── Quotes ───────────────────────────────────────────────────────── */
.quotes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.quote {
  padding: 44px 32px 40px; margin: 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 24px;
}
.quote:last-child { border-right: none; }
.quote__mark { font-family: var(--serif); font-size: 36px; color: var(--accent); line-height: 0; margin-top: 14px; }
.quote blockquote {
  margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.35;
  font-weight: 400; letter-spacing: -0.3px;
}
.quote figcaption { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 1.5px; margin-top: auto; }

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq__wrap { display: grid; grid-template-columns: 220px 1fr; gap: 72px; }
.faq__list { }
.faq__item {
  border-top: 1px solid var(--rule);
}
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > span:first-child {
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500; letter-spacing: -0.3px;
}
.faq__plus {
  font-family: var(--mono); font-size: 14px; color: var(--accent);
  transition: transform .18s ease;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__item p {
  font-size: 16px; color: var(--muted); line-height: 1.65;
  margin: 0 0 26px; max-width: 680px;
}

/* ─── Contact ──────────────────────────────────────────────────────── */
.contact {
  padding: 120px max(var(--pad-x), calc(50% - var(--max-w) / 2));
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  background: var(--ivory);
}
.contact__title {
  font-family: var(--serif); font-size: clamp(44px, 7vw, 72px);
  line-height: 1; letter-spacing: -2px; margin: 28px 0 32px; font-weight: 400;
}
.contact__lede { font-size: 17px; color: var(--muted); margin: 0 0 48px; max-width: 460px; line-height: 1.6; }
.contact__list { border-top: 1px solid var(--rule); }
.contact__row {
  display: grid; grid-template-columns: 120px 1fr 24px;
  padding: 20px 0; border-bottom: 1px solid var(--rule);
  text-decoration: none; font-size: 17px; align-items: center;
  transition: background .15s ease;
}
.contact__row:hover { background: rgba(13,27,42,0.03); }
.contact__label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; color: var(--muted); }
.contact__value { font-family: var(--serif); font-size: 22px; }
.contact__arrow { font-family: var(--mono); color: var(--accent); }

.intake {
  background: var(--paper); border: 1px solid var(--rule); padding: 40px;
  align-self: start;
}
.intake__eyebrow { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 2px; margin-bottom: 24px; }
.intake__field { display: block; margin-bottom: 20px; }
.intake__field > span {
  display: block; font-family: var(--mono); font-size: 10px; color: var(--muted);
  letter-spacing: 1.5px; margin-bottom: 6px;
}
.intake__field input,
.intake__field select,
.intake__field textarea {
  width: 100%; padding: 12px 0; border: none;
  border-bottom: 1px solid var(--rule); background: transparent;
  font-family: inherit; font-size: 16px; color: var(--ink); outline: none;
  resize: vertical;
  border-radius: 0;
}
.intake__field input:focus,
.intake__field select:focus,
.intake__field textarea:focus { border-bottom-color: var(--ink); }
.intake__submit {
  margin-top: 16px; width: 100%; background: var(--ink); color: var(--ivory);
  padding: 16px 20px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; border-radius: 2px; letter-spacing: 0.3px;
  transition: background .15s ease;
}
.intake__submit:hover { background: var(--navy2); }
.intake__thanks { padding: 40px 0; text-align: center; }
.intake__thanks-title { font-family: var(--serif); font-size: 32px; margin-bottom: 12px; }
.intake__thanks-sub { color: var(--muted); font-size: 15px; }

/* ─── Footer ───────────────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--ivory); padding: 64px max(var(--pad-x), calc(50% - var(--max-w) / 2)) 40px; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 72px; gap: 48px; flex-wrap: wrap;
}
.footer__brand { max-width: 320px; }
.footer__mark { width: 40px; height: 40px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer__wordmark { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 14px; display: none; }
.footer__brand p { font-size: 14px; max-width: 280px; opacity: 0.6; margin: 0; line-height: 1.55; }
.footer__cols { display: grid; grid-template-columns: repeat(3, auto); gap: 64px; font-size: 13px; }
.footer__col-h { font-family: var(--mono); font-size: 10px; opacity: 0.55; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer__cols div > div { padding: 4px 0; opacity: 0.85; }
.footer__bottom {
  border-top: 1px solid var(--rule-dk); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; opacity: 0.55; letter-spacing: 1px;
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; }
  .section__header,
  .section--about,
  .why__wrap,
  .faq__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .stat:nth-child(3) { padding-left: 0; border-left: none; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(2) { border-right: none; }
  .svc-card:last-child { grid-column: 1 / -1; border-right: none; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__step { border-top: 1px solid var(--rule); padding-top: 36px; }
  .quotes__grid { grid-template-columns: 1fr; }
  .quote { border-right: none; border-bottom: 1px solid var(--rule); }
  .quote:last-child { border-bottom: none; }
  .founder { grid-template-columns: 1fr; }
  .founder__photos { min-height: 520px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --pad-x: 24px; }
  body { font-size: 15px; }
  .section { padding: 80px var(--pad-x); }
  .section--about { padding: 80px var(--pad-x); }
  .founder { padding: 80px var(--pad-x); }
  .contact { padding: 80px var(--pad-x); }
  .stats { padding: 64px var(--pad-x); }

  /* Nav: mobile drawer */
  .nav__tag { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 0 var(--pad-x);
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav__links a { padding: 18px 0; border-bottom: 1px solid var(--rule); width: 100%; }
  .nav__links a:last-child { border-bottom: none; }
  .nav[data-open="true"] .nav__links { max-height: 400px; padding: 8px var(--pad-x) 16px; }

  /* Hero */
  .hero { padding: 72px var(--pad-x) 80px; }
  .hero__title { letter-spacing: -1.4px; }
  .hero__meta { gap: 20px; font-size: 10.5px; }

  /* About */
  .about__cols { grid-template-columns: 1fr; gap: 24px; }

  /* Stats */
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 32px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; min-height: 0; padding: 32px 0; }
  .svc-card:nth-child(2), .svc-card:last-child { grid-column: auto; }

  /* Process */
  .process__grid { grid-template-columns: 1fr; }

  /* Why */
  .why__row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .why__num { font-size: 11px; }

  /* Founder */
  .founder__photos { min-height: 460px; }
  .polaroid--back  { width: 72%; }
  .polaroid--front { width: 66%; }

  /* Contact */
  .contact__row { grid-template-columns: 100px 1fr 20px; padding: 16px 0; }
  .contact__value { font-size: 18px; }
  .intake { padding: 28px; }

  /* Footer */
  .footer { padding: 48px var(--pad-x) 32px; }
  .footer__top { flex-direction: column; margin-bottom: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { font-size: 10px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding-left: 0; border-left: none; }
  .founder__photos { min-height: 380px; }
  .polaroid figcaption { font-size: 9px; }
}

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