/* ============================================
   GREENZ BY DANUBE – styles.css
   Mobile-first | Lighthouse 90+ target
   ============================================ */

/* ── TOKENS ──────────────────────────────── */
:root {
  --green-deep:   #1a3a2a;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --cream:        #f8f4ee;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #444444;
  --text-light:   #636363;
  --border:       #e0d8cc;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.16);
  --radius:       12px;
  --radius-sm:    8px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   0.25s ease;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  padding-bottom: 80px; /* space for sticky CTA */
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 500; }
p  { color: var(--text-mid); }

/* ── UTILITIES ──────────────────────────── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 60px 0; }
.section--alt { background: var(--cream); }
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a6000;
  margin-bottom: 12px;
}
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
}

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #0a1505;
  font-weight: 700;
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--outline {
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.1); }
.btn--green {
  background: var(--green-mid);
  color: var(--white);
}
.btn--green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--full { width: 100%; }

/* ── SCROLL POPUP ───────────────────────── */
.scroll-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.scroll-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
}
.popup-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.scroll-popup.is-open .popup-card {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-mid);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: none;
}
.popup-close:hover { background: var(--border); }
.popup-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.popup-logo span { color: var(--gold); }
.popup-card h3 {
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.popup-sub {
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.popup-field { margin-bottom: 14px; }
.popup-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.popup-field input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  min-height: 52px;
  transition: border-color var(--transition);
}
.popup-field input:focus { border-color: var(--green-mid); outline: none; }
.popup-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.popup-consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--green-mid);
  flex-shrink: 0;
}
.popup-consent-row label {
  font-size: .78rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1.5;
}
.popup-consent-row a { color: var(--green-mid); text-decoration: underline; }
.popup-error {
  font-size: .82rem;
  color: #c0392b;
  min-height: 18px;
  margin-bottom: 10px;
}
.popup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--green-mid);
}
.popup-success p { color: var(--text-dark); font-size: .95rem; margin: 0; }
.popup-success.show { display: flex; }
.popup-skip {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 4px;
  transition: color var(--transition);
}
.popup-skip:hover { color: var(--text-mid); }

/* ── COOKIE BANNER ──────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 80px;
  left: 0; right: 0;
  z-index: 9999;
  background: var(--green-deep);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
#cookie-banner p { color: var(--white); font-size: .85rem; }
#cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btns button {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
}
#cookie-accept { background: var(--gold); color: var(--green-deep); }
#cookie-reject { background: transparent; border: 1px solid rgba(255,255,255,.4); color: var(--white); }

/* ── STICKY CTA BAR ─────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-deep);
  display: flex;
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.2);
}
.sticky-cta a {
  flex: 1;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.sticky-cta .cta-details {
  background: var(--gold);
  color: var(--green-deep);
}
.sticky-cta .cta-details:hover { background: var(--gold-light); }
.sticky-cta .cta-whatsapp {
  background: #1a7a3a;
  color: var(--white);
}
.sticky-cta .cta-whatsapp:hover { background: #155f2d; }

/* ── NAV ────────────────────────────────── */
nav {
  position: sticky;
  top: 0; z-index: 900;
  background: var(--green-deep);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: none; }
@media(min-width:768px){
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-links a {
    color: rgba(255,255,255,.95);
    font-size: .9rem;
    font-weight: 500;
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--gold-light); }
}

/* ── HERO ───────────────────────────────── */
.hero {
  background: var(--green-deep);
  display: flex;
  align-items: center;
}
.hero-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 35px 48px 60px clamp(20px, calc((100vw - 1100px) / 2 + 20px), 120px);
}
.hero-content {
  max-width: 520px;
  padding-top: 10px;
}
.hero-img-wrap {
  flex: 0 0 50%;
  border-radius: 20px;
  overflow: hidden;
  margin: -60px 40px 40px 0;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    overflow-x: hidden;
  }
  .hero-left {
    padding: 40px 20px 28px;
    align-items: flex-start;
    overflow: hidden;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
  }
  .hero-img-wrap {
    flex: none;
    width: calc(100% - 32px);
    margin: 0 16px 32px;
    border-radius: 16px;
  }
  .hero-pills {
    flex-wrap: wrap;
    overflow: visible;
  }
  .hero-ctas {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero h1 {
  color: var(--white);
  max-width: 640px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 10px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 18px;
}
.hero-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 18px;
  overflow: hidden;
}
.hero-pills span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 5px 10px;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
}
.hero-ctas { display: flex; flex-wrap: nowrap; gap: 12px; }

/* ── TRUST BAR ──────────────────────────── */
.trust-bar {
  background: var(--gold);
  padding: 14px 20px;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: .85rem;
  font-weight: 600;
}
.trust-item svg { flex-shrink: 0; }

/* ── PAYMENT SECTION ────────────────────── */
.payment-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.payment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.payment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.payment-card .number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 8px;
}
.payment-card .label { font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.payment-card p { font-size: .9rem; }

/* ── CALCULATOR ─────────────────────────── */
.calculator {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-top: 32px;
}
.calculator h3 { color: var(--white); margin-bottom: 6px; }
.calculator p { color: rgba(255,255,255,.88); margin-bottom: 24px; font-size: .9rem; }
.calc-row { margin-bottom: 20px; }
.calc-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.calc-row input, .calc-row select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: .95rem;
  min-height: 52px;
  transition: border-color var(--transition);
}
.calc-row input:focus, .calc-row select:focus {
  border-color: var(--gold);
}
.calc-row input::placeholder { color: rgba(255,255,255,.4); }
.calc-row select option { background: var(--green-deep); color: var(--white); }
.calc-result {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 20px;
  display: none;
}
.calc-result.show { display: block; }
.calc-result .result-label {
  font-size: .8rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.calc-result .result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
}
.calc-result .result-note { font-size: .8rem; color: rgba(255,255,255,.82); margin-top: 6px; }

/* ── COMPARE TABLE ──────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: .9rem;
}
.compare-table th {
  background: var(--green-deep);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:nth-child(even) td { background: var(--cream); }
.compare-table .check { color: var(--green-mid); font-weight: 700; font-size: 1.1rem; }
.compare-table .cross { color: #c0392b; font-weight: 700; }
.compare-note { font-size: .8rem; color: var(--text-light); margin-top: 12px; font-style: italic; }

/* ── UNITS GRID ─────────────────────────── */
.units-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.unit-card { cursor: pointer; }
.unit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.unit-cta { display:inline-block; margin-top:10px; font-size:.82rem; font-weight:600; color:var(--green-mid); letter-spacing:.02em; }
.unit-cta::after { content:' →'; }
.unit-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8ede9;
}
.unit-body { padding: 20px; }
.unit-type { font-weight: 700; color: var(--green-mid); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.unit-name { font-family: var(--font-display); font-size: 1.3rem; margin: 4px 0 10px; }
.unit-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.unit-spec {
  font-size: .82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.unit-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  font-weight: 600;
}
.unit-price span { font-size: .8rem; font-family: var(--font-body); color: var(--text-light); }

/* ── AMENITIES ──────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.amenity-icon {
  width: 40px; height: 40px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.amenity-item strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.amenity-item span { font-size: .8rem; color: var(--text-light); }

/* ── LOCATION MAP ───────────────────────── */
.location-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  background: #0e2a1a;
  display: block;
  min-height: 300px;
}
.location-points { display: grid; gap: 14px; margin-top: 24px; }
.loc-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green-mid);
  box-shadow: var(--shadow-sm);
}
.loc-point .time {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-mid);
  font-weight: 600;
  min-width: 52px;
}
.loc-point .place { font-weight: 600; font-size: .9rem; }
.loc-point .via { font-size: .8rem; color: var(--text-light); }

/* ── LEAD FORM ──────────────────────────── */
.form-section {
  background: var(--green-deep);
  color: var(--white);
}
.form-section h2, .form-section .tag { color: var(--white); }
.form-section .tag { color: var(--gold-light); }
.form-section .divider { background: var(--gold); }
.form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-top: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: .95rem;
  min-height: 52px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: rgba(255,255,255,.4); }
.form-group select option { background: var(--green-deep); color: var(--white); }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.consent-row input[type="checkbox"] {
  width: 20px; height: 20px; min-height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.consent-row label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
}
.consent-row a { color: var(--gold-light); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--gold-light); font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,.8); }

/* ── FAQ ────────────────────────────────── */
.faq-list { margin-top: 28px; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: .95rem;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--cream); }
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--green-mid); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--cream);
  padding: 0 20px;
  font-size: .9rem;
  color: var(--text-mid);
}
.faq-item.open .faq-a { max-height: 300px; padding: 16px 20px; }

/* ── DISCLAIMER BAR ─────────────────────── */
.disclaimer-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.7;
}
.disclaimer-bar a { color: var(--green-mid); text-decoration: underline; }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.7);
  padding: 40px 20px 24px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: .85rem; margin-bottom: 28px; color: rgba(255,255,255,.82); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.82); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; margin-top: 8px; }

/* ── POLICY PAGES ───────────────────────── */
.policy-page { padding: 48px 0 80px; }
.policy-page h1 { color: var(--green-deep); margin-bottom: 8px; }
.policy-page .updated { font-size: .85rem; color: var(--text-light); margin-bottom: 32px; }
.policy-page h2 { font-size: 1.2rem; color: var(--green-deep); margin: 28px 0 10px; }
.policy-page p, .policy-page li { font-size: .95rem; color: var(--text-mid); margin-bottom: 10px; }
.policy-page ul { padding-left: 20px; list-style: disc; }
.policy-page a { color: var(--green-mid); text-decoration: underline; }
.policy-nav {
  background: var(--green-deep);
  padding: 14px 20px;
  margin-bottom: 32px;
}
.policy-nav a { color: var(--gold-light); font-size: .85rem; font-weight: 600; }

/* ── VIDEO SECTION ──────────────────────── */
.video-section { background: var(--cream); }
.video-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16 / 9;
}
.project-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── RESPONSIVE ─────────────────────────── */
@media(min-width:480px){
  .payment-grid { grid-template-columns: repeat(3,1fr); }
  .units-grid { grid-template-columns: 1fr 1fr; }
}
@media(min-width:768px){
  .section { padding: 80px 0; }
  .hero-content { padding: 80px 40px; }
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .units-grid { grid-template-columns: repeat(3,1fr); }
  .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }
  #cookie-banner { bottom: 0; }
}
@media(min-width:1024px){
  .hero-content { padding: 20px 60px; }
  .location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
}

/* ── HERO URGENCY + BROCHURE ────────────── */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
  letter-spacing: .03em;
}
.hero-brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.hero-brochure-link:hover { color: var(--gold-light); }

/* ── DEVELOPER CREDIBILITY STRIP ────────── */
.dev-strip {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 20px;
}
.dev-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.dev-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 32px;
  text-align: center;
}
.dev-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.dev-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.dev-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .dev-strip-inner { gap: 4px; }
  .dev-stat { padding: 8px 16px; }
  .dev-divider { display: none; }
  .dev-stat strong { font-size: 1.4rem; }
}

/* ── BENTO GRID ─────────────────────────── */
.bento-section { background: var(--cream); }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 36px;
}
.bento-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--white);
}
.bento-card--wide { grid-column: span 2; }
.bento-card--full { grid-column: span 3; }
.bento-card--tall { grid-row: span 2; }
.bento-card--dark {
  background: var(--green-deep);
  border-color: transparent;
  color: var(--white);
}
.bento-card--gold {
  background: var(--gold);
  border-color: transparent;
  color: var(--green-deep);
  align-items: flex-start;
}
.bento-card--accent {
  background: var(--green-deep);
  border-color: transparent;
  color: var(--white);
}
.bento-card--light {
  background: var(--white);
  border: 1px solid var(--border);
}
.bento-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: inherit;
}
.bento-card--dark .bento-eyebrow { color: rgba(255,255,255,.82); }
.bento-card--accent .bento-eyebrow { color: rgba(255,255,255,.82); }
.bento-card--gold .bento-eyebrow { color: #1a3a2a; }
.bento-card--light .bento-eyebrow { color: var(--text-mid); }
.bento-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: inherit;
}
.bento-number span {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 1;
}
.bento-card--dark .bento-number { color: var(--gold-light); }
.bento-card--accent .bento-number { color: var(--gold-light); }
.bento-label {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bento-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: inherit;
}
.bento-card--dark .bento-desc { color: rgba(255,255,255,.88); }
.bento-card--accent .bento-desc { color: rgba(255,255,255,.88); }
.bento-card--accent p { color: rgba(255,255,255,.88); }
.bento-card--dark p { color: rgba(255,255,255,.88); }
.bento-card--gold .bento-desc { color: #1a3a2a; }
.bento-card--light .bento-desc { color: var(--text-mid); }
.bento-urgency-icon { color: var(--green-deep); }
.bento-urgency-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-deep);
}
.bento-card--gold p { font-size: .88rem; color: var(--green-deep); }
.bento-cta { margin-top: auto; align-self: stretch; text-align: center; }
.bento-feature-headline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
}
.bento-card--light .bento-desc { color: var(--text-mid); }
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card--tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .bento-card--full { grid-column: span 1; }
  .bento-card--full { grid-column: span 2; }
}

/* ── AMENITY HUBS ───────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hub-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.hub-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(45,106,79,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.hub-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.hub-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hub-features li {
  font-size: .8rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.hub-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── BENTO EOI GRID ─────────────────────── */
.bento-eoi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0;
}
.bento-eoi-item {
  background: rgba(255,255,255,.32);
  border: 1px solid rgba(0,0,0,.14);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bento-eoi-item span {
  font-size: .72rem;
  color: #1a3a2a;
  font-weight: 700;
}
.bento-eoi-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1505;
}

/* ── CALCULATOR 2-COL ───────────────────── */
.calc-header { margin-bottom: 24px; }
.calc-body {
  display: grid;
  gap: 28px;
}
@media(min-width:768px){
  .calc-body { grid-template-columns: 1fr 1fr; gap: 36px; }
  .calc-result { display: block !important; margin-top: 0; }
}

/* ── FORM LAYOUT 2-COL ──────────────────── */
.form-layout {
  display: grid;
  gap: 40px;
  margin-top: 28px;
}
@media(min-width:900px){
  .form-layout { grid-template-columns: 1fr 1fr; align-items: start; }
  .form-wrap { max-width: 100%; }
}
.form-info h2 { color: var(--white); }
.form-info .divider { background: var(--gold); }
.form-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 500;
}
.form-info-list li svg {
  flex-shrink: 0;
  color: var(--gold-light);
}
.form-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a7a3a;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  margin-top: 8px;
}
.form-whatsapp-link:hover { background: #155f2d; }

/* ── FORM URGENCY STRIP ─────────────────── */
.form-urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}
