:root {
  --ink: #263746;
  --indigo: #243b56;
  --indigo-deep: #182c42;
  --rust: #a84e32;
  --rust-dark: #873820;
  --olive: #677354;
  --stone: #f7f4ec;
  --stone-deep: #ebe5d8;
  --mist: #e6edf2;
  --white: #ffffff;
  --line: #cdd5d8;
  --shadow: 0 18px 45px rgba(31, 48, 62, 0.13);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

body, button, input, textarea { font: inherit; }

a { color: inherit; }

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

p, h1, h2, h3 { margin-top: 0; }

h1, h2, h3 {
  color: var(--indigo-deep);
  line-height: 1.08;
  letter-spacing: -0.035em;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.nowrap { white-space: nowrap; }

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.5vw, 3.55rem);
  max-width: 13ch;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  max-width: 17ch;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -90px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--rust-dark);
  border-radius: 6px;
}

.skip-link:focus { top: 10px; }

:focus-visible {
  outline: 3px solid #f0a340;
  outline-offset: 4px;
}

.operator-bar {
  padding: 7px 24px;
  color: var(--white);
  background: var(--indigo-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(38, 55, 70, 0.13);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto 94px;
  align-items: center;
  gap: 34px;
}

.domain-mark {
  color: var(--indigo-deep);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-navigation a {
  padding-block: 8px;
  color: #344a5d;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.main-navigation a:hover { color: var(--rust-dark); }

.awz-logo {
  width: 88px;
  height: 52px;
  object-fit: contain;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid #b9c5cb;
  border-radius: 8px;
  color: var(--indigo-deep);
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 64px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(230, 237, 242, 0.5) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--stone);
}

.hero::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  right: -150px;
  top: -150px;
  border: 52px solid rgba(103, 115, 84, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--rust-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light { color: #d7e0c8; }

.hero-lead {
  max-width: 55ch;
  margin-bottom: 28px;
  color: #3c4d58;
  font-size: 1.04rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--white);
  background: var(--rust);
  box-shadow: 0 10px 22px rgba(168, 78, 50, 0.22);
}

.button-primary:hover { background: var(--rust-dark); }

.button-secondary {
  color: var(--indigo-deep);
  border-color: #9caab2;
  background: transparent;
}

.button-secondary:hover { border-color: var(--rust); }

.secondary-routes {
  display: flex;
  gap: 22px;
  margin-top: 25px;
}

.secondary-routes a {
  padding-bottom: 5px;
  border-bottom: 1px solid #9ca9ae;
  color: var(--indigo);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.28;
  text-decoration: none;
}

.secondary-routes span {
  display: block;
  margin-bottom: 2px;
  color: var(--olive);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  color: var(--white);
  background: rgba(24, 44, 66, 0.9);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
}

.hero-media {
  aspect-ratio: 1.22;
  border-radius: 5px 70px 5px 5px;
}

.hero-media img { object-position: 48% 50%; }

.location-line {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 18px;
  display: flex;
  width: min(310px, 35vw);
  justify-content: space-between;
  border-top: 2px solid rgba(103, 115, 84, 0.45);
}

.location-line span {
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border: 2px solid var(--olive);
  border-radius: 50%;
  background: var(--stone);
}

.success-basis {
  padding: 28px 0;
  border-bottom: 1px solid #cfd7dc;
  background: var(--white);
}

.success-inner {
  display: grid;
  grid-template-columns: 54px minmax(180px, 0.48fr) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.success-marker {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--rust-dark);
  border: 2px solid var(--rust);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.success-inner h2 {
  margin: 0;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.success-inner p {
  margin: 0;
  color: #495b68;
  font-size: 0.94rem;
}

.domain-bridge { padding: 104px 0; }

.bridge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 36px 80px;
}

.bridge-copy p:last-child { margin-bottom: 0; }

.bridge-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bridge-facts div {
  padding: 28px 28px 28px 0;
}

.bridge-facts div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.bridge-facts dt {
  margin-bottom: 8px;
  color: var(--indigo-deep);
  font-weight: 850;
}

.bridge-facts dd {
  margin: 0;
  color: #566773;
  font-size: 0.94rem;
}

.activity-section {
  padding: 98px 0;
  color: #e8eef1;
  background: var(--indigo-deep);
}

.activity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 74px;
}

.activity-media {
  min-height: 640px;
  border-radius: 70px 6px 6px 6px;
}

.activity-media img { object-position: 49% 50%; }

.activity-copy h2 { color: var(--white); }

.activity-copy > p:not(.eyebrow) { color: #cbd6dc; }

.activity-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.activity-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.activity-steps li > span {
  color: #d7e0c8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.activity-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.activity-steps p {
  margin: 0;
  color: #cbd6dc;
  font-size: 0.9rem;
}

.organisation-section {
  padding: 104px 0;
  background: var(--stone);
}

.organisation-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 58px;
}

.fit-note {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 5px solid var(--rust);
  background: var(--white);
}

.fit-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--indigo-deep);
}

.fit-note p {
  margin: 0;
  font-size: 0.92rem;
}

.organisation-media {
  aspect-ratio: 1.75;
  border-radius: 6px 6px 58px 6px;
}

.organisation-media img { object-position: 57% 50%; }

.support-section { padding: 104px 0; }

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 68px;
}

.exchange-media {
  aspect-ratio: 1.48;
  border-radius: 6px 62px 6px 6px;
}

.exchange-media img { object-position: 54% 50%; }

.support-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
}

.support-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 23px;
  width: 15px;
  height: 7px;
  border-left: 3px solid var(--olive);
  border-bottom: 3px solid var(--olive);
  transform: rotate(-45deg);
}

.property-routes {
  padding: 92px 0;
  background: var(--mist);
}

.property-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.property-intro { padding: 16px 34px 0 0; }

.property-routes article {
  padding: 30px;
  border-top: 5px solid var(--olive);
  background: var(--white);
}

.property-routes article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--rust-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-routes article p {
  color: #536571;
  font-size: 0.91rem;
}

.property-routes .button {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.87rem;
}

.trust-section {
  padding: 42px 0;
  color: #d9e2e7;
  background: var(--indigo);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: center;
  gap: 48px;
}

.trust-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.55rem;
}

.trust-inner p { margin: 0; }

.trust-fact {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-fact strong,
.trust-fact span { display: block; }

.trust-fact strong {
  color: var(--white);
  font-size: 1.25rem;
}

.trust-fact span { font-size: 0.8rem; }

.form-section {
  padding: 104px 0;
  background: var(--stone);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 72px;
}

.form-intro {
  position: sticky;
  top: 130px;
}

.contact-form {
  padding: 34px;
  border-top: 6px solid var(--rust);
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-summary {
  margin-bottom: 24px;
  padding: 16px 18px;
  color: #6f2415;
  border: 2px solid #b64a32;
  background: #fff1ed;
}

.error-summary[hidden] { display: none; }

.error-summary strong { display: block; }

.error-summary ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.error-summary a { font-weight: 750; }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.concern-fieldset {
  margin: 0 0 25px;
  padding: 0;
  border: 0;
}

.concern-fieldset legend {
  margin-bottom: 10px;
  color: var(--indigo-deep);
  font-weight: 800;
}

.concern-options {
  display: grid;
  grid-template-columns: 1.36fr 1fr 1fr;
  gap: 8px;
}

.concern-options label { cursor: pointer; }

.concern-options input {
  position: absolute;
  opacity: 0;
}

.concern-options span {
  display: flex;
  min-height: 76px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  color: #425562;
  border: 2px solid #c9d2d7;
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 750;
  line-height: 1.25;
}

.concern-options small {
  margin-bottom: 5px;
  color: var(--olive);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.concern-options input:checked + span {
  color: var(--white);
  border-color: var(--rust);
  background: var(--rust);
}

.concern-options input:checked + span small { color: #fff3ea; }

.concern-options input:focus-visible + span {
  outline: 3px solid #f0a340;
  outline-offset: 3px;
}

.field { margin-bottom: 19px; }

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--indigo-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #9eacb4;
  border-radius: 4px;
  background: var(--white);
}

.field textarea { min-height: 150px; resize: vertical; }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border: 3px solid #a43724; }

.optional-details {
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.optional-details summary {
  padding: 16px 2px;
  color: var(--indigo-deep);
  font-weight: 800;
  cursor: pointer;
}

.optional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  padding-top: 8px;
}

.field-wide { grid-column: 1 / -1; }

.consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  font-size: 0.87rem;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
}

.consent a { color: var(--rust-dark); font-weight: 800; }

.submit-button { border: 0; cursor: pointer; }

.form-status,
.confidentiality {
  margin: 15px 0 0;
  font-size: 0.84rem;
}

.form-status:empty { display: none; }

.form-status[data-state="error"] {
  padding: 13px 15px;
  color: #732916;
  border-left: 4px solid var(--rust);
  background: #fff0ea;
  font-weight: 750;
}

.confidentiality { color: #5c6d77; }

.personal-contact {
  padding: 64px 0;
  color: #dbe4e8;
  background: var(--indigo-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}

.contact-inner h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.contact-name { margin: 0; }

.contact-links {
  display: grid;
  min-width: 290px;
  gap: 10px;
}

.contact-links a {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--white);
  text-decoration: none;
}

.contact-links span {
  display: block;
  color: #bfcbd2;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 25px 0;
  color: #596a75;
  background: #f0ede5;
  font-size: 0.78rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p { margin: 0; }

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner a { font-weight: 750; }

@media (max-width: 1040px) {
  :root { --shell: min(100% - 40px, 960px); }

  .header-inner { gap: 22px; }
  .main-navigation { gap: 17px; }

  .hero-grid { gap: 36px; }
  .activity-grid { gap: 42px; }
  .activity-media { min-height: 600px; }
  .organisation-layout { grid-template-columns: 0.8fr 1.2fr; gap: 38px; }
  .support-grid { gap: 42px; }
  .property-grid { grid-template-columns: 1fr 1fr; }
  .property-intro { grid-column: 1 / -1; max-width: 650px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); }

  html { scroll-padding-top: 86px; }

  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 48px 76px;
    gap: 14px;
  }

  .domain-mark {
    min-width: 0;
    font-size: 1.22rem;
  }

  .menu-button { display: block; }

  .awz-logo { width: 70px; height: 48px; }

  .main-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    border: 1px solid #bcc7ce;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-navigation[data-open="true"] { display: grid; }

  .main-navigation a {
    padding: 12px 10px;
    border-bottom: 1px solid #e2e7e9;
  }

  .hero { padding: 48px 0 42px; }

  .hero-grid,
  .bridge-layout,
  .activity-grid,
  .organisation-layout,
  .support-grid,
  .trust-inner,
  .form-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-copy .hero-lead { order: 3; }
  .hero-media { order: 4; }
  .hero-copy > .button { order: 5; }
  .secondary-routes { order: 6; }

  h1 {
    max-width: 16ch;
    margin-bottom: 18px;
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .hero-lead { margin-bottom: 4px; font-size: 1rem; }

  .hero-media {
    aspect-ratio: 1.55;
    margin: 9px 0 3px;
    border-radius: 4px 46px 4px 4px;
  }

  .hero-media img { object-position: 42% 50%; }

  .location-line { display: none; }

  .success-inner {
    grid-template-columns: 48px 1fr;
    gap: 12px 18px;
  }

  .success-inner p { grid-column: 1 / -1; }

  .domain-bridge,
  .activity-section,
  .organisation-section,
  .support-section,
  .property-routes,
  .form-section { padding: 78px 0; }

  .bridge-copy { margin-top: -6px; }

  .bridge-facts {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .bridge-facts div,
  .bridge-facts div + div {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .bridge-facts div:first-child { border-top: 0; }

  .activity-media { min-height: 0; aspect-ratio: 1.25; border-radius: 45px 4px 4px; }
  .activity-copy { margin-top: 14px; }

  .organisation-media { aspect-ratio: 1.55; }
  .organisation-media img { object-position: 60% 50%; }

  .support-grid .exchange-media { order: 2; }
  .support-grid .support-copy { order: 1; }
  .exchange-media { aspect-ratio: 1.5; }

  .property-grid { grid-template-columns: 1fr; }
  .property-intro { grid-column: auto; padding-right: 0; }

  .trust-inner { gap: 20px; }
  .trust-fact { padding: 18px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }

  .form-layout { gap: 28px; }
  .form-intro { position: static; }
  .contact-form { padding: 26px 22px; }
  .contact-inner { gap: 30px; }
  .contact-links { min-width: 0; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 24px); }

  body { font-size: 17px; }

  .operator-bar {
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 46px 66px;
    gap: 10px;
  }

  .domain-mark { font-size: 1.07rem; }
  .menu-button { width: 46px; height: 46px; padding: 11px; }
  .awz-logo { width: 62px; height: 44px; }

  .hero { padding-top: 38px; }
  .eyebrow { font-size: 0.7rem; }
  h2 { font-size: 1.72rem; }

  .hero-media { aspect-ratio: 1.35; }
  .hero-media img { object-position: 36% 50%; }

  .hero-copy > .button { width: 100%; }

  .secondary-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 5px;
  }

  .secondary-routes a {
    min-height: 60px;
    padding: 9px 8px;
    border: 1px solid #aeb9be;
    background: rgba(255,255,255,.66);
  }

  .success-basis { padding: 24px 0; }
  .success-inner { grid-template-columns: 42px 1fr; }
  .success-marker { width: 40px; height: 40px; }
  .success-inner h2 { font-size: 1.2rem; }

  .activity-steps li { grid-template-columns: 34px 1fr; gap: 12px; }

  .organisation-media,
  .exchange-media { aspect-ratio: 1.26; }
  .organisation-media img { object-position: 66% 50%; }
  .exchange-media img { object-position: 55% 50%; }

  .property-routes article { padding: 24px 20px; }

  .concern-options { grid-template-columns: 1fr; }
  .concern-options span { min-height: 62px; }

  .optional-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }

  .contact-form { padding: 24px 16px; }
  .submit-button { width: 100%; }

  .footer-inner { flex-direction: column; }
  .footer-inner nav { gap: 14px 18px; }
}

@media (max-width: 350px) {
  :root { --shell: calc(100% - 20px); }
  .operator-bar { font-size: 0.66rem; }
  .header-inner { grid-template-columns: minmax(0, 1fr) 44px 58px; gap: 7px; }
  .domain-mark { font-size: 0.98rem; }
  .awz-logo { width: 56px; }
  h1 { font-size: 1.92rem; }
  h1 .nowrap { font-size: 0.94em; }
  .secondary-routes { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 1.22; }
  .contact-form { padding-inline: 13px; }
}

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