/* ============================================================
   2627 VERONA PARK — Belterra, San Antonio
   Premium single-listing website styles
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink: #17130e;
  --ink-soft: #211b13;
  --cream: #f6f1e8;
  --paper: #fdfbf7;
  --gold: #c19a5b;
  --gold-deep: #a37f42;
  --muted: #6f685c;
  --line: rgba(23, 19, 14, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px -24px rgba(23, 19, 14, 0.45);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Shared ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark .section-title { color: var(--paper); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .feature-list li { color: rgba(255,255,255,0.82); border-color: var(--line-light); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 0.25rem;
  transition: gap 0.35s var(--ease), color 0.3s;
}
.text-link:hover { gap: 1rem; color: var(--ink); border-color: var(--ink); }
.section-dark .text-link { color: var(--gold); border-color: var(--gold); }
.section-dark .text-link:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(193, 154, 91, 0.65);
}
.btn-gold:hover { background: var(--gold-deep); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(23, 19, 14, 0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

.btn-sm { padding: 0.68rem 1.3rem; font-size: 0.84rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  color: #fff;
}
.site-header.is-solid {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}
.nav-wrap {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-logo {
  height: 44px; width: auto; max-width: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  box-shadow: 0 2px 12px rgba(23, 19, 14, 0.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; letter-spacing: 0.01em; }
.brand-tag { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.75; }

.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a { font-size: 0.9rem; font-weight: 500; opacity: 0.9; position: relative; padding: 0.3rem 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: currentColor; transition: width 0.35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }
.main-nav .nav-phone { font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.6rem; }
.nav-toggle span { width: 22px; height: 2px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06); transition: opacity 1.6s var(--ease), transform 7s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 110% at 22% 38%, rgba(23,19,14,0.68) 0%, rgba(23,19,14,0.40) 55%, rgba(23,19,14,0.84) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 2rem) 0 6rem;
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}

.hero-eyebrow {
  font-size: 0.82rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 1.3rem; text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}
.hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3.2rem, 10vw, 7.2rem); line-height: 0.98; letter-spacing: -0.015em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 10px 48px rgba(0,0,0,0.55);
}
.hero-sub { max-width: 34rem; margin-top: 1.6rem; font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,0.93); font-weight: 300; text-shadow: 0 1px 6px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.45); }
.hero-price { margin-top: 1.9rem; display: flex; align-items: baseline; gap: 0.9rem; }
.price-label { font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.88); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.hero-price span#listing-price { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--gold); }
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Lead-capture card (hero, right side) */
.lead-wrap { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.lead-card {
  width: 100%; max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.1rem 1.2rem 1.25rem;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.5);
  color: var(--ink);
}
.lead-agent { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.lead-avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px rgba(23, 19, 14, 0.25);
  flex: none;
}
.lead-agent-info { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.lead-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.lead-role { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

.lead-card .field { margin-bottom: 0.65rem; }
.lead-card .field input,
.lead-card .field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 0.6rem 0.8rem;
  font: inherit;
}
.lead-card .field input::placeholder { color: #a49c8d; }
.lead-card .field input:focus,
.lead-card .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 154, 91, 0.22);
}
.lead-card .btn { padding: 0.82rem 1.2rem; }
.lead-selling {
  max-width: 380px; width: 100%;
  font-size: 0.86rem; text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.lead-selling a { color: var(--gold); font-weight: 600; }
.lead-selling a:hover { color: #fff; }
.lead-calendar { margin-top: 0.75rem; font-size: 0.85rem; text-align: center; color: var(--muted); }
.lead-calendar a { color: var(--gold-deep); font-weight: 600; }
.lead-calendar a:hover { color: var(--ink); }
.contact-calendar { margin-top: 1.6rem; }
.btn-outline { border: 1px solid var(--gold-deep); color: var(--gold-deep); background: transparent; }
.btn-outline:hover { background: var(--gold-deep); color: #fff; }

.hero-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 4% 1.6rem; }
.scroll-hint { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.75); display: inline-flex; align-items: center; gap: 0.8rem; }
.scroll-hint::before { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); display: inline-block; }
.hero-dots { display: flex; gap: 0.6rem; }
.hero-dots button { width: 26px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.35); transition: background 0.3s; }
.hero-dots button.is-active { background: var(--gold); }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--cream); padding: 2.2rem 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 0.6rem 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 4px; box-shadow: var(--shadow); aspect-ratio: 3/2; }
.about-media-sm { position: absolute; width: 46%; bottom: -3rem; right: -1rem; border: 8px solid var(--paper); border-radius: 4px; box-shadow: var(--shadow); aspect-ratio: 3/2; }

.feature-list { list-style: none; margin: 1.6rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.4rem; }
.feature-list li { font-size: 0.95rem; display: flex; align-items: center; gap: 0.6rem; }
.feat-ico { color: var(--gold); font-size: 0.6rem; }

/* ---------- Highlights ---------- */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.hl-card { border-top: 1px solid var(--line-light); padding-top: 1.4rem; }
.hl-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); }
.hl-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin: 0.5rem 0 0.7rem; }
.hl-card p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* ---------- Gallery ---------- */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.gallery-count { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; display: block;
  border-radius: 4px; overflow: hidden; cursor: zoom-in;
}
.gallery-item img { width: 100%; aspect-ratio: 3/2; transition: transform 0.8s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "⤢"; position: absolute; inset: auto 0 0 auto; margin: 0.8rem;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(23,19,14,0.55); color: #fff; font-size: 0.95rem;
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-note { text-align: center; margin-top: 1.4rem; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Community ---------- */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.community-media img { border-radius: 4px; box-shadow: var(--shadow); height: 100%; object-fit: cover; }
.map-wrap { margin-top: clamp(2.5rem, 5vw, 4rem); }
.map-wrap iframe { border-radius: 8px; box-shadow: var(--shadow); filter: saturate(0.85); }

/* ---------- Agent ---------- */
.agent-logo-row { display: flex; justify-content: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.agent-logos { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: wrap; }
.agent-broker-logo {
  /* Half the rendered height of .agent-photo (clamp(170px,24vw,260px) × 4/3 ÷ 2) */
  height: clamp(114px, 16vw, 174px); width: auto; max-width: 100%;
  object-fit: contain;
  background: #fff; border-radius: 12px; padding: 12px 20px;
  box-shadow: var(--shadow);
}
.agent-logo-sep { width: 1px; height: clamp(55px, 8vw, 90px); background: rgba(255, 255, 255, 0.3); }
.agent-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 640px; margin-inline: auto;
}
.agent-photo {
  width: clamp(170px, 24vw, 260px); aspect-ratio: 3/4; object-fit: cover;
  object-position: center top;
  border-radius: 6px; border: 1px solid var(--line-light); box-shadow: var(--shadow);
}
.agent-role { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.agent-bio { color: rgba(255,255,255,0.78); margin-bottom: 1.6rem; max-width: 34rem; }
.agent-info .section-title { margin-bottom: 0.6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-lines { margin-top: 2rem; display: grid; gap: 1.2rem; }
.contact-line { display: flex; flex-direction: column; gap: 0.15rem; border-bottom: 1px solid var(--line); padding-bottom: 0.9rem; }
a.contact-line:hover .contact-v { color: var(--gold-deep); }
.contact-k { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.contact-v { font-family: var(--font-display); font-size: 1.3rem; }

.contact-form { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field span em { text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 6px; padding: 0.8rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 154, 91, 0.18);
}
.contact-form .btn { margin-top: 0.4rem; }
.form-note { margin-top: 0.9rem; font-size: 0.9rem; color: var(--gold-deep); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-logo {
  width: 64px; height: 64px; object-fit: contain;
  background: #fff; border-radius: 12px; padding: 6px;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { font-size: 0.92rem; width: fit-content; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact a { font-family: var(--font-display); font-size: 1.4rem; color: var(--paper); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact span { font-size: 0.92rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 0.8rem; }
.footer-bottom p { font-size: 0.8rem; }
.disclaimer { opacity: 0.65; max-width: 56rem; }

/* ---------- Mobile bar / to-top / lightbox ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 0.8rem; padding: 0.8rem 4% calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(23, 19, 14, 0.92); backdrop-filter: blur(10px);
}
.mobile-bar .btn { flex: 1; }

.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 95;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--paper); font-size: 1.1rem;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-deep); color: #fff; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(13, 11, 8, 0.96); opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-figure { max-width: min(92vw, 1200px); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.lb-figure img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lb-figure figcaption { color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.03em; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: #fff; font-size: 2rem; line-height: 1;
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,0.08); transition: background 0.3s, transform 0.3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--ink); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.85rem; letter-spacing: 0.2em; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

.skip-link {
  position: fixed; top: -60px; left: 1rem; z-index: 300;
  background: var(--ink); color: var(--paper); padding: 0.7rem 1.2rem; border-radius: 6px;
  transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .main-nav {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: rgba(253, 251, 247, 0.98); backdrop-filter: blur(14px);
    padding: 0.6rem 4% 1.4rem; color: var(--ink);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s;
    box-shadow: 0 20px 40px -20px rgba(23,19,14,0.3);
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; padding: 0.85rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .main-nav .nav-phone { border-bottom: none; color: var(--gold-deep); }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 5rem; }
  .lead-wrap { width: 100%; max-width: 460px; justify-self: center; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about-grid, .community-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 3rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --nav-h: 66px; }
  .header-actions .btn { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-cta .btn { width: 100%; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
  .to-top { bottom: 6rem; }
  .hero-meta { display: none; }
}
