:root {
  --ink: #101512;
  --ink-soft: #24312b;
  --paper: #f7f2e8;
  --limestone: #ded1bd;
  --mist: #f4eee3;
  --pine: #173a31;
  --sea: #1c6b73;
  --terracotta: #b65f3d;
  --sun: #d79a4d;
  --white: #fffaf1;
  --line: rgba(16, 21, 18, 0.16);
  --shadow: 0 22px 70px rgba(16, 21, 18, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
}

body::selection {
  color: var(--white);
  background: var(--terracotta);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 21, 18, 0.78), rgba(16, 21, 18, 0.24));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--white);
  background: rgba(182, 95, 61, 0.86);
  border: 1px solid rgba(255, 250, 241, 0.38);
  border-radius: 50%;
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 250, 241, 0.7);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 14px;
}

.main-nav a {
  padding: 8px 0;
}

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

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 999px;
  background: rgba(16, 21, 18, 0.24);
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  color: rgba(255, 250, 241, 0.74);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
}

.language-switch button.is-active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 21, 18, 0.88) 0%, rgba(16, 21, 18, 0.62) 38%, rgba(16, 21, 18, 0.12) 73%),
    linear-gradient(180deg, rgba(16, 21, 18, 0.4) 0%, rgba(16, 21, 18, 0.16) 44%, rgba(16, 21, 18, 0.72) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.52fr);
  align-items: end;
  gap: clamp(28px, 5vw, 74px);
  width: min(1180px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 128px 0 58px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 770px;
  font-size: clamp(64px, 10vw, 142px);
}

h2 {
  font-size: clamp(34px, 5.2vw, 78px);
}

h3 {
  font-size: clamp(23px, 2.4vw, 33px);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--terracotta);
  border-color: rgba(255, 250, 241, 0.18);
}

.button-primary:hover {
  background: #c86e48;
}

.button-quiet {
  color: var(--white);
  background: rgba(255, 250, 241, 0.12);
  border-color: rgba(255, 250, 241, 0.32);
}

.button.full {
  width: 100%;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 44px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.12);
}

.signal-row div {
  padding: 16px;
  background: rgba(16, 21, 18, 0.26);
}

.signal-row dt {
  color: rgba(255, 250, 241, 0.58);
  font-size: 12px;
}

.signal-row dd {
  margin: 5px 0 0;
  font-weight: 700;
}

.explorer-console {
  align-self: center;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(255, 250, 241, 0.54);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.console-topline,
.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-topline {
  margin-bottom: 14px;
  font-weight: 800;
}

.status-pill {
  padding: 6px 9px;
  color: var(--pine);
  background: rgba(28, 107, 115, 0.12);
  border: 1px solid rgba(28, 107, 115, 0.28);
  border-radius: 999px;
  font-size: 12px;
}

.search-form label,
.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

textarea,
input,
select {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

textarea {
  min-height: 118px;
  padding: 13px;
  resize: vertical;
  line-height: 1.45;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea:focus,
input:focus,
select:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(28, 107, 115, 0.14);
}

.prompt-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.prompt-row button,
.refinement-panel button,
.text-button {
  min-height: 38px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
}

.prompt-row button:hover,
.refinement-panel button:hover,
.refinement-panel button.is-active {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.assistant-note {
  margin-top: 14px;
  padding: 13px;
  color: var(--ink-soft);
  background: rgba(28, 107, 115, 0.09);
  border-left: 3px solid var(--sea);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  line-height: 1.45;
}

.section-head {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto 34px;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(16, 21, 18, 0.68);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
  overflow-wrap: break-word;
}

.search-stage,
.districts,
.benchmark-band,
.briefing {
  padding: clamp(70px, 9vw, 120px) 0;
}

.stage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  align-items: start;
}

.map-workbench,
.result-panel,
.brief-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.58);
}

.map-workbench {
  padding: 14px;
}

.map-toolbar {
  min-height: 44px;
  margin-bottom: 12px;
}

.map-toolbar strong,
.map-toolbar span {
  display: block;
}

.map-toolbar span {
  margin-top: 3px;
  color: rgba(16, 21, 18, 0.58);
  font-size: 12px;
}

.text-button {
  padding: 0 12px;
}

.map-canvas {
  --focus-x: 62%;
  --focus-y: 58%;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--focus-x) var(--focus-y), rgba(215, 154, 77, 0.26), rgba(215, 154, 77, 0) 24%),
    linear-gradient(135deg, #f5ead5 0%, #d9c5a6 42%, #8da19b 100%);
}

.map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 21, 18, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 18, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mix-blend-mode: multiply;
}

.sea-band,
.mountain-band {
  position: absolute;
  inset: 0;
}

.sea-band {
  clip-path: polygon(0 0, 45% 0, 33% 29%, 56% 61%, 75% 86%, 100% 100%, 0 100%);
  background:
    linear-gradient(145deg, rgba(28, 107, 115, 0.95), rgba(66, 138, 146, 0.62)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12) 1px, transparent 1px, transparent 15px);
}

.mountain-band {
  clip-path: polygon(39% 0, 100% 0, 100% 100%, 72% 100%, 55% 70%, 38% 46%, 27% 20%);
  background:
    linear-gradient(145deg, rgba(23, 58, 49, 0.92), rgba(143, 117, 87, 0.58)),
    radial-gradient(circle at 70% 15%, rgba(255, 250, 241, 0.22), transparent 24%);
}

.map-canvas svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.coastline,
.road,
.ridge {
  fill: none;
  stroke-linecap: round;
}

.coastline {
  stroke: rgba(255, 250, 241, 0.88);
  stroke-width: 8;
}

.road {
  stroke: rgba(16, 21, 18, 0.36);
  stroke-width: 3;
  stroke-dasharray: 8 12;
}

.ridge {
  stroke: rgba(255, 250, 241, 0.28);
  stroke-width: 4;
}

.ridge-soft {
  stroke-width: 2;
}

.district-label {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid rgba(16, 21, 18, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.label-beldibi { left: 16%; top: 14%; }
.label-goynuk { left: 28%; top: 28%; }
.label-merkez { left: 46%; top: 48%; }
.label-camyuva { left: 57%; top: 62%; }
.label-tekirova { left: 73%; top: 79%; }
.label-beycik { left: 70%; top: 38%; }

.pin-layer {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid rgba(255, 250, 241, 0.86);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 21, 18, 0.3);
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.map-pin.is-muted {
  opacity: 0.34;
}

.map-pin.is-active,
.map-pin:hover {
  transform: scale(1.14);
  background: var(--terracotta);
}

.refinement-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.refinement-panel span {
  margin-right: 4px;
  color: rgba(16, 21, 18, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.refinement-panel button {
  padding: 0 12px;
}

.result-panel {
  padding: 14px;
}

.advisor-card {
  padding: 16px;
  color: var(--white);
  background: var(--pine);
  border-radius: var(--radius);
}

.advisor-card span {
  color: rgba(255, 250, 241, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.advisor-card p {
  margin: 8px 0 0;
  line-height: 1.48;
}

.match-intelligence {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.match-intelligence section {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
}

.match-intelligence section > span {
  display: block;
  color: rgba(16, 21, 18, 0.54);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.next-question p {
  margin: 8px 0 0;
  color: var(--pine);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.intent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.intent-chips span {
  padding: 6px 8px;
  color: var(--pine);
  background: rgba(28, 107, 115, 0.1);
  border: 1px solid rgba(28, 107, 115, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.intent-chips .is-muted {
  color: rgba(16, 21, 18, 0.52);
  background: rgba(16, 21, 18, 0.05);
  border-color: var(--line);
}

.match-intelligence ul,
.match-intelligence ol {
  display: grid;
  gap: 7px;
  margin: 9px 0 0;
  padding-left: 18px;
  color: rgba(16, 21, 18, 0.72);
  font-size: 12px;
  line-height: 1.42;
}

.match-intelligence li::marker {
  color: var(--terracotta);
  font-weight: 900;
}

.match-intelligence ol li span {
  display: block;
  margin-top: 2px;
  color: rgba(16, 21, 18, 0.58);
}

.result-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.property-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.property-card:hover,
.property-card.is-active {
  border-color: rgba(182, 95, 61, 0.52);
  box-shadow: 0 16px 36px rgba(16, 21, 18, 0.12);
  transform: translateY(-1px);
}

.property-thumb {
  min-height: 132px;
  border-radius: 6px;
  background-image:
    linear-gradient(180deg, rgba(16, 21, 18, 0.12), rgba(16, 21, 18, 0.42)),
    url("./assets/hero-kemer-coast.png");
  background-size: cover;
}

.property-card:nth-child(2) .property-thumb { background-position: 45% 42%; }
.property-card:nth-child(3) .property-thumb { background-position: 68% 48%; }
.property-card:nth-child(4) .property-thumb { background-position: 76% 55%; }
.property-card:nth-child(5) .property-thumb { background-position: 35% 50%; }
.property-card:nth-child(6) .property-thumb { background-position: 82% 45%; }
.property-card:nth-child(7) .property-thumb { background-position: 54% 62%; }

.property-main {
  min-width: 0;
}

.property-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.property-kicker span {
  padding: 5px 7px;
  color: var(--pine);
  background: rgba(28, 107, 115, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.property-card h3 {
  font-size: 21px;
  line-height: 1.08;
}

.property-card p {
  margin: 8px 0 0;
  color: rgba(16, 21, 18, 0.68);
  font-size: 14px;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 900;
}

.score-bar {
  height: 7px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 21, 18, 0.09);
}

.score-bar span {
  display: block;
  width: var(--score, 40%);
  height: 100%;
  background: linear-gradient(90deg, var(--sea), var(--terracotta), var(--sun));
}

.trust-band {
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 21, 18, 0.96), rgba(23, 58, 49, 0.95)),
    radial-gradient(circle at 80% 30%, rgba(182, 95, 61, 0.28), transparent 26%);
}

.section-head-light p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.trust-grid,
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.14);
}

.trust-grid article,
.district-grid article {
  min-height: 254px;
  padding: clamp(20px, 2.3vw, 30px);
}

.trust-grid article {
  background: rgba(255, 250, 241, 0.055);
}

.trust-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--sun);
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 42px;
}

.trust-grid h3,
.district-grid h3 {
  font-size: 27px;
  line-height: 1.08;
}

.trust-grid p,
.district-grid p {
  margin: 14px 0 0;
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.5;
}

.district-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: var(--line);
  background: var(--line);
}

.district-grid article {
  background: rgba(255, 250, 241, 0.62);
}

.district-grid p {
  color: rgba(16, 21, 18, 0.68);
}

.benchmark-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.42), rgba(244, 238, 227, 0.94)),
    linear-gradient(120deg, rgba(28, 107, 115, 0.08), rgba(182, 95, 61, 0.08));
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.benchmark-grid article {
  min-height: 260px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.7);
}

.benchmark-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
}

.benchmark-grid h3 {
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.06;
}

.benchmark-grid p {
  margin: 14px 0 0;
  color: rgba(16, 21, 18, 0.68);
  line-height: 1.5;
}

.briefing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.55fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  align-items: start;
}

.brief-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(16, 21, 18, 0.68);
  font-size: 20px;
  line-height: 1.58;
}

.brief-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.brief-points li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.form-note {
  margin: 0;
  color: rgba(16, 21, 18, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(16, 21, 18, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--terracotta);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr) minmax(260px, 0.82fr);
  gap: 28px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: rgba(255, 250, 241, 0.78);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  color: var(--white);
  font-weight: 900;
}

.site-footer p {
  margin: 7px 0 0;
  line-height: 1.45;
}

.legal-strip {
  border-left: 1px solid rgba(255, 250, 241, 0.16);
  padding-left: 20px;
}

.legal-details {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
}

.legal-details div {
  display: grid;
  grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
  gap: 8px;
}

.legal-details dt,
.legal-details dd {
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-details dt {
  color: rgba(255, 250, 241, 0.5);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .stage-layout,
  .briefing {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
  }

  .explorer-console {
    max-width: 680px;
  }

  .trust-grid,
  .benchmark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .language-switch {
    width: max-content;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(560px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
    min-height: 100vh;
    padding: 136px 0 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .hero-lede {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(52px, 18vw, 88px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .signal-row,
  .prompt-row,
  .trust-grid,
  .benchmark-grid,
  .district-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .legal-strip {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 241, 0.16);
    padding: 18px 0 0;
  }

  .legal-details div {
    grid-template-columns: 1fr;
  }

  .map-canvas {
    min-height: 420px;
  }

  .property-card {
    grid-template-columns: 1fr;
  }

  .property-thumb {
    min-height: 168px;
  }
}

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