:root {
  --petrol: #164b52;
  --petrol-dark: #103a40;
  --blue: #436784;
  --terracotta: #b85f42;
  --paper: #f7f4ec;
  --mint: #e5eeea;
  --ink: #24323c;
  --muted: #5d696f;
  --line: #c8d1ce;
  --white: #fff;
  --shadow: 0 20px 45px rgba(25, 50, 54, .12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
summary,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--petrol-dark);
}

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

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.operator-bar {
  padding: 7px 16px 8px;
  color: var(--white);
  background: var(--petrol-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(36, 50, 60, .14);
  background: rgba(255, 255, 255, .97);
}

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

.domain-mark {
  color: var(--petrol-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.main-navigation a {
  position: relative;
  padding-block: 8px;
  color: #35444d;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--terracotta);
  transition: transform .2s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
}

.awz-logo {
  justify-self: end;
  width: 70px;
  height: auto;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid #9eaeae;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--petrol-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 42%) minmax(0, 58%);
  width: min(1440px, 100%);
  margin-inline: auto;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  align-self: center;
  padding: 72px 48px 92px max(48px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-index,
.card-kicker {
  margin: 0 0 15px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .095em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #c9ddd8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4vw, 52px);
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: inline-block;
  color: var(--petrol);
  white-space: nowrap;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3vw, 38px);
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

p {
  margin-top: 0;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #46565d;
  font-size: 18px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--petrol);
  box-shadow: 0 14px 28px rgba(22, 75, 82, .18);
}

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

.button-secondary {
  color: var(--petrol-dark);
  border-color: #8da09f;
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--petrol);
  background: var(--mint);
}

.secondary-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 510px;
  margin-top: 22px;
}

.secondary-routes a {
  min-width: 0;
  padding: 11px 10px;
  border-top: 1px solid #9eaaa8;
  color: #3a4a51;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.secondary-routes small {
  display: block;
  margin-bottom: 3px;
  color: #6a7478;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dce4e0;
}

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

.image-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 58, 64, .92);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-media {
  min-height: 650px;
  border-bottom-left-radius: 86px;
}

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

.project-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr .8fr 1.2fr;
  gap: 8px;
  width: 42%;
  height: 10px;
}

.project-tabs i:nth-child(1) { background: var(--petrol); }
.project-tabs i:nth-child(2) { background: var(--blue); }
.project-tabs i:nth-child(3) { background: var(--terracotta); }
.project-tabs i:nth-child(4) { background: #b3c7be; }

.basis-note {
  padding: 36px 0;
  color: var(--ink);
  background: #eedfd3;
}

.basis-layout {
  display: grid;
  grid-template-columns: .65fr 1fr 1.9fr;
  gap: 38px;
  align-items: start;
}

.basis-note h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.basis-note p:last-child {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.transfer-section {
  padding: 105px 0 110px;
  background: var(--white);
}

.transfer-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: end;
}

.transfer-heading h2,
.transfer-heading p:last-child {
  margin-bottom: 0;
}

.transfer-heading p:last-child {
  color: #4e5d63;
}

.transfer-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 4px solid var(--petrol);
  border-bottom: 1px solid var(--line);
}

.transfer-steps article {
  min-width: 0;
  padding: 28px 22px 32px;
  border-right: 1px solid var(--line);
}

.transfer-steps article:last-child {
  border-right: 0;
}

.transfer-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}

.transfer-steps h3 {
  font-size: 20px;
}

.transfer-steps p {
  margin-bottom: 0;
  color: #59656a;
  font-size: 15px;
  line-height: 1.48;
}

.activity-section {
  padding: 110px 0;
  color: var(--white);
  background: var(--petrol-dark);
}

.activity-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

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

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

.activity-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.activity-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.activity-list li > span {
  color: #e7a58f;
  font-size: 12px;
  font-weight: 800;
}

.activity-list strong {
  font-size: 17px;
}

.activity-list p {
  margin: 3px 0 0;
  color: #cbdad6;
  font-size: 14px;
  line-height: 1.42;
}

.activity-media {
  height: 560px;
  border-radius: 80px 0 80px 0;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .24);
}

.activity-media img {
  object-position: 45% center;
}

.organisation-section {
  padding: 110px 0;
  background: var(--paper);
}

.organisation-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 82px;
  align-items: center;
}

.organisation-media {
  height: 520px;
  border-radius: 0 70px 0 70px;
  box-shadow: var(--shadow);
}

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

.organisation-copy > p:not(.eyebrow) {
  color: #536166;
}

.side-note {
  margin-top: 32px;
  padding: 22px 24px;
  border-left: 5px solid var(--terracotta);
  background: var(--white);
}

.side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--petrol-dark);
}

.side-note p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

.support-section {
  padding: 110px 0;
  background: var(--mint);
}

.support-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.support-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #9caeaa;
}

.support-copy li {
  position: relative;
  padding: 15px 10px 15px 32px;
  border-bottom: 1px solid #aebdb9;
  font-size: 16px;
  font-weight: 700;
}

.support-copy li::before {
  position: absolute;
  top: 21px;
  left: 5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  content: "";
}

.support-media {
  height: 530px;
  border-radius: 70px 0 0 0;
  box-shadow: var(--shadow);
}

.support-media img {
  object-position: 41% center;
}

.real-estate-section {
  padding: 100px 0;
  background: var(--white);
}

.real-estate-layout {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.real-estate-heading {
  padding: 20px 40px 20px 0;
}

.real-estate-heading p:last-child {
  color: #59666b;
}

.real-estate-section article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 32px;
  border: 1px solid #b8c5c2;
  background: var(--paper);
}

.real-estate-section article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.real-estate-section article p:not(.card-kicker) {
  color: #58656a;
  font-size: 16px;
}

.real-estate-section article .button {
  margin-top: auto;
}

.trust-section {
  padding: 58px 0;
  color: var(--white);
  background: var(--blue);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr .8fr;
  gap: 48px;
  align-items: center;
}

.trust-section h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 29px;
}

.trust-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: #eef3f5;
  font-size: 16px;
}

.trust-number {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

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

.trust-number strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.15;
}

.trust-number span {
  margin-top: 4px;
  font-size: 13px;
}

.form-section {
  padding: 110px 0;
  background: var(--paper);
}

.form-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 74px;
  align-items: start;
}

.form-heading {
  position: sticky;
  top: 24px;
}

.form-heading p:last-child {
  color: #58646a;
}

.contact-form {
  min-width: 0;
  padding: 34px;
  border-top: 6px solid var(--petrol);
  border-radius: 0 0 30px 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-summary {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 5px solid #a22f2f;
  color: #742020;
  background: #fff0ee;
}

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

.error-summary strong {
  display: block;
  margin-bottom: 8px;
}

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

.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 24px;
  padding: 0;
  border: 0;
}

.concern-fieldset legend {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
}

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

.concern-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.concern-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.concern-options span {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border: 2px solid #c0c9c7;
  color: #35444a;
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.concern-options small {
  margin-bottom: 4px;
  color: #687578;
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

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

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

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 800;
}

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

.field input {
  min-height: 50px;
}

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

.field [aria-invalid="true"],
.consent input[aria-invalid="true"] {
  border: 2px solid #a22f2f;
  background: #fff7f5;
}

.optional-details {
  margin: 22px 0;
  border-top: 1px solid #c9d0ce;
  border-bottom: 1px solid #c9d0ce;
}

.optional-details summary {
  padding: 15px 0;
  color: var(--petrol-dark);
  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: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.45;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--petrol);
}

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

.submit-button {
  border: 0;
}

.form-status,
.confidentiality {
  margin: 16px 0 0;
  font-size: 14px;
}

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

.form-status[data-state="error"] {
  padding: 12px 14px;
  border-left: 4px solid #a22f2f;
  color: #742020;
  background: #fff0ee;
  font-weight: 700;
}

.confidentiality {
  color: #5b666b;
}

.personal-contact {
  padding: 76px 0;
  color: var(--white);
  background: var(--petrol-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.personal-contact h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--white);
}

.personal-contact p {
  margin-bottom: 0;
  color: #d9e7e3;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: block;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  background: rgba(255, 255, 255, .09);
}

.contact-links span {
  display: block;
  margin-bottom: 3px;
  color: #bdd3ce;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 25px 0;
  color: #526066;
  background: #ede8dd;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
}

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

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

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(180px, 1fr) auto 72px;
    gap: 20px;
  }

  .main-navigation {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(370px, 45%) minmax(0, 55%);
  }

  .hero-copy {
    padding-left: 24px;
  }

  .project-tabs {
    width: 45%;
  }

  .activity-layout,
  .organisation-layout,
  .support-layout {
    gap: 45px;
  }

  .real-estate-layout {
    grid-template-columns: .72fr 1fr 1fr;
  }
}

@media (max-width: 840px) {
  body {
    font-size: 17px;
  }

  .page-shell {
    width: min(100% - 32px, 720px);
  }

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

  .domain-mark {
    font-size: 19px;
  }

  .awz-logo {
    width: 58px;
  }

  .menu-button {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid #b9c5c2;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .main-navigation a:last-child {
    border-bottom: 0;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 42px 16px 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero-lead {
    order: 3;
  }

  .hero-media {
    order: 4;
    width: calc(100% + 32px);
    min-height: 0;
    aspect-ratio: 1.28 / 1;
    margin: 5px -16px 0;
    border-radius: 0 0 54px 0;
  }

  .hero-media img {
    object-position: 35% center;
  }

  .hero > .hero-copy > .button,
  .hero .button-primary {
    order: 5;
    width: 100%;
    margin-top: 18px;
  }

  .secondary-routes {
    order: 6;
    width: 100%;
    max-width: none;
    margin: 10px 0 38px;
  }

  .project-tabs {
    position: static;
    order: 7;
    width: calc(100% + 32px);
    height: 8px;
    margin-left: -16px;
  }

  h1 {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(32px, 9vw, 37px);
  }

  h2 {
    font-size: clamp(27px, 7.5vw, 31px);
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .basis-note {
    padding: 32px 0;
  }

  .basis-layout,
  .transfer-heading,
  .activity-layout,
  .organisation-layout,
  .support-layout,
  .real-estate-layout,
  .trust-layout,
  .form-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .basis-layout {
    gap: 12px;
  }

  .basis-note h2 {
    font-size: 27px;
  }

  .transfer-section,
  .activity-section,
  .organisation-section,
  .support-section,
  .real-estate-section,
  .form-section {
    padding: 78px 0;
  }

  .transfer-heading,
  .activity-layout,
  .organisation-layout,
  .support-layout,
  .contact-layout {
    gap: 38px;
  }

  .transfer-steps {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .transfer-steps article:nth-child(2) {
    border-right: 0;
  }

  .transfer-steps article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .activity-media,
  .organisation-media,
  .support-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .activity-media {
    border-radius: 48px 0 48px 0;
  }

  .organisation-media {
    order: 2;
    border-radius: 0 48px 0 48px;
  }

  .organisation-copy {
    order: 1;
  }

  .support-media {
    border-radius: 48px 0 0 0;
  }

  .real-estate-heading {
    padding: 0 0 12px;
  }

  .real-estate-section article:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .trust-layout {
    gap: 24px;
  }

  .trust-number {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .45);
    border-left: 0;
  }

  .form-heading {
    position: static;
  }

  .contact-form {
    padding: 26px;
  }

  .contact-layout {
    gap: 34px;
  }

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

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 24px);
  }

  .operator-bar {
    font-size: 11px;
  }

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

  .domain-mark {
    font-size: 17px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 11px;
  }

  .awz-logo {
    width: 54px;
  }

  .hero {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-media,
  .project-tabs {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .secondary-routes {
    grid-template-columns: 1fr 1fr;
  }

  .secondary-routes a {
    min-height: 62px;
    padding: 10px 8px;
    border: 1px solid #aeb9b7;
  }

  .transfer-steps {
    grid-template-columns: 1fr;
  }

  .transfer-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .transfer-steps article:last-child {
    border-bottom: 0;
  }

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

  .real-estate-section article {
    padding: 28px 22px;
  }

  .contact-form {
    padding: 22px 14px;
    border-radius: 0 0 24px 0;
  }

  .concern-options,
  .optional-grid {
    grid-template-columns: 1fr;
  }

  .concern-options span {
    min-height: 68px;
  }

  .field-wide {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }

  .contact-links a {
    font-size: 17px;
  }

  .footer-inner nav {
    gap: 12px 16px;
  }
}

@media (max-width: 340px) {
  .domain-mark {
    font-size: 15px;
  }

  .secondary-routes {
    grid-template-columns: 1fr;
  }

  .image-frame figcaption {
    right: 8px;
    bottom: 8px;
    font-size: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
