:root {
  --ink: #182332;
  --ink-soft: #4d5865;
  --paper: #fbfaf7;
  --stone: #f0ede6;
  --stone-deep: #ddd6ca;
  --brick: #954537;
  --brick-dark: #713126;
  --brick-soft: #f3e5df;
  --park: #355846;
  --park-soft: #e7eee8;
  --avenue-blue: #243750;
  --line: #d7d3cc;
  --white: #ffffff;
  --awz-blue: #303987;
  --shadow: 0 20px 52px rgba(23, 34, 48, 0.11);
  --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 #dca74a;
  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: 4px;
  transform: translateY(-160%);
}

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

.operator-bar {
  min-height: 34px;
  color: #f4f6f8;
  background:
    linear-gradient(90deg, var(--avenue-blue) 0 79%, var(--brick) 79% 88%, var(--park) 88%);
  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(251, 250, 247, 0.98);
  border-bottom: 1px solid rgba(42, 52, 65, 0.17);
  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: 780;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.domain-mark strong {
  color: var(--brick);
  font-size: 1.12em;
}

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

.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: 720;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 150ms 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: 8px;
}

.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: 6px;
  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:
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(38, 54, 73, 0.05) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--stone);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(16px, calc((100vw - 1180px) / 2 - 28px));
  width: 4px;
  background: linear-gradient(var(--brick) 0 57%, var(--avenue-blue) 57% 82%, var(--park) 82%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px 54px;
  align-items: center;
  padding-block: 62px 56px;
}

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

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

.eyebrow span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 28px;
  color: var(--white);
  background: var(--avenue-blue);
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

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

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.35vw, 54px);
  font-weight: 790;
}

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

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

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

.editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8d8d4;
  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(17, 28, 40, 0.82);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-image {
  height: 330px;
  border: 1px solid rgba(25, 36, 50, 0.22);
  border-radius: 4px;
  box-shadow: 12px 12px 0 rgba(36, 55, 80, 0.11);
}

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

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

.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.88);
  border: 1px solid #cfcac1;
  border-radius: 5px;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

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

.action-card--primary:hover {
  background: #192a40;
  border-color: #192a40;
}

.action-card__number {
  font-size: 12px;
  font-weight: 850;
  opacity: 0.76;
}

.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.4;
  opacity: 0.82;
}

.action-card__arrow {
  color: currentColor;
  font-size: 22px;
}

.section {
  padding-block: 92px;
}

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

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

.corridor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.73fr) minmax(0, 1.27fr);
  gap: clamp(50px, 7vw, 90px);
  align-items: start;
}

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

.avenue-line {
  position: relative;
  padding-left: 30px;
  border-left: 4px solid var(--avenue-blue);
}

.avenue-line::before,
.avenue-line::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 14px;
  height: 14px;
  background: var(--brick);
  border: 3px solid var(--paper);
  border-radius: 50%;
}

.avenue-line::before {
  top: 0;
}

.avenue-line::after {
  bottom: 0;
  background: var(--park);
}

.avenue-line article {
  display: grid;
  grid-template-columns: 72px minmax(210px, 0.85fr) minmax(230px, 1fr);
  gap: 20px;
  align-items: start;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.avenue-line article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.avenue-line article > span {
  display: inline-flex;
  justify-content: center;
  min-width: 62px;
  padding: 6px 8px;
  color: var(--white);
  background: var(--brick);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.avenue-line article:nth-child(2) > span {
  background: var(--avenue-blue);
}

.avenue-line article:nth-child(3) > span {
  background: var(--park);
}

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

.avenue-line h3,
.avenue-line article > p {
  margin: 0;
}

.avenue-line article > p {
  color: var(--ink-soft);
  font-size: 16px;
}

.owner-story {
  background: var(--brick-soft);
}

.owner-grid,
.buyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: center;
}

.townhouse-image,
.park-image {
  height: 390px;
}

.townhouse-image {
  border-radius: 3px 42px 3px 3px;
}

.townhouse-image img {
  object-position: center 58%;
}

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

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

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

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

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

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

.park-image {
  border-radius: 42px 3px 3px 3px;
}

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

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

.trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 90px;
  height: 100%;
  border-inline: 1px solid rgba(255, 255, 255, 0.07);
}

.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: #dfe6ee;
}

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

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

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

.trust-facts div {
  padding: 22px 17px;
  border-top: 4px solid var(--brick);
  background: rgba(255, 255, 255, 0.07);
}

.trust-facts div:last-child {
  border-top-color: #6f8f7b;
}

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

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

.contact-section {
  background:
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(36, 55, 80, 0.055) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--stone);
}

.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-left: 7px solid var(--brick);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

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

.intent-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  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: var(--stone);
  border: 1px solid #cfc9bf;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 720;
  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(--avenue-blue);
  border-color: var(--avenue-blue);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.intent-option input:focus-visible + span {
  outline: 3px solid #dca74a;
  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 #807b73;
  border-radius: 4px;
  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(--avenue-blue);
  box-shadow: 0 0 0 3px rgba(36, 55, 80, 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(--avenue-blue);
  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(--brick);
}

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

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

.submit-button:hover {
  background: #192a40;
  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(--park-soft);
  border-radius: 4px;
}

.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: 10px;
}

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

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

.site-footer {
  padding-block: 28px;
  color: #f0f3f6;
  background: #131f30;
  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: 1060px) {
  :root {
    --shell: min(100% - 38px, 970px);
  }

  .header-inner {
    gap: 22px;
  }

  .main-nav {
    gap: 17px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-image {
    height: 320px;
  }

  .corridor-layout {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 45px;
  }

  .avenue-line article {
    grid-template-columns: 66px minmax(190px, 0.8fr) 1fr;
  }
}

@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: 9px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 5px;
    box-shadow: var(--shadow);
  }

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

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

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

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

  .hero::before {
    left: 8px;
  }

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

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

  .hero-image {
    grid-row: 2;
    height: 250px;
  }

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

  .section {
    padding-block: 74px;
  }

  .corridor-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .avenue-line article {
    grid-template-columns: 70px 1fr;
  }

  .avenue-line article > p {
    grid-column: 2;
  }

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

  .owner-copy {
    order: 1;
  }

  .townhouse-image {
    order: 2;
  }

  .park-image {
    order: 2;
  }

  .townhouse-image,
  .park-image {
    height: 330px;
  }

  .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;
    box-shadow: 7px 7px 0 rgba(36, 55, 80, 0.11);
  }

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

  .avenue-line {
    padding-left: 21px;
  }

  .avenue-line article {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .avenue-line article > p {
    grid-column: 1 / -1;
    padding-left: 76px;
  }

  .townhouse-image,
  .park-image {
    height: 240px;
  }

  .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-left-width: 4px;
  }

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

  .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,
  .operator-bar .shell {
    min-height: 31px;
  }

  h1 {
    font-size: 33px;
  }

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

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