:root {
  --ink: #2c2430;
  --ink-soft: #655b66;
  --plum: #492d4f;
  --plum-deep: #2e1b35;
  --saffron: #c88c25;
  --terracotta: #b6533f;
  --sand: #f5ecdd;
  --sand-deep: #e9dac7;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #d9ccbf;
  --focus: #e3a42f;
  --shadow: 0 18px 45px rgba(60, 38, 48, 0.11);
  --radius: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.67;
  overflow-wrap: break-word;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, summary { font: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 86px 0; scroll-margin-top: 104px; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--plum-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.operator-bar {
  position: relative;
  color: #fff9ed;
  background: var(--plum-deep);
  font-size: 12px;
  letter-spacing: 0.025em;
}
.operator-bar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), var(--terracotta));
  content: "";
}
.operator-bar .shell { min-height: 35px; display: flex; align-items: center; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--plum-deep);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.arch-mark {
  position: relative;
  width: 48px;
  height: 42px;
  display: block;
  border: 3px solid var(--plum);
  border-bottom: 0;
  border-radius: 28px 28px 4px 4px;
}
.arch-mark::before,
.arch-mark::after,
.arch-mark i {
  position: absolute;
  right: 7px;
  left: 7px;
  height: 3px;
  background: var(--saffron);
  content: "";
}
.arch-mark::before { top: 13px; }
.arch-mark i { top: 21px; background: var(--terracotta); }
.arch-mark::after { top: 29px; background: var(--plum); }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
}
.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  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-logo {
  width: 78px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--plum-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle > span:last-child { display: none; }
.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 23px;
  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: -7px; }
.menu-toggle__icon::after { top: 7px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 58px;
  background:
    linear-gradient(90deg, rgba(73, 45, 79, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(73, 45, 79, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--paper);
}
.hero::before {
  position: absolute;
  right: -100px;
  top: 52px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(200, 140, 37, 0.26);
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(9deg);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  column-gap: 54px;
  row-gap: 38px;
  align-items: center;
}
.hero-copy { max-width: 520px; }
.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}
h1, h2, h3, p, dl, dd { margin-top: 0; }
h1, h2, h3 { color: var(--plum-deep); line-height: 1.1; letter-spacing: -0.035em; }
h1 { margin-bottom: 24px; font-size: clamp(44px, 4.1vw, 57px); }
h2 { margin-bottom: 22px; font-size: clamp(32px, 3.1vw, 42px); }
h3 { margin-bottom: 10px; font-size: 22px; }
p { margin-bottom: 20px; }
.hero-intro { margin-bottom: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.62; }
.editorial-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sand-deep);
  box-shadow: var(--shadow);
}
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure {
  height: 318px;
  border-radius: 170px 170px 22px 22px;
}
.hero-figure img { object-position: 50% 53%; }
figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(46, 27, 53, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}
.hero-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.action-card {
  position: relative;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 62px 20px 24px;
  color: var(--plum-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px 12px 36px 12px;
  box-shadow: 0 10px 24px rgba(58, 38, 49, 0.07);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.action-card:hover { border-color: var(--terracotta); transform: translateY(-2px); box-shadow: var(--shadow); }
.action-card span { font-weight: 820; line-height: 1.3; }
.action-card small { margin-top: 4px; color: var(--ink-soft); font-size: 14px; line-height: 1.4; }
.action-card b { position: absolute; right: 24px; top: 50%; color: var(--terracotta); font-size: 24px; transform: translateY(-50%); }
.action-card--primary { color: var(--white); background: var(--plum); border-color: var(--plum); }
.action-card--primary small { color: #f5eaf4; }
.action-card--primary b { color: #ffd27f; }

.district-section { padding-bottom: 72px; background: var(--white); }
.district-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 76px; }
.district-heading { position: relative; padding-left: 28px; }
.district-heading::before {
  position: absolute;
  top: 3px;
  bottom: 5px;
  left: 0;
  width: 6px;
  background: linear-gradient(var(--saffron), var(--terracotta));
  border-radius: 5px;
  content: "";
}
.district-copy { color: var(--ink-soft); }
.district-copy p:last-child { margin-bottom: 0; }

.owner-section { background: var(--sand); }
.editorial-layout { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); gap: 66px; align-items: center; }
.editorial-layout--reverse { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
.editorial-layout--reverse .editorial-copy { order: 2; }
.editorial-layout--reverse .editorial-figure { order: 1; }
.editorial-copy p { color: var(--ink-soft); }
.owner-figure,
.buyer-figure { height: 395px; border-radius: 20px 100px 20px 20px; }
.owner-figure img { object-position: 50% 51%; }
.buyer-figure { border-radius: 100px 20px 20px 20px; }
.buyer-figure img { object-position: 52% 54%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  color: var(--plum-deep);
  font-weight: 820;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.text-link span { color: var(--terracotta); font-size: 23px; }

.types-section { background: var(--paper); }
.types-intro { max-width: 720px; margin-bottom: 34px; }
.types-intro p:last-child { color: var(--ink-soft); }
.type-ledger { border-top: 1px solid var(--line); }
.type-ledger article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
}
.type-ledger article > span { color: var(--saffron); font-size: 30px; font-weight: 800; line-height: 1.1; }
.type-ledger h3 { margin-bottom: 7px; }
.type-ledger p { max-width: 750px; margin-bottom: 0; color: var(--ink-soft); }

.buyer-section { background: #f3eee8; }

.trust-section { color: #fbf4ea; background: var(--plum-deep); }
.trust-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.trust-section h2 { color: var(--white); }
.trust-section p { margin-bottom: 0; color: #e6dce5; }
.trust-section .section-kicker { color: #ffd27f; }
.trust-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 14px; overflow: hidden; }
.trust-facts > div { min-width: 0; padding: 24px 18px; background: rgba(255, 255, 255, 0.05); }
.trust-facts > div + div { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.trust-facts dt { color: #ffd27f; font-size: 24px; font-weight: 850; line-height: 1.2; }
.trust-facts dd { margin-top: 6px; color: #f5eef4; font-size: 14px; line-height: 1.4; }

.contact-section {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(200, 140, 37, 0.09), transparent 36%),
    var(--sand);
}
.contact-layout { max-width: 910px; }
.form-card { overflow: hidden; padding: 54px 62px 0; background: var(--white); border: 1px solid var(--line); border-radius: 24px 24px 96px 24px; box-shadow: var(--shadow); }
.form-card > h2 { margin-bottom: 30px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.intent-group { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; 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 {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  color: var(--plum-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px 9px 22px 9px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.3;
  text-align: center;
}
.intent-option[data-selected="true"] span { color: var(--white); background: var(--plum); border-color: var(--plum); box-shadow: inset 0 -4px 0 var(--saffron); }
.intent-option input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 3px; }
.field { margin-bottom: 21px; }
.field label { display: block; margin-bottom: 7px; color: var(--plum-deep); font-size: 15px; font-weight: 780; }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bfae9e;
  border-radius: 8px;
}
.field input { min-height: 52px; }
.field textarea { min-height: 176px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(200, 140, 37, 0.22); outline: none; }
.personal-details { margin: 8px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.personal-details summary { position: relative; padding: 16px 42px 16px 0; color: var(--plum-deep); font-weight: 760; cursor: pointer; }
.personal-details summary::after { position: absolute; top: 13px; right: 4px; color: var(--terracotta); font-size: 28px; content: "+"; }
.personal-details[open] summary::after { content: "−"; }
.personal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; padding-top: 8px; }
.field--wide { grid-column: 1 / -1; }
.consent-row { display: grid; grid-template-columns: 23px 1fr; gap: 10px; align-items: start; margin-bottom: 24px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.consent-row input { width: 21px; height: 21px; margin: 1px 0 0; accent-color: var(--plum); }
.consent-row a { color: var(--plum-deep); font-weight: 750; text-underline-offset: 3px; }
.submit-button {
  width: 100%;
  min-height: 58px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--plum);
  border: 0;
  border-radius: 9px 9px 28px 9px;
  font-weight: 820;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.submit-button:hover { background: #5c3762; transform: translateY(-1px); }
.privacy-note { margin: 14px 0 0; color: var(--ink-soft); font-size: 13px; text-align: center; }
.form-status { margin: 13px 0 0; color: var(--plum-deep); font-weight: 700; }
.personal-contact { margin: 38px -62px 0; padding: 38px 62px 48px; background: #f4ede6; border-top: 1px solid var(--line); }
.personal-contact h3 { margin-bottom: 12px; font-size: clamp(27px, 3vw, 37px); }
.contact-name { margin-bottom: 24px; color: var(--ink-soft); font-weight: 740; }
.contact-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.contact-links a { padding: 16px 18px; color: var(--plum-deep); background: var(--white); border: 1px solid var(--line); border-radius: 9px 9px 24px 9px; font-weight: 800; text-decoration: none; }
.contact-links span { display: block; margin-bottom: 3px; color: var(--terracotta); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.site-footer { padding: 28px 0; color: #f7eff7; background: #28172f; font-size: 14px; }
.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; justify-content: flex-end; gap: 18px; }
.footer-inner a { color: var(--white); text-underline-offset: 4px; }

@media (max-width: 1024px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .section { padding: 70px 0; }
  .header-inner { gap: 20px; }
  .main-nav { gap: 18px; }
  .hero-layout { column-gap: 34px; }
  .hero-figure { height: 300px; }
  .district-grid { gap: 48px; }
  .editorial-layout,
  .editorial-layout--reverse { gap: 42px; }
  .owner-figure,
  .buyer-figure { height: 360px; }
  .trust-layout { grid-template-columns: 0.78fr 1.22fr; gap: 36px; }
}

@media (max-width: 820px) {
  .header-inner { grid-template-columns: 1fr auto auto; min-height: 76px; }
  .brand { font-size: 21px; }
  .arch-mark { width: 42px; height: 38px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav[data-open="true"] { display: flex; }
  .main-nav a { min-height: 48px; display: flex; align-items: center; padding: 8px 12px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .hero { padding-top: 48px; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 680px; }
  .hero-figure { height: 290px; }
  .hero-actions { grid-column: 1; }
  .district-grid { grid-template-columns: 1fr; gap: 25px; }
  .editorial-layout,
  .editorial-layout--reverse { grid-template-columns: 1fr; gap: 34px; }
  .editorial-layout--reverse .editorial-copy,
  .editorial-layout--reverse .editorial-figure { order: initial; }
  .editorial-layout--reverse .editorial-copy { order: 1; }
  .editorial-layout--reverse .editorial-figure { order: 2; }
  .buyer-section .editorial-copy { order: 1; }
  .buyer-section .editorial-figure { order: 2; }
  .owner-figure,
  .buyer-figure { height: 370px; }
  .trust-layout { grid-template-columns: 1fr; }
  .form-card { padding-right: 42px; padding-left: 42px; }
  .personal-contact { margin-right: -42px; margin-left: -42px; padding-right: 42px; padding-left: 42px; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .operator-bar .shell { min-height: 31px; font-size: 10px; }
  .header-inner { min-height: 64px; gap: 10px; }
  .brand { gap: 8px; font-size: 18px; }
  .arch-mark { width: 34px; height: 31px; border-width: 2px; }
  .arch-mark::before { top: 9px; }
  .arch-mark i { top: 16px; }
  .arch-mark::after { top: 23px; }
  .arch-mark::before,
  .arch-mark::after,
  .arch-mark i { right: 5px; left: 5px; height: 2px; }
  .awz-logo { width: 59px; height: 45px; }
  .menu-toggle { min-width: 46px; min-height: 46px; }
  .section { padding: 58px 0; scroll-margin-top: 76px; }
  .hero { padding: 38px 0 44px; }
  .hero-layout { gap: 24px; }
  .eyebrow,
  .section-kicker { font-size: 11px; letter-spacing: 0.12em; }
  h1 { margin-bottom: 18px; font-size: clamp(32px, 10vw, 38px); }
  h2 { font-size: clamp(28px, 8.5vw, 34px); }
  .hero-intro { font-size: 17px; }
  .hero-figure { height: 224px; border-radius: 96px 96px 18px 18px; }
  figcaption { right: 12px; bottom: 10px; padding: 4px 7px; font-size: 10px; }
  .hero-actions { grid-template-columns: 1fr; gap: 11px; }
  .action-card { min-height: 86px; padding: 17px 48px 17px 17px; border-radius: 10px 10px 28px 10px; }
  .action-card b { right: 17px; }
  .district-heading { padding-left: 20px; }
  .owner-figure,
  .buyer-figure { height: 270px; border-radius: 16px 70px 16px 16px; }
  .buyer-figure { border-radius: 70px 16px 16px 16px; }
  .type-ledger article { grid-template-columns: 54px 1fr; gap: 10px; padding: 22px 0; }
  .type-ledger article > span { font-size: 24px; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts > div + div { border-top: 1px solid rgba(255, 255, 255, 0.18); border-left: 0; }
  .contact-section { padding: 58px 0; }
  .form-card { padding: 38px 18px 0; border-radius: 17px 17px 55px 17px; }
  .intent-group { grid-template-columns: 1fr; gap: 8px; }
  .intent-option span { min-height: 52px; justify-content: flex-start; text-align: left; }
  .personal-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .personal-contact { margin: 32px -18px 0; padding: 32px 18px 42px; }
  .contact-links { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (max-width: 350px) {
  .shell { width: min(calc(100% - 18px), var(--shell)); }
  .brand { font-size: 16px; }
  .arch-mark { display: none; }
  .awz-logo { width: 54px; }
  h1 { font-size: 31px; hyphens: manual; }
  h2 { font-size: 27px; hyphens: manual; }
  .hero-figure { height: 205px; }
  .action-card span,
  .contact-links a { overflow-wrap: anywhere; }
  .submit-button { padding-inline: 12px; }
}

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