/*
Theme Name: Arbolea
Theme URI: https://arboleacr.com
Author: Coreintelhub · Carlos León
Description: Tema a medida para Arbolea Bienes Raíces. Replica el diseño original (verde/dorado, Cormorant Garamond + Source Sans 3) y muestra las propiedades del CPT "propiedad" sin tocar HTML.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: arbolea
*/

/* ===================== VARIABLES / BASE ===================== */
:root {
  --green-dark: #1B3A1F; --green: #2D5A2F; --green-light: #4A7C4F;
  --gold: #B8763D; --gold-light: #D4924E;
  --bg: #FAF8F3; --bg-alt: #F0EBE0; --white: #FFFFFF;
  --text: #1A1A1A; --text-light: #5A5A5A; --text-muted: #8A8A8A;
  --border: #D4C9B5; --border-light: #E8DFCC;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===================== HEADER ===================== */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27, 58, 31, 0.95); backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
header.site-header.scrolled { background: rgba(27, 58, 31, 0.98); }
.header-inner {
  max-width: 1600px; margin: 0 auto; padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-img { height: 52px; width: auto; display: block; }
.nav-menu { display: flex; gap: 2.5rem; align-items: center; }
.nav-menu ul { display: flex; gap: 2.5rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-link, .nav-menu a {
  color: white; text-decoration: none; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500; transition: color 0.2s;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
}
.nav-link:hover, .nav-menu a:hover,
.nav-link.active, .nav-menu .current-menu-item > a { border-bottom-color: var(--gold-light); }
.nav-cta, .nav-menu .menu-item-cta a {
  background: var(--gold); color: white; padding: 0.7rem 1.5rem; text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  border-bottom: none;
}
.nav-cta:hover, .nav-menu .menu-item-cta a:hover { background: var(--gold-light); border-bottom: none; }
.menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; padding: 0.5rem; }
.menu-toggle svg { width: 28px; height: 28px; }
@media (max-width: 900px) {
  .header-inner { padding: 0.8rem 1.2rem; }
  .nav-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--green-dark); flex-direction: column; gap: 0;
    padding: 1.5rem 0; z-index: 999; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-link, .nav-menu a {
    padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%; font-size: 1rem;
  }
  .nav-cta, .nav-menu .menu-item-cta a { margin: 1.5rem 1.5rem 0; text-align: center; padding: 1rem 1.5rem; font-size: 0.85rem; }
  .menu-toggle { display: block; }
  body.menu-open { overflow: hidden; }
}

/* ===================== BOTONES ===================== */
.btn-primary, .btn-ghost, .btn-outline, .btn-secondary {
  padding: 1rem 2rem; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; transition: all 0.3s; cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: white; border: 1px solid white; }
.btn-ghost:hover { background: white; color: var(--green-dark); }
.btn-outline { background: transparent; color: var(--green-dark); border: 1px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: white; }
.btn-secondary { background: var(--green-dark); color: white; }
.btn-secondary:hover { background: var(--green); }
.btn-primary svg, .btn-ghost svg, .btn-outline svg, .btn-secondary svg { width: 14px; height: 14px; stroke-width: 2; }

/* ===================== HERO (HOME) ===================== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(27,58,31,0.5) 0%, rgba(0,0,0,0.6) 100%); }
.hero-content { position: relative; z-index: 3; text-align: center; color: white; max-width: 1100px; padding: 0 2rem; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--gold-light); font-weight: 500; opacity: 0; animation: fadeInUp 1s ease 0.2s forwards; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; line-height: 1.1; margin-bottom: 2rem; opacity: 0; animation: fadeInUp 1s ease 0.5s forwards; }
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero-subtitle { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; max-width: 700px; margin: 0 auto 3rem; opacity: 0; animation: fadeInUp 1s ease 0.8s forwards; color: rgba(255,255,255,0.9); }
.hero-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeInUp 1s ease 1.1s forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.scroll-down { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; color: white; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; animation: bounce 2s ease infinite; }
.scroll-down::after { content: ''; display: block; width: 1px; height: 40px; background: white; margin: 0.8rem auto 0; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; } 50% { transform: translateX(-50%) translateY(8px); opacity: 1; } }

/* ===================== INTRO ===================== */
.intro { padding: 7rem 2rem 5rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; display: inline-block; position: relative; padding-bottom: 1rem; }
.section-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); margin: 1rem auto 0; }
.intro-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.2; color: var(--green-dark); margin-bottom: 2rem; }
.intro-text { font-size: 1.1rem; line-height: 1.85; color: var(--text-light); max-width: 800px; margin: 0 auto 2rem; }
.intro-text strong { color: var(--green-dark); font-weight: 500; }

/* ===================== PROPERTIES GRID (catálogo + destacadas) ===================== */
.featured { padding: 5rem 2rem; background: var(--bg-alt); }
.featured-inner { max-width: 1500px; margin: 0 auto; }
.featured-header { text-align: center; margin-bottom: 4rem; }
.featured-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--green-dark); }
.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.property-card { background: white; overflow: hidden; transition: all 0.4s ease; cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.property-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.property-image { aspect-ratio: 4/3; background-size: cover; background-position: center; transition: transform 0.6s ease; position: relative; background-color: var(--green-light); }
.property-image::after { content: attr(data-status); position: absolute; top: 1rem; left: 1rem; background: var(--green-dark); color: white; padding: 0.4rem 1rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.property-image[data-status="Alquilado"]::after,
.property-image[data-status="Vendido"]::after { background: #8A2B2B; }
.property-image[data-status="Reservado"]::after { background: var(--gold); }
.property-image[data-status="Disponible"]::after { background: var(--green); }
.property-card:hover .property-image { transform: scale(1.05); }
.property-body { padding: 2rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.property-location { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.property-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--green-dark); margin-bottom: 1rem; line-height: 1.2; }
.property-meta { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; }
.property-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--green-dark); margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.property-price small { font-size: 0.9rem; color: var(--text-muted); font-family: 'Source Sans 3', sans-serif; }
.property-link { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; margin-top: 0.8rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.property-link svg { width: 12px; height: 12px; transition: transform 0.3s; }
.property-card:hover .property-link svg { transform: translateX(5px); }
@media (max-width: 1000px) { .properties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .properties-grid { grid-template-columns: 1fr; } }

/* ===================== CATEGORIES (home) ===================== */
.categories { padding: 7rem 2rem; max-width: 1500px; margin: 0 auto; }
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-light); }
.category-card { background: white; padding: 4rem 3rem; text-align: center; text-decoration: none; color: inherit; transition: all 0.3s; position: relative; overflow: hidden; }
.category-card:hover { background: var(--green-dark); color: white; }
.category-card:hover .category-title { color: white; }
.category-card:hover .category-subtitle { color: var(--gold-light); }
.category-card:hover .category-text { color: rgba(255,255,255,0.85); }
.category-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; color: var(--gold); }
.category-icon svg { width: 100%; height: 100%; }
.category-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--green-dark); margin-bottom: 0.8rem; transition: color 0.3s; }
.category-subtitle { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; transition: color 0.3s; }
.category-text { font-size: 1rem; color: var(--text-light); line-height: 1.7; max-width: 380px; margin: 0 auto 2rem; transition: color 0.3s; }
.category-arrow { display: inline-block; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; border: 1px solid currentColor; padding: 0.8rem 1.8rem; transition: all 0.3s; }
@media (max-width: 800px) { .categories-grid { grid-template-columns: 1fr; } .category-card { padding: 3rem 1.5rem; } }

/* ===================== STATS (home) ===================== */
.stats { background: var(--green-dark); color: white; padding: 5rem 2rem; }
.stats-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: left; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 500; line-height: 1; margin-bottom: 0.8rem; color: white; }
.stats .stat-label { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; line-height: 1.5; }
@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

/* ===================== PUBLISH WITH US (home) ===================== */
.publish { position: relative; padding: 7rem 2rem; overflow: hidden; background-color: var(--green-dark); background-size: cover; background-position: center; background-repeat: no-repeat; }
.publish-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; color: white; }
.publish-eyebrow { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; font-weight: 600; }
.publish-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.2; margin-bottom: 2rem; }
.publish-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 3rem; color: rgba(255,255,255,0.9); max-width: 700px; margin-left: auto; margin-right: auto; }

/* ===================== CONTACT (home + form) ===================== */
.contact-section { background: var(--bg-alt); padding: 7rem 2rem; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info-eyebrow { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; }
.contact-info-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.2; color: var(--green-dark); margin-bottom: 2rem; }
.contact-info-text { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); margin-bottom: 3rem; }
.contact-detail { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); }
.contact-icon { width: 44px; height: 44px; background: var(--green-dark); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 0.3rem; }
.contact-detail-value { font-size: 1rem; color: var(--text); font-weight: 500; text-decoration: none; }
.contact-detail-value:hover { color: var(--gold); }
.contact-form { background: white; padding: 3rem; border: 1px solid var(--border-light); }
.form-row { margin-bottom: 1.5rem; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 0.6rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); background: var(--bg); font-family: inherit; font-size: 1rem; color: var(--text); transition: all 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); background: white; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; background: var(--green-dark); color: white; padding: 1.1rem; border: none; cursor: pointer; font-family: inherit; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; transition: background 0.2s; margin-top: 1rem; }
.form-submit:hover { background: var(--green); }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; text-align: center; line-height: 1.6; }
@media (max-width: 850px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } .contact-form { padding: 2rem 1.5rem; } .form-row.split { grid-template-columns: 1fr; } }

/* ===================== PAGE HERO (catálogo / páginas internas) ===================== */
.page-hero { position: relative; padding: 9rem 2rem 5rem; color: white; text-align: center; overflow: hidden; min-height: 420px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(27,58,31,0.85) 0%, rgba(0,0,0,0.7) 100%); }
.page-hero-content { position: relative; z-index: 3; }
.page-hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.5rem; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; margin-bottom: 1.5rem; }
.page-hero-text { font-size: 1.1rem; max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.9); line-height: 1.8; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { background: var(--bg-alt); padding: 1.2rem 2rem; }
.breadcrumb-inner { max-width: 1500px; margin: 0 auto; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--gold); }

/* ===================== EMPTY STATE / CTA SECTION ===================== */
.listings-wrap { padding: 5rem 2rem; max-width: 1500px; margin: 0 auto; }
.empty-state { text-align: center; padding: 5rem 2rem; background: var(--bg-alt); margin: 3rem auto; max-width: 900px; }
.empty-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--green-dark); margin-bottom: 1rem; font-weight: 400; }
.empty-text { color: var(--text-light); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-section { background: var(--green-dark); color: white; padding: 5rem 2rem; text-align: center; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 400; margin-bottom: 1.5rem; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }

/* ===================== SINGLE PROPIEDAD (detalle) ===================== */
.sp-hero { display: grid; grid-template-columns: 1fr 380px; background: var(--green-dark); height: 540px; overflow: hidden; position: relative; margin-top: 84px; }
.sp-hero-main, .sp-hero-side { background-size: cover; background-position: center; background-color: var(--green-light); position: relative; }
.sp-hero-main { cursor: pointer; }
.sp-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.92); border: none; width: 48px; height: 48px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; z-index: 5; color: var(--green-dark); }
.sp-arrow:hover { background: var(--gold); color: white; }
.sp-arrow.prev { left: 2rem; }
.sp-arrow.next { right: calc(380px + 2rem); }
.sp-arrow svg { width: 20px; height: 20px; stroke-width: 2; }
.sp-counter { position: absolute; bottom: 2rem; left: 2rem; background: rgba(27,58,31,0.92); color: white; padding: 0.7rem 1.3rem; font-size: 0.8rem; letter-spacing: 0.2em; font-weight: 500; z-index: 5; }
.sp-counter strong { color: var(--gold-light); }
@media (max-width: 900px) {
  .sp-hero { grid-template-columns: 1fr; height: 380px; margin-top: 68px; }
  .sp-hero-side { display: none; }
  .sp-arrow.prev { left: 1rem; } .sp-arrow.next { right: 1rem; }
  .sp-arrow { width: 40px; height: 40px; }
}

.sp-info { background: var(--bg); padding: 3.5rem 3rem 1rem; max-width: 1400px; margin: 0 auto; }
.sp-status { display: inline-block; background: var(--gold); color: white; padding: 0.4rem 1rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.sp-location { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.sp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; color: var(--green-dark); }
.sp-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--green-dark); font-weight: 500; }
.sp-price small { font-size: 1rem; color: var(--text-muted); font-family: 'Source Sans 3', sans-serif; }
.sp-price-note { font-size: 0.95rem; color: var(--gold); font-weight: 600; margin-top: 0.3rem; }

/* stats grid (características) */
.sp-section { max-width: 1400px; margin: 0 auto; padding: 3rem; }
.sp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sp-stat-label { font-size: 0.68rem; letter-spacing: 0.22em; font-weight: 600; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.sp-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1.25; color: var(--green-dark); }

.sp-desc { font-size: 1.05rem; line-height: 1.9; color: var(--text-light); }
.sp-desc h1, .sp-desc h2, .sp-desc h3 { font-family: 'Cormorant Garamond', serif; color: var(--green-dark); font-weight: 400; margin: 1.5rem 0 1rem; }
.sp-desc p { margin-bottom: 1.2rem; }
.sp-desc strong { color: var(--text); }
.sp-block-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 400; line-height: 1.2; color: var(--green-dark); margin-bottom: 2rem; }
.sp-block-title::after { content: ''; display: block; width: 60px; height: 1px; background: var(--gold); margin-top: 1.5rem; }

/* financing box */
.financing-box { background: var(--green-dark); color: white; padding: 3rem 2rem; margin: 1rem auto; max-width: 1400px; text-align: center; }
.financing-eyebrow { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1rem; }
.financing-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 1.5rem; }
.financing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.financing-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: white; margin-bottom: 0.4rem; }
.financing-lbl { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
@media (max-width: 600px) { .financing-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* amenities */
.sp-amenities { background: var(--bg-alt); }
.amenity-group { margin-bottom: 2.5rem; }
.amenity-group-title { font-size: 0.72rem; letter-spacing: 0.24em; font-weight: 600; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border-light); }
.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 2rem; list-style: none; }
.amenity-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 1rem; padding: 0.3rem 0; }
.amenity-list li::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 700px) { .amenity-list { grid-template-columns: 1fr; } }

/* gallery */
.sp-gallery-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.8vw, 2.4rem); text-align: center; font-weight: 400; color: var(--green-dark); margin-bottom: 0; }
.sp-gallery-title::after { content: ''; display: block; width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; background: var(--green-light); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

/* map */
.map-embed { width: 100%; height: 420px; border: none; filter: grayscale(20%); }

/* lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; background: none; border: 1px solid white; color: white; width: 44px; height: 44px; cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }

/* ===================== FOOTER ===================== */
footer.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: white; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-tagline { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-heading { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1500px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.6rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); transition: all 0.25s; text-decoration: none; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: white; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ===================== UTIL ===================== */
.section-contact-dark { background: var(--green-dark); color: white; padding: 5rem 2rem; text-align: center; }
.contact-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
@media (max-width: 640px) { .contact-buttons { flex-direction: column; align-items: stretch; } }
.page-content-wrap { max-width: 900px; margin: 0 auto; padding: 8rem 2rem 5rem; }
.page-content-wrap h1 { font-family: 'Cormorant Garamond', serif; color: var(--green-dark); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
.page-content-wrap h2, .page-content-wrap h3 { font-family: 'Cormorant Garamond', serif; color: var(--green-dark); font-weight: 400; margin: 1.5rem 0 1rem; }
.page-content-wrap p { margin-bottom: 1.2rem; line-height: 1.85; color: var(--text-light); }
