:root {
  --paper: #f3efe6;
  --paper-deep: #e8e0d2;
  --ink: #17201d;
  --ink-soft: #46504c;
  --cream: #fffdf7;
  --orange: #ef6a3a;
  --orange-dark: #cf4e22;
  --mint: #cbded1;
  --sand: #dcc9a8;
  --line: rgba(23, 32, 29, 0.14);
  --line-light: rgba(255, 253, 247, 0.18);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --weight-regular: 400;
  --weight-medium: 550;
  --weight-semibold: 650;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --max-width: 1240px;
  --header-height: 80px;
  --z-header: 100;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a, button { touch-action: manipulation; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
svg { display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

.skip-link {
  position: fixed;
  z-index: calc(var(--z-header) + 1);
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  background: rgba(243, 239, 230, 0.92);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark, .mini-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
}

.brand-mark { width: 32px; height: 32px; }
.brand-mark svg { width: 20px; height: 20px; }

.brand-mark path, .mini-mark path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-nav { display: flex; align-items: center; gap: 34px; }

.desktop-nav a, .footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color 150ms ease;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.header-cta svg, .button svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms var(--ease-out);
}

.header-cta path, .button path {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button, .mobile-nav { display: none; }

.hero {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 88px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.86fr);
  align-items: center;
  gap: clamp(56px, 8vw, 116px);
}

.eyebrow, .section-label {
  margin-bottom: 24px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 9px; }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(239, 106, 58, 0.14);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: clamp(56px, 6.2vw, 88px);
  font-weight: var(--weight-regular);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms var(--ease-out);
}

.button-primary { background: var(--ink); color: var(--cream); }

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.portfolio-visual {
  min-height: 570px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 4px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(23, 32, 29, 0.17), 0 0 0 1px rgba(23, 32, 29, 0.12);
  user-select: none;
}

.visual-topbar, .visual-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  color: rgba(255, 253, 247, 0.66);
  font-size: 11px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-topbar {
  min-height: 58px;
  justify-content: space-between;
  padding: 0 22px;
  box-shadow: 0 1px 0 var(--line-light);
}

.live-label { display: flex; align-items: center; gap: 7px; }

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fc59b;
  box-shadow: 0 0 0 4px rgba(143, 197, 155, 0.13);
}

.orbit-field {
  position: relative;
  min-height: 450px;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255, 253, 247, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 260px; height: 260px; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; }

.center-node {
  width: 142px;
  height: 142px;
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.mini-mark { width: 34px; height: 34px; margin-bottom: 8px; }
.mini-mark svg { width: 21px; height: 21px; }

.center-node strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: var(--weight-regular);
}

.center-node small {
  margin-top: 1px;
  color: #68716e;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-node {
  min-width: 104px;
  min-height: 48px;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border-radius: 2px;
  background: #2a3430;
  box-shadow: 0 0 0 1px rgba(255, 253, 247, 0.14), 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-node span {
  color: #d1a769;
  font-size: 9px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.product-node strong { font-size: 11px; font-weight: var(--weight-medium); }
.node-one { top: 14%; left: 8%; }
.node-two { top: 18%; right: 5%; }
.node-three { right: 7%; bottom: 12%; }
.node-four { bottom: 16%; left: 5%; }

.visual-footer {
  min-height: 54px;
  justify-content: space-around;
  box-shadow: 0 -1px 0 var(--line-light);
}

.visual-footer span { display: flex; align-items: center; gap: 8px; }

.visual-footer span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.5);
}

.capability-bar {
  margin-top: 84px;
  display: grid;
  grid-template-columns: 0.8fr 3.2fr;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  box-shadow: 0 -1px 0 var(--line), 0 1px 0 var(--line);
}

.capability-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-bar ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
}

.capability-bar li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: var(--weight-medium);
}

.capability-bar li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 144px 0;
}

.section-heading {
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
}

.section-heading h2, .process-intro h2, .company-copy h2, .trust-copy h2, .contact-inner h2 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.1vw, 68px);
  font-weight: var(--weight-regular);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p, .process-intro > p:last-child, .company-copy > p, .trust-details p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.portfolio-card {
  min-height: 450px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(23, 32, 29, 0.08);
}

.card-sand { background: var(--sand); }
.card-mint { background: var(--mint); }
.card-ink { background: var(--ink); color: var(--cream); }

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.58);
}

.card-icon svg { width: 24px; height: 24px; }

.card-icon path, .card-icon rect, .card-icon circle {
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-ink .card-icon { background: rgba(255, 253, 247, 0.1); }

.card-number {
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.66;
}

.portfolio-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.portfolio-card p:not(.card-number) {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.72;
}

.card-tag {
  width: max-content;
  padding: 7px 10px;
  border-radius: 2px;
  background: rgba(255, 253, 247, 0.34);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card-ink .card-tag { background: rgba(255, 253, 247, 0.09); }

.portfolio-note {
  max-width: 650px;
  margin: 28px 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
  font-style: italic;
  text-align: right;
}

.process-section {
  width: 100%;
  max-width: none;
  padding: 140px max(24px, calc((100% - var(--max-width)) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 10vw, 160px);
  background: var(--ink);
  color: var(--cream);
}

.section-label-light { color: #e4a05d; }
.process-intro { align-self: start; }
.process-intro h2 { max-width: 560px; margin-bottom: 30px; }

.process-intro > p:last-child {
  max-width: 490px;
  color: rgba(255, 253, 247, 0.64);
}

.process-list { margin: 0; padding: 0; list-style: none; }

.process-list li {
  min-height: 150px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  box-shadow: 0 -1px 0 var(--line-light);
}

.process-list li:last-child { box-shadow: 0 -1px 0 var(--line-light), 0 1px 0 var(--line-light); }

.process-number {
  color: #e4a05d;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.process-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.62);
  font-size: 14px;
}

.principles-heading { margin-bottom: 64px; }
.principles-heading > p { max-width: 370px; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  box-shadow: 0 0 0 1px var(--line);
}

.principles-grid article {
  min-height: 290px;
  padding: 36px;
  box-shadow: inset -1px -1px 0 var(--line);
}

.principle-glyph {
  width: 42px;
  height: 42px;
  margin-bottom: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-family: var(--font-serif);
  font-size: 21px;
}

.principles-grid h3 {
  margin-bottom: 9px;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.025em;
}

.principles-grid p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.company-section {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(64px, 12vw, 180px);
}

.company-copy h2 { max-width: 650px; margin-bottom: 38px; }
.company-copy > p { max-width: 650px; }

.company-copy .company-lede {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
}

.company-facts { margin: 40px 0 0; }

.company-facts > dl {
  margin: 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  box-shadow: 0 -1px 0 var(--line);
}

.company-facts > dl:last-child { box-shadow: 0 -1px 0 var(--line), 0 1px 0 var(--line); }

.company-facts dt {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.company-facts dd { margin: 0; font-size: 14px; font-weight: var(--weight-medium); }
.company-facts a { overflow-wrap: anywhere; text-underline-offset: 4px; }

.trust-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 12vw, 180px);
}

.trust-copy h2 { font-size: clamp(38px, 4.5vw, 58px); }

.trust-details article { padding: 26px 0; box-shadow: 0 -1px 0 var(--line); }
.trust-details article:last-child { box-shadow: 0 -1px 0 var(--line), 0 1px 0 var(--line); }

.trust-details h3 {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: var(--weight-regular);
}

.trust-details p { font-size: 14px; }

.contact-section { padding: 0 24px 24px; }

.contact-inner {
  width: min(100%, 1440px);
  min-height: 430px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 72px;
  background: var(--orange);
  color: var(--ink);
}

.contact-inner .section-label-light { color: rgba(23, 32, 29, 0.65); }

.contact-action p {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: 15px;
}

.button-light { background: var(--cream); color: var(--ink); }

.site-footer { padding: 80px max(24px, calc((100% - var(--max-width)) / 2)) 34px; }

.footer-top {
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-top p {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: 27px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: right;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 -1px 0 var(--line);
}

.footer-bottom p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.footer-bottom nav { display: flex; align-items: center; gap: 28px; }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover, .footer-bottom a:hover { color: var(--orange-dark); }
  .header-cta:hover svg, .button:hover svg { transform: translateX(3px); }
  .button-primary:hover { background: #29332f; }
  .button-light:hover { background: #f3ebdc; }
  .text-link:hover { color: var(--ink); }
}

.button:active { transform: scale(0.98); }

@media (max-width: 980px) {
  :root { --header-height: 72px; }

  .nav-shell {
    width: min(calc(100% - 36px), var(--max-width));
    grid-template-columns: 1fr auto;
  }

  .desktop-nav, .header-cta { display: none; }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    position: relative;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-button span {
    width: 22px;
    height: 1.5px;
    position: absolute;
    background: currentColor;
    transition: transform 180ms var(--ease-out);
  }

  .menu-button span:first-child { transform: translateY(-4px); }
  .menu-button span:last-child { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .mobile-nav {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 36px 18px max(36px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    background: var(--paper);
    box-shadow: 0 -1px 0 var(--line);
  }

  .mobile-nav[hidden] { display: none; }

  .mobile-nav a {
    min-height: 66px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 0 var(--line);
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    margin-top: auto;
    justify-content: center;
    border-radius: 3px;
    background: var(--ink);
    color: var(--cream);
    box-shadow: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: var(--weight-semibold);
  }

  .hero { padding-top: 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .portfolio-visual { min-height: 560px; }
  .capability-bar { grid-template-columns: 1fr; }
  .capability-bar ul { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card { min-height: 370px; }

  .process-section, .company-section, .trust-section, .contact-inner {
    grid-template-columns: 1fr;
  }

  .process-section { gap: 72px; }
  .company-section { padding-top: 24px; }
  .company-facts { margin-top: 0; }
  .contact-inner { min-height: 500px; align-content: space-between; }
}

@media (max-width: 680px) {
  .hero, .section { width: min(calc(100% - 36px), var(--max-width)); }
  .hero { padding-top: 52px; }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(48px, 14.3vw, 68px);
  }

  .hero-intro { font-size: 16px; }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button { width: 100%; }
  .text-link { justify-content: center; }
  .portfolio-visual { min-height: 480px; }
  .visual-topbar { font-size: 9px; }
  .orbit-field { min-height: 370px; }
  .orbit-one { width: 220px; height: 220px; }
  .orbit-two { width: 340px; height: 340px; }
  .center-node { width: 124px; height: 124px; }

  .product-node {
    min-width: 88px;
    min-height: 42px;
    padding: 0 9px;
  }

  .product-node strong { font-size: 10px; }
  .node-one { top: 8%; left: 3%; }
  .node-two { top: 12%; right: 2%; }
  .node-three { right: 3%; bottom: 8%; }
  .node-four { bottom: 12%; left: 2%; }
  .visual-footer span:nth-child(2) { display: none; }
  .capability-bar { margin-top: 58px; }

  .capability-bar ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section { padding: 98px 0; }

  .section-heading {
    margin-bottom: 48px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .section-heading h2, .process-intro h2, .company-copy h2, .trust-copy h2, .contact-inner h2 {
    font-size: clamp(41px, 12vw, 56px);
  }

  .portfolio-card { min-height: 390px; padding: 24px; }
  .portfolio-note { text-align: left; }

  .process-section {
    padding: 96px 18px;
    gap: 58px;
  }

  .process-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article { min-height: 280px; padding: 28px; }
  .principle-glyph { margin-bottom: 50px; }
  .company-section, .trust-section { gap: 60px; }
  .company-facts > dl { grid-template-columns: 1fr; gap: 7px; }
  .contact-section { padding: 0 10px 10px; }

  .contact-inner {
    min-height: 520px;
    padding: 48px 26px;
    gap: 64px;
  }

  .site-footer { padding-top: 68px; }

  .footer-top {
    min-height: 240px;
    flex-direction: column;
  }

  .footer-top p { align-self: flex-end; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .footer-bottom nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .skip-link, .header-cta svg, .button, .button svg, .menu-button span {
    transition: none;
  }
}
