:root {
  --ink: #183039;
  --ink-soft: #4e5f63;
  --paper: #fffdf8;
  --sand: #f4eadb;
  --sand-deep: #e7d5bf;
  --turquoise: #24646a;
  --turquoise-dark: #174b51;
  --turquoise-soft: #e4f0ed;
  --terracotta: #ad5039;
  --terracotta-dark: #873a2b;
  --olive: #6d7541;
  --line: #ddd4c7;
  --white: #ffffff;
  --awz-blue: #303987;
  --shadow: 0 20px 55px rgba(32, 51, 53, 0.11);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shell: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 108px;
}

body {
  margin: 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.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.operator-bar {
  min-height: 34px;
  color: #f8fbfa;
  background:
    linear-gradient(90deg, var(--turquoise-dark) 0 76%, var(--terracotta) 76% 90%, var(--olive) 90%);
  font-size: 13px;
  letter-spacing: 0.015em;
}

.operator-bar .shell {
  display: flex;
  align-items: center;
  min-height: 34px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid rgba(122, 110, 92, 0.22);
  backdrop-filter: blur(14px);
}

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

.domain-mark {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 750;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.domain-mark span {
  color: var(--terracotta);
}

.domain-mark strong {
  color: var(--turquoise);
  font-weight: 750;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.awz-brand {
  display: grid;
  place-items: center;
  width: 86px;
  height: 55px;
  padding: 4px 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dedee7;
  border-radius: 12px;
}

.awz-brand img {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.menu-toggle__icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  border-top: 2px solid currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 18%, rgba(36, 100, 106, 0.13), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(173, 80, 57, 0.12), transparent 24%),
    var(--sand);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(32vw, 440px);
  height: 8px;
  background: linear-gradient(90deg, var(--terracotta), var(--turquoise));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px 52px;
  align-items: center;
  padding-block: 66px 58px;
}

.hero-copy {
  padding-block: 10px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta) 0 58%, var(--turquoise) 58%);
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.4vw, 54px);
  font-weight: 780;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 3.3vw, 40px);
  font-weight: 760;
}

h3 {
  font-size: 21px;
  font-weight: 730;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.68;
}

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

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

.editorial-image figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(19, 37, 40, 0.8);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-image {
  height: 330px;
  border-radius: 74px 18px 74px 18px;
}

.hero-image img {
  object-position: 57% center;
}

.hero-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.action-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 100px;
  padding: 21px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(72, 88, 88, 0.2);
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.action-card:hover {
  border-color: var(--turquoise);
  transform: translateY(-2px);
}

.action-card--primary {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.action-card--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.action-card__number {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.77;
}

.action-card strong,
.action-card small {
  display: block;
}

.action-card strong {
  font-size: 18px;
  line-height: 1.3;
}

.action-card small {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.83;
}

.action-card__arrow {
  font-size: 23px;
}

.section {
  padding-block: 92px;
}

.section-heading {
  max-width: 720px;
}

.section-heading--wide {
  max-width: 870px;
}

.section-heading > p:last-child,
.story-copy > p,
.buyer-copy > p,
.trust-layout > div > p {
  color: var(--ink-soft);
}

.owner-section {
  background: var(--paper);
}

.region-route {
  margin-top: 48px;
  border-bottom: 1px solid var(--line);
}

.region-route article {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.72fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: start;
  padding: 27px 4px;
  border-top: 1px solid var(--line);
}

.region-route__marker {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--turquoise);
  border-radius: 50% 50% 50% 12px;
  font-size: 13px;
  font-weight: 800;
}

.region-route article:nth-child(2) .region-route__marker {
  background: var(--terracotta);
}

.region-route article:nth-child(3) .region-route__marker {
  background: var(--olive);
}

.region-route article div p {
  margin: 0 0 5px;
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-route h3,
.region-route article > p {
  margin: 0;
}

.region-route article > p {
  color: var(--ink-soft);
}

.story-section {
  background: linear-gradient(135deg, var(--turquoise-soft), #f8f6ed 72%);
}

.story-grid,
.buyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.story-copy,
.buyer-copy {
  max-width: 590px;
}

.story-image,
.buyer-image {
  height: 390px;
}

.story-image {
  border-radius: 18px 88px 18px 88px;
}

.story-image img {
  object-position: 53% center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--terracotta-dark);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.buyer-section {
  background: var(--sand);
}

.buyer-grid {
  grid-template-columns: minmax(0, 1.13fr) minmax(0, 0.87fr);
}

.buyer-image {
  border-radius: 82px 18px 82px 18px;
}

.buyer-image img {
  object-position: center center;
}

.trust-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--turquoise-dark);
}

.trust-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 75px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.trust-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.trust-section .section-kicker,
.trust-layout > div > p {
  color: #d7ebe7;
}

.trust-layout h2 {
  margin-bottom: 14px;
}

.trust-layout > div > p {
  margin-bottom: 0;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.trust-facts div {
  padding: 21px 17px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.trust-facts dt {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.2;
}

.trust-facts dd {
  margin: 8px 0 0;
  color: #d7ebe7;
  font-size: 13px;
  line-height: 1.35;
}

.contact-section {
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    repeating-linear-gradient(45deg, var(--sand) 0 1px, transparent 1px 20px);
}

.contact-layout {
  display: flex;
  justify-content: center;
}

.form-card {
  width: min(900px, 100%);
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card > h2 {
  margin-bottom: 30px;
}

.intent-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-width: 0;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.intent-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.intent-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intent-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.intent-option[data-selected="true"] span {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.intent-option input:focus-visible + span {
  outline: 3px solid #f0a548;
  outline-offset: 3px;
}

.field {
  margin-bottom: 20px;
}

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

.field input,
.field textarea {
  display: block;
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #898176;
  border-radius: 10px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

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

.field textarea {
  min-height: 165px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(36, 100, 106, 0.13);
}

.personal-details {
  margin: 3px 0 22px;
  border-block: 1px solid var(--line);
}

.personal-details summary {
  position: relative;
  padding: 17px 36px 17px 0;
  color: var(--turquoise-dark);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.personal-details summary::-webkit-details-marker {
  display: none;
}

.personal-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-52%);
}

.personal-details[open] summary::after {
  content: "–";
}

.personal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  padding-top: 4px;
}

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

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.consent-row input {
  width: 21px;
  height: 21px;
  margin: 1px 0 0;
  accent-color: var(--terracotta);
}

.consent-row a {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--terracotta);
  border: 0;
  border-radius: 12px;
  font-weight: 780;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.submit-button:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.privacy-note,
.form-status {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.form-status:not([hidden]) {
  padding: 10px;
  background: var(--turquoise-soft);
  border-radius: 8px;
}

.personal-contact {
  margin-top: 38px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.personal-contact h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 31px);
}

.contact-name {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-weight: 650;
}

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

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--sand);
  border: 1px solid var(--sand-deep);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-links span {
  color: var(--terracotta-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 28px;
  color: #eef5f3;
  background: #17353c;
  font-size: 14px;
}

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

.footer-inner p {
  margin: 0;
}

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

.footer-inner a {
  color: var(--white);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 38px, 930px);
  }

  .header-inner {
    gap: 22px;
  }

  .main-nav {
    gap: 17px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-image {
    height: 320px;
  }

  .story-grid,
  .buyer-grid {
    gap: 48px;
  }

  .region-route article {
    grid-template-columns: 62px minmax(210px, 0.8fr) minmax(240px, 1fr);
    gap: 21px;
  }
}

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

  :root {
    --shell: min(100% - 32px, 700px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 76px;
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .main-nav a {
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: var(--sand);
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 49px 47px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    max-width: 690px;
    font-size: clamp(35px, 7vw, 46px);
  }

  .hero-image {
    grid-row: 2;
    height: 250px;
    border-radius: 56px 16px 56px 16px;
  }

  .hero-actions {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding-block: 74px;
  }

  .region-route article {
    grid-template-columns: 58px 1fr;
  }

  .region-route article > p {
    grid-column: 2;
  }

  .story-grid,
  .buyer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-copy {
    order: 1;
  }

  .story-image {
    order: 2;
  }

  .story-image,
  .buyer-image {
    height: 330px;
  }

  .buyer-image {
    order: 2;
  }

  .buyer-copy {
    order: 1;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

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

  :root {
    --shell: calc(100% - 28px);
  }

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

  .header-inner {
    gap: 10px;
    min-height: 70px;
  }

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

  .menu-toggle {
    padding: 7px 10px;
  }

  .menu-toggle > span:last-child {
    display: none;
  }

  .awz-brand {
    width: 66px;
    height: 48px;
    padding: 3px 5px;
  }

  .awz-brand img {
    width: 58px;
    height: 42px;
  }

  .hero-grid {
    gap: 23px;
    padding-block: 42px 40px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  h2 {
    font-size: 29px;
  }

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

  .hero-image {
    height: 222px;
    border-radius: 40px 14px 40px 14px;
  }

  .editorial-image figcaption {
    right: 7px;
    bottom: 7px;
    font-size: 10px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .action-card {
    min-height: 88px;
    padding: 17px;
  }

  .section {
    padding-block: 62px;
  }

  .region-route {
    margin-top: 36px;
  }

  .region-route article {
    grid-template-columns: 48px 1fr;
    gap: 14px 17px;
    padding: 23px 0;
  }

  .region-route__marker {
    width: 43px;
    height: 43px;
  }

  .region-route article > p {
    grid-column: 1 / -1;
    padding-left: 60px;
  }

  .story-image,
  .buyer-image {
    height: 240px;
  }

  .story-image {
    border-radius: 14px 52px 14px 52px;
  }

  .buyer-image {
    border-radius: 50px 14px 50px 14px;
  }

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

  .trust-facts div {
    display: grid;
    grid-template-columns: minmax(120px, 0.62fr) 1fr;
    gap: 14px;
    align-items: center;
    padding: 17px;
  }

  .trust-facts dd {
    margin: 0;
  }

  .form-card {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .intent-group {
    grid-template-columns: 1fr;
  }

  .intent-option span {
    min-height: 52px;
    justify-content: flex-start;
    text-align: left;
  }

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

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

  .contact-links {
    display: grid;
  }

  .contact-links a {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

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

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

  .operator-bar .shell {
    min-height: 31px;
  }

  .operator-bar {
    min-height: 31px;
  }

  h1 {
    font-size: 33px;
  }

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

  .region-route article > p {
    padding-left: 0;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

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

  .operator-bar {
    font-size: 10px;
    white-space: nowrap;
  }

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

  .domain-mark {
    min-width: 0;
    font-size: 16px;
    letter-spacing: -0.055em;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 6px 8px;
  }

  .awz-brand {
    width: 56px;
    height: 43px;
  }

  .awz-brand img {
    width: 50px;
    height: 37px;
  }

  h1 {
    font-size: 31px;
  }

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

  .action-card {
    grid-template-columns: auto 1fr;
    gap: 11px;
  }

  .action-card__arrow {
    display: none;
  }

  .form-card {
    padding-inline: 14px;
  }

  .personal-details summary {
    padding-right: 31px;
  }

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

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