@import url("https://fonts.googleapis.com/css2?family=Calistoga&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #241529;
  --muted: #6f6172;
  --paper: #fffaf7;
  --surface: #ffffff;
  --blush: #fff0f6;
  --pink: #e93f8e;
  --pink-action: #d92b7c;
  --pink-dark: #b91f67;
  --violet: #8b5cf6;
  --cyan: #087f98;
  --lime: #d9f99d;
  --line: #eadde7;
  --shadow: 0 24px 70px rgb(70 28 64 / 12%);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --container: min(1180px, calc(100% - 40px));
  --font-display: "Calistoga", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

.consent-panel{position:fixed;z-index:1000;inset:auto 18px 18px;display:flex;align-items:flex-end;justify-content:space-between;gap:28px;max-width:920px;margin-inline:auto;padding:24px;border:2px solid var(--ink);border-radius:22px;background:#fff;box-shadow:0 18px 60px rgba(36,21,41,.22)}
.consent-panel[hidden],.privacy-choices[hidden]{display:none}
.consent-panel h2{margin:.15rem 0 .45rem;font-size:clamp(1.5rem,3vw,2.3rem)}
.consent-panel p:not(.eyebrow){max-width:650px;margin:0 0 .45rem;color:var(--muted)}
.consent-panel a{font-weight:800;color:var(--ink)}
.consent-actions{display:flex;flex:0 0 auto;gap:10px}
.privacy-choices{position:fixed;z-index:999;right:14px;bottom:14px;min-height:44px;padding:9px 14px;border:2px solid var(--ink);border-radius:999px;background:#fff;color:var(--ink);font:800 .82rem/1 Inter,sans-serif;box-shadow:0 8px 28px rgba(36,21,41,.16);cursor:pointer}

@media(max-width:700px){.consent-panel{inset:auto 10px 10px;display:block;padding:20px;border-radius:18px}.consent-actions{display:grid;margin-top:16px}.consent-actions .btn{width:100%}.privacy-choices{right:10px;bottom:10px}}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.65 var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { touch-action: manipulation; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  padding: 10px 16px; border-radius: 10px; background: var(--ink); color: #fff;
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.surface { background: var(--surface); }
.blush { background: var(--blush); }
.dark { background: var(--ink); color: #fff; }
.grid { display: grid; gap: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px;
  color: var(--pink-dark); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.dark .eyebrow { color: #f9a8d4; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.03; letter-spacing: -.025em; }
h1 { font-size: clamp(3.35rem, 8.8vw, 7.8rem); }
h2 { font-size: clamp(2.45rem, 5.5vw, 5rem); }
h3 { font-size: clamp(1.4rem, 2.3vw, 2rem); }
.lede { max-width: 650px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.dark .lede, .dark .muted { color: #d8cbd8; }
.accent { color: var(--pink); }
.marker { position: relative; display: inline-block; z-index: 0; }
.marker::after {
  content: ""; position: absolute; left: -.02em; right: -.04em; bottom: .06em; height: .24em;
  border-radius: 99px; background: var(--lime); z-index: -1; transform: rotate(-1.5deg);
}
.dark .marker::after { background: var(--pink); }

.btn {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border: 1px solid transparent; border-radius: 999px;
  background: var(--ink); color: #fff; text-decoration: none; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgb(36 21 41 / 18%); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pink-action); }
.btn-primary:hover { background: var(--pink-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-ghost:hover { background: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.arrow { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgb(255 250 247 / 88%);
  border-bottom: 1px solid rgb(234 221 231 / 75%); backdrop-filter: blur(16px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-privacy { display: none !important; }
.nav-links > a:not(.btn) { padding: 12px 14px; border-radius: 999px; color: #5d4e5f; text-decoration: none; font-size: .92rem; font-weight: 600; }
.nav-links > a:not(.btn):hover, .nav-links > a[aria-current="page"] { background: #fff; color: var(--pink-dark); }
.breadcrumbs { display: flex; align-items: center; gap: 9px; min-height: 48px; padding-top: 14px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; color: var(--pink-dark); font-weight: 700; text-underline-offset: 3px; }
.mobile-sticky-cta { display: none; }
.menu-toggle {
  width: 48px; height: 48px; display: none; place-items: center; padding: 0; border: 1px solid var(--line);
  border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer;
}
.menu-toggle svg { width: 22px; }

.hero { position: relative; overflow: clip; padding: clamp(72px, 8vw, 116px) 0 80px; }
.hero::before {
  content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -280px;
  border-radius: 50%; background: radial-gradient(circle, rgb(236 72 153 / 25%), transparent 68%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); align-items: center; gap: clamp(40px, 7vw, 92px); }
.hero h1 { max-width: 780px; margin-bottom: 28px; }
.hero-copy .lede { max-width: 590px; }
.mobile-hero-media { display: none; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 40px; color: var(--muted); font-size: .9rem; font-weight: 600; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 18px; color: var(--pink); }
.hero-art { position: relative; min-height: 570px; }
.hero-card { position: absolute; overflow: hidden; border: 8px solid #fff; border-radius: 32px; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.main { inset: 4% 0 12% 15%; transform: rotate(3deg); }
.hero-card.small { width: 46%; height: 38%; left: -2%; bottom: 0; transform: rotate(-6deg); }
.hero-sticker {
  position: absolute; right: -3%; bottom: 2%; width: 132px; height: 132px; display: grid; place-items: center;
  border-radius: 50%; background: var(--lime); text-align: center; font: 400 1rem/1.1 var(--font-display); transform: rotate(8deg); box-shadow: var(--shadow);
}

.logo-strip { border-block: 1px solid var(--line); background: #fff; overflow: hidden; }
.logo-strip-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo-strip p { margin: 0; max-width: 250px; color: var(--muted); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.platforms { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; color: #594b5c; font-weight: 700; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading p { max-width: 380px; margin-bottom: 8px; color: var(--muted); }
.services { grid-template-columns: repeat(12, 1fr); }
.service-card {
  grid-column: span 4; min-height: 320px; display: flex; flex-direction: column; padding: 32px;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:nth-child(1), .service-card:nth-child(5) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(4) { grid-column: span 5; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { margin-bottom: auto; color: var(--pink); font: 400 2.1rem/1 var(--font-display); }
.service-card p { margin-bottom: 0; color: var(--muted); }
.service-card.featured { background: var(--ink); color: #fff; }
.service-card.featured p { color: #d8cbd8; }

.work-grid { grid-template-columns: 1.2fr .8fr; }
.work-card { position: relative; overflow: hidden; min-height: 640px; border-radius: var(--radius-lg); background: #111; color: #fff; }
.work-card.small { min-height: 450px; }
.work-card img, .work-card video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.work-card:hover img, .work-card:hover video { transform: scale(1.035); }
.work-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgb(20 10 21 / 90%)); }
.work-caption { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 26px; }
.work-caption h3 { margin-bottom: 8px; }
.work-caption p { margin: 0; color: #e8dfe8; }
.work-stack { display: grid; gap: 24px; }

.process { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.process-card { padding: 28px 24px; border-top: 2px solid var(--line); }
.process-card::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 48px; color: var(--pink); font-weight: 800; }
.process-card p { color: var(--muted); }

.quote {
  display: grid; grid-template-columns: 260px 1fr; gap: clamp(40px, 7vw, 100px); align-items: center;
  padding: clamp(36px, 6vw, 72px); border-radius: var(--radius-lg); background: var(--blush);
}
.quote img { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; }
.quote blockquote { margin: 0; font: 400 clamp(1.8rem, 3.5vw, 3.2rem)/1.18 var(--font-display); }
.quote cite { display: block; margin-top: 24px; color: var(--muted); font: 600 .95rem/1.5 var(--font-body); font-style: normal; }

.cta-panel {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px;
  padding: clamp(44px, 7vw, 88px); border-radius: var(--radius-lg); background: var(--pink); color: #fff;
}
.cta-panel::after { content: ""; position: absolute; width: 280px; height: 280px; right: -110px; top: -120px; border: 60px solid rgb(255 255 255 / 14%); border-radius: 50%; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 800px; margin-bottom: 0; }
.cta-panel .btn { position: relative; z-index: 1; white-space: nowrap; }

.page-hero { padding: clamp(72px, 9vw, 130px) 0 clamp(60px, 8vw, 100px); }
.page-hero h1 { max-width: 1000px; }
.page-hero .lede { max-width: 720px; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 110px); }
.portrait-stack { position: relative; min-height: 600px; }
.portrait-stack img { position: absolute; width: 75%; height: 78%; object-fit: cover; border-radius: var(--radius-lg); }
.portrait-stack img:first-child { top: 0; right: 0; }
.portrait-stack img:last-child { bottom: 0; left: 0; width: 48%; height: 48%; border: 8px solid var(--paper); }
.values { grid-template-columns: repeat(3, 1fr); }
.value { padding: 32px 0; border-top: 2px solid currentColor; }
.value p { color: var(--muted); }
.dark .value p { color: #d8cbd8; }

.faq { max-width: 880px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 24px 52px 24px 0; list-style: none; cursor: pointer; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font: 400 1.8rem/1 var(--font-display); color: var(--pink); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; padding: 0 40px 24px 0; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.contact-top { padding-top: clamp(52px, 7vw, 88px); }
.contact-form h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 5vw, 5rem); }
.contact-list { display: grid; gap: 16px; margin: 36px 0; }
.contact-item { display: block; padding: 20px 0; border-top: 1px solid var(--line); text-decoration: none; }
.contact-item span { display: block; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-item strong { font-size: 1.05rem; }
.contact-form { padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #d9cad5; border-radius: 12px; background: #fff; color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pink); outline: 3px solid rgb(233 63 142 / 16%); }
.form-note, .form-status { color: var(--muted); font-size: .82rem; }
.form-note a { color: var(--pink-dark); font-weight: 700; }
.form-status { min-height: 24px; margin-top: 14px; }
.contact-form.is-submitted { transform: translateY(-4px); transition: transform .45s ease, box-shadow .45s ease; box-shadow: 0 22px 70px rgb(36 21 41 / 18%); }
.contact-form.is-submitted button[type="submit"] { background: var(--ink); }
body.enquiry-confirmed { overflow: hidden; }
body.enquiry-confirmed::after {
  content: ""; position: fixed; z-index: 2000; inset: 0; pointer-events: none; background: var(--blush);
  animation: enquiry-page-exit .45s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes enquiry-page-exit { from { opacity: 0; } to { opacity: 1; } }

.legal { max-width: 830px; }
.legal h2 { margin-top: 56px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.legal h3 { margin-top: 36px; font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; letter-spacing: 0; }
.legal p, .legal li { color: #594b5c; }
.legal a { color: var(--pink-dark); }

.site-footer { padding: 72px 0 28px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 48px; padding-bottom: 64px; }
.footer-brand { max-width: 480px; }
.footer-brand h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 4rem); }
.footer-brand p { color: #cfc1cf; }
.footer-col h3 { margin-bottom: 18px; color: #f9a8d4; font: 700 .75rem/1.4 var(--font-body); letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { min-height: 44px; display: flex; align-items: center; width: fit-content; padding: 7px 0; color: #e5dce5; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / 14%); color: #a997aa; font-size: .8rem; }
.footer-bottom a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; }

.reveal { transition: opacity .65s ease, transform .65s ease; }
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { background: var(--paper); backdrop-filter: none; }
  .nav-links {
    position: fixed; inset: 77px 0 auto; display: none; padding: 20px; background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgb(36 21 41 / 10%);
  }
  .nav-links.open { display: grid; }
  .nav-links > a:not(.btn) { min-height: 48px; display: flex; align-items: center; padding: 11px 14px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
  .nav-links > a:not(.btn):hover, .nav-links > a[aria-current="page"] { background: var(--blush); }
  .nav-links .btn { width: 100%; min-height: 50px; }
  .nav-links .nav-privacy { display: flex !important; }
  .js .reveal { opacity: 1; transform: none; }
  .menu-toggle { display: grid; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 520px; max-width: 620px; width: 100%; margin-inline: auto; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 20px; }
  .service-card, .service-card:nth-child(n) { grid-column: span 6; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 520px; }
  .work-stack { grid-template-columns: 1fr 1fr; }
  .work-card.small { min-height: 360px; }
  .process { grid-template-columns: 1fr 1fr; }
  .quote { grid-template-columns: 160px 1fr; }
  .quote img { width: 150px; height: 150px; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1180px); --radius-lg: 28px; }
  body { font-size: 16px; line-height: 1.6; }
  body:has(.mobile-sticky-cta) { padding-bottom: 82px; }
  .mobile-sticky-cta {
    position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 12px; min-height: 54px;
    display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 20px;
    border: 2px solid #fff; border-radius: 999px; background: var(--pink-action); color: #fff;
    box-shadow: 0 14px 36px rgb(36 21 41 / 28%); text-decoration: none; font-weight: 800;
  }
  .mobile-sticky-cta .arrow { width: 18px; height: 18px; }
  .privacy-choices:not([hidden]) { bottom: 78px; }
  .section { padding: 58px 0; }
  .section-sm { padding: 36px 0; }
  h1 { font-size: clamp(2.75rem, 13.4vw, 3.35rem); line-height: 1.02; }
  h2 { font-size: clamp(2.15rem, 10.2vw, 2.75rem); line-height: 1.06; }
  h3 { font-size: 1.45rem; }
  .lede { font-size: 1.02rem; line-height: 1.62; }
  .eyebrow { margin-bottom: 12px; font-size: .68rem; letter-spacing: .11em; }
  .brand span { display: none; }
  .site-header, .nav { min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .menu-toggle { width: 46px; height: 46px; }
  .menu-toggle[aria-expanded="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
  .nav-links {
    inset: 68px 10px auto; align-content: start; gap: 8px; padding: 12px;
    border: 1px solid var(--line); border-radius: 20px; background: var(--paper);
    box-shadow: 0 24px 60px rgb(36 21 41 / 24%); backdrop-filter: none;
  }
  .nav-links > a:not(.btn) { font-size: .95rem; }
  .nav-links .btn { margin-top: 2px; }
  .hero { padding: 38px 0 44px; }
  .hero-grid { gap: 24px; }
  .hero h1 { margin-bottom: 22px; }
  .hero-art { display: none; }
  .mobile-hero-media { position: relative; display: block; overflow: hidden; height: min(64vw, 260px); margin: 0 0 20px; border-radius: 24px; background: var(--ink); }
  .mobile-hero-media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgb(25 10 24 / 72%)); }
  .mobile-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
  .mobile-hero-media span { position: absolute; z-index: 1; left: 18px; bottom: 16px; color: #fff; font: 400 1.15rem/1.1 var(--font-display); }
  .hero-copy .button-row { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .hero-copy .btn { width: 100%; }
  .hero-copy .btn-ghost { display: none; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
  .hero-proof span { align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-size: .76rem; line-height: 1.4; }
  .hero-proof svg { flex: 0 0 16px; margin-top: 2px; }
  .logo-strip-inner { padding-block: 24px; display: block; }
  .logo-strip p { max-width: none; }
  .platforms { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; margin-top: 16px; gap: 8px 18px; font-size: .8rem; }
  .section-heading { margin-bottom: 30px; }
  .section-heading p { margin-top: 14px; }
  .services { gap: 12px; }
  .service-card, .service-card:nth-child(n) { grid-column: 1 / -1; min-height: 0; padding: 22px; border-radius: 20px; }
  .service-number { margin-bottom: 32px; font-size: 1.5rem; }
  .service-card h3 { margin-bottom: 10px; }
  .work-grid, .work-stack { gap: 14px; }
  .work-card, .work-card.small { min-height: 330px; border-radius: 24px; }
  .work-card:first-child { min-height: 390px; }
  .work-caption { left: 20px; right: 20px; bottom: 18px; }
  .work-stack { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-card { display: grid; grid-template-columns: 42px 1fr; column-gap: 10px; padding: 20px 0; }
  .process-card::before { grid-row: 1 / 3; margin: 4px 0 0; }
  .process-card h3 { margin-bottom: 6px; }
  .process-card p { margin-bottom: 0; }
  .quote { grid-template-columns: 1fr; gap: 20px; padding: 24px; border-radius: 24px; }
  .quote img { width: 72px; height: 72px; }
  .quote blockquote { font-size: 1.65rem; }
  .quote cite { margin-top: 14px; }
  .cta-panel { gap: 24px; padding: 30px 24px; border-radius: 24px; }
  .cta-panel .btn { width: 100%; }
  .portrait-stack { min-height: 430px; }
  .values { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 42px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form { padding: 24px 18px; border-radius: 24px; }
  .contact-form h1 { font-size: clamp(2.45rem, 11vw, 3.1rem); }
  .field input, .field textarea, .field select { min-height: 54px; font-size: 16px; }
  .form-note a { position: relative; }
  .form-note a::after { content: ""; position: absolute; inset: -14px -4px; }
  .legal a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding-top: 54px; }
  .footer-grid { gap: 28px; padding-bottom: 38px; }
  .footer-bottom { display: block; }
  .footer-bottom > span { display: block; margin-top: 8px; }
}

@media (max-width: 900px) and (max-height: 500px) {
  .nav-links.open { grid-template-columns: 1fr 1fr; gap: 8px; }
  .nav-links .btn { grid-column: 1 / -1; }
}

@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; }
}
