:root {
  --ink: #172c38;
  --ink-soft: #40545d;
  --night: #123342;
  --night-deep: #0d2732;
  --lotus: #7b9c88;
  --lotus-pale: #e8eee8;
  --terra: #b85d3b;
  --terra-dark: #8f3f27;
  --sand: #fbf7ee;
  --paper: #ffffff;
  --line: #ced8d4;
  --shadow: 0 20px 50px rgba(13, 39, 50, 0.11);
  --shell: 1180px;
  --focus: #e09045;
}

* { box-sizing: border-box; }

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

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

button,
input,
textarea { font: inherit; }

a { color: inherit; }

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

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4.25vw, 58px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.2vw, 44px);
}

h3 { font-size: 22px; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 15px;
  color: #fff;
  background: var(--night-deep);
  transform: translateY(-160%);
}

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

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 44, 56, 0.13);
  background: rgba(251, 247, 238, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lotus);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  position: absolute;
  content: "";
  background: var(--terra);
}

.brand-mark::before { width: 2px; height: 48px; left: 18px; top: -6px; }
.brand-mark::after { width: 48px; height: 2px; left: -6px; top: 18px; }
.brand-mark i { width: 8px; height: 8px; left: 14px; top: 14px; border-radius: 50%; background: var(--night); }

.main-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}

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

.main-nav a::after {
  position: absolute;
  content: "";
  right: 50%;
  bottom: 1px;
  left: 50%;
  height: 2px;
  background: var(--terra);
  transition: left 180ms ease, right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; left: 0; }

.awz-logo {
  width: 66px;
  height: 44px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 700;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background: var(--sand);
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(123, 156, 136, 0.17) 72% 72.25%, transparent 72.25%),
    repeating-linear-gradient(90deg, transparent 0 132px, rgba(23, 44, 56, 0.06) 132px 133px),
    repeating-linear-gradient(0deg, transparent 0 86px, rgba(23, 44, 56, 0.045) 86px 87px);
}

.hero-lines::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  right: -170px;
  bottom: -260px;
  border: 82px solid rgba(123, 156, 136, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 38px 48px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terra-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero-intro {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.editorial-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--lotus-pale);
  box-shadow: var(--shadow);
}

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

.editorial-figure figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 4px 8px;
  color: #fff;
  background: rgba(13, 39, 50, 0.86);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-figure {
  height: 320px;
  border-radius: 2px 58px 2px 2px;
}

.hero-figure img { object-position: 50% 61%; }

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

.route-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.route-action:hover { transform: translateY(-3px); border-color: var(--terra); }
.route-action--primary { color: #fff; border-color: var(--night); background: var(--night); }

.route-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.route-action strong,
.route-action small { display: block; }
.route-action strong { font-size: 18px; line-height: 1.25; }
.route-action small { margin-top: 3px; opacity: 0.78; font-size: 14px; line-height: 1.35; }
.route-action b { font-size: 22px; font-weight: 500; }

.section { padding: 88px 0; }

.district-section {
  color: #fff;
  background: var(--night);
}

.district-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.district-heading p:last-child { margin-bottom: 0; color: #dce8e5; }

.district-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 44px;
}

.district-route::before {
  position: absolute;
  content: "";
  top: 18px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: #88a997;
}

.district-route article {
  position: relative;
  min-height: 190px;
  padding: 27px 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.district-route article:last-child { border-right: 0; }

.district-route article > span {
  position: absolute;
  top: -37px;
  left: calc(50% - 15px);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 5px solid var(--night);
  border-radius: 50%;
  color: var(--night-deep);
  background: #f5ad86;
  font-size: 10px;
  font-weight: 900;
}

.district-route h3 { margin-bottom: 12px; text-align: center; font-size: 21px; }
.district-route p { margin-bottom: 0; color: #dce8e5; text-align: center; font-size: 15px; }

.owner-section { background: #fffdf8; }

.owner-grid,
.buyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 68px;
}

.owner-copy p:not(.eyebrow),
.buyer-copy p:not(.eyebrow) { color: var(--ink-soft); }

.owner-figure,
.buyer-figure {
  height: 430px;
}

.owner-figure { border-radius: 58px 2px 2px 2px; }
.owner-figure img { object-position: 50% 52%; }
.buyer-figure { border-radius: 2px 2px 58px 2px; }
.buyer-figure img { object-position: 50% 49%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--terra);
  text-decoration: none;
  font-weight: 800;
}

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

.types-section { background: var(--lotus-pale); }

.types-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.type-list { border-top: 1px solid #9fb2a9; }

.type-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #9fb2a9;
}

.type-list article > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--terra-dark);
  border-radius: 50% 50% 50% 4px;
  font-size: 13px;
  font-weight: 900;
}

.type-list h3 { margin: 0 0 7px; }
.type-list p { margin: 0; color: var(--ink-soft); }

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

.trust-section {
  padding-block: 70px;
  color: #fff;
  background: var(--terra-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.trust-grid p:last-child { margin-bottom: 0; color: #ffe9dc; }

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

.trust-facts div { padding: 22px 18px; border-right: 1px solid rgba(255, 255, 255, 0.32); }
.trust-facts div:last-child { border-right: 0; }
.trust-facts dt { font-size: 22px; font-weight: 800; }
.trust-facts dd { margin: 3px 0 0; color: #ffe9dc; font-size: 14px; line-height: 1.35; }

.contact-section {
  padding-top: 96px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(23, 44, 56, 0.055) 49.9% 50.1%, transparent 50.1%),
    var(--sand);
}

.contact-shell {
  width: min(calc(100% - 48px), 940px);
}

#contact-form {
  padding: 56px 64px 58px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.intent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 30px;
  padding: 5px;
  border: 1px solid var(--line);
  background: var(--lotus-pale);
}

.intent-option {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 8px 12px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

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

.intent-option[data-selected="true"] {
  color: #fff;
  background: var(--night);
  box-shadow: 0 5px 15px rgba(13, 39, 50, 0.16);
}

.intent-option:focus-within { outline: 3px solid var(--focus); outline-offset: 2px; }

.field { margin-bottom: 22px; }

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

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #aebdb8;
  border-radius: 2px;
  color: var(--ink);
  background: #fffefa;
}

.field input { min-height: 52px; padding: 11px 13px; }
.field textarea { min-height: 170px; padding: 13px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--terra-dark); outline: 3px solid rgba(184, 93, 59, 0.22); }

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

.personal-details summary {
  position: relative;
  padding: 18px 52px 18px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.personal-details summary::-webkit-details-marker { display: none; }
.personal-details summary::after {
  position: absolute;
  content: "+";
  right: 0;
  top: 13px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--night);
  color: var(--night);
  background: var(--lotus-pale);
}
.personal-details[open] summary::after { content: "−"; }

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding-top: 22px;
}
.field--wide { grid-column: 1 / -1; }

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 0 22px;
  font-size: 14px;
}
.consent-row input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--night); }
.consent-row a { font-weight: 800; }

.submit-button {
  width: 100%;
  min-height: 58px;
  padding: 14px 22px;
  border: 0;
  color: #fff;
  background: var(--night);
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}
.submit-button:hover { background: var(--terra-dark); transform: translateY(-2px); }

.privacy-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
}

.form-status { margin: 18px 0 0; padding: 12px; color: var(--ink); background: var(--lotus-pale); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.personal-contact {
  padding: 48px 64px 50px;
  color: #fff;
  background: var(--night-deep);
}

.personal-contact h3 { max-width: 650px; margin-bottom: 17px; font-size: clamp(28px, 3vw, 38px); }
.contact-name { margin-bottom: 25px; color: #dce8e5; font-weight: 700; }

.contact-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-lines p { margin: 0; }
.contact-lines span { display: block; margin-bottom: 2px; color: #aebfba; font-size: 12px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-lines a { color: #fff; font-size: 20px; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.site-footer {
  padding: 34px 0;
  color: #eaf2ef;
  background: #081c24;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 30px;
  align-items: center;
}
.footer-inner p { margin: 0; font-size: 13px; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-inner a { font-size: 13px; }
.image-note { grid-column: 1 / -1; color: #aebfba; }

@media (max-width: 1020px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .header-inner { gap: 18px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 14px; }
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; gap: 34px; }
  .district-grid,
  .types-grid { gap: 48px; }
  .owner-grid,
  .buyer-grid { gap: 44px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  body { font-size: 17px; }
  .header-inner { position: relative; grid-template-columns: 1fr auto auto; min-height: 68px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav[data-open="true"] { display: flex; }
  .main-nav a { min-height: 46px; padding: 11px 13px; }
  .main-nav a::after { display: none; }
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { order: 1; }
  .hero-figure { order: 2; height: 260px; }
  .hero-actions { order: 3; grid-template-columns: 1fr 1fr; }
  .district-grid,
  .types-grid { grid-template-columns: 1fr; gap: 42px; }
  .district-route { max-width: 680px; }
  .owner-grid,
  .buyer-grid { grid-template-columns: 1fr; }
  .owner-copy { order: 1; }
  .owner-figure { order: 2; height: 360px; }
  .buyer-copy { order: 1; }
  .buyer-figure { order: 2; height: 360px; }
  .trust-grid { grid-template-columns: 1fr; gap: 38px; }
  #contact-form,
  .personal-contact { padding-inline: 42px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .operator-bar { padding-inline: 10px; font-size: 11px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark::before { height: 40px; left: 15px; top: -5px; }
  .brand-mark::after { width: 40px; left: -5px; top: 15px; }
  .brand-mark i { left: 11px; top: 11px; }
  .menu-toggle span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .awz-logo { width: 58px; height: 40px; }
  .hero { padding: 42px 0 46px; }
  h1 { font-size: clamp(35px, 10.5vw, 42px); }
  h2 { font-size: clamp(29px, 8vw, 35px); }
  .hero-intro { font-size: 17px; }
  .hero-figure { height: 220px; border-radius: 2px 38px 2px 2px; }
  .hero-actions { grid-template-columns: 1fr; gap: 12px; }
  .route-action { min-height: 86px; }
  .section { padding: 68px 0; }
  .district-route { grid-template-columns: 1fr; padding: 0 0 0 42px; }
  .district-route::before { top: 18px; bottom: 18px; left: 14px; width: 2px; height: auto; }
  .district-route article { min-height: 0; padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .district-route article:last-child { border-bottom: 0; }
  .district-route article > span { top: 24px; left: -42px; }
  .district-route h3,
  .district-route p { text-align: left; }
  .owner-figure,
  .buyer-figure { height: 260px; border-radius: 30px 2px 2px 2px; }
  .type-list article { grid-template-columns: 44px 1fr; gap: 15px; }
  .type-list article > span { width: 38px; height: 38px; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.32); }
  .trust-facts div:last-child { border-bottom: 0; }
  .contact-section { padding-top: 70px; }
  #contact-form { padding: 40px 24px 44px; }
  .intent-options { grid-template-columns: 1fr; }
  .intent-option { min-height: 50px; justify-items: start; text-align: left; }
  .personal-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .personal-contact { padding: 40px 24px 43px; }
  .contact-lines { grid-template-columns: 1fr; gap: 18px; }
  .contact-lines a { font-size: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { gap: 12px 16px; }
  .image-note { grid-column: auto; }
}

@media (max-width: 350px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { gap: 9px; }
  .brand { gap: 7px; font-size: 15px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-mark::before { height: 36px; left: 13px; top: -5px; }
  .brand-mark::after { width: 36px; left: -5px; top: 13px; }
  .brand-mark i { width: 6px; height: 6px; left: 10px; top: 10px; }
  .menu-toggle { padding-inline: 10px; }
  .awz-logo { width: 52px; }
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .hero-figure { height: 200px; }
  .route-action { grid-template-columns: auto 1fr; }
  .route-action b { display: none; }
  #contact-form,
  .personal-contact { padding-inline: 18px; }
  .contact-lines a { font-size: 16px; }
}

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