:root {
  --ink: #183633;
  --green: #315f52;
  --green-deep: #173f37;
  --green-soft: #dfeae4;
  --blue: #225469;
  --terra: #a6553d;
  --terra-deep: #7f3d2e;
  --sand: #eadfcd;
  --sand-soft: #f7f1e7;
  --white: #ffffff;
  --muted: #5f6e69;
  --line: #ccd8d1;
  --focus: #f2b84b;
  --shadow: 0 22px 48px rgba(22, 63, 55, 0.13);
  --radius: 18px;
  --shell-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  background: var(--sand-soft);
  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;
}

a,
button,
summary,
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(--green-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 18px;
  color: #fff;
  background: var(--green-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(49, 95, 82, 0.18);
  background: rgba(255, 255, 255, 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: 12px;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.brand-arch {
  position: relative;
  display: block;
  flex: 0 0 31px;
  height: 30px;
  border: 4px solid var(--terra);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.brand-arch::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  left: -7px;
  height: 4px;
  background: var(--green);
  content: "";
}

.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: 720;
  text-decoration: none;
}

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

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

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

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--green);
  border-radius: 9px;
  color: var(--green-deep);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 760;
}

.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(--terra-deep);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(43px, 4.5vw, 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 44px;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 84, 105, 0.1), transparent 27%),
    var(--sand-soft);
  overflow: hidden;
}

.terrace-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 28vw;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}

.terrace-lines i {
  position: absolute;
  right: -20%;
  width: 110%;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
  border-radius: 90px 0 0 0;
}

.terrace-lines i:nth-child(1) { top: 14%; height: 68%; }
.terrace-lines i:nth-child(2) { top: 30%; height: 53%; right: -5%; }
.terrace-lines i:nth-child(3) { top: 48%; height: 35%; right: 10%; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  grid-template-areas:
    "copy image"
    "gates gates";
  align-items: center;
  gap: 38px 58px;
}

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

.hero-intro {
  margin-bottom: 0;
  color: #4d625d;
  font-size: 19px;
}

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

.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(23, 63, 55, 0.88);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero-figure {
  grid-area: image;
  height: 318px;
  border: 8px solid #fff;
  border-radius: 150px 150px 18px 18px;
  box-shadow: var(--shadow);
}

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

.entry-gates {
  grid-area: gates;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.entry-gate {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 132px;
  padding: 21px 48px 20px 22px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 11px 11px 34px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.entry-gate:hover,
.entry-gate:focus-visible {
  border-color: var(--green);
  background: #fff;
  transform: translateY(-2px);
}

.entry-gate--primary {
  border-color: var(--terra);
  color: #fff;
  background: var(--terra);
}

.entry-gate--primary:hover,
.entry-gate--primary:focus-visible {
  border-color: var(--terra-deep);
  background: var(--terra-deep);
}

.entry-gate strong,
.entry-gate small,
.gate-label {
  display: block;
}

.gate-label {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
}

.entry-gate strong {
  font-size: 19px;
  line-height: 1.25;
}

.entry-gate small {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.88;
}

.entry-gate b {
  position: absolute;
  top: 17px;
  right: 17px;
  color: currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

.place-section {
  background: #fff;
}

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

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

.house-profile {
  position: relative;
  padding-left: 35px;
}

.house-profile::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 15px;
  border: 2px solid var(--green);
  border-right: 0;
  border-radius: 30px 0 0 30px;
  content: "";
}

.house-profile article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.house-profile article:first-child {
  padding-top: 0;
}

.house-profile article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 8px 8px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.house-profile h3,
.house-profile p {
  margin: 0;
}

.house-profile p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 16px;
}

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

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

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

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

.owner-figure {
  height: 430px;
  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 18px 120px 18px 18px;
}

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

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

.text-link--light {
  border-color: #f3c5b4;
  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(90deg, rgba(49, 95, 82, 0.055) 1px, transparent 1px) 0 0 / 96px 100%,
    var(--sand-soft);
}

.types-heading {
  display: grid;
  max-width: 980px;
  margin-bottom: 40px;
  grid-template-columns: 1fr 0.62fr;
  gap: 0 54px;
}

.types-heading .eyebrow,
.types-heading h2 {
  grid-column: 1;
}

.types-heading p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 3px solid var(--terra);
  color: var(--muted);
}

.facade-register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #afc0b7;
  border-bottom: 1px solid #afc0b7;
}

.facade-register article {
  position: relative;
  min-width: 0;
  padding: 34px 30px 32px;
}

.facade-register article + article {
  border-left: 1px solid #afc0b7;
}

.facade-register article::before {
  position: absolute;
  top: -13px;
  right: 30px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--terra);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: var(--sand-soft);
  content: "";
}

.facade-register span {
  display: block;
  margin-bottom: 22px;
  color: var(--terra-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.facade-register h3 {
  min-height: 50px;
}

.facade-register p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.buyer-section {
  background: #fff;
}

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

.buyer-figure {
  height: 415px;
  border-radius: 110px 18px 18px 18px;
  box-shadow: var(--shadow);
}

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

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

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

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

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

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

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

.trust-facts div {
  min-width: 0;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 48px 48px 10px 10px;
  text-align: center;
}

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

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

.contact-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(166, 85, 61, 0.1), transparent 24%),
    var(--green-soft);
}

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

#contact-form {
  position: relative;
  z-index: 1;
  padding: 52px 58px;
  border-top: 7px solid var(--terra);
  border-radius: 12px 12px 0 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.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: 64px;
  align-items: center;
  gap: 9px;
  padding: 12px 13px;
  border: 1px solid #aabbb3;
  border-radius: 9px 9px 20px 9px;
  color: var(--ink);
  background: #f8faf8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

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

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

.field {
  margin-bottom: 20px;
}

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

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

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

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

.field input:focus,
.field textarea:focus {
  border-color: var(--terra);
  outline: 3px solid rgba(242, 184, 75, 0.55);
  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 38px 14px 0;
  color: var(--green-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(--terra);
  border-radius: 50% 50% 8px 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: #38534c;
  font-size: 14px;
  line-height: 1.5;
}

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

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

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

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--terra-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(--terra);
  color: var(--green-deep);
  background: #faeee8;
  font-size: 14px;
}

.personal-contact {
  position: relative;
  display: grid;
  padding: 42px 58px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
  align-items: center;
  gap: 48px;
  color: #fff;
  background: var(--green-deep);
  border-radius: 0 0 80px 12px;
  overflow: hidden;
}

.personal-contact::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 145px;
  height: 145px;
  border: 20px solid rgba(234, 223, 205, 0.17);
  border-radius: 50% 50% 10px 50%;
  content: "";
}

.personal-contact > * {
  position: relative;
  z-index: 1;
}

.personal-contact h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 29px;
}

.contact-name {
  margin-bottom: 0;
  color: #dceae5;
  font-size: 18px;
  font-weight: 750;
}

.contact-lines {
  border-top: 1px solid rgba(255, 255, 255, 0.33);
}

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

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

.contact-lines span {
  margin-bottom: 3px;
  color: #b9d1c8;
  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: #dce9e5;
  background: #0d2e28;
  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: #aac2b9;
}

.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: 34px 36px;
  }

  .entry-gate {
    padding-left: 17px;
  }

  .place-grid,
  .owner-grid,
  .buyer-grid,
  .trust-grid {
    gap: 46px;
  }

  .personal-contact {
    gap: 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;
  }

  .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: #fff;
    box-shadow: 0 16px 28px rgba(23, 63, 55, 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"
      "gates";
  }

  .hero-figure {
    height: 300px;
  }

  .entry-gates {
    grid-template-columns: 1fr;
  }

  .entry-gate {
    min-height: 104px;
  }

  .place-grid,
  .owner-grid,
  .buyer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .owner-copy {
    order: 1;
  }

  .owner-figure {
    order: 2;
    height: 380px;
  }

  .buyer-figure {
    height: 370px;
  }

  .types-heading {
    display: block;
  }

  .types-heading p:last-child {
    margin-bottom: 0;
    padding-left: 0;
    border-left: 0;
  }

  .facade-register {
    grid-template-columns: 1fr;
  }

  .facade-register article + article {
    border-top: 1px solid #afc0b7;
    border-left: 0;
  }

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

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

@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-arch {
    flex-basis: 27px;
    height: 27px;
  }

  .awz-logo {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

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

  .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-width: 5px;
    border-radius: 90px 90px 12px 12px;
  }

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

  .entry-gate {
    min-height: 98px;
    padding: 17px 44px 17px 15px;
  }

  .place-grid,
  .owner-grid,
  .buyer-grid,
  .trust-grid {
    gap: 34px;
  }

  .house-profile {
    padding-left: 22px;
  }

  .house-profile article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .house-profile article > span {
    width: 36px;
    height: 36px;
  }

  .owner-figure,
  .buyer-figure {
    height: 260px;
    border-radius: 15px 72px 15px 15px;
  }

  .owner-figure {
    border-width: 5px;
  }

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

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

  .facade-register article {
    padding-inline: 10px;
  }

  .facade-register h3 {
    min-height: 0;
  }

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

  .trust-facts div {
    display: grid;
    padding: 17px 20px;
    grid-template-columns: minmax(115px, auto) 1fr;
    align-items: baseline;
    gap: 15px;
    border-radius: 38px 38px 8px 8px;
    text-align: left;
  }

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

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

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

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

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

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

  .personal-contact {
    padding: 36px 22px 46px;
    border-radius: 0 0 52px 10px;
  }

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

  .house-profile {
    padding-left: 18px;
  }

  .house-profile::before {
    width: 10px;
  }

  .house-profile article {
    grid-template-columns: 1fr;
  }

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