/* ===== Finca Tres Aguas — Design system ===== */

:root {
  --teal: #1A6B7C;
  --navy: #1A3A4A;
  --teal-mid: #2D8A8A;
  --teal-light: #5FC7CB;
  --cream: #F5F0E8;
  --white-broken: #FBF8F2;
  --gold: #C99A4E;
  --gold-dark: #B3853D;
  --olive: #7A8B6F;
  --stone: #6B7378;

  --font-title: "Fraunces", serif;
  --font-body: "Hanken Grotesk", sans-serif;

  --nav-h: 64px;
  --topbar-h: 36px;

  --container: 1180px;
  --radius: 14px;
  --shadow-soft: 0 12px 30px rgba(26, 58, 74, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--white-broken);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  margin: 0 0 0.5em;
  color: var(--navy);
  line-height: 1.15;
}

p { margin: 0 0 1em; }

ul { list-style: none; margin: 0; padding: 0; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4.5rem 0; }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
}

.section-text {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--stone);
  font-weight: 300;
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ===== Language toggle ===== */
html[lang="es"] .en { display: none; }
html[lang="en"] .es { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-cta {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(201, 154, 78, 0.4);
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-large { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.85rem; }

/* ===== Top bar ===== */
.topbar {
  position: relative;
  z-index: 101;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 1rem;
}
.topbar p { margin: 0; white-space: nowrap; }
.topbar-full { display: none; }
.topbar-short { display: inline; }

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(251, 248, 242, 0.96);
  box-shadow: 0 4px 20px rgba(26,58,74,0.08);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  gap: 1.7rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 0.3rem 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.lang-switch {
  display: flex;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 500;
}
.lang-btn {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
}
.lang-btn.active { background: var(--gold); color: var(--navy); }

.site-nav:not(.scrolled) .nav-links a,
.site-nav:not(.scrolled) .lang-switch { color: #fff; }

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  color: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-nav:not(.scrolled) .nav-burger span { background: #fff; }

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  right: 0;
  background: var(--white-broken);
  width: min(80vw, 320px);
  height: calc(100vh - var(--topbar-h) - var(--nav-h));
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 150;
  color: var(--navy) !important;
  font-size: 1.1rem;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,58,74,0.4);
  z-index: 140;
}
.nav-overlay.open { display: block; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h) - var(--topbar-h));
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,74,0.82) 0%, rgba(26,58,74,0.5) 45%, rgba(26,58,74,0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.25rem;
  max-width: 780px;
}
.hero-logo {
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,1);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 6px 24px rgba(0,0,0,0.4);
}
.hero-tagline {
  margin: 0 0 2.2rem;
}
.hero-tagline-main {
  display: block;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--cream);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35), 0 8px 28px rgba(0,0,0,0.28);
}
.hero-tagline-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: rgba(245,240,232,0.75);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35), 0 8px 28px rgba(0,0,0,0.28);
}
.hero-tagline-keyword {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.7;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ===== Bienvenida ===== */
.bienvenida { background: var(--cream); }
.bienvenida-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.bienvenida-col--text p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--navy);
}
.bienvenida-col h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.bienvenida-divider { display: none; }

/* ===== Bento — La Finca ===== */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bento-cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 1.5rem;
  isolation: isolate;
}
.bento-cell--pool, .bento-cell--garden {
  box-shadow: var(--shadow-soft);
}
.bento-cell--pool img, .bento-cell--garden img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.bento-cell--pool::before, .bento-cell--garden::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,74,0.75) 0%, rgba(26,58,74,0.05) 60%);
  z-index: -1;
}
.bento-cell--pool { min-height: 320px; }
.bento-caption h3 { color: #fff; margin-bottom: 0.2rem; font-size: 1.4rem; }
.bento-caption p { margin: 0; font-size: 0.92rem; opacity: 0.92; }

.bento-cell--solid {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  min-height: 150px;
  gap: 0.4rem;
}
.bento-cell--navy { background: var(--navy); }
.bento-cell--teal { background: var(--teal-mid); }
.bento-cell--cream { background: var(--cream); color: var(--navy); }
.bento-cell--gold { background: var(--gold); color: var(--navy); }
.bento-cell--solid h3 { font-size: 1.15rem; margin: 0; color: inherit; }
.bento-icon { width: 34px; height: 34px; margin-bottom: 0.3rem; }
.bento-note { font-size: 0.85rem; opacity: 0.85; margin: 0.3rem 0 0; }
.bento-cell--cream .bento-note { color: var(--stone); }
.bento-cell--gold .bento-note { color: var(--stone); }

/* ===== Exterior gallery ===== */
.exterior { background: var(--white-broken); }
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ===== La Casa bento ===== */
.casa { background: var(--cream); }
.bento--casa {
  grid-template-areas:
    "salon" "comedor" "hab1" "hab2" "cocina" "bano";
}
.bento-cell--photo {
  grid-area: unset;
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
}
.bento-cell--photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.bento-cell--photo figcaption {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(26,58,74,0.78), transparent);
  color: #fff;
  padding: 2.5rem 1rem 0.9rem;
  margin-top: auto;
  font-family: var(--font-title);
  font-size: 1.05rem;
}

/* ===== Entorno ===== */
.entorno { background: var(--navy); color: var(--cream); }
.entorno .section-title { color: #fff; text-align: left; }
.entorno-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.entorno-text p { color: rgba(251,248,242,0.85); font-weight: 300; }
.entorno-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.entorno-photo img { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }

/* ===== Qué hacer en Lanjarón ===== */
.que-hacer { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(251,248,242,0.15); }
.que-hacer-title { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #fff; text-align: left; margin-bottom: 2rem; }

.que-hacer-category { margin-bottom: 2.6rem; }
.que-hacer-category:last-child { margin-bottom: 0; }

.que-hacer-cat-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.que-hacer-cat-header svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.que-hacer-cat-emoji { font-size: 22px; line-height: 1; flex-shrink: 0; }
.que-hacer-cat-header h4 { margin: 0; font-size: 1.15rem; font-weight: 400; color: var(--cream); }

.que-hacer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.que-hacer-grid--wide { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.que-hacer-card {
  background: rgba(251,248,242,0.06);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.que-hacer-card:hover { background: rgba(251,248,242,0.12); transform: translateY(-2px); }
.que-hacer-card h5 { margin: 0 0 0.4rem; font-size: 0.98rem; font-weight: 500; color: #fff; font-family: var(--font-body); }
.que-hacer-card p { margin: 0 0 0.8rem; font-size: 0.85rem; font-weight: 300; line-height: 1.55; color: rgba(251,248,242,0.75); }
.que-hacer-card .que-hacer-link { margin-top: 0.1rem; }

.que-hacer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.que-hacer-link:hover { color: var(--gold); }

.que-hacer-difficulty { margin-bottom: 1.5rem; }
.que-hacer-difficulty:last-of-type { margin-bottom: 1rem; }
.que-hacer-diff-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.que-hacer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem; }
.que-hacer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(251,248,242,0.06);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.que-hacer-links a:hover { background: rgba(251,248,242,0.14); color: var(--gold); }

.que-hacer-note { margin: 0; }

/* ===== Servicios ===== */
.servicios { background: var(--white-broken); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
.servicio {
  text-align: center;
  padding: 1.25rem 0.5rem;
  border-radius: var(--radius);
  transition: transform 0.25s ease, background 0.25s ease;
}
.servicio:hover { background: var(--cream); transform: translateY(-3px); }
.servicio svg { width: 32px; height: 32px; color: var(--teal); margin-bottom: 0.6rem; }
.servicio p { margin: 0; font-size: 0.88rem; font-weight: 500; color: var(--navy); }

/* ===== Opiniones ===== */
.opiniones { background: var(--cream); }
.testimonios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonio {
  background: var(--white-broken);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  margin: 0;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.testimonio p { font-style: italic; font-family: var(--font-title); font-size: 1.1rem; color: var(--navy); }
.testimonio cite { display: block; margin-top: 0.8rem; font-style: normal; font-size: 0.85rem; color: var(--stone); font-family: var(--font-body); }
.testimonio .testimonio-title {
  font-style: normal;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.opiniones-link { text-align: center; margin: 2.5rem 0 0; }
.opiniones-link a {
  font-size: 0.88rem;
  color: var(--stone);
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.opiniones-link a:hover { color: var(--teal); border-color: var(--teal); }

/* ===== Normas ===== */
.normas { background: var(--white-broken); }
.normas-list {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}
.normas-list li {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.98rem;
  border-left: 4px solid var(--olive);
}

/* ===== Reserva ===== */
.reserva { background: var(--navy); color: #fff; }
.reserva .section-title { color: #fff; }
.reserva-inner { text-align: center; }
.reserva-sub { font-size: 1.05rem; color: rgba(251,248,242,0.85); margin-bottom: 2rem; }
.reserva-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.8rem;
}
.reserva .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.reserva-note { max-width: 520px; margin: 0 auto; font-size: 0.9rem; color: rgba(251,248,242,0.75); }

.reserva-booking-widget { width: 100%; max-width: 900px; margin: 0 auto 2rem; }

/* ===== Contacto ===== */
.contacto { background: var(--cream); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.contacto-info h3 { font-size: 1.5rem; }
.contacto-info h4 { margin-top: 1.5rem; font-size: 1.05rem; color: var(--teal); }
.contacto-info a { color: var(--teal); font-weight: 500; }
.contacto-info p.es, .contacto-info p.en { color: var(--stone); font-size: 0.95rem; }
.contacto-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 280px; }
.contacto-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: rgba(251,248,242,0.8); padding: 3rem 0 1.5rem; }
.footer-inner {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(251,248,242,0.15);
  margin-bottom: 1.2rem;
}
.footer-logo { font-family: var(--font-title); font-size: 1.3rem; color: #fff; margin-bottom: 0.4rem; }
.footer-reg { font-size: 0.8rem; opacity: 0.7; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.footer-social svg { width: 22px; height: 22px; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { text-align: center; font-size: 0.78rem; opacity: 0.6; margin: 0; padding: 0 1.25rem; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
body.cookie-banner-visible .whatsapp-float { bottom: 96px; transition: bottom 0.3s ease, transform 0.25s ease; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--navy);
  color: var(--cream);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.5rem;
  text-align: center;
}
.cookie-banner p { margin: 0; font-size: 0.85rem; line-height: 1.5; max-width: 640px; }
.cookie-banner a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner a:hover { color: var(--gold); }
.cookie-banner .btn { flex-shrink: 0; }

/* ===== Legal pages ===== */
.legal-page { min-height: 55vh; }
.legal-placeholder {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}
.legal-note { font-size: 0.9rem; font-style: italic; }

.legal-lang-note {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 0.9rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
}
.legal-lang-note a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.legal-lang-note a:hover { color: var(--gold); }

.legal-content { max-width: 760px; margin: 0 auto; text-align: left; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  color: var(--teal);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  color: var(--stone);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.1em;
}
.legal-content ul { margin: 0 0 1.5rem; }
.legal-content li {
  color: var(--stone);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.legal-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--gold); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =======================================================
   TABLET — 768px
======================================================= */
@media (min-width: 768px) {
  section { padding: 6rem 0; }

  .nav-links { display: flex; }
  .nav-burger { display: none; }

  .topbar { padding: 0.45rem 1rem; }
  .topbar-full { display: inline; }
  .topbar-short { display: none; }

  .hero-tagline { font-size: clamp(2.6rem, 5vw, 4rem); }

  .bienvenida-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .bienvenida-divider {
    display: block;
    width: 1px;
    height: 100%;
    min-height: 160px;
    background: var(--teal);
    opacity: 0.4;
  }

  .bento {
    grid-template-columns: repeat(12, 1fr);
  }
  .bento-cell--pool { grid-column: span 8; }
  .bento-cell--garden { grid-column: span 4; }
  .bento-cell--navy,
  .bento-cell--teal,
  .bento-cell--cream,
  .bento-cell--gold { grid-column: span 3; }

  .gallery--exterior { grid-template-columns: repeat(2, 1fr); }

  .bento--casa {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "salon salon comedor"
      "hab1 hab2 cocina"
      "hab1 hab2 bano";
  }
  .bento--casa .bento-cell--photo:nth-child(1) { min-height: 260px; }

  .entorno-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .servicios-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonios { grid-template-columns: repeat(3, 1fr); }

  .reserva-actions { flex-direction: row; justify-content: center; }

  .contacto-grid { grid-template-columns: 1fr 1.1fr; }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

/* =======================================================
   DESKTOP — 1200px
======================================================= */
@media (min-width: 1200px) {
  .bento-cell--pool { min-height: 380px; }
  .gallery--exterior { grid-template-columns: repeat(4, 1fr); }
  .bento--casa .bento-cell--photo:nth-child(1) { min-height: 300px; }
  .hero-content { max-width: 860px; }
}
