:root {
  --river: #123f4a;
  --river-deep: #0c3038;
  --coral: #963b31;
  --coral-soft: #d97867;
  --sky: #dceff2;
  --sky-pale: #edf7f7;
  --sand: #f7f1e8;
  --concrete: #e4e8e5;
  --white: #ffffff;
  --ink: #172f34;
  --muted: #52686c;
  --line: #bfd1d2;
  --shadow: 0 24px 60px rgba(12, 48, 56, 0.14);
  --radius: 20px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand,
.action-line strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.09;
  letter-spacing: -0.033em;
}

h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.8vw, 3.5rem);
  font-weight: 740;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 710;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.24rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--river-deep);
  font-weight: 750;
}

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

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

.operator-bar {
  background: var(--river-deep);
  color: #eaf7f8;
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}

.operator-bar .shell {
  padding-block: 7px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(18, 63, 74, 0.16);
  background: rgba(247, 241, 232, 0.97);
  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;
  color: var(--river-deep);
  font-size: 1.08rem;
  font-weight: 780;
  text-decoration: none;
}

.water-mark {
  position: relative;
  display: block;
  width: 39px;
  min-width: 39px;
  height: 32px;
  overflow: hidden;
  border-radius: 16px 16px 5px 5px;
  background: var(--river);
}

.water-mark i {
  position: absolute;
  right: -7px;
  left: -7px;
  height: 10px;
  border: 3px solid #ffffff;
  border-right: 0;
  border-left: 0;
  border-radius: 50%;
}

.water-mark i:first-child {
  top: 8px;
}

.water-mark i:last-child {
  top: 16px;
  border-color: var(--coral-soft);
}

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

.main-nav a {
  padding-block: 8px;
  color: #28494f;
  font-size: 0.91rem;
  font-weight: 660;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--coral);
}

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

.menu-toggle {
  display: none;
}

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

.hero::after {
  position: absolute;
  z-index: 0;
  right: -160px;
  bottom: 104px;
  width: 760px;
  height: 115px;
  transform: rotate(-7deg);
  border: 1px solid rgba(18, 63, 74, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(410px, 1.09fr);
  align-items: center;
  gap: 38px 58px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-intro {
  margin-bottom: 0;
  color: #3f585d;
  font-size: 1.05rem;
}

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

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

.editorial-figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(12, 48, 56, 0.9);
  color: #ffffff;
  font-size: 0.69rem;
  font-weight: 670;
  line-height: 1.2;
}

.hero-figure {
  height: 320px;
  border-radius: 90px 18px 18px 18px;
  box-shadow: var(--shadow);
}

.hero-figure::before {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--coral) 0 38%, var(--river) 38% 100%);
  content: "";
}

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

.hero-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  max-width: 1040px;
  margin-inline: auto;
}

.action-line {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 22px;
  padding: 17px 25px;
  border: 1px solid var(--line);
  border-radius: 14px 40px 14px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--river-deep);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(12, 48, 56, 0.08);
}

.action-line--primary {
  border-color: var(--river);
  background: var(--river);
  color: #ffffff;
}

.action-line:hover {
  border-color: #9bbabd;
  background: var(--sky);
}

.action-line--primary:hover {
  background: var(--river-deep);
}

.action-line__tag {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-line--primary .action-line__tag {
  color: #ffb09d;
}

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

.action-line strong {
  font-size: 1.07rem;
  line-height: 1.28;
}

.action-line small {
  margin-top: 4px;
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  opacity: 0.82;
}

.action-line b {
  font-size: 1.35rem;
}

.section {
  padding-block: 88px;
}

.access-section {
  position: relative;
  background: var(--river);
  color: #ffffff;
}

.access-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 34%;
  height: 13px;
  border-radius: 20px 0 0;
  background: var(--coral-soft);
  content: "";
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
}

.access-title .section-kicker {
  color: #ffb09d;
}

.access-title h2 {
  margin-bottom: 0;
}

.access-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  color: #dfeff1;
}

.access-copy p {
  margin-bottom: 0;
}

.lane-section {
  background: var(--white);
}

.lane-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 68px;
}

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

.lane-figure {
  height: 455px;
  border-radius: 18px 82px 18px 18px;
}

.lane-figure img {
  object-position: 56% center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 8px 0 5px;
  border-bottom: 2px solid var(--coral);
  color: var(--river-deep);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  color: var(--coral);
}

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

.types-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #aebfbe;
}

.types-heading h2,
.types-heading .section-kicker {
  margin-bottom: 0;
}

.type-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #aebfbe;
  border-left: 1px solid #aebfbe;
}

.type-rows article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 4px 18px;
  padding: 28px;
  border-right: 1px solid #aebfbe;
  border-bottom: 1px solid #aebfbe;
  background: rgba(255, 255, 255, 0.38);
}

.type-rows article > span {
  grid-row: 1 / span 2;
  color: var(--coral);
  font-size: 0.71rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.type-rows h3 {
  color: var(--river-deep);
}

.type-rows p {
  margin-bottom: 0;
  color: #4d6366;
}

.buyer-section {
  position: relative;
  background: var(--sky-pale);
}

.buyer-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  background: rgba(18, 63, 74, 0.08);
  content: "";
}

.buyer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 68px;
}

.residence-figure {
  height: 430px;
  border-radius: 72px 18px 72px 18px;
  box-shadow: -16px 16px 0 #cbdfe1;
}

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

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

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 56px;
}

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

.trust-copy p {
  margin-bottom: 0;
}

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

.trust-facts div {
  padding: 8px 20px 8px 24px;
  border-left: 4px solid var(--coral-soft);
}

.trust-facts dt {
  color: var(--river-deep);
  font-size: 1.22rem;
  font-weight: 830;
  line-height: 1.2;
}

.trust-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-section {
  background:
    linear-gradient(174deg, var(--sky) 0 38%, var(--sand) 38% 100%);
}

.contact-shell {
  max-width: 920px;
}

.form-card {
  overflow: hidden;
  border: 1px solid #adc5c8;
  border-radius: 20px 70px 20px 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading {
  padding: 38px 44px 0;
}

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

#contact-form {
  display: grid;
  gap: 22px;
  padding: 30px 44px 42px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !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;
}

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

.intent-option {
  position: relative;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px 22px 9px 9px;
  background: var(--sky-pale);
  color: var(--river-deep);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 730;
  line-height: 1.3;
  text-align: center;
}

.intent-option input {
  position: absolute;
  opacity: 0;
}

.intent-option[data-selected="true"] {
  border-color: var(--river);
  background: var(--river);
  color: #ffffff;
  box-shadow: inset 0 -4px 0 var(--coral-soft);
}

.intent-option:has(input:focus-visible) {
  outline: 3px solid #f09b7f;
  outline-offset: 3px;
}

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

.field label {
  color: var(--river-deep);
  font-size: 0.87rem;
  font-weight: 730;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #99b5b8;
  border-radius: 9px;
  background: #f8fbfb;
  color: var(--ink);
}

.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(--river);
  background: #ffffff;
}

.personal-details {
  border: 1px solid var(--line);
  border-radius: 10px 24px 10px 10px;
  background: var(--sky-pale);
}

.personal-details summary {
  padding: 15px 17px;
  color: var(--river-deep);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 730;
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: 5px 17px 20px;
}

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

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  color: #405b60;
  font-size: 0.84rem;
  line-height: 1.5;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--river);
}

.consent-row a {
  color: var(--coral);
  font-weight: 730;
}

.submit-button {
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px 28px 10px 10px;
  background: var(--river);
  color: #ffffff;
  cursor: pointer;
  font-weight: 790;
}

.submit-button:hover {
  background: var(--river-deep);
}

.privacy-note,
.form-status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.personal-contact {
  padding: 38px 44px 42px;
  border-top: 7px solid var(--coral-soft);
  background: var(--river-deep);
  color: #ffffff;
}

.personal-contact .section-kicker {
  color: #ffb09d;
}

.personal-contact h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.contact-name {
  margin-bottom: 18px;
  color: #dcebee;
}

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

.contact-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 710;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  color: #ffb09d;
}

.contact-links span {
  margin-right: 7px;
  color: #b9d6da;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 25px;
  background: #08282f;
  color: #dcebee;
  font-size: 0.8rem;
}

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

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 980px) {
  .main-nav {
    gap: 15px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 34px;
  }

  .access-grid,
  .lane-grid,
  .buyer-grid,
  .trust-grid {
    gap: 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  html {
    scroll-padding-top: 82px;
  }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 9px 18px 9px 9px;
    background: var(--white);
    color: var(--river-deep);
    font-size: 0.83rem;
    font-weight: 730;
  }

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

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

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

  .main-nav a {
    min-height: 44px;
    padding: 9px 11px;
    border-radius: 7px 16px 7px 7px;
  }

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

  .awz-logo {
    width: 74px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-stage,
  .access-grid,
  .lane-grid,
  .buyer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-figure {
    order: 2;
    height: 265px;
  }

  .hero-actions {
    order: 3;
    width: 100%;
  }

  .section {
    padding-block: 70px;
  }

  .access-copy {
    grid-template-columns: 1fr 1fr;
  }

  .lane-copy {
    order: 1;
  }

  .lane-figure {
    order: 2;
    height: 390px;
  }

  .types-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .residence-figure {
    height: 360px;
  }
}

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

  body {
    font-size: 16.5px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.38rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.05rem);
  }

  .operator-bar {
    font-size: 0.7rem;
  }

  .operator-bar .shell {
    padding-block: 6px;
  }

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

  .brand {
    font-size: 0.93rem;
  }

  .water-mark {
    width: 34px;
    min-width: 34px;
    height: 29px;
  }

  .awz-logo {
    display: none;
  }

  .hero {
    padding: 34px 0 40px;
  }

  .hero::after {
    right: -440px;
  }

  .hero-stage {
    gap: 24px;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-figure {
    height: 220px;
    border-radius: 55px 12px 12px 12px;
  }

  .action-line {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    min-height: 98px;
    padding: 16px;
    border-radius: 12px 32px 12px 12px;
  }

  .action-line__tag {
    grid-column: 1 / -1;
  }

  .action-line strong {
    font-size: 1rem;
  }

  .section {
    padding-block: 56px;
  }

  .access-grid,
  .lane-grid,
  .buyer-grid,
  .trust-grid {
    gap: 31px;
  }

  .access-copy {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lane-figure,
  .residence-figure {
    height: 245px;
  }

  .lane-figure {
    border-radius: 12px 48px 12px 12px;
  }

  .residence-figure {
    border-radius: 44px 12px 44px 12px;
    box-shadow: -9px 9px 0 #cbdfe1;
  }

  .buyer-section::before {
    display: none;
  }

  .type-rows {
    grid-template-columns: 1fr;
  }

  .type-rows article {
    grid-template-columns: 66px 1fr;
    padding: 22px 18px;
  }

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

  .form-card {
    border-radius: 14px 42px 14px 14px;
  }

  .form-heading,
  #contact-form,
  .personal-contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .form-heading {
    padding-top: 28px;
  }

  #contact-form {
    padding-top: 24px;
    padding-bottom: 30px;
  }

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

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

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

  .submit-button {
    width: 100%;
  }

  .contact-links {
    flex-direction: column;
  }

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

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

  .brand {
    gap: 7px;
    font-size: 0.85rem;
  }

  .water-mark {
    width: 30px;
    min-width: 30px;
    height: 27px;
  }

  .menu-toggle {
    padding-inline: 8px;
  }

  .action-line {
    padding: 14px 12px;
  }

  .type-rows article {
    grid-template-columns: 1fr;
  }

  .type-rows article > span {
    grid-row: auto;
  }

  .form-heading,
  #contact-form,
  .personal-contact {
    padding-right: 15px;
    padding-left: 15px;
  }

  .contact-links a {
    font-size: 0.9rem;
  }
}

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