:root {
  --ink: #173344;
  --ink-soft: #4c626d;
  --navy: #103a54;
  --navy-deep: #0a2d43;
  --brick: #a74632;
  --brick-dark: #873421;
  --sand: #f4eee4;
  --sage: #eaf1ed;
  --cream: #fbf8f2;
  --white: #ffffff;
  --line: #d9dfdc;
  --line-warm: #decfc0;
  --shadow: 0 20px 50px rgba(16, 58, 84, 0.11);
  --radius-lg: 30px;
  --radius-md: 18px;
  --shell: 1180px;
}

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

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

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

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

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

a {
  color: inherit;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.operator-bar {
  padding: 8px 20px;
  color: #f9fbfc;
  background: var(--navy-deep);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.015em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 58, 84, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.domain-mark {
  color: var(--navy-deep);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.site-nav a {
  position: relative;
  color: #294a5b;
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brick);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.logo-link {
  width: 126px;
  padding: 3px;
}

.logo-link img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.menu-icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.menu-icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  padding: clamp(48px, 6vw, 88px) 0 clamp(54px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(167, 70, 50, 0.09), transparent 28%),
    linear-gradient(120deg, #fff 0 56%, #f4f7f4 56% 100%);
}

.hero::before {
  position: absolute;
  top: 30px;
  left: max(20px, calc((100vw - var(--shell)) / 2 - 46px));
  width: 9px;
  height: 132px;
  border-radius: 8px;
  background: var(--brick);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "copy media"
    "actions media";
  align-items: center;
  gap: 30px 54px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brick-dark);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-deep);
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.2vw, 58px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.2vw, 42px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 9px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #385260;
  font-size: 19px;
  line-height: 1.66;
}

.hero-media {
  grid-area: media;
  min-height: 540px;
  aspect-ratio: 1.22;
  border-radius: 42% 18px 42% 18px;
}

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

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

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

.image-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  color: #fff;
  background: rgba(8, 35, 51, 0.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.hero-actions {
  grid-area: actions;
  align-self: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(16, 58, 84, 0.2);
}

.button-primary:hover {
  background: var(--navy-deep);
}

.button-secondary {
  color: var(--navy-deep);
  border-color: #b8c8cf;
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--brick);
  background: #fffaf7;
}

.secondary-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 18px;
}

.secondary-routes a {
  display: inline-grid;
  color: var(--navy);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.3;
  text-decoration-color: rgba(16, 58, 84, 0.35);
  text-underline-offset: 5px;
}

.secondary-routes span {
  margin-bottom: 3px;
  color: #677a83;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-basis {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.success-inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 0.65fr) minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(67, 58, 48, 0.08);
}

.success-inner h2 {
  margin: 0;
  font-size: 28px;
}

.success-inner p:last-child {
  margin: 0;
  color: #435762;
}

.success-marker {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brick);
  font-weight: 800;
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.section-media {
  min-height: 490px;
  aspect-ratio: 3 / 2;
  border-radius: 18px 80px 18px 18px;
}

.image-tall {
  min-height: 560px;
  aspect-ratio: 1.08;
}

.image-tall img {
  object-position: 52% center;
}

.strength-list {
  margin: 34px 0 0;
}

.strength-list > div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.strength-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.strength-list dt {
  color: var(--brick-dark);
  font-weight: 780;
}

.strength-list dd {
  margin: 0;
  color: #415a66;
}

.activity-section {
  color: var(--white);
  background: var(--navy-deep);
}

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

.activity-section .eyebrow {
  color: #f4b4a3;
}

.narrow-heading {
  max-width: 820px;
}

.narrow-heading > p:last-child {
  margin: 0;
  color: #c7d6dd;
}

.activity-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.activity-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 30px 28px 0 0;
}

.activity-steps li + li {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.activity-steps > li > span {
  color: #f1a994;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.activity-steps p {
  margin: 0;
  color: #c7d6dd;
  font-size: 17px;
}

.section-organisation {
  background: var(--sage);
}

.reverse-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
}

.reverse-grid .section-media {
  border-radius: 70px 18px 18px 18px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.exchange-section {
  padding-top: 106px;
  background: #fff;
}

.exchange-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.exchange-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.exchange-media {
  aspect-ratio: 3 / 2;
  border-radius: 18px 18px 88px 18px;
}

.property-routes {
  padding: clamp(74px, 8vw, 108px) 0;
  background: var(--sand);
}

.compact-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.property-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.property-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
}

.property-grid article:last-child {
  background: rgba(255, 255, 255, 0.55);
}

.property-grid p:not(.route-number) {
  max-width: 560px;
  color: var(--ink-soft);
}

.property-grid .button {
  justify-self: start;
  margin-top: auto;
}

.route-number {
  margin: 0 0 30px;
  color: var(--brick-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.trust-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 36px;
}

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

.trust-section .eyebrow {
  color: #f4b4a3;
}

.trust-inner > p {
  margin: 0;
  color: #d5e2e8;
}

.trust-fact {
  min-width: 208px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

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

.trust-fact strong {
  color: #fff;
  font-size: 24px;
}

.trust-fact span {
  color: #c4d5dc;
  font-size: 15px;
}

.form-section {
  padding: clamp(78px, 9vw, 124px) 0;
  background: #f7f9f7;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 7vw, 92px);
}

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

.form-intro h2 {
  margin-bottom: 18px;
}

.form-selection-copy {
  max-width: 340px;
  margin: 0;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 20px 52px rgba(16, 58, 84, 0.08);
}

.error-summary {
  padding: 16px 18px;
  border: 2px solid #ad3f2a;
  border-radius: 10px;
  color: #712819;
  background: #fff4f0;
}

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

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

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

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

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.concern-fieldset legend {
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-weight: 760;
}

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

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

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

.concern-options span {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 13px 14px;
  border: 2px solid #c8d2d6;
  border-radius: 10px;
  color: #294c5d;
  background: #fff;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.3;
}

.concern-options small {
  margin-bottom: 3px;
  color: #6d7e85;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concern-options input:checked + span {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 8px 16px rgba(16, 58, 84, 0.16);
}

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

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy-deep);
  font-weight: 720;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid #aebec5;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
}

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

.field input:hover,
.field textarea:hover {
  border-color: #728b97;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #ad3f2a;
  box-shadow: 0 0 0 2px rgba(173, 63, 42, 0.15);
}

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

.optional-details summary {
  padding: 17px 34px 17px 0;
  color: var(--navy-deep);
  font-weight: 760;
  cursor: pointer;
}

.optional-details summary::marker {
  color: var(--brick);
}

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 2px 0 24px;
}

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

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: #3f5661;
  font-size: 16px;
  cursor: pointer;
}

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

.consent input[aria-invalid="true"] {
  outline: 3px solid rgba(173, 63, 42, 0.35);
  outline-offset: 2px;
}

.consent a {
  color: var(--navy);
  font-weight: 720;
  text-underline-offset: 3px;
}

.submit-button {
  justify-self: start;
  min-width: min(100%, 310px);
  border: 0;
  cursor: pointer;
}

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

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

.form-status[data-state="error"] {
  padding: 14px 16px;
  border-left: 4px solid #ad3f2a;
  color: #712819;
  background: #fff4f0;
}

.confidentiality {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #435e6b;
  font-weight: 650;
}

.personal-contact {
  padding: 56px 0 62px;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 44px;
}

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

.personal-contact .eyebrow {
  color: #f4b4a3;
}

.contact-name {
  margin: 0;
  color: #d3e1e7;
  font-weight: 720;
}

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

.contact-links a {
  display: grid;
  min-width: 270px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 18px;
  font-weight: 720;
  text-decoration: none;
}

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

.contact-links span {
  color: #bcd0d9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 26px 0;
  color: #d8e2e7;
  background: #082536;
  font-size: 14px;
}

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

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-inner a {
  color: #fff;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 20px;
  }

  .site-nav {
    gap: 18px;
  }

  .logo-link {
    width: 108px;
  }

  .hero-grid {
    gap: 28px 36px;
  }

  .hero-media {
    height: 500px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .image-tall {
    height: 520px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .success-inner {
    grid-template-columns: auto 0.7fr 1fr;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

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

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

  .domain-mark {
    min-width: 0;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 18px;
  }

  .js .site-nav[data-open="false"] {
    display: none;
  }

  .site-nav a {
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .logo-link {
    width: 88px;
  }

  .logo-link img {
    height: 54px;
  }

  .hero {
    background: linear-gradient(180deg, #fff 0 72%, #f4f7f4 72% 100%);
  }

  .hero::before {
    top: 38px;
    left: 9px;
    height: 92px;
    width: 5px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "actions";
    gap: 28px;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 54px 14px 54px 14px;
  }

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

  .success-basis {
    margin-top: 0;
    padding-top: 24px;
  }

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

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

  .editorial-grid,
  .reverse-grid,
  .exchange-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    gap: 42px;
  }

  .section-media,
  .image-tall {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .reverse-grid .section-media {
    order: 2;
  }

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

  .activity-steps li,
  .activity-steps li + li {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .property-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-inner > div:first-child {
    grid-column: 1 / -1;
  }

  .trust-fact {
    padding-left: 22px;
  }

  .form-intro {
    position: static;
  }
}

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

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

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle {
    width: 46px;
    justify-content: center;
    padding: 9px;
  }

  .logo-link {
    width: 74px;
  }

  .logo-link img {
    height: 48px;
  }

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

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(29px, 8.5vw, 36px);
  }

  h3 {
    font-size: 21px;
  }

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

  .hero-actions .button-primary {
    width: 100%;
  }

  .secondary-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .secondary-routes a {
    min-height: 62px;
    padding: 10px 12px;
    border: 1px solid #c8d4d8;
    border-radius: 8px;
    text-decoration: none;
  }

  .success-inner {
    padding: 24px;
  }

  .success-marker {
    width: 46px;
    height: 46px;
  }

  .success-inner h2 {
    font-size: 26px;
  }

  .section {
    padding: 72px 0;
  }

  .strength-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .exchange-section {
    padding-top: 72px;
  }

  .property-grid article {
    min-height: 0;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-inner > div:first-child {
    grid-column: auto;
  }

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

  .form-layout {
    gap: 26px;
  }

  .form-selection-copy {
    display: none;
  }

  .contact-form {
    gap: 20px;
    padding: 24px 18px;
    border-radius: 18px;
  }

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

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

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

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

  .submit-button {
    width: 100%;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-links a {
    min-width: 0;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

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

  .logo-link {
    width: 66px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

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

  .success-inner {
    grid-template-columns: 1fr;
  }

  .success-marker {
    display: none;
  }

  .success-inner > p:last-child {
    grid-column: auto;
  }
}

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

@media print {
  .menu-toggle,
  .hero-actions,
  .submit-button,
  .site-footer nav {
    display: none !important;
  }

  .site-header {
    position: static;
  }

  .image-frame {
    break-inside: avoid;
    box-shadow: none;
  }
}
