/* =========================================================================
   619 28th Avenue — public site styles
   Photographic, editorial. Warm-neutral palette, big imagery, restrained UI.
   ========================================================================= */

:root {
  --ink:        #14130f;
  --ink-soft:   #4a463d;
  --ink-mute:   #7a7466;
  --paper:      #faf7f1;
  --paper-2:    #f1ece1;
  --line:       #d9d3c4;
  --accent:     #2f5d3a;     /* deep botanical green */
  --accent-2:   #b9824c;     /* warm bronze for hover/cta */
  --shadow-sm:  0 2px 8px rgba(20,19,15,0.08);
  --shadow-md:  0 12px 40px rgba(20,19,15,0.18);
  --radius:     14px;
  --max:        1200px;

  --font-serif: "Cormorant Garamond","EB Garamond","Iowan Old Style",Georgia,"Times New Roman",serif;
  --font-sans:  "Inter","Helvetica Neue",Arial,system-ui,-apple-system,Segoe UI,sans-serif;
}

@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400 700;
  src: local('Cormorant Garamond'); font-display: swap; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-2); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .72rem; color: var(--accent); font-weight: 600;
  border-top: 1px solid var(--accent); padding-top: .35rem;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: .35rem 0 1.5rem; }

.section-head { margin-bottom: 2.5rem; max-width: 38rem; }

/* --- nav --- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(250,247,241,.78);
  border-bottom: 1px solid rgba(217,211,196,0.5);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }
.brand-sub { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-top: .2rem; }
.site-nav nav { display: flex; gap: 1.6rem; align-items: center; }
.site-nav nav a { font-size: .9rem; color: var(--ink-soft); }
.site-nav nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--paper) !important;
  padding: .55rem 1.1rem; border-radius: 999px; font-weight: 500;
}
.nav-cta:hover { background: var(--accent); }
@media (max-width: 720px) {
  .nav-inner { padding: .75rem 1rem; }
  .site-nav nav a:not(.nav-cta) { display: none; }
  .site-nav nav { gap: 0; }
  .nav-cta { padding: .5rem .95rem; font-size: .85rem; }
  .brand-mark { font-size: 1.3rem; }
  .brand-sub { font-size: .6rem; }
}

/* --- hero --- */
.hero {
  position: relative; height: 100vh; min-height: 560px; max-height: 1100px;
  width: 100%; overflow: hidden; color: #fff;
  /* Vertical scroll still works; we own horizontal gestures for swipe.
     Lives on the parent (not the carousel) because the swipe listeners
     are attached to .hero so they catch touches anywhere in the hero —
     not just the sliver of carousel not covered by the gradient overlay,
     content, and dot strip. */
  touch-action: pan-y;
  -webkit-user-select: none; user-select: none;
}

/* --- hero carousel: cross-fade between slides, ken-burns on the active one --- */
.hero-carousel { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide picture, .hero-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-slide.is-active img {
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 1.5rem 5rem; max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.2rem;
  z-index: 4; /* over the carousel, under the dots */
}
.hero-eyebrow {
  display: inline-block; align-self: flex-start;
  padding: .35rem .9rem; border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.02;
  margin: 0; max-width: 18ch; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-address {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  letter-spacing: .04em; opacity: .95;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem 2.5rem;
  padding: .4rem 0;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.01em;
}
.hero-stats span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-top: .2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- hero dots: bottom-middle of the carousel, dots ONLY (no arrows) --- */
.hero-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 1.6rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  padding: .25rem 1rem;
  pointer-events: none; /* dots themselves re-enable; clicks pass through dead space */
}
.hero-dot {
  pointer-events: auto;
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.5);
  border-radius: 999px;
  cursor: pointer;
  transition: width .25s ease, background .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-dot:hover { background: rgba(255,255,255,.8); }
.hero-dot:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.hero-dot.is-active {
  background: var(--paper);
  width: 28px; /* active becomes a pill */
}

@media (max-width: 720px) {
  .hero-dots { bottom: 1rem; gap: .4rem; }
  .hero-dot { width: 7px; height: 7px; }
  .hero-dot.is-active { width: 22px; }
}

/* --- buttons --- */
.btn {
  display: inline-block; padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--accent-2); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: #000; color: var(--paper); border-color: #000; }
.btn-block { display: block; width: 100%; text-align: center; }

/* hero buttons reset on lighter sections */
section:not(.hero) .btn-primary { background: var(--ink); color: var(--paper); }
section:not(.hero) .btn-primary:hover { background: var(--accent-2); color: #fff; }
section:not(.hero) .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
section:not(.hero) .btn-ghost:hover { background: var(--paper-2); }

/* --- highlights row --- */
.highlights { padding: 4rem 0 2rem; }
.highlight-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem 2rem;
}
.highlight { display: flex; gap: 1rem; align-items: flex-start; }
.highlight-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--accent);
}
.highlight-icon svg { width: 30px; height: 30px; }
.highlight-label { font-weight: 600; font-size: .98rem; line-height: 1.25; }
.highlight-detail { color: var(--ink-mute); font-size: .85rem; margin-top: .25rem; line-height: 1.4; }
@media (max-width: 1080px) { .highlight-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.2rem; } }

/* --- gallery --- */
.gallery { padding: 5rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-tile {
  position: relative; padding: 0; border: 0; outline: none;
  background: var(--paper-2);
  cursor: zoom-in;
  border-radius: 8px; overflow: hidden;
  -webkit-appearance: none; appearance: none;
  font: inherit;
}
.gallery-tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gallery-tile:hover img { transform: scale(1.03); }
.gallery-tile.tile-wide { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .gallery-tile.tile-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 8px; }
  .gallery-tile.tile-wide { grid-column: auto; grid-row: auto; }
}

/* --- about / two-col --- */
.about, .floorplan, .location, .contact { padding: 5rem 0; }
.two-col {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
  align-items: start;
}
.two-col.reverse { grid-template-columns: 1fr 1.4fr; }
.col-text p { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.7; margin: 0 0 1.2rem; max-width: 36rem; }
.col-text h2 { max-width: 22ch; margin-top: .4rem; }

.col-card {
  background: var(--paper-2);
  padding: 2rem; border-radius: var(--radius);
  position: sticky; top: 6rem;
}
.col-card h3 { font-size: 1.4rem; margin: 0 0 1.2rem; }
.facts { display: grid; grid-template-columns: max-content 1fr; gap: .55rem 1.2rem; margin: 0 0 1.6rem; }
.facts dt { color: var(--ink-mute); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.facts dd { margin: 0; font-size: .98rem; }

@media (max-width: 880px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .col-card { position: static; }
}

/* --- standalone, centered floor plan --- */
.floorplan { background: var(--paper-2); }
.section-head-centered {
  text-align: center;
  margin-left: auto; margin-right: auto;
  max-width: 38rem;
}
.section-head-centered .eyebrow {
  display: inline-block; margin: 0 auto;
}
.floorplan-stage {
  display: grid; place-items: center;
  margin: 0 auto;
  max-width: 960px;
}
.floorplan-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 6px;
  mix-blend-mode: multiply; /* drop the floorplan PDF render's paper background */
}
@media (max-width: 720px) {
  .floorplan { padding: 3.5rem 0; }
  .floorplan-stage img { max-height: 70vh; }
}

/* --- location --- */
.col-map {
  height: 460px; border-radius: var(--radius); overflow: hidden;
  position: relative; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background: var(--paper-2);
}
#locationMap { width: 100%; height: 100%; }
.leaflet-container { font-family: var(--font-sans); background: var(--paper-2); }
.leaflet-popup-content-wrapper { border-radius: 8px; }
.map-link {
  position: absolute; bottom: 12px; right: 12px; z-index: 401;
  background: var(--ink); color: var(--paper); padding: .35rem .8rem;
  font-size: .75rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.map-link:hover { color: var(--paper); background: var(--accent); }
.poi { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.poi li {
  display: flex; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.poi li:last-child { border-bottom: 0; }
.poi span { color: var(--accent); font-weight: 600; min-width: 7.5rem; font-size: .85rem; letter-spacing: .04em; }

/* --- contact --- */
.contact { background: var(--ink); color: var(--paper); }
.contact .eyebrow { color: #d4c8a3; border-color: #d4c8a3; }
.contact h2 { color: var(--paper); }
.contact .col-text p { color: rgba(250,247,241,.78); }

.agent-card {
  background: rgba(255,255,255,.05); padding: 1.4rem 1.6rem;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
}
.agent-name { font-family: var(--font-serif); font-size: 1.5rem; }
.agent-role { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; opacity: .7; margin-bottom: .6rem; }
.agent-line { display: block; font-size: 1rem; margin: .15rem 0; color: var(--paper); }
.agent-dre {
  display: block;
  margin: .65rem 0 0;
  padding-top: .65rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(250,247,241,.55);
}

.qr-block {
  margin-top: 1.5rem; display: flex; gap: 1.2rem; align-items: center;
  padding: 1.2rem; background: rgba(255,255,255,.05);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12);
}
.qr-block img { background: #fff; padding: 6px; border-radius: 8px; width: 120px; height: 120px; }
.qr-help strong { display: block; font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: .25rem; }
.qr-help span { font-size: .85rem; opacity: .75; line-height: 1.45; }

.contact-form {
  background: var(--paper); color: var(--ink);
  padding: 2.2rem; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.contact-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .85rem; color: var(--ink-mute); letter-spacing: .04em; text-transform: uppercase;
}
.contact-form .optional { text-transform: none; letter-spacing: 0; opacity: .65; font-size: .78rem; }
.contact-form input, .contact-form textarea {
  font: inherit; padding: .8rem 1rem; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink);
  font-size: 1rem; text-transform: none; letter-spacing: 0;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.contact-form .hp { display: none; }
.form-fineprint { font-size: .78rem; color: var(--ink-mute); margin: 0; }

/* --- footer --- */
.site-foot {
  background: var(--ink); color: rgba(250,247,241,.6);
  padding: 1.8rem 0; border-top: 1px solid rgba(255,255,255,.08);
}
.foot-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.foot-brand { color: var(--paper); font-weight: 500; }
.foot-sub  { font-size: .76rem; margin-top: .15rem; }

/* --- lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,9,7,.96); display: grid; place-items: center;
}
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 90vh; text-align: center; }
.lb-figure img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 6px; }
.lb-figure figcaption { color: rgba(255,255,255,.78); font-size: .9rem; margin-top: 1rem; letter-spacing: .04em; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  width: 48px; height: 48px; cursor: pointer;
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  transition: background .15s ease;
}
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev  { top: 50%; left: 1.2rem;  transform: translateY(-50%); }
.lb-next  { top: 50%; right: 1.2rem; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.12); }

/* --- flash messages --- */
.flash-stack {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 300; display: flex; flex-direction: column; gap: .5rem;
}
.flash {
  padding: .8rem 1.2rem; border-radius: 8px;
  font-size: .9rem; box-shadow: var(--shadow-md); min-width: 280px;
}
.flash-success { background: var(--accent); color: #fff; }
.flash-error   { background: #b3422a; color: #fff; }

/* --- index listings card --- */
.listings-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.listing-card {
  display: block; background: var(--paper-2); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--ink); }
.listing-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 1.4rem 1.4rem 1.6rem; }
.card-price { color: var(--accent); font-weight: 600; font-size: .95rem; }
.card-headline { margin: .35rem 0 .55rem; font-size: 1.4rem; }
.card-address, .card-stats { color: var(--ink-mute); font-size: .9rem; }
.card-stats { margin-top: .25rem; }


/* ===========================================================================
   Mobile responsive — phones (<= 720px) and very small phones (<= 420px)
   The desktop layout assumes lots of horizontal room; below 720 we tighten
   nearly every rhythm so nothing feels cramped, clipped, or scrolling sideways.
   =========================================================================== */
@media (max-width: 720px) {
  /* Section vertical rhythm — desktop is 5rem 0; halve on phones. */
  .about, .floorplan, .location, .contact { padding: 3rem 0; }
  .gallery { padding: 3rem 0; }
  .highlights { padding: 2.5rem 0 1rem; }
  .container { padding: 0 1.1rem; }

  /* HERO ----- */
  .hero { height: 100svh; min-height: 540px; max-height: 900px; }
  .hero-content { padding: 0 1.1rem 4.5rem; gap: .85rem; }
  .hero-eyebrow { font-size: .65rem; padding: .3rem .75rem; letter-spacing: .18em; }
  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
    line-height: 1.05;
    max-width: 16ch;
  }
  .hero-address { font-size: .88rem; }

  /* hero stats: 3 across max, smaller numbers, tighter gaps so we don't wrap weirdly */
  .hero-stats {
    gap: .9rem 1.4rem;
    padding: .9rem 0 .25rem;
  }
  .hero-stats strong { font-size: 1.25rem; }
  .hero-stats span { font-size: .62rem; letter-spacing: .15em; }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: .75rem 1rem;
    font-size: .9rem;
  }

  /* HIGHLIGHTS row already collapses to 2 cols, just tighten gaps */
  .highlight-grid { gap: 1.1rem .8rem; }
  .highlight-icon { width: 28px; height: 28px; }
  .highlight-icon svg { width: 24px; height: 24px; }
  .highlight-label { font-size: .92rem; line-height: 1.2; }
  .highlight-detail { font-size: .78rem; }

  /* SECTION HEAD typography */
  h2 { font-size: clamp(1.55rem, 6vw, 2rem); }
  .section-head { margin-bottom: 1.6rem; }
  .eyebrow { font-size: .68rem; }

  /* GALLERY: 2 col, smaller rows, drop the wide tile */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 44vw; gap: 8px; }
  .gallery-tile.tile-wide { grid-column: auto; grid-row: auto; }

  /* ABOUT facts card: drop the sticky, tighten padding, dt/dd stack */
  .col-card { padding: 1.5rem 1.25rem; }
  .col-card h3 { font-size: 1.2rem; }
  .facts {
    grid-template-columns: 1fr;
    gap: .15rem .5rem;
    margin-bottom: 1.25rem;
  }
  .facts dt { padding-top: .8rem; }
  .facts dt:first-child { padding-top: 0; }
  .facts dd { padding-bottom: .35rem; border-bottom: 1px dashed var(--line); }
  .facts dd:last-of-type { border-bottom: 0; }

  .col-text p { font-size: .98rem; }

  /* LOCATION: map shorter on phones */
  .col-map { height: 320px; }
  .poi li { font-size: .9rem; padding: .5rem 0; }
  .poi span { min-width: 6.5rem; font-size: .75rem; }

  /* CONTACT */
  .contact-form { padding: 1.5rem 1.25rem; gap: .85rem; }
  .contact-form input, .contact-form textarea { padding: .7rem .85rem; font-size: 16px; /* prevents iOS zoom */ }
  .agent-card { padding: 1.1rem 1.25rem; }
  .agent-name { font-size: 1.3rem; }
  .qr-block { padding: 1rem; gap: 1rem; }
  .qr-block img { width: 96px; height: 96px; }

  /* FOOTER */
  .site-foot { padding: 1.4rem 0; }
  .foot-inner { flex-direction: column; gap: .4rem; align-items: flex-start; }

  /* LIGHTBOX: full-screen image, smaller controls, no padding constraint */
  .lb-figure img { max-width: 96vw; max-height: 78vh; }
  .lb-close, .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.25rem; }
  .lb-close { top: .6rem; right: .6rem; }
  .lb-prev  { left: .4rem; }
  .lb-next  { right: .4rem; }

  /* FLOORPLAN: keep mix-blend but cap height tighter */
  .floorplan-stage img { max-height: 60vh; }

  /* INDEX listing cards if multi-listing later */
  .listings-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Very small phones — even tighter so nothing breaks at 320–360px wide */
@media (max-width: 420px) {
  .hero-stats { gap: .6rem 1.2rem; }
  .hero-stats strong { font-size: 1.1rem; }
  .hero-actions { gap: .6rem; }
  .hero-actions .btn { font-size: .85rem; padding: .7rem .8rem; }
  .gallery-grid { grid-auto-rows: 50vw; }
  .col-card h3 { font-size: 1.1rem; }
}
