/* ---------- Self-hosted fonts (latin subset only) ---------- */

/* Inter 300 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/inter-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter 400 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter 500 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Space Grotesk 400 - latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/space-grotesk-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Space Grotesk 500 - latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/space-grotesk-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Space Grotesk 600 - latin */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/space-grotesk-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */

:root {
  --bg: #06091a;
  --bg-deep: #04060f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --ink: #e8eaf2;
  --ink-muted: rgba(232, 234, 242, 0.7);
  --ink-ghost: rgba(232, 234, 242, 0.4);
  --accent: #5be2c8;
  --hairline: rgba(232, 234, 242, 0.1);

  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  --max: 1240px;
  --gutter: clamp(24px, 5vw, 56px);
}

/* ---------- Reset ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(232, 234, 242, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

button { font: inherit; }

/* ---------- Layout primitives ---------- */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1.1em; color: var(--ink-muted); }
p:last-child { margin-bottom: 0; }

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, transparent 0 49%, var(--accent) 49% 51%, transparent 51% 100%);
  transform: rotate(0deg);
}

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

.nav a {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 96px;
  overflow: hidden;
  background-color: var(--bg-deep);
}

.hero-image {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(6, 9, 26, 0.4) 0%, rgba(6, 9, 26, 0.65) 50%, rgba(6, 9, 26, 0.98) 100%),
    url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=2400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}

.hero h1 .accent {
  color: var(--accent);
  font-weight: 400;
}

.hero .lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 0 40px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
}

.hero-cta:hover { color: var(--accent); }

.hero-cta::after {
  content: "→";
  font-size: 16px;
  letter-spacing: 0;
  color: var(--accent);
}

/* ---------- Sections ---------- */

section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--hairline);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: start;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-body { max-width: 720px; }

.section-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  font-weight: 300;
}

/* ---------- Capability list (Capability list) ---------- */

.capabilities {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.capability {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-index {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

.capability-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.capability-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  font-weight: 300;
  margin: 0;
}

/* ---------- About page facts panel ---------- */

.about-shell { padding: clamp(160px, 18vw, 220px) 0 clamp(64px, 8vw, 96px); }

.about-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-intro h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
}

.about-body {
  max-width: 720px;
  margin: 64px auto 0;
}

.about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 1.5em;
}

.facts {
  margin: clamp(64px, 10vw, 120px) auto 0;
  max-width: 720px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.fact {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}

.fact:last-child { border-bottom: none; }

.fact-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  padding-top: 4px;
}

.fact-value {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
}

.fact-value a { color: var(--accent); border-bottom: 1px solid var(--hairline); }
.fact-value a:hover { border-color: var(--accent); }

/* ---------- Contact page ---------- */

.contact-shell { padding: clamp(160px, 18vw, 220px) 0 clamp(64px, 8vw, 96px); }

.contact-head {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.contact-head h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
}

.contact-head .lede {
  font-size: 17px;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 32px;
}

.meta-card {
  border: 1px solid var(--hairline);
  background: var(--bg-card);
  padding: 36px;
}

.meta-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--ink-ghost);
}

.meta-row { padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.meta-row:first-child { padding-top: 0; }

.meta-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  display: block;
  margin-bottom: 8px;
}

.meta-value { font-size: 15px; line-height: 1.55; color: var(--ink); }
.meta-value a { color: var(--accent); }
.meta-value a:hover { opacity: 0.8; }

/* ---------- Map placeholder ---------- */

.map-wrap {
  margin-top: clamp(64px, 8vw, 96px);
  border: 1px solid var(--hairline);
  background: var(--bg-card);
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 32px;
  background-image: radial-gradient(rgba(232, 234, 242, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-placeholder p {
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 460px;
  margin: 0;
}

.map-load-btn {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.map-load-btn:hover {
  background: var(--accent);
  color: var(--bg-deep);
}

.map-frame { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Form ---------- */

.form-card { margin-top: clamp(64px, 8vw, 96px); }

.form-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--ink-ghost);
}

.form-row { margin-bottom: 28px; }

.form-row label {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin-bottom: 10px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 160ms ease;
}

.form-row input:focus,
.form-row textarea:focus { border-bottom-color: var(--accent); }

.form-row textarea { resize: vertical; min-height: 140px; }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 28px 0 32px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.form-consent input { margin-top: 4px; accent-color: var(--accent); }

.form-submit {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg-deep);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.form-submit:hover { background: transparent; color: var(--accent); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-status {
  margin-top: 20px;
  font-size: 13px;
  font-family: var(--display);
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  min-height: 1.4em;
}

.form-status.is-error { color: #f0a3a3; }
.form-status.is-success { color: var(--accent); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(64px, 8vw, 96px) 0 32px;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 64px;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin: 0 0 20px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  font-weight: 300;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: var(--ink-muted); }
.footer-col a:hover { color: var(--accent); }

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

.legal-strip nav { display: flex; flex-wrap: wrap; gap: 24px; }
.legal-strip a { color: var(--ink-ghost); }
.legal-strip a:hover { color: var(--accent); }
.legal-strip button {
  background: transparent;
  border: 0;
  color: var(--ink-ghost);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
}
.legal-strip button:hover { color: var(--accent); }

/* ---------- Cookie banner ---------- */

.cc-banner {
  position: fixed;
  left: 24px; right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: var(--bg-deep);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  max-width: 720px;
  margin: 0 auto;
  display: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.cc-banner.is-visible { display: block; }

.cc-banner h4 {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
}

.cc-banner p {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.cc-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cc-btn {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 160ms ease;
}

.cc-btn:hover { border-color: var(--accent); color: var(--accent); }

.cc-btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
}

.cc-btn--primary:hover { background: transparent; color: var(--accent); }

.cc-customise {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.cc-customise.is-visible { display: block; }

.cc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-muted);
}

.cc-row input { margin-top: 3px; accent-color: var(--accent); }
.cc-row strong { color: var(--ink); font-weight: 500; font-family: var(--display); font-size: 12px; letter-spacing: 0.08em; }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; }
  .capabilities { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .fact { grid-template-columns: 1fr; gap: 6px; }
  .nav { gap: 18px; }
  .nav a { font-size: 12px; }
  .legal-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
}
/* ============================================================
   Mobile polish pass — 2026-05-28
   Appended after the original cascade so these rules win on
   equal specificity. Targets: iOS zoom, touch targets, safe area,
   reduced motion, narrow-screen layout fixes.
   ============================================================ */

/* iOS won't zoom on focus when input font-size is >= 16px */
.form-row input,
.form-row textarea {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* iOS Safari: stop zoom on double-tap, smoother momentum scroll */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
}

/* Bigger, fluid base font for small screens too — was hardcoded 16px */
body { font-size: clamp(15.5px, 0.4vw + 14.5px, 16px); }

/* Make all interactive elements meet 44px touch target */
.hero-cta,
.form-submit,
.cc-btn,
.map-load-btn,
.nav a,
.legal-strip button,
.legal-strip nav a,
.footer-col a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}
.footer-col li a { min-height: auto; }
.legal-strip nav a, .legal-strip button { min-height: 32px; }

/* Header sticky + condensed on scroll feels native on mobile */
.site-header { padding-block: 18px; }

/* iOS safe area for the notch / dynamic island */
@supports (padding: max(0px)) {
  .wrap {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
  .cc-banner {
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* ---------- ≤768 px: tablet portrait & large phones ---------- */
@media (max-width: 768px) {
  :root { --gutter: clamp(20px, 5vw, 32px); }

  section { padding: clamp(56px, 14vw, 96px) 0; }

  .hero {
    min-height: 78vh;
    padding-block: 110px 56px;
  }
  .hero h1 { font-size: clamp(2.1rem, 8.6vw, 3rem); line-height: 1.06; }
  .hero .lede { font-size: 15.5px; max-width: 100%; }
  .hero-cta { font-size: 12px; }

  .section-head { gap: 24px; margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(1.7rem, 6.4vw, 2.3rem); line-height: 1.12; }
  .section-body p { font-size: 15.5px; line-height: 1.7; }

  .capabilities { margin-top: 40px; }
  .capability { padding: 28px 22px; gap: 10px; }
  .capability-title { font-size: 17px; }
  .capability-desc { font-size: 13.5px; line-height: 1.6; }

  /* About facts */
  .about-intro h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .about-body p { font-size: 15.5px; }
  .facts { gap: 0; }

  /* Contact */
  .contact-shell { padding: clamp(96px, 18vw, 140px) 0 64px; }
  .contact-head h1 { font-size: clamp(1.85rem, 7.4vw, 2.5rem); line-height: 1.12; }
  .contact-head .lede { font-size: 15.5px; }
  .form-card { margin-top: 48px; }
  .form-card h3 { font-size: 1.05rem; }
  .form-row { margin-bottom: 22px; }
  .form-row label { font-size: 11px; }
  .form-row textarea { min-height: 120px; }
  .form-submit { width: 100%; padding: 17px 24px; justify-content: center; }
  .form-consent { font-size: 13px; margin: 24px 0; }
  .form-consent input { width: 18px; height: 18px; flex-shrink: 0; }

  /* Footer */
  .site-footer { padding-block: 56px 28px; }
  .footer-grid { gap: 32px; margin-bottom: 40px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col p, .footer-col li, .footer-col a { font-size: 14px; }
  .legal-strip { padding-top: 24px; gap: 18px; align-items: flex-start; }
  .legal-strip nav { gap: 16px; }

  /* Cookie banner — buttons stack & fill */
  .cc-banner { padding: 22px 22px calc(22px + env(safe-area-inset-bottom)); border-left-width: 3px; }
  .cc-banner h4 { font-size: 12px; }
  .cc-banner p { font-size: 13px; }
  .cc-actions { width: 100%; gap: 10px; }
  .cc-actions .cc-btn { flex: 1; min-width: 0; padding: 13px 14px; text-align: center; justify-content: center; }
  .cc-actions .cc-btn:nth-child(3) { flex-basis: 100%; }

  /* Map placeholder */
  .map-placeholder { gap: 16px; padding: 24px; }
  .map-placeholder p { font-size: 13px; }
  .map-load-btn { padding: 14px 22px; font-size: 12px; }

  /* Nav: keep horizontal, tighten */
  .nav { gap: 16px; }
  .nav a { font-size: 12px; }
  .brand { font-size: 16px; }
}

/* ---------- ≤480 px: standard phones ---------- */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .hero { padding-block: 96px 44px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); }

  .capabilities { grid-template-columns: 1fr; }
  .capability { padding: 24px 18px; }
  .capability-index { font-size: 10px; }

  section { padding: clamp(48px, 16vw, 80px) 0; }

  .contact-shell { padding-top: 86px; }
  .form-row input, .form-row textarea { padding: 14px 0; }

  .cc-actions .cc-btn { padding: 13px 10px; font-size: 10.5px; letter-spacing: 0.16em; }

  .footer-col p, .footer-col li, .footer-col a { font-size: 13.5px; }
  .legal-strip { font-size: 10.5px; letter-spacing: 0.14em; }
  .legal-strip nav { gap: 14px; }

  /* About facts — make sure dt/dd stack nicely */
  .facts .fact { padding: 18px 0; }
  .fact-label { font-size: 10px; }
  .fact-value { font-size: 14px; }
}

/* ---------- ≤360 px: small phones / older devices ---------- */
@media (max-width: 360px) {
  :root { --gutter: 14px; }
  .hero h1 { font-size: clamp(1.7rem, 9.5vw, 2rem); }
  .section-head h2 { font-size: 1.55rem; }
  .brand { font-size: 15px; }
  .nav { gap: 14px; }
  .nav a { font-size: 11px; }
}

/* ---------- Landscape phones: limit hero height ---------- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 92vh; padding-block: 80px 32px; }
  .hero h1 { font-size: 1.9rem; }
  .hero .lede { font-size: 14px; }
}

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

/* ---------- Higher contrast / forced colors ---------- */
@media (prefers-contrast: more) {
  :root {
    --ink-muted: rgba(232, 234, 242, 0.92);
    --ink-ghost: rgba(232, 234, 242, 0.72);
    --hairline: rgba(232, 234, 242, 0.35);
  }
}

/* ---------- Print: don't waste ink on backgrounds ---------- */
@media print {
  body, .hero, .site-footer { background: #fff !important; color: #000 !important; }
  .hero-image, .cc-banner, .map-placeholder { display: none !important; }
}
