/* ============================================================
   VILLA ESPERANZA — base.css
   Variables · Reset · Tipografía · Botones · Utilidades
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --sand:       #F5EFE0;
  --sand-dk:    #E8DEC8;
  --ocean:      #1A4A5A;
  --ocean-lt:   #2E7A8C;
  --turq:       #00C5B4;
  --turq-lt:    #7EDDD5;
  --gold:       #C9A84C;
  --gold-lt:    #E8C97A;
  --ink:        #1A1A1A;
  --white:      #FFFFFF;
  --off-white:  #EEF6F8;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --nav-h:        72px;
  --section-pad:  clamp(60px, 8vw, 110px);
  --container:    1280px;
  --gutter:       clamp(16px, 4vw, 48px);
}

body {
  font-family: var(--ff-body);
  background: var(--sand);
  color: var(--ink);
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
}
.section {
  padding: var(--section-pad) var(--gutter);
}

/* ── SECTION LABELS / TITLES ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ocean-lt);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ocean-lt);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ocean);
}
.section-title em { font-style: italic; color: var(--ocean-lt); }

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3a3a;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold            { background: var(--gold); color: var(--ink); }
.btn-gold:hover      { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ocean           { background: var(--ocean); color: var(--white); }
.btn-ocean:hover     { background: var(--ocean-lt); transform: translateY(-1px); }

.btn-outline-white   { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-ocean   { background: transparent; color: var(--ocean); border: 1.5px solid var(--ocean); }
.btn-outline-ocean:hover { background: var(--ocean); color: var(--white); }

.btn-whatsapp        { background: #25D366; color: var(--white); }
.btn-whatsapp:hover  { background: #1ebe5a; transform: translateY(-1px); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible          { opacity: 1; transform: none; }
.reveal-delay-1          { transition-delay: 0.1s; }
.reveal-delay-2          { transition-delay: 0.2s; }
.reveal-delay-3          { transition-delay: 0.3s; }

/* ── LANGUAGE CONTENT VISIBILITY ── */
[data-lang]              { display: none; }
.lang-es [data-lang="es"],
.lang-en [data-lang="en"],
.lang-fr [data-lang="fr"] { display: inherit; }
