:root {
  --cream: #f6f2ea;
  --cream-2: #ece5d6;
  --paper: #fffdf8;
  --ink: #15251c;
  --forest: #12261f;
  --forest-2: #1a362c;
  --forest-3: #23483b;
  --gold: #c4a052;
  --gold-2: #b08d3e;
  --gold-soft: #e8d48a;
  --muted: #5c6b62;
  --muted-2: #8a968e;
  --line: #ddd4c4;
  --plot: #e6d9c2;
  --plot-hi: #d4b56a;
  --plot-sold: #c5b9a8;
  --road: #2c2c2c;
  --grass: #3f6d42;
  --grass-2: #5a8a4e;
  --success: #2f7a4a;
  --metal: #c9c6c0;
  --metal-2: #9c9890;
  --display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 18px 50px -24px rgb(18 38 31 / 0.28);
  --shadow-lg: 0 32px 80px -28px rgb(18 38 31 / 0.45);
  --radius: 1.75rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; }
::selection { background: color-mix(in oklab, var(--gold) 45%, white); color: var(--ink); }

.wrap {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .wrap { padding-inline: 2rem; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; height: 4.6rem;
}
.logo {
  display: flex; flex-direction: column; line-height: 1;
  flex-shrink: 0;
}
.logo-img {
  height: 2.7rem;
  width: auto;
  object-fit: contain;
}
.logo-img-light { height: 2.55rem; }
.logo-name { font-family: var(--display); font-size: 1.65rem; color: var(--gold); }
.logo-tag {
  margin-top: 0.2rem; font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.nav-desktop {
  display: none; align-items: center; gap: 1.5rem;
  font-size: 0.9rem; color: color-mix(in oklab, var(--ink) 80%, transparent);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-drop { position: relative; }
.nav-drop > button {
  background: none; border: 0; color: inherit; font-size: inherit;
  display: inline-flex; align-items: center; gap: 0.25rem; padding: 0;
}
.nav-drop-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); padding-top: 0.75rem; width: 11rem;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu > div {
  background: var(--paper); border: 1px solid var(--line); border-radius: 1rem;
  padding: 0.35rem; box-shadow: 0 10px 30px -18px rgb(18 38 31 / 0.18);
}
.nav-drop-menu a {
  display: block; padding: 0.5rem 0.75rem; border-radius: 0.7rem; font-size: 0.875rem;
}
.nav-drop-menu a:hover { background: var(--cream-2); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.hide-sm { display: none !important; }
@media (min-width: 700px) { .hide-sm { display: inline-flex !important; } }
.btn-menu {
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  display: grid; place-items: center;
}
.nav-mobile {
  display: none; border-top: 1px solid var(--line);
  background: var(--cream); padding: 1.1rem 1.25rem 1.4rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 0.75rem 0.7rem; border-radius: 0.75rem; }
.nav-mobile a:hover { background: var(--cream-2); }
.nav-mobile .stack { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .btn-menu { display: none; }
  .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.75rem; padding: 0 1.25rem; border-radius: 999px; font-size: 0.9rem;
  font-weight: 500; border: 0; transition: background .25s, color .25s, transform .15s, box-shadow .25s, border-color .25s;
}
.btn:active { transform: scale(0.98); }
.btn-lg { height: 3.1rem; padding: 0 1.6rem; font-size: 0.95rem; }
.btn-sm { height: 2.5rem; padding: 0 1rem; font-size: 0.85rem; }
.btn-primary {
  background: var(--forest); color: var(--cream);
  box-shadow: 0 4px 14px -4px rgb(18 38 31 / 0.45);
}
.btn-primary:hover {
  background: var(--forest-2);
  box-shadow: 0 8px 22px -6px rgb(18 38 31 / 0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: var(--paper); color: var(--forest);
  border: 1px solid color-mix(in oklab, var(--forest) 18%, transparent);
}
.btn-outline:hover {
  background: var(--cream-2);
  border-color: color-mix(in oklab, var(--gold) 40%, var(--forest));
}
.btn-inverse {
  background: var(--paper); color: var(--forest);
  box-shadow: 0 4px 14px -6px rgb(0 0 0 / 0.25);
}
.btn-inverse:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-full { width: 100%; }
.btn:disabled { opacity: .5; pointer-events: none; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.blob-forest {
  pointer-events: none; position: absolute; top: -8rem; right: -6rem;
  width: 32rem; height: 32rem; border-radius: 999px;
  background: radial-gradient(ellipse at 70% 30%, #1a3a2e 0%, #12261f 55%, #0b1a15 100%);
  opacity: 0.92;
  filter: blur(2px);
}
.blob-gold {
  pointer-events: none; position: absolute; top: 1.5rem; right: 16%;
  width: 16rem; height: 12rem; border-radius: 999px;
  background: radial-gradient(ellipse at center, #d4b45c 0%, #c4a052 50%, transparent 72%);
  opacity: 0.85;
  filter: blur(8px);
}
.hero-grid {
  position: relative; display: grid; gap: 2.5rem;
  padding: 3rem 0 3.5rem; align-items: center;
}
.kicker {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted); margin: 0;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.55rem);
  margin-top: 1.1rem;
  letter-spacing: -0.03em;
}
.hero h1 .gold {
  color: var(--gold);
  background: linear-gradient(135deg, #d4b45c 0%, #c4a052 40%, #a88b3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede {
  max-width: 28rem; color: var(--muted); font-size: 1.08rem;
  margin-top: 1.25rem; line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.trusted { display: flex; align-items: center; gap: 0.85rem; margin-top: 2rem; }
.avatars { display: flex; }
.avatars img {
  width: 2.35rem; height: 2.35rem; border-radius: 999px; object-fit: cover;
  border: 2.5px solid var(--cream); margin-left: -0.55rem;
  box-shadow: 0 2px 8px -2px rgb(18 38 31 / 0.25);
}
.avatars img:first-child { margin-left: 0; }
.trusted p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.hero-visual {
  position: relative;
  margin-inline: auto;
  max-width: 42rem;
}
.hero-devices-img {
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--gold) 25%, transparent),
    0 28px 70px -20px rgb(18 38 31 / 0.55),
    0 12px 30px -12px rgb(0 0 0 / 0.35);
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-visual:hover .hero-devices-img {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--gold) 40%, transparent),
    0 36px 80px -18px rgb(18 38 31 / 0.6),
    0 16px 40px -10px rgb(0 0 0 / 0.4);
}
.dot-grid {
  pointer-events: none; position: absolute; bottom: -0.4rem; left: -0.6rem;
  width: 5rem; height: 5rem;
  background-image: radial-gradient(circle, color-mix(in oklab, var(--ink) 20%, transparent) 1.2px, transparent 1.3px);
  background-size: 11px 11px;
  opacity: 0.65;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2.25rem;
    padding: 3.75rem 0 4.25rem;
  }
  .blob-forest { width: 40rem; height: 40rem; top: -10rem; right: -8rem; }
  .hero-visual { max-width: none; }
}

/* Feature pills */
.pills {
  display: grid; border: 1px solid var(--line); background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px -18px rgb(18 38 31 / 0.18);
  margin-bottom: 5rem;
  overflow: hidden;
}
.pill {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.75rem 0.9rem; border-top: 1px solid var(--line);
  color: color-mix(in oklab, var(--ink) 72%, transparent);
  transition: background .25s, transform .25s;
}
.pill:hover {
  background: color-mix(in oklab, var(--cream) 55%, var(--paper));
}
.pill:hover svg { color: var(--gold); transform: scale(1.08); }
.pill svg { transition: color .25s, transform .25s; }
.pill:first-child { border-top: 0; }
.pill strong { margin-top: 0.75rem; font-size: 0.94rem; color: var(--ink); }
.pill span { font-size: 0.76rem; color: var(--muted); margin-top: 0.25rem; }
@media (min-width: 640px) {
  .pills { grid-template-columns: repeat(5, 1fr); }
  .pill { border-top: 0; border-left: 1px solid var(--line); }
  .pill:first-child { border-left: 0; }
}

/* Buyer / See what your buyer sees */
.buyer {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 90% 10%, color-mix(in oklab, var(--gold) 18%, transparent) 0%, transparent 45%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 55%, #0e1f18 100%);
  color: var(--cream);
  padding: 2.4rem 1.4rem 2.6rem;
  margin-bottom: 5.5rem;
  display: grid; gap: 2rem;
  box-shadow: var(--shadow-lg);
}
.buyer .kicker { color: var(--gold-soft); }
.buyer h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.1rem);
  margin-top: 0.7rem;
  letter-spacing: -0.03em;
}
.buyer-lede {
  margin: 1.1rem 0 0; max-width: 22rem;
  color: color-mix(in oklab, var(--cream) 75%, transparent);
  font-size: 0.98rem; line-height: 1.6;
}
.buyer-copy .btn { margin-top: 1.65rem; }
.buyer-visual {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--gold) 22%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--cream) 8%, transparent),
    0 24px 60px -20px rgb(0 0 0 / 0.55);
  background: var(--forest-2);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.buyer-visual:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--gold) 35%, transparent),
    0 32px 70px -16px rgb(0 0 0 / 0.6);
}
.buyer-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (min-width: 960px) {
  .buyer {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 2.75rem;
    padding: 3rem 2.75rem;
    min-height: 30rem;
  }
  .buyer-copy { padding-left: 0.6rem; }
  .buyer-visual { margin: 0; }
}

/* Steps */
.steps-section { margin-bottom: 1rem; }
.steps-head {
  text-align: center; color: var(--gold); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; margin: 0;
}
.steps {
  display: grid; gap: 2.25rem; max-width: 64rem;
  margin: 2.4rem auto 5.5rem; list-style: none; padding: 0; position: relative;
}
.steps li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.steps li > p:last-child {
  margin: 0.55rem 0 0; font-size: 0.86rem; color: var(--muted);
  max-width: 14.5rem; line-height: 1.5;
}
.step-ico {
  width: 4.25rem; height: 4.25rem; border-radius: 999px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 12px 32px -16px rgb(18 38 31 / 0.22);
  color: color-mix(in oklab, var(--ink) 75%, transparent);
  transition: transform .3s, box-shadow .3s, border-color .3s, color .3s;
}
.steps li:hover .step-ico {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--gold) 45%, var(--line));
  color: var(--gold);
  box-shadow: 0 16px 40px -14px rgb(18 38 31 / 0.28);
}
.steps .n {
  color: var(--gold); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.16em; margin: 1rem 0 0.3rem;
}
.steps h3 { font-size: 1.22rem; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
  .steps::before {
    content: ""; position: absolute; top: 2.1rem; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
    z-index: 0;
  }
  .step-ico { position: relative; z-index: 1; }
}

/* Segments */
.segments { display: grid; gap: 0.85rem; margin-bottom: 5.5rem; }
.seg-intro {
  background:
    radial-gradient(ellipse at 80% 20%, color-mix(in oklab, var(--gold) 15%, transparent), transparent 50%),
    var(--forest);
  color: var(--cream); border-radius: 1.5rem; padding: 2.15rem;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 14.5rem;
}
.seg-intro .kicker { color: var(--gold-soft); }
.seg-intro h2 { font-size: 2.05rem; margin-top: 1.5rem; letter-spacing: -0.03em; }
.seg {
  position: relative; min-height: 13.5rem; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 8px 24px -14px rgb(18 38 31 / 0.35);
}
.seg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.seg:hover img { transform: scale(1.08); }
.seg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(18 38 31 / 0.88) 0%, rgb(18 38 31 / 0.25) 50%, transparent 70%);
  transition: opacity .35s;
}
.seg:hover::after { opacity: 0.92; }
.seg span {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 1;
  color: var(--cream); font-size: 0.92rem; font-weight: 500;
  letter-spacing: -0.01em;
}
@media (min-width: 800px) {
  .segments { grid-template-columns: 0.9fr repeat(4, 1fr); }
}

/* CTA */
.cta {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 95% 80%, color-mix(in oklab, var(--gold) 12%, transparent), transparent 45%),
    var(--paper);
  border-radius: var(--radius);
  padding: 2.6rem 1.6rem; margin-bottom: 5.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 12px 40px -20px rgb(18 38 31 / 0.15);
}
.cta h2 { font-size: clamp(1.85rem, 3.2vw, 2.4rem); max-width: 22rem; letter-spacing: -0.025em; }
.cta p { color: var(--muted); max-width: 17rem; margin: 0; line-height: 1.55; }
.cta .blob {
  pointer-events: none; position: absolute; right: -2.5rem; bottom: -2.8rem;
  width: 10rem; height: 10rem; border-radius: 999px;
  background: radial-gradient(ellipse at center, #d4b45c 0%, #c4a052 45%, transparent 72%);
  opacity: 0.7;
  filter: blur(4px);
}
@media (min-width: 800px) {
  .cta {
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 2.75rem 3.25rem; gap: 1.75rem;
  }
  .cta-rule { width: 1px; height: 4.5rem; background: linear-gradient(to bottom, transparent, var(--line), transparent); flex-shrink: 0; }
}

/* Footer */
.site-footer { background: var(--forest); color: var(--cream); }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 0; }
.footer-brand .muted {
  color: color-mix(in oklab, var(--cream) 65%, transparent);
  font-size: 0.9rem; margin-top: 1rem; max-width: 18rem;
}
.footer-grid h4 { font-family: var(--sans); font-size: 0.9rem; margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0.5rem 0; }
.footer-grid a { color: color-mix(in oklab, var(--cream) 65%, transparent); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--cream); }
.contact-list {
  list-style: none; padding: 0; font-size: 0.9rem;
  color: color-mix(in oklab, var(--cream) 70%, transparent);
}
.contact-list li { margin: 0.7rem 0; }
.copy {
  border-top: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
  padding: 1.2rem; text-align: center; font-size: 0.75rem;
  color: color-mix(in oklab, var(--cream) 45%, transparent);
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(4, 1fr) 1.15fr; }
}

/* Inner pages */
.page-hero {
  border-bottom: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
  padding: 4rem 0;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.1rem); margin-top: 0.7rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 38rem; }
.cards { display: grid; gap: 1.2rem; padding: 4rem 0; }
@media (min-width: 800px) {
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 1.5rem; padding: 1.7rem;
}
.card h2 { font-size: 1.5rem; }
.card p { color: var(--muted); }
.form { display: grid; gap: 1rem; }
.form label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.form input, .form select, .form textarea {
  width: 100%; height: 2.75rem; border-radius: 0.75rem; border: 1px solid var(--line);
  background: var(--paper); padding: 0 0.85rem; font: inherit; color: var(--ink);
}
.form textarea { height: auto; min-height: 7rem; padding: 0.75rem 0.85rem; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 25%, transparent);
}
.ok-box {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 1rem; padding: 2rem; text-align: center;
}

/* Plot map (demo page) */
.plot-map {
  position: relative; aspect-ratio: 16 / 10; width: 100%;
  overflow: hidden; background: var(--grass);
}
.plot-map::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in oklab, var(--grass-2) 55%, transparent), transparent 42%),
    radial-gradient(circle at 80% 70%, color-mix(in oklab, var(--forest) 28%, transparent), transparent 50%);
}
.road { position: absolute; background: var(--road); }
.amenity { position: absolute; display: flex; align-items: center; justify-content: center; }
.amenity-disk {
  width: 86%; height: 86%; border-radius: 999px;
  background: radial-gradient(circle at 40% 35%, #7aa85a, #3f6d42 70%, #2d5230);
  display: grid; place-items: center;
  color: color-mix(in oklab, var(--cream) 90%, transparent);
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.14em; text-align: center;
}
.plot-btn {
  position: absolute; display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 2px; font-size: 0.55rem; font-weight: 600;
  font-variant-numeric: tabular-nums; padding: 0;
}
.plot-btn.available { background: var(--plot); color: color-mix(in oklab, var(--ink) 80%, transparent); }
.plot-btn.booked { background: var(--gold-soft); color: color-mix(in oklab, var(--ink) 80%, transparent); }
.plot-btn.sold { background: var(--plot-sold); color: color-mix(in oklab, var(--ink) 55%, transparent); }
.plot-btn.selected {
  z-index: 2; background: var(--plot-hi); color: var(--ink);
  box-shadow: 0 0 0 2px var(--gold);
}
.plot-btn:hover { z-index: 2; transform: scale(1.04); }
.tree {
  pointer-events: none; position: absolute; border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #8fbf62, #3d6b3a 72%);
}
.plot-3d {
  transform: perspective(1400px) rotateX(42deg) scale(1.08);
  transform-origin: center 70%;
}
.legend {
  display: flex; gap: 1rem;
  color: color-mix(in oklab, var(--cream) 80%, transparent);
  font-size: 0.7rem; list-style: none; padding: 0; margin: 0;
}
.legend i {
  display: inline-block; width: 0.65rem; height: 0.65rem;
  border-radius: 2px; margin-right: 0.35rem; vertical-align: middle;
}
.plot-card {
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  border-radius: 1rem; padding: 0.85rem; width: 13.5rem; box-shadow: var(--shadow);
}
.plot-card h3 { font-size: 1.15rem; }
.plot-card .status {
  margin: 0.15rem 0 0; font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--success);
}
.plot-card .status.dim { color: var(--muted); }
.plot-card ul {
  list-style: none; padding: 0; margin: 0.7rem 0 0;
  font-size: 0.75rem; color: var(--muted);
}
.plot-card li { margin: 0.35rem 0; }
.plot-card .price { font-family: var(--display); font-size: 1.5rem; margin: 0.7rem 0 0; }
.plot-card .actions { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.7rem; }

/* Demo page */
.demo-page { min-height: 100dvh; display: flex; flex-direction: column; background: var(--forest); }
.demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
  color: var(--cream);
}
.demo-bar small { color: color-mix(in oklab, var(--cream) 55%, transparent); }
.demo-body { display: flex; flex: 1; flex-direction: column; }
.demo-stage { position: relative; min-height: 28rem; flex: 1; padding: 0.8rem; }
.demo-stage .plot-map { height: 100%; min-height: 26rem; border-radius: 1rem; }
.demo-aside {
  background: var(--cream);
  border-top: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
}
@media (min-width: 960px) {
  .demo-body { flex-direction: row; }
  .demo-aside {
    width: 22rem; border-top: 0;
    border-left: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
  }
}

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