@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

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

:root {
  --navy-950: #07192b;
  --navy-900: #0a2540;
  --navy-800: #103552;
  --blue-600: #1478c9;
  --blue-500: #2494e3;
  --blue-100: #dceefa;
  --paper: #f8f7f3;
  --white: #ffffff;
  --ink: #102235;
  --muted: #5f6e7a;
  --line: #d9e1e7;
  --shadow: 0 24px 70px rgb(7 25 43 / 14%);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.08; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 5vw, 4.65rem); letter-spacing: -0.055em; }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 130px 0; overflow: hidden; }
.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: 20px; top: -60px; z-index: 1000; padding: 12px 18px;
  color: white; background: var(--navy-950); transition: top .2s;
}
.skip-link:focus { top: 20px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  color: var(--blue-600); font: 700 .75rem/1 "Manrope", sans-serif;
  letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; background: currentColor; content: ""; }
.lead { color: var(--ink); font-size: 1.25rem; line-height: 1.55; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 94px; color: white;
  border-bottom: 1px solid rgb(255 255 255 / 18%); transition: .35s ease;
}
.site-header.is-scrolled {
  height: 76px; color: var(--ink); background: rgb(248 247 243 / 94%);
  border-bottom-color: rgb(16 34 53 / 10%); box-shadow: 0 10px 30px rgb(7 25 43 / 8%);
  backdrop-filter: blur(16px);
}
.nav-shell { width: var(--shell); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: grid; width: 195px; aspect-ratio: 3351 / 1310; padding: 2px 5px;
  place-items: center; background: rgb(255 255 255 / 94%);
  transition: width .35s ease;
}
.brand img { width: 100%; height: auto; max-height: 100%; object-fit: contain; }
.site-header.is-scrolled .brand { width: 175px; }
.site-nav { display: flex; align-items: center; gap: 34px; font-weight: 600; font-size: .9rem; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--blue-500);
  content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 19px; border: 1px solid currentColor; transition: .25s; }
.nav-cta:hover { color: white; border-color: var(--blue-600); background: var(--blue-600); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .25s; }

.hero { position: relative; min-height: 760px; height: 100svh; color: white; display: grid; align-items: center; overflow: hidden; background: var(--navy-950); }
.hero-media { position: absolute; inset: 0; background: url("assets/photos/photo-1.webp") center/cover no-repeat; animation: heroIn 1.4s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(4 17 31 / 92%) 0%, rgb(5 24 42 / 72%) 47%, rgb(5 24 42 / 12%) 78%), linear-gradient(0deg, rgb(5 20 34 / 60%), transparent 45%); }
.hero-linework { position: absolute; inset: 0 0 0 55%; opacity: .12; background: url("assets/blueprints/blueprint-1.webp") center/cover; mix-blend-mode: screen; mask-image: linear-gradient(90deg, transparent, black); }
.hero-content { position: relative; z-index: 1; padding-top: 70px; }
.hero-eyebrow { color: #8fd0ff; }
.hero h1 { max-width: 970px; margin-bottom: 26px; font-size: clamp(3.25rem, 7.2vw, 6.8rem); letter-spacing: -0.065em; }
.hero h1 em { color: #9dd8ff; font-style: normal; }
.hero-copy { max-width: 665px; margin-bottom: 38px; color: rgb(255 255 255 / 80%); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; cursor: pointer; font-weight: 700; font-size: .9rem; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue-600); }
.button-primary:hover { background: var(--blue-500); }
.button-ghost { color: white; border-color: rgb(255 255 255 / 45%); background: rgb(255 255 255 / 6%); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: white; background: rgb(255 255 255 / 14%); }
.button-dark { color: white; background: var(--navy-950); }
.scroll-cue { position: absolute; right: 4vw; bottom: 40px; z-index: 2; display: flex; align-items: center; gap: 16px; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue i { width: 60px; height: 1px; background: currentColor; animation: linePulse 1.8s infinite; }

.trust-strip { position: relative; z-index: 3; margin-top: -1px; color: white; background: var(--navy-950); }
.trust-grid { display: grid; grid-template-columns: .8fr .9fr 1.65fr; }
.trust-item { min-height: 128px; padding: 28px 40px; border-left: 1px solid rgb(255 255 255 / 13%); display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 18px; }
.trust-item:last-child { border-right: 1px solid rgb(255 255 255 / 13%); }
.trust-item strong { color: #8fd0ff; font: 800 2.8rem/1 "Manrope", sans-serif; }
.trust-item span { max-width: 120px; font-size: .82rem; line-height: 1.35; }
.trust-item small { grid-column: 2; margin-top: -26px; color: rgb(255 255 255 / 48%); font-size: .67rem; letter-spacing: .04em; }

.about-section { background: var(--paper); }
.blueprint-wash { position: absolute; pointer-events: none; opacity: .08; background-size: cover; mix-blend-mode: multiply; }
.blueprint-wash-one { top: -50px; right: -20%; width: 65%; height: 520px; background-image: url("assets/blueprints/blueprint-2.webp"); mask-image: linear-gradient(135deg, transparent 5%, black, transparent 75%); }
.about-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-visual::before { position: absolute; z-index: -1; top: -28px; left: -28px; width: 56%; height: 58%; border: 1px solid var(--blue-600); content: ""; }
.about-visual img { width: 100%; min-height: 580px; object-fit: cover; box-shadow: var(--shadow); }
.experience-badge { position: absolute; right: -40px; bottom: -34px; width: 190px; min-height: 155px; padding: 28px; color: white; background: var(--blue-600); box-shadow: 0 18px 40px rgb(20 120 201 / 25%); }
.experience-badge strong { display: block; font: 800 2.4rem/1 "Manrope", sans-serif; }
.experience-badge span { display: block; margin-top: 12px; font-size: .72rem; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.about-copy .lead { color: var(--ink); }
.principles { margin: 36px 0 30px; border-block: 1px solid var(--line); }
.principles div { display: flex; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.principles div:last-child { border-bottom: 0; }
.principles span { color: var(--blue-600); font: 700 .75rem "Manrope", sans-serif; }
.principles strong { font-family: "Manrope", sans-serif; }
.text-link { display: inline-flex; align-items: center; gap: 32px; padding-bottom: 5px; border-bottom: 1px solid var(--blue-600); color: var(--navy-900); font-weight: 700; }
.text-link span { color: var(--blue-600); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.services-section { background: white; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; margin-bottom: 62px; }
.section-heading h2 { max-width: 750px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); }
.service-switcher { display: flex; width: fit-content; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.service-tab { position: relative; padding: 16px 28px; border: 0; color: var(--muted); background: transparent; cursor: pointer; font-weight: 700; }
.service-tab::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--blue-600); content: ""; transform: scaleX(0); transition: .25s; }
.service-tab.is-active { color: var(--navy-900); }
.service-tab.is-active::after { transform: scaleX(1); }
.service-panel { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 550px; border: 1px solid var(--line); }
.service-panel[hidden] { display: none; }
.service-feature { position: relative; overflow: hidden; color: white; background: var(--navy-900); }
.service-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .53; }
.service-feature::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgb(7 25 43 / 88%), rgb(7 25 43 / 5%)); content: ""; }
.service-feature > div:last-child { position: absolute; right: 50px; bottom: 45px; left: 50px; z-index: 2; }
.service-feature h3 { margin-bottom: 16px; font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -.04em; }
.service-feature p { margin-bottom: 0; color: rgb(255 255 255 / 72%); }
.service-number { display: block; margin-bottom: 17px; color: #8fd0ff; font: 700 .75rem "Manrope", sans-serif; letter-spacing: .14em; }
.design-feature { min-height: 550px; }
.design-blueprint { position: absolute; inset: 0; background: linear-gradient(0deg, rgb(7 25 43 / 88%), rgb(7 25 43 / 18%)), url("assets/blueprints/blueprint-3.webp") center/cover; }
.service-lists { display: grid; grid-template-columns: 1fr 1fr; }
.service-list-card { padding: 55px 36px; border-right: 1px solid var(--line); }
.service-list-card:last-child { border-right: 0; }
.service-icon { width: 70px; height: 70px; margin-bottom: 34px; }
.service-list-card h3 { margin-bottom: 25px; font-size: 1.45rem; }
.service-list-card ul { padding: 0; margin: 0; list-style: none; color: var(--muted); }
.service-list-card li { position: relative; padding: 11px 0 11px 20px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.service-list-card li::before { position: absolute; left: 0; color: var(--blue-600); content: "+"; }

.work-section { color: white; background: var(--navy-950); }
.section-heading.light .eyebrow { color: #8fd0ff; }
.section-heading.light > p { color: rgb(255 255 255 / 58%); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 310px; gap: 16px; }
.project { position: relative; padding: 0; overflow: hidden; border: 0; cursor: zoom-in; text-align: left; background: #0d2a45; }
.project-tall { grid-row: span 2; }
.project-wide { grid-column: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, opacity .35s; }
.project::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgb(4 15 27 / 80%), transparent 62%); content: ""; }
.project > span { position: absolute; right: 25px; bottom: 23px; left: 25px; z-index: 2; font: 700 1.05rem "Manrope", sans-serif; transform: translateY(9px); transition: transform .3s; }
.project small { display: block; margin-bottom: 8px; color: #8fd0ff; font: 700 .63rem "Manrope", sans-serif; letter-spacing: .16em; text-transform: uppercase; opacity: 0; transition: opacity .3s; }
.project:hover img { transform: scale(1.045); opacity: .8; }
.project:hover > span { transform: none; }
.project:hover small { opacity: 1; }
.project-note { margin: 20px 0 0; color: rgb(255 255 255 / 38%); font-size: .72rem; text-align: right; }

.process-section { padding-bottom: 320px; background: #eef3f6; }
.process-blueprint { position: absolute; top: 0; right: 0; width: 48%; height: 100%; opacity: .11; background: url("assets/blueprints/blueprint-4.webp") center/cover; mix-blend-mode: multiply; mask-image: linear-gradient(90deg, transparent, black); }
.process-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 120px; }
.process-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 36px; color: var(--muted); }
.process-steps { padding: 0; margin: 0; list-style: none; counter-reset: steps; }
.process-steps li { display: grid; grid-template-columns: 78px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid #cbd7df; }
.process-steps li:first-child { padding-top: 0; }
.process-steps span { color: var(--blue-600); font: 800 1.2rem "Manrope", sans-serif; }
.process-steps strong { font: 700 1.35rem "Manrope", sans-serif; }
.process-steps p { margin: 7px 0 0; color: var(--muted); }
.site-team { position: absolute; right: 0; bottom: 0; left: max(20px, calc((100vw - 1180px) / 2)); height: 260px; overflow: hidden; box-shadow: var(--shadow); }
.site-team img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }

.story-section { background: var(--paper); }
.blueprint-wash-two { right: -10%; bottom: -10%; width: 55%; height: 520px; background-image: url("assets/blueprints/blueprint-5.webp"); mask-image: linear-gradient(140deg, transparent, black, transparent); }
.story-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; }
.story-title h2 { max-width: 540px; }
.story-copy { position: relative; padding-left: 55px; }
.quote-mark { width: 52px; margin-bottom: 25px; }
.story-copy p { color: var(--muted); font-size: 1.04rem; }
.story-copy blockquote { margin: 34px 0; padding: 24px 0 24px 28px; border-left: 3px solid var(--blue-600); color: var(--navy-900); font: 700 1.75rem/1.35 "Manrope", sans-serif; letter-spacing: -.025em; }

.contact-section { position: relative; padding: 125px 0; overflow: hidden; color: white; background: var(--navy-900); }
.contact-blueprint { position: absolute; inset: 0 50% 0 0; opacity: .14; background: url("assets/blueprints/blueprint-5.webp") center/cover; mix-blend-mode: screen; mask-image: linear-gradient(90deg, black, transparent); }
.contact-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.contact-intro .eyebrow { color: #8fd0ff; }
.contact-intro h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.contact-intro > p:not(.eyebrow) { color: rgb(255 255 255 / 62%); }
.contact-points { display: grid; gap: 11px; margin-top: 35px; font-size: .92rem; }
.contact-points i { display: inline-grid; width: 22px; height: 22px; margin-right: 9px; place-items: center; color: var(--navy-900); border-radius: 50%; background: #8fd0ff; font-style: normal; font-size: .7rem; }
.contact-form { padding: 42px; color: var(--ink); background: white; box-shadow: 0 30px 70px rgb(0 0 0 / 18%); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: var(--navy-900); font-size: .76rem; font-weight: 700; letter-spacing: .03em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0; color: var(--ink); background: #fbfcfd; }
.contact-form input, .contact-form select { height: 50px; padding: 0 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgb(20 120 201 / 12%); }
.form-submit { width: 100%; margin-top: 5px; border: 0; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-height: 65px; margin: 4px 0 14px; }
.form-note { margin: 12px 0 0; color: #85909a; font-size: .7rem; text-align: center; }
.form-status { min-height: 1.4em; margin: 8px 0 0; color: var(--blue-600); font-size: .8rem; font-weight: 700; text-align: center; }

.site-footer { position: relative; overflow: hidden; padding: 80px 0 0; color: white; background: var(--navy-950); }
.footer-blueprint { position: absolute; inset: 0 0 0 60%; opacity: .06; background: url("assets/blueprints/blueprint-1.webp") center/cover; mix-blend-mode: screen; }
.footer-grid { position: relative; display: grid; grid-template-columns: 2fr .7fr 1fr 1.1fr; gap: 70px; padding-bottom: 70px; }
.footer-brand { display: block; width: 310px; max-width: 100%; padding: 12px; overflow: hidden; background: white; }
.footer-brand img { width: 100%; }
.footer-grid > div:first-child p { max-width: 400px; margin: 20px 0 0; color: rgb(255 255 255 / 47%); }
.footer-grid h3 { margin-bottom: 20px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) > a:not(.text-link) { display: block; margin: 10px 0; color: rgb(255 255 255 / 53%); font-size: .86rem; }
.footer-grid > div:not(:first-child) > a:hover { color: white; }
.light-link { color: white; border-color: #8fd0ff; }
.light-link span { color: #8fd0ff; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgb(255 255 255 / 10%); color: rgb(255 255 255 / 38%); font-size: .72rem; }

.lightbox { width: min(1100px, calc(100% - 30px)); max-height: 90vh; padding: 0; overflow: visible; border: 0; color: white; background: transparent; }
.lightbox::backdrop { background: rgb(4 15 27 / 92%); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; box-shadow: 0 20px 70px rgb(0 0 0 / 45%); }
.lightbox p { margin: 12px 0 0; text-align: center; }
.lightbox-close { position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border: 1px solid rgb(255 255 255 / 40%); border-radius: 50%; color: white; background: transparent; cursor: pointer; font-size: 1.6rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes heroIn { from { opacity: .25; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes linePulse { 50% { transform: scaleX(.45); opacity: .4; } }

@media (max-width: 980px) {
  .site-header, .site-header.is-scrolled { height: 74px; }
  .brand, .site-header.is-scrolled .brand { width: 160px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 74px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px 20px; color: var(--ink); background: var(--paper); transform: translateX(100%); visibility: hidden; transition: .3s; }
  .site-nav.is-open { transform: none; visibility: visible; }
  .site-nav a { padding: 17px 5px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .site-nav .nav-cta { margin-top: 18px; color: white; text-align: center; background: var(--blue-600); }
  .hero { height: auto; min-height: 760px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-wide { grid-column: span 2; }
  .about-grid, .process-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { width: 90%; }
  .about-visual img { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-panel { grid-template-columns: 1fr; }
  .service-feature { min-height: 500px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-wide { grid-column: auto; }
  .process-section { padding-bottom: 290px; }
  .site-team { left: 20px; }
  .story-copy { padding-left: 0; }
  .contact-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 90px 0; }
  h2 { font-size: 2.55rem; }
  .brand, .site-header.is-scrolled .brand { width: 145px; }
  .hero { min-height: 720px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-wide { grid-column: auto; padding: 22px 18px; border-right: 1px solid rgb(255 255 255 / 13%); }
  .about-visual { width: calc(100% - 22px); }
  .about-visual img { min-height: 420px; }
  .experience-badge { right: -22px; width: 165px; }
  .service-switcher { width: 100%; }
  .service-tab { flex: 1; padding-inline: 10px; }
  .service-feature, .design-feature { min-height: 430px; }
  .service-feature > div:last-child { right: 26px; bottom: 30px; left: 26px; }
  .service-lists { grid-template-columns: 1fr; }
  .service-list-card { padding: 38px 26px; border-right: 0; border-bottom: 1px solid var(--line); }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .project-tall { grid-row: auto; }
  .project-note { text-align: left; }
  .process-section { padding-bottom: 250px; }
  .process-steps li { grid-template-columns: 52px 1fr; gap: 10px; }
  .site-team { left: 16px; height: 220px; }
  .story-copy blockquote { font-size: 1.45rem; }
  .contact-section { padding: 90px 0; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-grid > div:first-child, .footer-cta { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@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; transform: none; }
}
