/* ════════════════════════════════════════════════════════════════
   DRUMBEAT LUXURY STAYS — Estilos globales
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Antonio:wght@700;900&family=Didact+Gothic&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:   #0B1D2E;
  --gold:   #D8B56C;
  --goldl:  #E8CC8E;
  --cream:  #F5EBE0;
  --slate:  #1A2A3A;
  --green:  #2E5C4F;
  --terra:  #C46A4A;
  --dark:   #060F18;
  --light:  #F0F4F8;
  --ease:   cubic-bezier(.22,.68,0,1.2);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:pointer; font-family:inherit; }

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events:none; z-index:9999;
  transform: translate(-50%,-50%);
  transition: transform .15s var(--ease);
}
.cursor-dot  { width:8px; height:8px; background:var(--gold); border-radius:50%; }
.cursor-ring { width:38px; height:38px; border:1px solid rgba(216,181,108,.5); border-radius:50%; transition:transform .4s var(--ease); }
body:has(a:hover) .cursor-dot, body:has(button:hover) .cursor-dot { transform:translate(-50%,-50%) scale(2.5); background:var(--terra); }

/* ── Typography helpers ── */
.t-eyebrow {
  font-family:'DM Sans',sans-serif; font-size:10px;
  letter-spacing:5px; text-transform:uppercase;
}
.t-h1 { font-family:'Playfair Display',serif; font-weight:900; line-height:1.05; }
.t-h2 { font-family:'Playfair Display',serif; font-weight:700; line-height:1.1; }
.t-h3 { font-family:'Playfair Display',serif; font-weight:700; line-height:1.2; }
.t-label {
  font-family:'DM Sans',sans-serif; font-size:10px;
  letter-spacing:3px; text-transform:uppercase;
}
.t-body { font-family:'DM Sans',sans-serif; font-size:15px; line-height:1.85; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 32px; font-family:'DM Sans',sans-serif;
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
  transition: all .3s var(--ease);
}
.btn-gold  { background:var(--gold); color:var(--navy); }
.btn-gold:hover { background:var(--goldl); transform:translateY(-2px); }
.btn-ghost { border:1px solid rgba(245,235,224,.3); color:var(--cream); }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); }
.btn-navy  { background:var(--navy); color:var(--gold); }
.btn-navy:hover { background:var(--slate); }
.btn-terra { background:var(--terra); color:white; }
.btn-terra:hover { background:#b55f42; transform:translateY(-2px); }

/* ── Layout ── */
.container { max-width:1280px; margin:0 auto; padding:0 60px; }
.section { padding:100px 0; }

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top:0; left:0; width:100%; z-index:100;
  padding:24px 60px;
  display:flex; align-items:center; justify-content:space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(6,15,24,.96);
  padding: 16px 60px;
  box-shadow: 0 2px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.nav-logo { display:flex; flex-direction:column; line-height:1; }
.nav-logo-word {
  font-family:'Antonio',sans-serif; font-weight:700;
  font-size:22px; letter-spacing:6px; color:var(--gold); text-transform:uppercase;
}
.nav-logo-sub {
  font-size:9px; letter-spacing:4px; text-transform:uppercase;
  color:rgba(245,235,224,.4); margin-top:3px;
}
.nav-links {
  display:flex; gap:36px; list-style:none;
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
}
.nav-links a { color:rgba(245,235,224,.7); transition:color .3s; }
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-cta {
  background:var(--gold); color:var(--navy);
  padding:11px 24px; font-size:10px; letter-spacing:3px;
  text-transform:uppercase; font-family:'DM Sans',sans-serif;
  transition: all .3s;
}
.nav-cta:hover { background:var(--goldl); }

/* Mobile menu */
.nav-hamburger { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav-hamburger span { display:block; width:24px; height:2px; background:var(--cream); transition: all .3s; }
.nav-mobile { display:none; }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
#hero {
  position:relative; height:100vh; min-height:680px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(11,29,46,.9) 35%, rgba(11,29,46,.15) 100%),
    linear-gradient(to top, rgba(11,29,46,.95) 0%, transparent 55%),
    url('https://drive.google.com/thumbnail?id=1Pg7FE2PrxsiJ0xeuK5Y9_bD_9s2jZJJJ&sz=w2000') center/cover no-repeat;
}
.hero-content {
  position:relative; z-index:2;
  padding:100px 60px 110px; max-width:720px;
}
.hero-eyebrow {
  color:var(--gold); margin-bottom:22px;
  display:flex; align-items:center; gap:14px;
}
.hero-eyebrow::before { content:''; display:block; width:40px; height:1px; background:var(--gold); }
.hero-h1 {
  font-family:'Playfair Display',serif; font-weight:900;
  font-size:clamp(32px,4.6vw,60px); line-height:1.08;
  color:var(--cream); margin-bottom:28px;
}
.hero-h1 em { font-style:italic; color:var(--gold); }
.hero-desc { font-size:15px; line-height:1.85; color:rgba(245,235,224,.65); max-width:480px; margin-bottom:44px; }
.hero-ctas { display:flex; gap:16px; flex-wrap:wrap; }
.hero-scroll {
  position:absolute; bottom:40px; right:60px;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:9px; letter-spacing:4px; text-transform:uppercase;
  color:rgba(245,235,224,.35);
}
.hero-scroll-line {
  width:1px; height:56px;
  background:linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }

/* ── Statement band ── */
.statement-band {
  background:var(--gold); padding:28px 60px;
  display:flex; align-items:center; justify-content:center; gap:48px;
  flex-wrap:wrap;
}
.statement-quote {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:18px; color:var(--navy); text-align:center;
}
.statement-divider { width:1px; height:30px; background:rgba(11,29,46,.15); flex-shrink:0; }
.statement-stat { text-align:center; }
.statement-stat .num {
  display:block; font-family:'Playfair Display',serif;
  font-size:30px; font-weight:700; color:var(--navy);
}
.statement-stat .lbl {
  font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(11,29,46,.55);
}

/* ════════════════════════════════════════════════════════════════
   HOME — VILLAS PREVIEW
   ════════════════════════════════════════════════════════════════ */
.preview-section { background:var(--cream); }
.section-head { margin-bottom:60px; }
.section-head .eyebrow { color:var(--terra); margin-bottom:12px; }
.section-head h2 { font-size:clamp(32px,4.5vw,54px); color:var(--navy); }
.section-head h2 em { font-style:italic; color:var(--green); }
.section-head p { margin-top:16px; font-size:15px; line-height:1.8; color:rgba(26,42,58,.6); max-width:500px; }

/* ── Filter bar ── */
.filter-bar {
  display:flex; align-items:center; flex-wrap:wrap; gap:8px;
  margin-bottom:50px;
}
.filter-label-text {
  font-size:9px; letter-spacing:4px; text-transform:uppercase;
  color:var(--slate); padding-right:20px;
  border-right:1px solid rgba(26,42,58,.15);
  margin-right:8px; white-space:nowrap;
}
.filter-btn {
  padding:10px 20px; font-family:'DM Sans',sans-serif;
  font-size:10px; letter-spacing:2px; text-transform:uppercase;
  border:1px solid rgba(11,29,46,.18); color:var(--slate);
  background:transparent; transition: all .25s;
}
.filter-btn:hover  { background:var(--navy); color:var(--gold); border-color:var(--navy); }
.filter-btn.active { background:var(--navy); color:var(--gold); border-color:var(--navy); }

/* ── Villa grid ── */
.villa-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.villa-card {
  background:white; overflow:hidden; position:relative;
  transition: transform .4s var(--ease), box-shadow .4s;
  cursor:pointer;
}
.villa-card:hover { transform:translateY(-8px); box-shadow:0 28px 64px rgba(11,29,46,.14); }
.villa-card.featured { grid-column:span 2; }
.card-img-wrap { position:relative; overflow:hidden; aspect-ratio:4/3; }
.villa-card.featured .card-img-wrap { aspect-ratio:16/9; }
.card-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.villa-card:hover .card-img-wrap img { transform:scale(1.07); }
.card-badge {
  position:absolute; top:16px; left:16px;
  background:var(--gold); color:var(--navy);
  font-size:8px; letter-spacing:3px; text-transform:uppercase;
  padding:6px 12px; font-family:'DM Sans',sans-serif;
}
.card-hover-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,29,46,.55) 0%, transparent 50%);
  opacity:0; transition:opacity .3s;
}
.villa-card:hover .card-hover-overlay { opacity:1; }
.card-body { padding:26px; border-top:2px solid var(--cream); }
.card-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.card-tag {
  font-size:8px; letter-spacing:2px; text-transform:uppercase;
  color:var(--green); border:1px solid rgba(46,92,79,.25);
  padding:4px 10px; font-family:'DM Sans',sans-serif;
}
.card-name { font-family:'Playfair Display',serif; font-size:21px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.card-location { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:rgba(26,42,58,.45); margin-bottom:18px; }
.card-footer {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:16px; border-top:1px solid var(--cream);
}
.card-price .from { display:block; font-size:9px; letter-spacing:2px; text-transform:uppercase; color:rgba(26,42,58,.4); }
.card-price .amount { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--navy); }
.card-price .night { font-size:11px; color:rgba(26,42,58,.4); }
.card-link {
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:var(--terra); display:flex; align-items:center; gap:8px;
  transition:gap .25s;
}
.card-link:hover { gap:14px; }
.card-link::after { content:'→'; }

/* No results */
.no-results {
  grid-column:1/-1; text-align:center; padding:80px 20px; display:none;
}
.no-results.show { display:block; }
.no-results p {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:22px; color:rgba(26,42,58,.35);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT / BRAND SECTION
   ════════════════════════════════════════════════════════════════ */
.about-section { background:var(--navy); }
.about-section .section-head h2 { color:var(--cream); }
.about-section .section-head p  { color:rgba(245,235,224,.6); }
.about-pullquote {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:clamp(19px,2.4vw,28px); color:var(--gold);
  max-width:760px; margin:8px 0 64px; line-height:1.55;
  border-left:2px solid var(--gold); padding-left:28px;
}
.mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-bottom:70px; }
.mv-card { padding:34px; border:1px solid rgba(216,181,108,.18); }
.mv-label { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.mv-text { font-size:14px; line-height:1.85; color:rgba(245,235,224,.6); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px 28px; }
.value-item { padding:4px; }
.value-icon { font-size:21px; display:block; margin-bottom:12px; }
.value-title { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--cream); margin-bottom:8px; }
.value-text { font-size:13px; line-height:1.75; color:rgba(245,235,224,.45); }

/* ════════════════════════════════════════════════════════════════
   EXPERIENCE SECTION
   ════════════════════════════════════════════════════════════════ */
.exp-section { background:var(--navy); }
.exp-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.exp-image-wrap { position:relative; }
.exp-image-wrap::before {
  content:''; position:absolute; top:-20px; left:-20px; right:20px; bottom:20px;
  border:1px solid rgba(216,181,108,.25);
}
.exp-image-wrap img { position:relative; width:100%; aspect-ratio:4/5; object-fit:cover; }
.exp-tag {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--gold); padding:26px 30px; z-index:2;
}
.exp-tag .big { display:block; font-family:'Playfair Display',serif; font-size:42px; font-weight:900; color:var(--navy); line-height:1; }
.exp-tag .small { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(11,29,46,.55); }
.exp-content .eyebrow { color:var(--gold); margin-bottom:12px; }
.exp-content h2 { font-size:clamp(30px,4vw,50px); color:var(--cream); margin-bottom:28px; }
.exp-content h2 em { font-style:italic; color:var(--gold); }
.exp-content p { font-size:15px; line-height:1.9; color:rgba(245,235,224,.6); margin-bottom:18px; }
.pillars { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:36px; }
.pillar {
  padding:20px; border:1px solid rgba(216,181,108,.12);
  transition: border-color .3s, background .3s;
}
.pillar:hover { border-color:rgba(216,181,108,.35); background:rgba(216,181,108,.04); }
.pillar-icon { font-size:22px; margin-bottom:10px; }
.pillar-title { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.pillar-text { font-size:12px; line-height:1.6; color:rgba(245,235,224,.45); }

/* ════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════════════════════════════ */
.testimonial-section {
  background:var(--green); padding:100px 60px; text-align:center;
}
.testimonial-section blockquote {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:clamp(22px,3.5vw,42px); color:var(--cream);
  max-width:920px; margin:0 auto 36px; line-height:1.4;
}
.testimonial-section blockquote::before {
  content:'\201C'; font-size:100px; color:rgba(245,235,224,.08);
  line-height:0; vertical-align:-40px; display:block; margin-bottom:20px;
}
.testimonial-section cite {
  font-style:normal; font-size:10px; letter-spacing:4px;
  text-transform:uppercase; color:rgba(245,235,224,.4);
}

/* ════════════════════════════════════════════════════════════════
   PAGE SECTIONS (Villas / Propietarios / Contacto)
   ════════════════════════════════════════════════════════════════ */
.page-hero {
  padding:160px 60px 80px;
  background:linear-gradient(to bottom, rgba(6,15,24,.8) 0%, rgba(11,29,46,1) 100%),
             url('https://images.unsplash.com/photo-1551882547-ff40c4b8b36b?w=1400&q=80') center/cover no-repeat;
}
.page-hero.villas-hero {
  background-image:
    linear-gradient(to bottom, rgba(6,15,24,.75) 0%, var(--navy) 100%),
    url('https://drive.google.com/thumbnail?id=1NVnNhkQ-cIl3At6N4HK41gYYgDwVsLE2&sz=w2000');
}
.page-hero.prop-hero {
  background-image:
    linear-gradient(to bottom, rgba(6,15,24,.75) 0%, var(--navy) 100%),
    url('https://drive.google.com/thumbnail?id=1XglhptMy-h2ppehaPYIzOUMlkn3Yu8xY&sz=w2000');
}
.page-hero.about-hero {
  background-image:
    linear-gradient(to bottom, rgba(6,15,24,.75) 0%, var(--navy) 100%),
    url('https://drive.google.com/thumbnail?id=1TtwvTLcpgEiX1nkCokXvB5ejZbK5MYk2&sz=w2000');
}
.page-hero .eyebrow { color:var(--gold); margin-bottom:16px; }
.page-hero h1 { font-size:clamp(36px,5vw,68px); color:var(--cream); }
.page-hero h1 em { font-style:italic; color:var(--gold); }
.page-hero p { margin-top:18px; font-size:15px; color:rgba(245,235,224,.6); max-width:560px; line-height:1.8; }

/* Villas full page */
.villas-full { background:var(--cream); padding:80px 60px 120px; }
.villas-full .villa-grid { grid-template-columns:repeat(3,1fr); }
.villas-full .villa-card.featured { grid-column:span 1; }

/* ── Villa modal ── */
.modal-overlay {
  position:fixed; inset:0; background:rgba(6,15,24,.92);
  z-index:500; display:none; align-items:center; justify-content:center;
  padding:24px; backdrop-filter:blur(8px);
}
.modal-overlay.open { display:flex; }
.modal-box {
  background:white; max-width:900px; width:100%; max-height:90vh;
  overflow-y:auto; position:relative;
  animation: modalIn .4s var(--ease);
}
@keyframes modalIn { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.modal-close {
  position:absolute; top:20px; right:20px; z-index:10;
  width:40px; height:40px; background:var(--navy); color:var(--cream);
  font-size:18px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s;
}
.modal-close:hover { background:var(--terra); }
/* Gallery slider */
.modal-gallery { position:relative; background:var(--dark); }
.modal-gallery-main { position:relative; overflow:hidden; aspect-ratio:16/9; }
.modal-gallery-main img {
  width:100%; height:100%; object-fit:cover;
  transition: opacity .35s ease;
}
.gallery-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; background:rgba(6,15,24,.6);
  color:var(--cream); font-size:18px; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s; z-index:5; backdrop-filter:blur(4px);
}
.gallery-arrow:hover { background:var(--navy); }
.gallery-arrow.prev { left:14px; }
.gallery-arrow.next { right:14px; }
.gallery-counter {
  position:absolute; bottom:14px; right:16px;
  font-family:'DM Sans',sans-serif; font-size:10px; letter-spacing:2px;
  color:rgba(245,235,224,.7); background:rgba(6,15,24,.5);
  padding:4px 10px; backdrop-filter:blur(4px);
}
.modal-thumbnails {
  display:flex; gap:4px; padding:6px; background:var(--dark); overflow-x:auto;
}
.modal-thumbnails::-webkit-scrollbar { height:3px; }
.modal-thumbnails::-webkit-scrollbar-thumb { background:var(--gold); }
.modal-thumb {
  flex:0 0 80px; height:54px; object-fit:cover; cursor:pointer;
  opacity:.5; transition:opacity .2s; border:2px solid transparent;
}
.modal-thumb.active { opacity:1; border-color:var(--gold); }
.modal-thumb:hover { opacity:.85; }
.modal-body { padding:36px; }
.modal-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.modal-tag {
  font-size:8px; letter-spacing:2px; text-transform:uppercase;
  color:var(--green); border:1px solid rgba(46,92,79,.25); padding:5px 12px;
}
.modal-title { font-family:'Playfair Display',serif; font-size:32px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.modal-location { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:rgba(26,42,58,.4); margin-bottom:24px; }
.modal-desc { font-size:14px; line-height:1.9; color:rgba(26,42,58,.7); margin-bottom:28px; }
.modal-specs {
  display:flex; gap:24px; padding:20px 0; margin-bottom:28px;
  border-top:1px solid var(--cream); border-bottom:1px solid var(--cream);
}
.modal-spec .num { display:block; font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:var(--navy); }
.modal-spec .lbl { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:rgba(26,42,58,.4); }
.modal-footer { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.modal-price .from { display:block; font-size:9px; letter-spacing:2px; text-transform:uppercase; color:rgba(26,42,58,.4); }
.modal-price .amount { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; color:var(--navy); }
.modal-price .night { font-size:12px; color:rgba(26,42,58,.4); }

/* ════════════════════════════════════════════════════════════════
   PROPIETARIOS PAGE
   ════════════════════════════════════════════════════════════════ */
.prop-section { background:var(--cream); padding:100px 60px; }
.prop-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:40px; margin-top:60px; }
.prop-card {
  background:white; padding:40px; border-top:3px solid var(--gold);
  transition: box-shadow .3s, transform .3s var(--ease);
}
.prop-card:hover { box-shadow:0 20px 50px rgba(11,29,46,.08); transform:translateY(-4px); }
.prop-icon { font-size:32px; margin-bottom:18px; }
.prop-card h3 { font-family:'Playfair Display',serif; font-size:22px; color:var(--navy); margin-bottom:12px; }
.prop-card p { font-size:14px; line-height:1.8; color:rgba(26,42,58,.65); }
.prop-cta-band {
  background:var(--navy); padding:80px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.prop-cta-band h2 { font-family:'Playfair Display',serif; font-size:clamp(28px,3.5vw,44px); color:var(--cream); }
.prop-cta-band h2 em { font-style:italic; color:var(--gold); }

/* ════════════════════════════════════════════════════════════════
   CONTACTO PAGE
   ════════════════════════════════════════════════════════════════ */
.contact-section { background:var(--cream); padding:100px 60px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.contact-info h2 { font-family:'Playfair Display',serif; font-size:40px; color:var(--navy); margin-bottom:20px; }
.contact-info h2 em { font-style:italic; color:var(--green); }
.contact-info p { font-size:15px; line-height:1.8; color:rgba(26,42,58,.65); margin-bottom:36px; }
.contact-methods { display:flex; flex-direction:column; gap:16px; }
.contact-method {
  display:flex; align-items:center; gap:16px;
  padding:16px 20px; border:1px solid rgba(11,29,46,.1);
  transition: all .25s;
}
.contact-method:hover { border-color:var(--gold); background:rgba(216,181,108,.05); }
.contact-method-icon { font-size:20px; }
.contact-method-text .label { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(26,42,58,.4); }
.contact-method-text .value { font-size:14px; color:var(--navy); font-weight:500; margin-top:2px; }

/* Form */
.contact-form-wrap { background:white; padding:40px; }
.contact-form-wrap h3 { font-family:'Playfair Display',serif; font-size:26px; color:var(--navy); margin-bottom:28px; }
.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:rgba(26,42,58,.5); margin-bottom:8px;
}
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:14px 16px;
  border:1px solid rgba(11,29,46,.15); background:var(--light);
  font-family:'DM Sans',sans-serif; font-size:14px; color:var(--slate);
  transition: border-color .25s; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--gold);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select { appearance:none; cursor:pointer; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-success {
  text-align:center; padding:40px 20px; display:none;
}
.form-success.show { display:block; }
.form-success p { font-family:'Playfair Display',serif; font-style:italic; font-size:20px; color:var(--green); }

/* ════════════════════════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════════════════════════ */
.newsletter-section {
  background:var(--cream); padding:80px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:60px; flex-wrap:wrap;
}
.newsletter-text .eyebrow { color:var(--terra); margin-bottom:10px; }
.newsletter-text h3 { font-family:'Playfair Display',serif; font-size:32px; color:var(--navy); }
.newsletter-text p { font-size:14px; color:rgba(26,42,58,.55); line-height:1.7; margin-top:10px; }
.newsletter-form { display:flex; min-width:380px; flex-wrap:wrap; }
.newsletter-form input {
  flex:1; padding:16px 20px; border:1px solid rgba(11,29,46,.2);
  border-right:none; font-family:'DM Sans',sans-serif; font-size:13px;
  color:var(--slate); background:white; outline:none; min-width:200px;
}
.newsletter-form button {
  background:var(--navy); color:var(--gold); padding:16px 28px;
  font-family:'DM Sans',sans-serif; font-size:10px; letter-spacing:3px;
  text-transform:uppercase; transition:background .3s;
}
.newsletter-form button:hover { background:var(--slate); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
#footer {
  background:var(--dark); padding:80px 60px 40px;
  color:rgba(245,235,224,.45);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-brand .logo-word { font-family:'Antonio',sans-serif; font-weight:700; font-size:20px; letter-spacing:6px; color:var(--gold); text-transform:uppercase; }
.footer-brand .logo-sub { font-size:9px; letter-spacing:4px; text-transform:uppercase; color:rgba(245,235,224,.3); margin-top:4px; }
.footer-brand p { font-size:13px; line-height:1.8; color:rgba(245,235,224,.35); margin-top:18px; }
.footer-brand .tagline { font-family:'Playfair Display',serif; font-style:italic; font-size:13px; color:rgba(216,181,108,.6); margin-top:12px; }
.footer-col h4 {
  font-size:9px; letter-spacing:4px; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { font-size:13px; color:rgba(245,235,224,.35); transition:color .25s; }
.footer-col ul a:hover { color:var(--cream); }
.footer-bottom {
  padding-top:36px; border-top:1px solid rgba(245,235,224,.06);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-bottom p { font-size:11px; }
.footer-socials { display:flex; gap:20px; }
.footer-socials a { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:rgba(245,235,224,.25); transition:color .25s; }
.footer-socials a:hover { color:var(--gold); }

/* ── WhatsApp Flotante ── */
.wa-float {
  position:fixed; bottom:32px; right:32px; z-index:200;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; box-shadow:0 6px 28px rgba(37,211,102,.5);
  transition: transform .3s var(--ease), box-shadow .3s;
  text-decoration:none;
}
.wa-float:hover { transform:scale(1.12); box-shadow:0 10px 40px rgba(37,211,102,.6); }

/* ── Scroll reveal ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ════════════════════════════════════════════════════════════════
   PAGE VISIBILITY
   ════════════════════════════════════════════════════════════════ */
.page { display:none; }
.page.active { display:block; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container, #navbar, .villas-full, .contact-section, .prop-section,
  .prop-cta-band, .testimonial-section, .newsletter-section, #footer,
  .page-hero { padding-left:36px; padding-right:36px; }
  .villa-grid, .villas-full .villa-grid { grid-template-columns:repeat(2,1fr); }
  .villa-card.featured { grid-column:span 1; }
  .exp-grid { grid-template-columns:1fr; }
  .exp-image-wrap { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .hero-content { padding:0 36px 90px; }
  .values-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  .nav-mobile.open {
    display:flex; flex-direction:column; gap:0;
    position:fixed; inset:0; top:70px; background:var(--dark);
    padding:40px; z-index:99;
  }
  .nav-mobile a { padding:16px 0; font-size:13px; letter-spacing:3px; text-transform:uppercase; color:var(--cream); border-bottom:1px solid rgba(245,235,224,.08); }
  .villa-grid, .villas-full .villa-grid { grid-template-columns:1fr; }
  .prop-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .mv-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .statement-band { gap:24px; }
  .statement-divider { display:none; }
  .newsletter-form { min-width:auto; width:100%; }
  .hero-h1 { font-size:clamp(26px,7vw,38px); }
  #footer { padding:60px 24px 30px; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  body { cursor:auto; }
  .cursor-dot, .cursor-ring { display:none; }
}
