/* ==========================================================================
   Verde Vivo — Real Estate Boutique Theme
   v1.0
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #2D5A3D;
  --color-primary-hover: #1F4029;
  --color-primary-soft: rgba(45, 90, 61, .08);
  --color-secondary: #7BA77F;
  --color-secondary-hover: #5E8A63;
  --color-accent: #D4A574;
  --color-accent-hover: #B88A57;
  --color-bg: #FAF8F3;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0EBE0;
  --color-text: #1A2E22;
  --color-text-muted: #5C6B61;
  --color-text-inverse: #FAF8F3;
  --color-border: #E5DFD0;
  --color-border-strong: #C9C0A8;
  --color-cta: #2D5A3D;
  --color-cta-hover: #1F4029;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1FAE54;
  --color-overlay: rgba(26, 46, 34, .55);
  --color-overlay-soft: rgba(26, 46, 34, .25);

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.75rem;
  --fs-6xl: 4.5rem;
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --ls-wider: 0.16em;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;
  --section-py: 64px;
  --section-py-lg: 128px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px; --r-2xl: 48px; --r-full: 999px;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(45, 90, 61, .06);
  --sh-md: 0 6px 20px rgba(45, 90, 61, .08);
  --sh-lg: 0 16px 40px rgba(45, 90, 61, .12);
  --sh-xl: 0 24px 60px rgba(45, 90, 61, .16);

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --container-px: 24px;

  /* Transitions */
  --t-fast: 150ms ease-out;
  --t-base: 220ms ease-out;
  --t-slow: 400ms ease-out;
  --t-image: 600ms cubic-bezier(.2, .6, .2, 1);

  /* Z */
  --z-header: 50;
  --z-mobile-menu: 60;
  --z-whatsapp: 70;
  --z-lightbox: 80;
}

@media (min-width: 1024px) {
  :root { --container-px: 48px; --section-py: var(--section-py-lg); }
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-primary); color: #fff;
  padding: 12px 20px; z-index: 9999; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
@media (min-width: 768px) {
  h1 { font-size: var(--fs-5xl); }
  h2 { font-size: var(--fs-4xl); }
}
p { color: var(--color-text-muted); line-height: var(--lh-relaxed); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--sp-3);
}
.lead { font-size: var(--fs-lg); line-height: var(--lh-relaxed); color: var(--color-text-muted); }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section--alt { background: var(--color-surface-alt); }
.section--dark { background: var(--color-primary); color: var(--color-text-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-inverse); }
.section--dark p { color: rgba(250, 248, 243, .8); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-8); }
.section-head--left { text-align: left; margin-left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--color-cta); color: var(--color-text-inverse); }
.btn--primary:hover { background: var(--color-cta-hover); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--secondary:hover { background: var(--color-primary); color: var(--color-text-inverse); }
.btn--light { background: var(--color-surface); color: var(--color-primary); }
.btn--light:hover { background: var(--color-bg); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: #fff; color: var(--color-primary); }
.btn--lg { padding: 18px 36px; font-size: var(--fs-base); }
.btn--block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header);
  padding: var(--sp-4) 0;
  transition: background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
}
.site-header.is-scrolled {
  background: rgba(250, 248, 243, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm);
  padding: var(--sp-3) 0;
}
.site-header.is-light .nav-link, .site-header.is-light .brand-text { color: #fff; }
.site-header.is-scrolled .nav-link, .site-header.is-scrolled .brand-text { color: var(--color-text); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); }
.brand { display: flex; align-items: center; gap: var(--sp-3); }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: var(--fw-medium); letter-spacing: var(--ls-tight); }

.primary-nav { display: none; }
@media (min-width: 1024px) { .primary-nav { display: flex; gap: var(--sp-6); align-items: center; } }
.nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--color-accent);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(250, 248, 243, .9); color: var(--color-text);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; background: var(--color-bg);
  z-index: var(--z-mobile-menu); padding: var(--sp-7) var(--container-px);
  transform: translateX(100%); transition: transform var(--t-slow);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-6); }
.mobile-drawer .nav-link { font-size: var(--fs-2xl); font-family: var(--font-display); padding: var(--sp-3) 0; border-bottom: 1px solid var(--color-border); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: var(--sp-8);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,46,34,.45) 0%, rgba(26,46,34,.25) 35%, rgba(26,46,34,.75) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 840px; }
.hero .eyebrow { color: var(--color-accent); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: var(--sp-5); }
.hero p { color: rgba(255,255,255,.92); font-size: var(--fs-lg); max-width: 620px; margin-bottom: var(--sp-7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.scroll-cue {
  position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: var(--fs-xs); letter-spacing: var(--ls-wider);
  text-transform: uppercase; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ===== Stat strip ===== */
.stat-strip {
  background: var(--color-primary);
  color: #fff;
  padding: var(--sp-6) 0;
}
.stat-strip-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5);
  text-align: center;
}
@media (min-width: 768px) { .stat-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.stat-num { font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: var(--fw-medium); color: var(--color-accent); }
.stat-label { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: rgba(255,255,255,.8); }

/* ===== Two-col editorial ===== */
.split { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.1fr 1fr; gap: var(--sp-9); } }
.split--reverse > :first-child { order: 2; }
@media (min-width: 1024px) { .split--reverse > :first-child { order: 0; } }
.split-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-image); }
.split-img:hover img { transform: scale(1.04); }

/* ===== Feature grid (bento 6) ===== */
.feature-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } }
.feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--color-secondary); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--color-primary-soft); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.vv-icon { display: inline-block; flex-shrink: 0; vertical-align: middle; }
.lot-meta .vv-icon { color: var(--color-secondary); }
.contact-info .vv-icon { color: var(--color-primary); margin-right: var(--sp-2); vertical-align: -4px; }
.amenity-ic { color: var(--color-primary); margin-bottom: var(--sp-3); display: inline-flex; }
.feature h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.feature p { font-size: var(--fs-sm); }

/* ===== Lot cards ===== */
.lot-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .lot-grid { grid-template-columns: repeat(3, 1fr); } }
.lot-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.lot-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.lot-img { aspect-ratio: 4/3; overflow: hidden; }
.lot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-image); }
.lot-card:hover .lot-img img { transform: scale(1.05); }
.lot-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.lot-badge {
  display: inline-block; align-self: flex-start;
  padding: 4px 12px; border-radius: var(--r-full);
  background: rgba(123, 167, 127, .18); color: var(--color-primary);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}
.lot-card h3 { font-size: var(--fs-xl); }
.lot-meta { display: flex; gap: var(--sp-4); font-size: var(--fs-sm); color: var(--color-text-muted); }
.lot-meta span { display: inline-flex; align-items: center; gap: 6px; }
.lot-price { font-family: var(--font-display); font-size: var(--fs-2xl); color: var(--color-primary); margin-top: auto; }
.lot-price small { font-size: var(--fs-xs); color: var(--color-text-muted); display: block; font-family: var(--font-body); letter-spacing: var(--ls-wide); text-transform: uppercase; }

/* ===== Editorial 3-img strip ===== */
.editorial-strip {
  display: grid; gap: var(--sp-4); grid-template-columns: 1fr;
}
@media (min-width: 768px) { .editorial-strip { grid-template-columns: repeat(3, 1fr); } }
.editorial-strip > div { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; }
.editorial-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-image); }
.editorial-strip > div:hover img { transform: scale(1.05); }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial::before {
  content: "“"; position: absolute; top: var(--sp-3); right: var(--sp-5);
  font-family: var(--font-display); font-size: 80px;
  color: var(--color-accent); line-height: 1; opacity: .6;
}
.testimonial blockquote { font-family: var(--font-display); font-size: var(--fs-lg); line-height: var(--lh-snug); color: var(--color-text); margin-bottom: var(--sp-5); }
.testimonial cite { font-style: normal; display: block; font-weight: var(--fw-semibold); font-size: var(--fs-sm); }
.testimonial cite small { display: block; font-weight: var(--fw-regular); color: var(--color-text-muted); margin-top: 2px; }

/* ===== Pricing ===== */
.plan-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  border: 1.5px solid var(--color-border);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: all var(--t-base);
}
.plan--featured {
  border-color: var(--color-primary);
  box-shadow: var(--sh-lg);
  position: relative;
}
.plan--featured::before {
  content: "Más elegido"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff;
  padding: 4px 14px; border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
}
.plan h3 { font-size: var(--fs-2xl); }
.plan-price { font-family: var(--font-display); font-size: var(--fs-3xl); color: var(--color-primary); }
.plan ul { display: flex; flex-direction: column; gap: var(--sp-3); margin: var(--sp-4) 0; }
.plan li { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--color-text-muted); }
.plan li::before { content: "✓"; color: var(--color-secondary); font-weight: var(--fw-bold); flex-shrink: 0; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: var(--sp-5);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  font-weight: var(--fw-semibold); font-size: var(--fs-base);
  transition: background var(--t-base);
}
.faq-q:hover { background: var(--color-bg); }
.faq-q::after { content: "+"; font-size: var(--fs-2xl); color: var(--color-primary); transition: transform var(--t-base); flex-shrink: 0; }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); padding: 0 var(--sp-5); }
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: var(--sp-5); }
.faq-a p { font-size: var(--fs-sm); }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  padding: var(--sp-9) 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after { content: ""; position: absolute; inset: 0; background: rgba(26,46,34,.7); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: var(--sp-4); }
.cta-banner p { color: rgba(255,255,255,.9); margin-bottom: var(--sp-6); font-size: var(--fs-lg); }
.cta-form {
  display: grid; gap: var(--sp-3); grid-template-columns: 1fr;
  max-width: 560px; margin: 0 auto;
}
@media (min-width: 768px) { .cta-form { grid-template-columns: 1fr 1fr auto; } }
.wa-widget-inline {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-lg);
  min-height: 120px;
}
.wa-widget-inline > div { width: 100%; }

.cta-form input {
  padding: 14px 18px; border: 0; border-radius: var(--r-md);
  background: rgba(255,255,255,.95);
}

/* ===== Form ===== */
.field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: var(--fw-medium); }
.field input, .field textarea, .field select {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-sm);
  background: var(--color-surface);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}
.field--check { flex-direction: row; align-items: flex-start; gap: var(--sp-3); }
.field--check input { width: 20px; height: 20px; margin-top: 2px; }
.field--check label { font-weight: var(--fw-regular); font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; bottom: var(--sp-5); right: var(--sp-5);
  width: 60px; height: 60px; border-radius: var(--r-full);
  background: var(--color-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg);
  z-index: var(--z-whatsapp);
  transition: transform var(--t-base), background var(--t-base);
  font-size: 28px;
}
.wa-float:hover { transform: scale(1.1); background: var(--color-whatsapp-hover); }

/* ===== Footer ===== */
.site-footer { background: var(--color-text); color: rgba(250,248,243,.85); padding-top: var(--sp-8); }
.footer-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(250,248,243,.15);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: var(--fs-base); color: #fff; margin-bottom: var(--sp-4); font-family: var(--font-body); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; }
.footer-col p, .footer-col a { font-size: var(--fs-sm); color: rgba(250,248,243,.7); }
.footer-col a:hover { color: var(--color-accent); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-brand { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span { font-family: var(--font-display); font-size: var(--fs-lg); color: #fff; }
.socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.socials a {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: rgba(250,248,243,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-sm); transition: background var(--t-base);
}
.socials a:hover { background: var(--color-accent); color: var(--color-text); }
.footer-bottom { padding: var(--sp-5) 0; text-align: center; font-size: var(--fs-xs); color: rgba(250,248,243,.5); }

/* ===== Page hero (interior) ===== */
.page-hero {
  padding: 180px 0 var(--sp-8);
  background: var(--color-surface-alt);
  text-align: center;
}
.page-hero h1 { margin-bottom: var(--sp-3); }
.breadcrumb { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--color-text-muted); }

/* ===== Amenities grid ===== */
.amenity-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .amenity-grid { grid-template-columns: repeat(4, 1fr); } }
.amenity { text-align: center; padding: var(--sp-5); background: var(--color-surface); border-radius: var(--r-lg); border: 1px solid var(--color-border); }
.amenity-ic { font-size: 36px; color: var(--color-primary); margin-bottom: var(--sp-3); }
.amenity h4 { font-size: var(--fs-base); }

/* ===== Timeline ===== */
.timeline { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
.timeline-step {
  background: var(--color-surface); padding: var(--sp-6); border-radius: var(--r-lg);
  border-left: 4px solid var(--color-secondary);
}
.timeline-step.is-current { border-left-color: var(--color-accent); }
.timeline-step h4 { color: var(--color-primary); margin-bottom: var(--sp-2); }
.timeline-step span { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ===== Map embed ===== */
.map-frame { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--color-border); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== Pricing table ===== */
.price-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.price-table th, .price-table td { padding: var(--sp-4) var(--sp-5); text-align: left; border-bottom: 1px solid var(--color-border); font-size: var(--fs-sm); }
.price-table th { background: var(--color-primary); color: #fff; font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; font-size: var(--fs-xs); }
.price-table tr:last-child td { border-bottom: 0; }

/* ===== Contact layout ===== */
.contact-grid { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-info { background: var(--color-surface-alt); padding: var(--sp-7); border-radius: var(--r-lg); }
.contact-info h3 { margin-bottom: var(--sp-5); }
.contact-info p { margin-bottom: var(--sp-4); font-size: var(--fs-sm); }
.contact-info strong { color: var(--color-text); display: block; margin-bottom: 2px; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--t-image), transform var(--t-image); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-7 { margin-top: var(--sp-7); }
