:root {
  --ink: #15313a;
  --navy: #153b49;
  --navy-deep: #0b2a35;
  --brick: #9b4b3e;
  --brick-deep: #78372f;
  --sea: #557e78;
  --sea-soft: #dce9e5;
  --fog: #edf1ef;
  --shell: #fbf8f1;
  --paper: #ffffff;
  --sand: #e5d7c4;
  --line: #cbd6d3;
  --muted: #5b696d;
  --focus: #f0b64d;
  --shadow: 0 18px 42px rgba(16, 48, 59, 0.12);
  --radius: 16px;
  --shell-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-180%);
}

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

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

.operator-bar {
  padding: 7px 20px;
  color: #fff;
  background: var(--navy-deep);
  font-size: 13px;
  letter-spacing: 0.025em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(21, 59, 73, 0.14);
  background: rgba(251, 248, 241, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.brand-mark {
  display: grid;
  flex: 0 0 31px;
  height: 27px;
  align-content: end;
  gap: 3px;
  border-bottom: 4px solid var(--brick);
}

.brand-mark i {
  display: block;
  height: 3px;
  background: var(--sea);
}

.brand-mark i:nth-child(1) { width: 60%; }
.brand-mark i:nth-child(2) { width: 82%; }
.brand-mark i:nth-child(3) { width: 100%; }

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-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 180ms ease;
}

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

.awz-logo {
  width: 62px;
  height: 40px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  color: var(--navy-deep);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }

.section {
  padding: 86px 0;
}

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

.eyebrow--light {
  color: #f0c9bb;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.4vw, 56px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.5vw, 42px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

p {
  margin-top: 0;
}

.hero {
  position: relative;
  padding: 58px 0 42px;
  background:
    linear-gradient(90deg, rgba(85, 126, 120, 0.08) 1px, transparent 1px) 0 0 / 72px 100%,
    var(--shell);
  overflow: hidden;
}

.harbor-rule {
  position: absolute;
  right: -3vw;
  bottom: 123px;
  width: 42vw;
  height: 1px;
  background: var(--sea);
  opacity: 0.45;
}

.harbor-rule::before,
.harbor-rule::after {
  position: absolute;
  bottom: -7px;
  width: 2px;
  height: 15px;
  background: var(--sea);
  content: "";
}

.harbor-rule::before { left: 22%; }
.harbor-rule::after { left: 61%; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "copy image"
    "actions actions";
  align-items: center;
  gap: 34px 54px;
}

.hero-copy {
  grid-area: copy;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: #43585e;
  font-size: 19px;
}

.editorial-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dce5e2;
}

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

.editorial-figure figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 9px;
  border-radius: 4px;
  color: #fff;
  background: rgba(11, 42, 53, 0.84);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
}

.hero-figure {
  grid-area: image;
  height: 312px;
  border-radius: 8px 40px 8px 8px;
  box-shadow: var(--shadow);
}

.hero-figure::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  height: 6px;
  background: var(--brick);
  content: "";
}

.hero-figure img {
  object-position: center 58%;
}

.hero-actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dock-action {
  display: grid;
  min-width: 0;
  min-height: 104px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.dock-action + .dock-action {
  border-left: 1px solid var(--line);
}

.dock-action:hover,
.dock-action:focus-visible {
  color: var(--navy-deep);
  background: var(--sea-soft);
}

.dock-action--primary {
  color: #fff;
  background: var(--brick);
}

.dock-action--primary:hover,
.dock-action--primary:focus-visible {
  color: #fff;
  background: var(--brick-deep);
}

.dock-number {
  align-self: start;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.72;
}

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

.dock-action strong {
  font-size: 18px;
  line-height: 1.25;
}

.dock-action small {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.84;
}

.dock-action b {
  font-size: 22px;
  font-weight: 400;
}

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

.district-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 78px;
  align-items: start;
}

.district-intro {
  position: sticky;
  top: 112px;
}

.district-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.address-lines {
  position: relative;
  border-left: 3px solid var(--sea);
}

.address-lines::before {
  position: absolute;
  top: 0;
  left: -8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brick);
  content: "";
}

.address-lines article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 4px 20px;
  padding: 24px 0 24px 30px;
  border-bottom: 1px solid var(--line);
}

.address-lines article:first-child {
  padding-top: 0;
}

.address-lines span {
  grid-row: 1 / span 2;
  color: var(--brick-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.address-lines h3,
.address-lines p {
  margin: 0;
}

.address-lines p {
  color: var(--muted);
  font-size: 16px;
}

.owner-section {
  color: #fff;
  background: var(--navy-deep);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 68px;
}

.owner-figure {
  height: 430px;
  border-radius: 34px 8px 8px 8px;
}

.owner-figure img {
  object-position: center center;
}

.owner-copy h2,
.owner-copy h3 {
  color: #fff;
}

.owner-copy p {
  color: #e5eeeb;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--brick);
  color: var(--navy-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link--light {
  border-color: #f0c9bb;
  color: #fff;
}

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

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

.types-section {
  background:
    linear-gradient(135deg, rgba(155, 75, 62, 0.055) 0 25%, transparent 25% 100%),
    var(--shell);
}

.types-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 72px;
}

.types-heading p:last-child {
  color: var(--muted);
}

.property-ledger {
  border-top: 4px solid var(--brick);
}

.property-ledger article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 25px 4px;
  border-bottom: 1px solid #bac7c4;
}

.ledger-code {
  padding-top: 4px;
  color: var(--sea);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.property-ledger h3,
.property-ledger p {
  margin: 0;
}

.property-ledger p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 16px;
}

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

.buyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 68px;
}

.buyer-copy p {
  color: var(--muted);
}

.buyer-figure {
  height: 410px;
  border-radius: 8px 8px 34px 8px;
  box-shadow: var(--shadow);
}

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

.trust-section {
  padding: 66px 0;
  color: #fff;
  background: var(--brick-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 66px;
}

.trust-copy h2 {
  color: #fff;
}

.trust-copy p:last-child {
  margin-bottom: 0;
  color: #f7e9e4;
}

.trust-facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.trust-facts div {
  padding: 24px 18px;
}

.trust-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.trust-facts dt {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 820;
  line-height: 1.15;
}

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

.contact-section {
  padding: 92px 0;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(85, 126, 120, 0.09) 49.9% 50.1%, transparent 50.1%),
    var(--fog);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: stretch;
  gap: 0;
  box-shadow: var(--shadow);
}

#contact-form {
  padding: 50px;
  background: #fff;
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h2 {
  margin-bottom: 0;
}

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

.intent-option {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 9px;
  padding: 12px 13px;
  border: 1px solid #aebdb9;
  border-radius: 8px;
  color: var(--ink);
  background: #f8faf9;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.intent-option[data-selected="true"] {
  border-color: var(--navy-deep);
  color: #fff;
  background: var(--navy-deep);
  box-shadow: inset 0 -4px 0 var(--brick);
}

.intent-option input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  accent-color: var(--brick);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 760;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #9eafaa;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
}

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

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

.field input:focus,
.field textarea:focus {
  border-color: var(--brick);
  outline: 3px solid rgba(240, 182, 77, 0.52);
  outline-offset: 1px;
}

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

.personal-details summary {
  position: relative;
  min-height: 54px;
  padding: 14px 36px 14px 0;
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 15px;
  font-weight: 780;
  list-style: none;
}

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

.personal-details summary::after {
  position: absolute;
  top: 10px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--sea);
  border-radius: 50%;
  content: "+";
  font-size: 21px;
  font-weight: 400;
}

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

.personal-grid {
  display: grid;
  padding: 10px 0 4px;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

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

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #374d53;
  font-size: 14px;
  line-height: 1.5;
}

.consent-row input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--brick);
}

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

.submit-button {
  width: 100%;
  min-height: 55px;
  margin-top: 23px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--brick);
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--brick-deep);
  transform: translateY(-1px);
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  margin: 16px 0 0;
  padding: 11px 13px;
  border-left: 4px solid var(--brick);
  color: var(--navy-deep);
  background: #f8eee9;
  font-size: 14px;
}

.personal-contact {
  position: relative;
  display: flex;
  padding: 50px 42px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: var(--navy-deep);
  overflow: hidden;
}

.personal-contact::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  border: 22px solid rgba(85, 126, 120, 0.55);
  border-radius: 50%;
  content: "";
}

.personal-contact h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: #fff;
  font-size: 29px;
}

.contact-name {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: #e5eeeb;
  font-size: 18px;
  font-weight: 750;
}

.contact-lines {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-lines p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-lines span,
.contact-lines a {
  display: block;
}

.contact-lines span {
  margin-bottom: 4px;
  color: #b9d2cc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-lines a {
  color: #fff;
  font-size: 18px;
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 34px 0;
  color: #dbe8e4;
  background: #071e27;
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 30px;
}

.footer-inner p {
  margin: 0;
}

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

.footer-inner a {
  color: #fff;
  font-weight: 680;
}

.image-note {
  grid-column: 1 / -1;
  color: #a9c0ba;
}

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

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

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

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .hero-grid {
    gap: 30px 34px;
  }

  .district-grid,
  .types-layout {
    gap: 48px;
  }

  .owner-grid,
  .buyer-grid {
    gap: 44px;
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  }

  #contact-form,
  .personal-contact {
    padding: 42px 34px;
  }
}

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

  .header-inner {
    position: relative;
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    padding: 8px 12px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--shell);
    box-shadow: 0 16px 28px rgba(11, 42, 53, 0.16);
  }

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

  .main-nav a {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 15px;
  }

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

  .awz-logo {
    width: 54px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "actions";
  }

  .hero-figure {
    height: 300px;
  }

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

  .dock-action + .dock-action {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .dock-action {
    min-height: 86px;
  }

  .district-grid,
  .types-layout,
  .owner-grid,
  .buyer-grid,
  .trust-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .district-intro {
    position: static;
  }

  .owner-copy {
    padding-bottom: 4px;
  }

  .owner-figure {
    height: 380px;
  }

  .buyer-copy {
    order: 1;
  }

  .buyer-figure {
    order: 2;
    height: 360px;
  }

  .trust-facts {
    margin-top: 4px;
  }

  .contact-shell {
    box-shadow: none;
  }

  #contact-form {
    box-shadow: var(--shadow);
  }

  .personal-contact {
    min-height: 340px;
  }
}

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

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

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

  .header-inner {
    gap: 10px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    flex-basis: 27px;
  }

  .awz-logo {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 38px 0 32px;
  }

  .hero-grid {
    gap: 25px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: clamp(32px, 10.2vw, 38px);
    hyphens: manual;
  }

  h2 {
    font-size: clamp(28px, 8.3vw, 34px);
  }

  h3 {
    font-size: 21px;
  }

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

  .hero-figure {
    height: clamp(205px, 58vw, 240px);
    border-radius: 6px 26px 6px 6px;
  }

  .hero-figure img {
    object-position: 55% 58%;
  }

  .dock-action {
    padding: 17px 15px;
    grid-template-columns: 26px 1fr auto;
  }

  .district-grid,
  .types-layout,
  .owner-grid,
  .buyer-grid,
  .trust-grid {
    gap: 34px;
  }

  .address-lines article {
    grid-template-columns: 1fr;
    padding-left: 22px;
  }

  .address-lines span {
    grid-row: auto;
  }

  .owner-figure,
  .buyer-figure {
    height: 260px;
    border-radius: 22px 6px 6px 6px;
  }

  .owner-figure img {
    object-position: 58% center;
  }

  .buyer-figure img {
    object-position: 42% center;
  }

  .property-ledger article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .trust-section {
    padding: 54px 0;
  }

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

  .trust-facts div {
    display: grid;
    padding: 17px 0;
    grid-template-columns: minmax(110px, auto) 1fr;
    align-items: baseline;
    gap: 15px;
  }

  .trust-facts div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .trust-facts dd {
    margin-top: 0;
  }

  .contact-section {
    padding: 58px 0;
  }

  #contact-form,
  .personal-contact {
    padding: 34px 22px;
  }

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

  .intent-option {
    min-height: 52px;
  }

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

  .personal-contact {
    min-height: 320px;
  }

  .personal-contact h3 {
    font-size: 26px;
  }

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

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

  .image-note {
    grid-column: auto;
  }
}

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

  .brand {
    font-size: 14px;
  }

  .menu-toggle {
    padding-inline: 9px;
    font-size: 13px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  .dock-action {
    gap: 9px;
    padding-inline: 12px;
  }

  .dock-action strong {
    font-size: 16px;
  }

  .contact-lines a {
    font-size: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
