/* ============================================
   Wealth Estate — Design tokens
   ============================================ */
:root {
  --green-950: #00300a;
  --green-900: #00500a;
  --green-800: #0a5e14;
  --green-700: #146b1d;
  --gold-600: #b8862a;
  --gold-500: #d9a441;
  --gold-400: #e6ad2d;
  --gold-100: #f6e8c8;
  --cream: #faf7f0;
  --ink: #16241a;
  --ink-soft: #3d4a3f;
  --white: #ffffff;
  --line: #e3ddcb;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 4px;
  --shadow-soft: 0 20px 50px -25px rgba(0, 40, 8, 0.35);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--green-950);
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 32px; font-size: 1rem; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--green-950);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(217, 164, 65, 0.6); }

.btn--ghost {
  background: transparent;
  color: var(--green-950);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold-500); color: var(--gold-600); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--gold-400); color: var(--gold-400); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }

/* ============================================
   Top bar
   ============================================ */
.topbar {
  background: var(--green-950);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__item a { color: rgba(255,255,255,0.85); }
.topbar__item a:hover { color: var(--gold-400); }
.topbar__divider { margin: 0 10px; opacity: 0.4; }

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; border-radius: 50%; }
.brand__word { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green-950);
  letter-spacing: 0.01em;
}
.brand__tag {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--green-950); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--green-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, var(--green-800) 0%, var(--green-950) 60%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 64px;
}
.hero__roots {
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 70%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1.4'%3E%3Cpath d='M400 0 L400 60 M400 60 Q340 90 300 150 M400 60 Q460 90 500 150 M300 150 Q260 180 220 230 M300 150 Q320 190 300 260 M500 150 Q540 180 580 230 M500 150 Q480 190 500 260 M400 60 Q400 110 400 170 M400 170 Q360 210 340 270 M400 170 Q440 210 460 270'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 900px;
  opacity: 0.35;
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-400); }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-400);
}
.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  margin: 0;
}
.hero__stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-400);
}
.hero__stats dd {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   Trust strip
   ============================================ */
.trust { background: var(--gold-100); border-bottom: 1px solid var(--line); }
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  padding: 18px 24px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-900);
}
.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  font-size: 0.7rem;
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 88px 0; }
.section--tint { background: var(--gold-100); }
.section--dark {
  background: var(--green-950);
  color: rgba(255,255,255,0.85);
}

.section__title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); text-align: center; }
.section__title--light { color: var(--white); }
.section__sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
}
.section__sub--light { color: rgba(255,255,255,0.65); }

.eyebrow, .section__title, .section__sub { text-align: center; display: block; }

.disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 24px;
}

/* ============================================
   Grids & cards
   ============================================ */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-500);
}
.card__icon {
  width: 56px; height: 56px;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.card__price {
  display: block;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.card__link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold-600);
}
.card__link:hover { color: var(--green-900); }

/* ============================================
   Verification process
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process__step {
  border-top: 2px solid rgba(217, 164, 65, 0.4);
  padding-top: 20px;
}
.process__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 10px;
}
.process__step h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.process__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   Chips (localities)
   ============================================ */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.chip {
  padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-900);
  background: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.chip:hover {
  border-color: var(--gold-500);
  background: var(--gold-100);
}

/* ============================================
   Split / Why us
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.split__media { display: flex; justify-content: center; }
.tree-emblem {
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green-950);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.tree-emblem img { border-radius: 50%; }

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  color: var(--gold-600);
  font-weight: 700;
}
.feature-list strong { color: var(--green-950); }

/* ============================================
   Testimonials
   ============================================ */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.quote blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-950);
}
.quote figcaption {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-600);
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--green-900), var(--green-950));
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 28px; }
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-950);
}
.form__full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: 22px;
}
.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-weight: 500;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.form textarea { resize: vertical; }
.form__note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-800);
  min-height: 1.4em;
}

.contact-info {
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
}
.contact-info__tag {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.contact-info ul { margin-top: 20px; }
.contact-info li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}
.contact-info li strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.contact-info a:hover { color: var(--gold-400); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-950);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand--footer .brand__name { color: var(--white); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { font-size: 0.85rem; }
.footer__links a:hover { color: var(--gold-400); }
.footer__copy { font-size: 0.8rem; margin: 0; width: 100%; text-align: center; opacity: 0.6; }
.footer__legal { font-size: 0.78rem; margin: 6px 0 0; width: 100%; text-align: center; opacity: 0.6; }
.footer__legal a:hover { color: var(--gold-400); }

/* ============================================
   WhatsApp FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); }

.call-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.call-fab svg { width: 24px; height: 24px; }
.call-fab:hover { transform: scale(1.08); }

@media (max-width: 640px) {
  .whatsapp-fab, .call-fab { width: 48px; height: 48px; }
  .call-fab { left: 16px; bottom: 16px; }
  .whatsapp-fab { right: 16px; bottom: 16px; }
}

/* ============================================
   Scroll reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; text-align: center; }
  .feature-list li { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.is-open { max-height: 400px; }
  .nav a { padding: 14px 24px; border-top: 1px solid var(--line); }
  .header__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid--4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; text-align: center; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
}

/* ============================================
   Nav active state
   ============================================ */
.nav a.is-active { color: var(--green-950); }
.nav a.is-active::after { width: 100%; }

/* ============================================
   Small buttons
   ============================================ */
.btn--sm { padding: 9px 16px; font-size: 0.82rem; }
.btn--block { width: 100%; margin-bottom: 10px; }

/* ============================================
   Page hero (listings)
   ============================================ */
.page-hero {
  background: radial-gradient(120% 160% at 15% 0%, var(--green-800) 0%, var(--green-950) 60%);
  color: var(--white);
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero__title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 760px;
  margin: 0 auto 14px;
}
.page-hero__sub {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 28px;
}
.page-hero .chips { justify-content: center; }
.page-hero .chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.page-hero .chip:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--green-950); }

/* ============================================
   Listing heading
   ============================================ */
.listing-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.listing-heading h2 { margin: 0; font-size: 1.9rem; }
.listing-count { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

/* ============================================
   Line-art placeholder media
   ============================================ */
.gallery__art, .listing-card__media {
  position: relative;
  background: linear-gradient(150deg, var(--green-800), var(--green-950));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  display: block;
}
.listing-card__media {
  height: 200px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.listing-card__media--plot   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1.2'%3E%3Crect x='15' y='15' width='70' height='70'/%3E%3Cpath d='M15 40H85M15 62H85M38 15V85M62 15V85' opacity='0.6'/%3E%3Ccircle cx='15' cy='15' r='2.4' fill='%23d9a441'/%3E%3Ccircle cx='85' cy='15' r='2.4' fill='%23d9a441'/%3E%3Ccircle cx='15' cy='85' r='2.4' fill='%23d9a441'/%3E%3Ccircle cx='85' cy='85' r='2.4' fill='%23d9a441'/%3E%3C/g%3E%3C/svg%3E"); }
.listing-card__media--villa  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1.2'%3E%3Cpath d='M12 52L50 22L88 52' stroke-linejoin='round'/%3E%3Cpath d='M20 48V86H80V48'/%3E%3Cpath d='M40 86V64H60V86'/%3E%3Cpath d='M28 58H34M28 68H34M66 58H72M66 68H72' opacity='0.7'/%3E%3C/g%3E%3C/svg%3E"); }
.listing-card__media--flat   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1.2'%3E%3Crect x='24' y='10' width='52' height='80'/%3E%3Cpath d='M34 22H44M56 22H66M34 36H44M56 36H66M34 50H44M56 50H66M34 64H44M56 64H66' opacity='0.75'/%3E%3Cpath d='M42 90V76H58V90'/%3E%3C/g%3E%3C/svg%3E"); }
.listing-card__media--commercial { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1.2'%3E%3Crect x='10' y='30' width='80' height='58'/%3E%3Cpath d='M10 30L50 12L90 30' stroke-linejoin='round'/%3E%3Cpath d='M24 46H40V68H24zM60 46H76V68H60z' opacity='0.75'/%3E%3Cpath d='M46 88V78H54V88' opacity='0.75'/%3E%3C/g%3E%3C/svg%3E"); }

.badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.badge--verified { background: var(--gold-400); color: var(--green-950); }
.badge--type {
  position: static;
  display: inline-block;
  background: rgba(0,80,10,0.08);
  color: var(--green-900);
  margin-left: 8px;
}

/* ============================================
   Listing card
   ============================================ */
.listing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold-500); }
.listing-card__body { padding: 22px; }
.listing-card__price { display: block; font-weight: 800; color: var(--green-900); font-size: 1.15rem; margin-bottom: 4px; }
.listing-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.listing-card h3 a:hover { color: var(--gold-600); }
.listing-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.listing-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 22px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.breadcrumb a:hover { color: var(--gold-600); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* ============================================
   Property head
   ============================================ */
.property-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 0 24px;
}
.property-head__badges { position: relative; margin-bottom: 12px; }
.property-head__badges .badge { position: static; display: inline-block; margin-right: 8px; }
.property-head h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 8px; }
.property-head__loc { color: var(--ink-soft); margin: 0; }
.property-head__price { text-align: right; }
.property-head__price span { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.property-head__price strong { font-family: var(--font-display); font-size: 2rem; color: var(--green-950); }

/* ============================================
   Gallery
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery__main { border-radius: var(--radius); min-height: 420px; background-size: 45%; }
.gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery__thumbs .gallery__art { border-radius: var(--radius); min-height: 204px; }

.gallery__art--villa-main     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Cpath d='M6 56L50 20L94 56' stroke-linejoin='round'/%3E%3Cpath d='M16 50V92H84V50'/%3E%3Cpath d='M38 92V68H62V92'/%3E%3Cpath d='M24 60H32M24 72H32M68 60H76M68 72H76' opacity='0.7'/%3E%3Cpath d='M6 92H94' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--plot-main      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='14' y='14' width='72' height='72'/%3E%3Cpath d='M14 38H86M14 62H86M38 14V86M62 14V86' opacity='0.6'/%3E%3Ccircle cx='14' cy='14' r='2.2' fill='%23d9a441'/%3E%3Ccircle cx='86' cy='14' r='2.2' fill='%23d9a441'/%3E%3Ccircle cx='14' cy='86' r='2.2' fill='%23d9a441'/%3E%3Ccircle cx='86' cy='86' r='2.2' fill='%23d9a441'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--flat-main      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='26' y='8' width='48' height='84'/%3E%3Cpath d='M35 20H45M55 20H65M35 34H45M55 34H65M35 48H45M55 48H65M35 62H45M55 62H65M35 76H45M55 76H65' opacity='0.75'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--commercial-main{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='8' y='32' width='84' height='56'/%3E%3Cpath d='M8 32L50 12L92 32' stroke-linejoin='round'/%3E%3Cpath d='M22 48H40V72H22zM60 48H78V72H60z' opacity='0.75'/%3E%3Cpath d='M46 88V76H54V88' opacity='0.75'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--villa-interior { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='10' y='20' width='80' height='60'/%3E%3Cpath d='M10 60H90M35 20V60M65 20V60' opacity='0.6'/%3E%3Crect x='42' y='38' width='16' height='14' opacity='0.7'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--villa-plan     { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='12' y='12' width='76' height='76'/%3E%3Cpath d='M50 12V88M12 50H50M50 30H88' opacity='0.65'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--villa-garden   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Cpath d='M50 90V50M50 50Q30 46 26 26M50 50Q70 46 74 26M50 66Q34 62 30 46M50 66Q66 62 70 46'/%3E%3Cpath d='M14 90H86' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--villa-map      { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Cpath d='M50 14C36 14 26 25 26 38C26 56 50 82 50 82C50 82 74 56 74 38C74 25 64 14 50 14Z'/%3E%3Ccircle cx='50' cy='38' r='9'/%3E%3C/g%3E%3C/svg%3E"); }

/* ============================================
   Property layout
   ============================================ */
.property-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  padding-bottom: 24px;
}

.key-facts.key-facts--4 { grid-template-columns: repeat(4, 1fr); }
.key-facts.key-facts--5 { grid-template-columns: repeat(5, 1fr); }

.key-facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: var(--gold-100);
  border-radius: var(--radius);
  padding: 22px 12px;
  margin-bottom: 36px;
  text-align: center;
}
.key-facts strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--green-950); }
.key-facts span { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }

.property-section { margin-bottom: 36px; }
.property-section h2 { font-size: 1.4rem; margin-bottom: 14px; }
.property-section p { color: var(--ink-soft); }

.verify-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.verify-list li:first-child { border-top: none; }
.verify-list__check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.amenities-grid li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.amenities-grid li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 1px;
  color: var(--gold-500);
  font-size: 0.7rem;
}

/* ============================================
   Sidebar: price card / agent / office
   ============================================ */
.price-card, .office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.price-card { margin-bottom: 20px; }
.price-card__label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.price-card__value { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--green-950); margin-bottom: 18px; }

.agent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.agent__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.agent__name { margin: 0; font-weight: 700; color: var(--green-950); font-size: 0.95rem; }
.agent__role { margin: 0; font-size: 0.8rem; color: var(--ink-soft); }
.agent__contact { margin-top: 14px; }
.agent__contact li { font-size: 0.88rem; padding: 6px 0; color: var(--ink-soft); }
.agent__contact a:hover { color: var(--gold-600); }

.office-card strong { color: var(--green-950); }
.office-card p { color: var(--ink-soft); font-size: 0.88rem; margin: 6px 0 0; }

@media (max-width: 980px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__main { min-height: 280px; }
  .gallery__thumbs .gallery__art { min-height: 130px; }
  .property-layout { grid-template-columns: 1fr; }
  .key-facts { grid-template-columns: repeat(3, 1fr); }
  .key-facts.key-facts--4 { grid-template-columns: repeat(2, 1fr); }
  .key-facts.key-facts--5 { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .property-head { align-items: flex-start; }
  .property-head__price { text-align: left; }
}

@media (max-width: 640px) {
  .gallery__thumbs { grid-template-columns: 1fr 1fr; }
  .key-facts { grid-template-columns: repeat(2, 1fr); }
  .key-facts.key-facts--4 { grid-template-columns: repeat(2, 1fr); }
  .key-facts.key-facts--5 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Offer banner
   ============================================ */
.offer-banner {
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  color: var(--green-950);
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}
.offer-banner span { margin: 0 10px; }
.offer-banner .divider { opacity: 0.5; font-weight: 400; }

/* ============================================
   Inline lead strip
   ============================================ */
.lead-strip {
  background: var(--green-950);
  color: var(--white);
  padding: 44px 0;
}
.lead-strip__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.lead-strip h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 10px; }
.lead-strip p { color: rgba(255,255,255,0.72); margin-bottom: 0; }
.lead-strip__points {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-strip__points li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  padding-left: 22px;
  position: relative;
}
.lead-strip__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 700;
}
.lead-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  color: var(--ink);
}
.lead-form h3 { font-size: 1.1rem; margin-bottom: 4px; }
.lead-form__sub { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; }
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.lead-form input, .lead-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}
.lead-form input:focus, .lead-form select:focus { outline: none; border-color: var(--gold-500); background: var(--white); }
.lead-form__note { margin: 10px 0 0; font-size: 0.8rem; color: var(--ink-soft); }
.lead-form__status { margin: 10px 0 0; font-size: 0.85rem; font-weight: 700; color: var(--green-800); min-height: 1.2em; }

/* ============================================
   Location advantage
   ============================================ */
.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 780px;
  margin: 0 auto;
}
.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.location-list li strong { color: var(--green-950); }
.location-list__icon { flex: none; font-size: 1.1rem; }

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-950);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  color: var(--gold-600);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; color: var(--ink-soft); font-size: 0.94rem; }

@media (max-width: 860px) {
  .lead-strip__inner { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lead-form__row { grid-template-columns: 1fr; }
  .offer-banner { font-size: 0.74rem; }
  .offer-banner span { display: block; margin: 2px 0; }
  .offer-banner .divider { display: none; }
}

/* ============================================
   Blog
   ============================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold-500); }
.blog-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-card__meta time { color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 500; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card h3 a:hover { color: var(--gold-600); }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; flex-grow: 1; }
.blog-card__link { font-size: 0.86rem; font-weight: 700; color: var(--gold-600); margin-top: 6px; }
.blog-card__link:hover { color: var(--green-900); }

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 0 60px;
}
.article__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 14px;
}
.article__meta time { color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 500; }
.article h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.article__lead { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 32px; }
.article h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.article p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.article ol { list-style: decimal; }
.article li { color: var(--ink-soft); margin-bottom: 8px; }
.article strong { color: var(--green-950); }
.article__cta {
  margin-top: 40px;
  padding: 28px;
  background: var(--gold-100);
  border-radius: var(--radius);
  text-align: center;
}
.article__cta p { color: var(--ink); margin-bottom: 16px; }
.article__back { display: inline-block; margin-bottom: 24px; font-size: 0.86rem; font-weight: 700; color: var(--gold-600); }
.article__back:hover { color: var(--green-900); }

/* ============================================
   Project page: quick actions bar
   ============================================ */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================
   Project page: config cards + price table
   ============================================ */
.config-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.config-card__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.config-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.config-card dl {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0;
}
.config-card dt { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green-950); }
.config-card dd { margin: 2px 0 0; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }

.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; font-size: 0.94rem; }
.price-table thead th {
  background: var(--green-950);
  color: var(--gold-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table tbody td:last-child { font-weight: 800; color: var(--green-900); }

/* ============================================
   Project page: master plan + extra gallery art
   ============================================ */
.master-plan {
  border-radius: var(--radius);
  min-height: 420px;
  background: linear-gradient(150deg, var(--green-800), var(--green-950));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 140'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='0.8'%3E%3Crect x='6' y='6' width='188' height='128'/%3E%3Cpath d='M6 70H194M100 6V134' opacity='0.5'/%3E%3Crect x='16' y='16' width='24' height='16'/%3E%3Crect x='46' y='16' width='24' height='16'/%3E%3Crect x='76' y='16' width='24' height='16'/%3E%3Crect x='16' y='40' width='24' height='16'/%3E%3Crect x='46' y='40' width='24' height='16'/%3E%3Crect x='76' y='40' width='24' height='16'/%3E%3Crect x='112' y='16' width='24' height='16'/%3E%3Crect x='142' y='16' width='24' height='16'/%3E%3Crect x='172' y='16' width='16' height='16'/%3E%3Crect x='112' y='40' width='24' height='16'/%3E%3Crect x='142' y='40' width='24' height='16'/%3E%3Crect x='16' y='80' width='24' height='16'/%3E%3Crect x='46' y='80' width='24' height='16'/%3E%3Crect x='16' y='104' width='24' height='16'/%3E%3Crect x='46' y='104' width='24' height='16'/%3E%3Ccircle cx='100' cy='95' r='22' opacity='0.7'/%3E%3Cpath d='M92 95H108M100 87V103' opacity='0.7'/%3E%3Crect x='142' y='80' width='36' height='24' opacity='0.85'/%3E%3Cpath d='M142 92H178' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
}
.master-plan__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin-top: 18px;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.master-plan__legend li { display: flex; align-items: center; gap: 6px; }
.master-plan__legend .swatch { color: var(--gold-600); font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .gallery__art { border-radius: var(--radius); min-height: 200px; }
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.gallery__art--clubhouse { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='14' y='36' width='72' height='50'/%3E%3Cpath d='M14 36L50 16L86 36' stroke-linejoin='round'/%3E%3Cpath d='M30 50H44V70H30zM56 50H70V70H56z' opacity='0.75'/%3E%3Cpath d='M10 90H90' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E"); }
.gallery__art--pool { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='1'%3E%3Crect x='10' y='28' width='80' height='44'/%3E%3Cpath d='M18 40Q24 36 30 40T42 40T54 40T66 40T78 40' opacity='0.8'/%3E%3Cpath d='M18 54Q24 50 30 54T42 54T54 54T66 54T78 54' opacity='0.8'/%3E%3Cpath d='M10 84H90' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E"); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .config-card dl { gap: 16px; }
  .master-plan { min-height: 260px; background-size: 90%; }
}

/* ============================================
   Show-more listing cards
   ============================================ */
.listing-card--hidden { display: none; }

/* ============================================
   Ad landing page (distraction-free)
   ============================================ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-950);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.lp-header .brand__name { color: var(--white); }
.lp-header .brand__tag { color: rgba(255,255,255,0.65); }
.lp-header__actions { display: flex; align-items: center; gap: 10px; }
.lp-header__actions .btn--ghost { border-color: rgba(255,255,255,0.4); color: var(--white); }

.lp-hero {
  position: relative;
  color: var(--white);
  padding: 64px 0 48px;
  background-size: cover;
  background-position: center;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,20,6,0.72) 0%, rgba(0,20,6,0.55) 45%, rgba(0,20,6,0.88) 100%);
}
.lp-hero__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.lp-hero .eyebrow { color: var(--gold-400); }

.lp-footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.75);
  padding: 28px 0;
  text-align: center;
  font-size: 0.82rem;
}
.lp-footer a { color: rgba(255,255,255,0.85); }
.lp-footer a:hover { color: var(--gold-400); }
.lp-footer__legal { margin: 8px 0 0; opacity: 0.7; }

.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.doc-card:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.doc-card__icon { font-size: 1.8rem; }
.doc-card__label { font-size: 0.86rem; font-weight: 700; color: var(--green-950); }
.doc-card__hint { font-size: 0.72rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lp-header__actions .btn span { display: none; }
}
