:root {
  --pine: #193f39;
  --pine-deep: #102e2a;
  --clay: #a74732;
  --clay-deep: #783021;
  --clay-soft: #f0d4c9;
  --river: #cfe2e1;
  --river-pale: #e8f1ef;
  --rice: #f7f2e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #21312f;
  --muted: #586a65;
  --line: #c9d1cc;
  --gold: #d2a04c;
  --shadow: 0 24px 60px rgba(16, 46, 42, 0.15);
  --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(--rice);
  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,
.district-action,
.contact-links a {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.75vw, 3.55rem);
  font-weight: 760;
}

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

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

.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: 7px;
  background: var(--white);
  color: var(--pine-deep);
  font-weight: 760;
}

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

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

.operator-bar {
  background: var(--pine-deep);
  color: #eef8f4;
  font-size: 0.78rem;
  letter-spacing: 0.018em;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(25, 63, 57, 0.15);
  background: rgba(247, 242, 231, 0.97);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pine-deep);
  font-size: 1.08rem;
  font-weight: 810;
  text-decoration: none;
}

.district-mark {
  position: relative;
  display: block;
  width: 42px;
  min-width: 42px;
  height: 36px;
  overflow: hidden;
  border: 1px solid rgba(25, 63, 57, 0.3);
  border-radius: 5px 14px 5px 5px;
  background: var(--river);
}

.district-mark::before {
  position: absolute;
  right: 5px;
  bottom: 7px;
  left: 5px;
  height: 9px;
  border-top: 2px solid var(--pine);
  border-bottom: 2px solid var(--clay);
  content: "";
}

.district-mark i,
.district-mark b {
  position: absolute;
  bottom: 17px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: var(--pine);
}

.district-mark i {
  left: 6px;
}

.district-mark b {
  right: 5px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  background: var(--gold);
}

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

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: #2e4843;
  font-size: 0.89rem;
  font-weight: 680;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clay);
  content: "";
  transition: transform 160ms ease;
}

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

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 52px;
  background:
    linear-gradient(118deg, transparent 0 72%, rgba(207, 226, 225, 0.55) 72% 100%),
    var(--rice);
}

.hero::after {
  position: absolute;
  right: -190px;
  bottom: 145px;
  width: 780px;
  height: 250px;
  transform: rotate(-5deg);
  border: 1px solid rgba(25, 63, 57, 0.17);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-areas:
    "copy figure"
    "actions actions";
  align-items: center;
  gap: 36px 58px;
}

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

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

.hero-intro {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

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

.editorial-figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 5px;
  background: rgba(19, 35, 32, 0.79);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 660;
  line-height: 1.25;
}

.hero-figure {
  grid-area: figure;
  height: 320px;
  border-radius: 7px 88px 7px 7px;
}

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

.hero-actions {
  grid-area: actions;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.district-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 88px;
  padding: 16px 19px;
  gap: 15px;
  border: 1px solid rgba(25, 63, 57, 0.28);
  border-radius: 7px 24px 7px 7px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--pine-deep);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.district-action:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
  box-shadow: 0 12px 26px rgba(16, 46, 42, 0.12);
}

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

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

.district-action strong {
  margin-bottom: 2px;
  font-size: 1rem;
  line-height: 1.25;
}

.district-action small {
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.38;
  opacity: 0.82;
}

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

.district-action__number {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay-soft);
  color: var(--clay-deep);
  font-size: 0.69rem;
  font-weight: 860;
}

.district-action--primary .district-action__number {
  background: var(--gold);
  color: var(--pine-deep);
}

.section {
  padding: 92px 0;
}

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

.district-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 55px 90px;
}

.district-word {
  display: grid;
  grid-template-columns: auto minmax(65px, 1fr) auto;
  align-items: center;
  color: var(--pine);
  font-size: clamp(3.3rem, 7vw, 6.1rem);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 1;
}

.district-word i {
  height: 2px;
  margin: 0 20px;
  background: linear-gradient(90deg, var(--clay), var(--gold), var(--pine));
}

.district-copy {
  padding-left: 32px;
  border-left: 3px solid var(--clay);
}

.district-copy p:last-child,
.owner-copy p:last-of-type,
.buyer-copy p:last-of-type,
.trust-copy p:last-child {
  margin-bottom: 0;
}

.owner-section {
  background: var(--river-pale);
}

.owner-grid,
.buyer-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.07fr) minmax(0, 0.93fr);
  align-items: center;
  gap: 54px 70px;
}

.street-figure {
  height: 420px;
  border-radius: 70px 7px 7px 7px;
}

.street-figure img {
  object-position: center 51%;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 27px;
  gap: 10px;
  border-bottom: 2px solid var(--clay);
  color: var(--pine-deep);
  font-weight: 790;
  text-decoration: none;
}

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

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

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

.types-layout {
  display: grid;
  grid-template-columns: minmax(285px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 50px 82px;
}

.types-heading {
  position: sticky;
  top: 120px;
}

.type-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(25, 63, 57, 0.35);
  border-left: 1px solid rgba(25, 63, 57, 0.35);
}

.type-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: start;
  min-height: 230px;
  padding: 28px 25px;
  gap: 16px;
  border-right: 1px solid rgba(25, 63, 57, 0.35);
  border-bottom: 1px solid rgba(25, 63, 57, 0.35);
}

.type-list article:nth-child(2),
.type-list article:nth-child(3) {
  background: rgba(207, 226, 225, 0.33);
}

.type-list span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.type-list h3 {
  margin-bottom: 12px;
}

.type-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.buyer-section {
  position: relative;
  overflow: hidden;
  background: var(--clay-soft);
}

.buyer-section::before {
  position: absolute;
  top: -160px;
  left: -110px;
  width: 420px;
  height: 330px;
  border: 1px solid rgba(120, 48, 33, 0.17);
  border-radius: 50%;
  content: "";
}

.buyer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.apartment-figure {
  height: 420px;
  border-radius: 7px 7px 76px 7px;
}

.apartment-figure img {
  object-position: center 53%;
}

.trust-section {
  padding-block: 69px;
  background: var(--pine);
  color: #ffffff;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 44px 78px;
}

.trust-section .section-kicker {
  color: #f1bd82;
}

.trust-section h2 {
  margin-bottom: 12px;
}

.trust-copy p:last-child {
  max-width: 520px;
  color: #e1eeea;
}

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

.trust-facts div {
  padding: 20px 16px 0 0;
}

.trust-facts dt {
  margin-bottom: 3px;
  color: #f1bd82;
  font-size: 1.22rem;
  font-weight: 830;
  line-height: 1.2;
}

.trust-facts dd {
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.34;
}

.contact-section {
  position: relative;
  padding-block: 96px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(207, 226, 225, 0.55) 12% 14%, transparent 14% 100%),
    var(--paper);
}

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

.form-card {
  overflow: hidden;
  border: 1px solid rgba(25, 63, 57, 0.2);
  border-radius: 8px 34px 8px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading,
#contact-form {
  padding-right: clamp(28px, 6vw, 72px);
  padding-left: clamp(28px, 6vw, 72px);
}

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

.form-heading h2 {
  margin-bottom: 8px;
}

#contact-form {
  padding-top: 21px;
  padding-bottom: 52px;
}

.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;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intent-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 32px;
  padding: 5px;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px 18px 8px 8px;
  background: #f1f3ef;
}

.intent-option {
  position: relative;
  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: 54px;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 5px 13px 5px 5px;
  color: #43544f;
  font-size: 0.86rem;
  font-weight: 740;
  line-height: 1.25;
  text-align: center;
}

.intent-option[data-selected="true"] span {
  border-color: var(--pine);
  background: var(--white);
  color: var(--pine-deep);
  box-shadow: 0 4px 12px rgba(16, 46, 42, 0.08);
}

.intent-option input:focus-visible + span {
  outline: 3px solid #d47a45;
  outline-offset: 2px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #9da9a4;
  border-radius: 6px 13px 6px 6px;
  background: #fffefb;
  color: var(--ink);
}

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

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

.field input:hover,
.field textarea:hover {
  border-color: var(--pine);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--clay);
  outline: 3px solid rgba(210, 160, 76, 0.3);
}

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

.personal-details summary {
  position: relative;
  padding: 17px 36px 17px 0;
  cursor: pointer;
  color: var(--pine-deep);
  font-weight: 770;
  list-style: none;
}

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

.personal-details summary::after {
  position: absolute;
  top: 14px;
  right: 2px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 5px 11px 5px 5px;
  background: var(--river);
  color: var(--pine-deep);
  content: "+";
  font-size: 1.18rem;
  line-height: 1;
}

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

.personal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 9px;
  gap: 0 20px;
}

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

.consent-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  margin: 0 0 25px;
  gap: 11px;
  color: #465650;
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.consent-row a {
  color: var(--pine-deep);
  font-weight: 740;
  text-underline-offset: 3px;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  padding: 13px 20px;
  border: 2px solid var(--pine);
  border-radius: 6px 15px 6px 6px;
  background: var(--pine);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  border-color: var(--pine-deep);
  background: var(--pine-deep);
}

.privacy-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.form-status {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--clay);
  background: var(--clay-soft);
  color: var(--clay-deep);
  font-size: 0.9rem;
}

.personal-contact {
  padding: 44px clamp(28px, 6vw, 72px) 48px;
  background: var(--clay-deep);
  color: #ffffff;
}

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

.personal-contact h3 {
  max-width: 670px;
  margin-bottom: 11px;
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
}

.contact-name {
  margin-bottom: 24px;
  color: #f6e5df;
}

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

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px 12px 5px 5px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 720;
  text-decoration: none;
}

.contact-links a:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.contact-links span {
  margin-right: 7px;
  color: #f5c984;
  font-size: 0.72rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 5px solid var(--gold);
  background: var(--pine-deep);
  color: #eff8f5;
}

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

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

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

.footer-inner a {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 650;
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(370px, 1.12fr);
    gap: 32px 38px;
  }

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

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

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

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 10px;
    gap: 8px;
    border: 1px solid rgba(25, 63, 57, 0.3);
    border-radius: 6px 12px 6px 6px;
    background: transparent;
    color: var(--pine-deep);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 750;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 3px;
    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: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    padding: 10px;
    gap: 0;
    border: 1px solid rgba(25, 63, 57, 0.22);
    border-radius: 0 0 12px 12px;
    background: var(--paper);
    box-shadow: 0 20px 38px rgba(16, 46, 42, 0.16);
  }

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

  .main-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .awz-logo {
    width: 70px;
    height: 38px;
  }

  .hero {
    padding: 45px 0 43px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "figure"
      "actions";
    gap: 27px;
  }

  .hero-figure {
    height: 260px;
  }

  .section {
    padding: 72px 0;
  }

  .district-grid,
  .owner-grid,
  .types-layout,
  .buyer-grid,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .district-word {
    max-width: 500px;
  }

  .district-copy {
    padding-left: 25px;
  }

  .street-figure,
  .apartment-figure {
    height: 360px;
  }

  .types-heading {
    position: static;
  }

  .buyer-copy {
    order: 1;
  }

  .apartment-figure {
    order: 2;
  }

  .trust-section {
    padding-block: 62px;
  }
}

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

  body {
    font-size: 16.5px;
    line-height: 1.64;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.08rem, 10vw, 2.42rem);
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(1.72rem, 8vw, 2rem);
  }

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

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 0.94rem;
  }

  .district-mark {
    width: 35px;
    min-width: 35px;
    height: 31px;
  }

  .district-mark i,
  .district-mark b {
    bottom: 15px;
    width: 12px;
    height: 12px;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 7px 8px;
  }

  .menu-toggle span:last-child {
    display: none;
  }

  .awz-logo {
    width: 62px;
  }

  .hero {
    padding-top: 37px;
  }

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

  .hero-figure {
    height: 220px;
    border-radius: 6px 58px 6px 6px;
  }

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

  .district-action {
    min-height: 80px;
    padding: 14px 15px;
  }

  .section {
    padding: 59px 0;
  }

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

  .district-word {
    font-size: 3.7rem;
  }

  .district-copy {
    padding-left: 18px;
  }

  .street-figure,
  .apartment-figure {
    height: 270px;
    border-radius: 48px 6px 6px 6px;
  }

  .apartment-figure {
    border-radius: 6px 6px 48px 6px;
  }

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

  .type-list article {
    min-height: 0;
    padding: 22px 19px;
  }

  .type-list article:nth-child(2),
  .type-list article:nth-child(3) {
    background: transparent;
  }

  .type-list article:nth-child(even) {
    background: rgba(207, 226, 225, 0.33);
  }

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

  .trust-facts div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: baseline;
    padding: 13px 0;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .contact-section {
    padding-block: 56px;
  }

  .form-card {
    border-radius: 7px 24px 7px 7px;
  }

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

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

  #contact-form {
    padding-top: 15px;
    padding-bottom: 38px;
  }

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

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

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

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

  .personal-contact {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-links a {
    width: 100%;
  }

  .footer-inner {
    display: grid;
    padding-block: 26px;
  }

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

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

  h1 {
    font-size: 2rem;
  }

  .brand {
    font-size: 0.86rem;
  }

  .district-mark {
    display: none;
  }

  .awz-logo {
    width: 57px;
  }

  .hero-figure {
    height: 200px;
    border-radius: 6px 46px 6px 6px;
  }

  .district-action {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: 12px;
    gap: 10px;
  }

  .district-action__number {
    width: 31px;
    height: 31px;
  }

  .district-word {
    font-size: 3.2rem;
  }

  .street-figure,
  .apartment-figure {
    height: 236px;
  }

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

  .contact-links a {
    padding-inline: 12px;
    font-size: 0.86rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
