/* ============================================
   RANCHO LOS VENADOS — STYLES
   Diseño: aventura elegante, naturaleza de lujo
   ============================================ */

:root {
  /* Paleta */
  --color-bg: #faf6ee;
  --color-bg-alt: #f1e9d8;
  --color-cream: #f4ede0;
  --color-forest: #1f2a1c;
  --color-forest-soft: #2d3a2d;
  --color-sage: #5a6b4f;
  --color-gold: #b48a3c;
  --color-gold-bright: #d4a84a;
  --color-gold-soft: #e8d09a;
  --color-stone: #a8967e;
  --color-bark: #4a3b2a;
  --color-text: #1f2a1c;
  --color-text-soft: #5a6b4f;
  --color-line: rgba(31, 42, 28, 0.12);

  /* Tipografía */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: 0.5s var(--ease);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-gold);
  display: inline-block;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  color: var(--color-text-soft);
  font-style: italic;
  max-width: 720px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}

/* ============ NAVBAR ============ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

.navbar.scrolled {
  background: rgba(31, 42, 28, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.nav-logo img { height: 52px; width: auto; transition: height 0.3s var(--ease); }
.navbar.scrolled .nav-logo img { height: 44px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-menu a {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold-bright);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--color-gold-bright); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: flex;
  gap: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.lang-toggle button {
  background: none; border: none; color: rgba(255,255,255,0.55);
  font: inherit; letter-spacing: inherit; text-transform: inherit;
  cursor: pointer; padding: 4px 6px;
}
.lang-toggle button.active { color: var(--color-gold-bright); }
.lang-sep { color: rgba(255,255,255,0.3); padding: 4px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  background: transparent;
  color: inherit;
}

.btn-gold {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-outline-light:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.btn-outline-dark { color: var(--color-forest); border-color: var(--color-forest); }
.btn-outline-dark:hover {
  background: var(--color-forest);
  color: var(--color-cream);
}

.btn svg { width: 14px; height: 14px; }

.nav-cta {
  padding: 10px 20px;
  font-size: 0.72rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  height: 1.5px; background: #fff; display: block;
  transition: 0.3s var(--ease);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31,42,28,0.35) 0%,
    rgba(31,42,28,0.2) 40%,
    rgba(31,42,28,0.55) 90%,
    rgba(31,42,28,0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 0 28px;
  animation: heroIn 1.4s var(--ease) 0.4s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow {
  color: var(--color-gold-bright);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-style: italic;
  font-weight: 300;
  max-width: 14ch;
  margin: 0 auto;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero .divider {
  background: var(--color-gold-bright);
  margin: 2rem auto;
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.7;
  animation: heroIn 1s var(--ease) 1.2s both;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 38px;
  background: var(--color-gold-bright);
  margin: 12px auto 0;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============ CINEMATIC VIDEO BREAK ============ */

.cinematic {
  position: relative;
  height: 70vh;
  min-height: 460px;
  max-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}
.cinematic-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(31,42,28,0.5) 0%, rgba(31,42,28,0.3) 50%, rgba(31,42,28,0.6) 100%);
}
.cinematic-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 28px;
}
.cinematic-content .eyebrow {
  color: var(--color-gold-bright);
  margin-bottom: 20px;
}
.cinematic-content h2 {
  font-style: italic;
  font-weight: 300;
  max-width: 16ch;
  margin: 0 auto;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}

/* Video as feature image */
.img-main-video {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 30px 60px -20px rgba(31,42,28,0.4);
}

/* ============ INTRO ============ */

.intro {
  background: var(--color-bg);
  text-align: center;
}
.intro h2 {
  font-style: italic;
  max-width: 22ch;
  margin: 1.2rem auto 1.5rem;
}
.intro-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.07rem;
  color: var(--color-text-soft);
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 64px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--color-line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--color-gold);
  line-height: 1;
  font-style: italic;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-top: 12px;
}

/* ============ FEATURE SECTION (alternating) ============ */

.feature {
  background: var(--color-cream);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse .feature-grid { direction: rtl; }
.feature.reverse .feature-grid > * { direction: ltr; }

.feature-image-stack { position: relative; }
.feature-image-stack .img-main {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -20px rgba(31,42,28,0.4);
}
.feature-image-stack .img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  bottom: -40px; right: -40px;
  border: 8px solid var(--color-cream);
  box-shadow: 0 20px 40px -10px rgba(31,42,28,0.3);
}

.feature-text .eyebrow { margin-bottom: 16px; }
.feature-text h2 {
  margin-bottom: 24px;
  font-style: italic;
}
.feature-text p {
  margin-bottom: 18px;
  color: var(--color-text-soft);
  font-size: 1.04rem;
}
.feature-text .btn { margin-top: 16px; }

/* Lists inside feature */
.feature-list {
  list-style: none;
  margin: 24px 0;
}
.feature-list li {
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--color-line);
  position: relative;
  font-size: 0.96rem;
  color: var(--color-text);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--color-gold);
}

/* ============ EXPERIENCIAS (cards) ============ */

.experiences {
  background: var(--color-forest);
  color: var(--color-cream);
}
.section-head {
  text-align: center;
  margin-bottom: 80px;
}
.section-head h2 { font-style: italic; }
.section-head .lead { color: rgba(244, 237, 224, 0.75); margin-top: 12px; margin-left: auto; margin-right: auto; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .exp-grid { grid-template-columns: 1fr; }
}

.exp-card {
  background: var(--color-forest-soft);
  border: 1px solid rgba(212, 168, 74, 0.15);
  padding: 0;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.exp-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.5);
}
.exp-card .exp-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.exp-card:hover .exp-img { transform: scale(1.06); }

.exp-card .exp-body { padding: 32px 30px 36px; }
.exp-card h3 {
  font-style: italic;
  margin-bottom: 8px;
  color: #fff;
}
.exp-card .exp-meta {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 16px;
}
.exp-card p {
  color: rgba(244, 237, 224, 0.75);
  font-size: 0.96rem;
  margin-bottom: 22px;
}
.exp-card .btn {
  padding: 10px 22px;
  font-size: 0.72rem;
  color: var(--color-gold-bright);
  border-color: rgba(212, 168, 74, 0.4);
}
.exp-card .btn:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
}

/* ============ GALERIA ============ */

.gallery { background: var(--color-bg); padding-bottom: 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 56px;
}
.g-item {
  background-size: cover; background-position: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease);
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.g-item:hover::after { opacity: 1; }
.g-item:hover { transform: scale(1.02); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-big  { grid-row: span 2; grid-column: span 2; }

.g-item::before {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: var(--font-body);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.g-item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 20, 14, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lb-image {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lbIn 0.4s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.lb-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none; border: none;
  color: #fff; font-size: 2.6rem;
  line-height: 1; cursor: pointer;
  opacity: 0.75; transition: opacity 0.3s var(--ease);
  z-index: 1001;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 1.4rem;
  width: 54px; height: 54px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 1001;
}
.lb-nav:hover { background: var(--color-gold); border-color: var(--color-gold); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-counter {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  z-index: 1001;
}
@media (max-width: 580px) {
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-image { max-width: 94vw; }
}

/* ============ UBICACION ============ */

.location { background: var(--color-cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text h2 { font-style: italic; margin: 14px 0 24px; }
.location-info {
  margin-top: 32px;
  border-top: 1px solid var(--color-line);
  padding-top: 32px;
}
.location-info dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px 24px;
  font-size: 0.98rem;
}
.location-info dt {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  padding-top: 4px;
}
.location-info dd { color: var(--color-text); }

.map-frame {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-image: url('https://api.mapbox.com/styles/v1/mapbox/outdoors-v12/static/-99.8893,20.5230,10,0/720x900@2x?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw');
  box-shadow: 0 30px 60px -20px rgba(31,42,28,0.35);
  position: relative;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* ============ CONTACTO ============ */

.contact { background: var(--color-forest); color: var(--color-cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { font-style: italic; color: #fff; margin: 14px 0 22px; }
.contact-text p { color: rgba(244, 237, 224, 0.78); margin-bottom: 32px; }

.contact-details {
  border-top: 1px solid rgba(212, 168, 74, 0.2);
  padding-top: 32px;
  margin-top: 32px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 168, 74, 0.1);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon {
  width: 22px; height: 22px;
  color: var(--color-gold-bright);
  flex-shrink: 0;
}
.contact-row span { color: rgba(244, 237, 224, 0.9); }
.contact-row a { color: rgba(244, 237, 224, 0.9); }
.contact-row a:hover { color: var(--color-gold-bright); }

.form-wrap {
  background: var(--color-forest-soft);
  padding: 48px;
  border: 1px solid rgba(212, 168, 74, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { display: block; }
.form-field-full { grid-column: 1/-1; }

label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 8px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 237, 224, 0.25);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-cream);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--color-gold-bright);
}
textarea { resize: vertical; min-height: 100px; }

select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--color-gold-bright) 50%), linear-gradient(135deg, var(--color-gold-bright) 50%, transparent 50%); background-position: calc(100% - 16px) center, calc(100% - 11px) center; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 30px; }
select option { background: var(--color-forest); color: var(--color-cream); }

.form-submit {
  width: 100%;
  margin-top: 12px;
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  padding: 18px;
  font-size: 0.85rem;
}
.form-submit:hover { background: transparent; color: var(--color-gold-bright); border-color: var(--color-gold-bright); }

.form-note {
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.55);
  margin-top: 14px;
  text-align: center;
}

/* ============ FOOTER ============ */

footer {
  background: #15201a;
  color: rgba(244, 237, 224, 0.7);
  padding: 70px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand img { height: 70px; margin-bottom: 16px; opacity: 0.95; }
.footer-brand p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(244, 237, 224, 0.6); max-width: 28ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.94rem; }
.footer-col a:hover { color: var(--color-gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 74, 0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.5);
  flex-wrap: wrap; gap: 12px;
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 99;
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta, .lang-toggle { display: flex; }
  .feature-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .feature.reverse .feature-grid { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-image-stack .img-accent { display: none; }

  /* Mobile menu open */
  body.menu-open .nav-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--color-forest);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 99;
  }
  body.menu-open .nav-menu a { font-size: 1.2rem; }
}
@media (max-width: 580px) {
  .hero { min-height: 600px; }
  .nav-logo-text { font-size: 1.15rem; }
  .nav-logo img { height: 42px; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .location-info dl { grid-template-columns: 90px 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  section { padding: 70px 0; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
