/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #12100D;
  --bg-2:      #1A1712;
  --bg-3:      #221E17;
  --bg-4:      #2B2519;
  --cream:     #F3ECDD;
  --cream-2:   #DCD2BC;
  --cream-3:   #8B8071;
  --accent:    #C1602E;
  --accent-2:  #A8481F;
  --steel:     #7C8A8F;
  --line:      rgba(243,236,221,.12);
  --line-soft: rgba(243,236,221,.07);
  --ok:        #7FA37A;

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-top: .6rem; }
.section-head p { color: var(--cream-2); font-size: 1.05rem; margin-top: 1rem; }

.eyebrow-num {
  font-family: var(--mono); font-size: .8rem; color: var(--cream-3);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons & links
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--accent); color: var(--cream); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(193,96,46,.35); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream-2); background: var(--line-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

.link-underline { position: relative; }
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 3.6s forwards;
}
.splash-mark { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 6vw, 3.5rem); color: var(--cream); opacity: .9; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-block: 1.1rem;
  transition: padding .35s var(--ease-out), background .35s var(--ease-out), border-color .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding-block: .75rem;
  background: rgba(18,16,13,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand-mark { font-family: var(--serif); font-style: italic; font-size: 1.35rem; letter-spacing: .01em; display: block; }
.brand-mark span { color: var(--accent); }
.brand-mark img { height: 40px; width: auto; display: block; transition: height .35s var(--ease-out); }
.nav.is-scrolled .brand-mark img { height: 32px; }
.footer-brand .brand-mark img { height: 46px; }
.nav-links { display: none; align-items: center; gap: 2rem; font-size: .92rem; }
.nav-links a { color: var(--cream-2); transition: color .25s var(--ease-out); }
.nav-links a:hover { color: var(--cream); }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn { display: none; }
@media (min-width: 720px) { .nav-actions .btn { display: inline-flex; } }

.hamburger {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px;
}
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger span { position: relative; width: 20px; height: 2px; background: var(--cream); display: block; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out); }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem; padding: 2rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; }
.mobile-menu .btn { align-self: flex-start; margin-top: 1rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 22%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,16,13,.55) 0%, rgba(18,16,13,.35) 32%, rgba(18,16,13,.55) 68%, var(--bg) 100%),
    linear-gradient(90deg, rgba(18,16,13,.92) 0%, rgba(18,16,13,.55) 42%, rgba(18,16,13,.15) 75%);
}
.hero-mesh {
  position: absolute; inset: -20% -10% -10% -10%; z-index: 1; pointer-events: none;
  background: radial-gradient(45% 40% at 22% 30%, rgba(193,96,46,.28), transparent 70%);
  filter: blur(70px);
  animation: meshBreath 14s ease-in-out infinite;
}
@keyframes meshBreath { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: .9; transform: scale(1.08); } }
.hero-inner { position: relative; z-index: 2; max-width: 680px; }
.hero-title { font-size: clamp(2.4rem, 6.4vw, 4.6rem); margin-top: 1rem; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { color: var(--cream-2); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 46ch; margin-top: 1.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-scroll-cue {
  position: absolute; right: clamp(1.25rem, 4vw, 3rem); bottom: 2rem; z-index: 2;
  writing-mode: vertical-rl; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  color: var(--cream-3); display: none; align-items: center; gap: .6rem;
}
@media (min-width: 720px) { .hero-scroll-cue { display: flex; } }
.hero-scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--cream-3), transparent); }

/* =============================================================
   8. Trust bar
   ============================================================= */
.trust-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: space-between;
  padding-block: 1.6rem;
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--cream-2); }
.trust-item strong { color: var(--cream); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* =============================================================
   9. Historia / concepto
   ============================================================= */
.concept { display: grid; gap: 2.5rem; }
@media (min-width: 860px) { .concept { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 4rem; } }
.concept-figure { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.concept-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.concept-figure:hover img { transform: scale(1.05); }
.concept-body p { color: var(--cream-2); font-size: 1.05rem; margin-top: 1.2rem; max-width: 52ch; }
.concept-body p + p { margin-top: 1rem; }
.pillars { display: grid; gap: 1.5rem; margin-top: 2rem; grid-template-columns: repeat(3, 1fr); }
.pillar .eyebrow-num { display: block; margin-bottom: .4rem; }
.pillar h3 { font-size: 1.05rem; font-weight: 600; font-family: var(--sans); }
.pillar p { font-size: .88rem; color: var(--cream-3); margin-top: .35rem; }

/* =============================================================
   10. Servicios
   ============================================================= */
.services-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative; padding: 1.8rem; border-radius: 16px; background: var(--bg-3);
  border: 1px solid var(--line); overflow: hidden;
  transform-style: preserve-3d; transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.service-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(193,96,46,.22), transparent 70%);
  transition: opacity .4s var(--ease-out);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(243,236,221,.24); }
.service-card > * { position: relative; z-index: 1; }
.service-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.service-head h3 { font-family: var(--sans); font-weight: 600; font-size: 1.08rem; }
.service-price { font-family: var(--mono); color: var(--accent); font-size: 1.1rem; white-space: nowrap; }
.service-price small { font-size: .7rem; color: var(--cream-3); }
.service-card p { color: var(--cream-3); font-size: .92rem; margin-top: .6rem; }

/* =============================================================
   11. Experiencia / beneficios
   ============================================================= */
.experience { display: grid; gap: 3rem; }
@media (min-width: 960px) { .experience { grid-template-columns: 1fr 1fr; align-items: start; } }
.benefits-list { display: grid; gap: 1.4rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(193,96,46,.14); color: var(--accent); margin-top: .1rem;
}
.benefit-check svg { width: 16px; height: 16px; }
.benefit-item h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; }
.benefit-item p { color: var(--cream-3); font-size: .92rem; margin-top: .3rem; }
.experience-photos { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.experience-photos img { border-radius: 16px; width: 100%; height: 100%; object-fit: cover; }
.experience-photos a:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.experience-photos a:last-child { aspect-ratio: 4/5; }
.experience-photos a { display: block; border-radius: 16px; overflow: hidden; }
.experience-photos--single { grid-template-columns: 1fr; }
.experience-photos--single a:first-child { aspect-ratio: 4/5; }
@media (min-width: 640px) { .experience-photos--single a:first-child { aspect-ratio: 4/3; } }

/* =============================================================
   12. Galería
   ============================================================= */
.gallery-grid { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1120px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--bg-3);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: attr(data-tag); position: absolute; left: .7rem; bottom: .7rem; z-index: 1;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .35rem .6rem; border-radius: 999px; background: rgba(18,16,13,.72); color: var(--cream-2);
  backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 800; background: rgba(10,8,6,.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 84vh; border-radius: 10px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-3); display: grid; place-items: center; border: 1px solid var(--line);
}
.lightbox-caption { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); font-size: .85rem; color: var(--cream-3); }

/* =============================================================
   13. Equipo
   ============================================================= */
.team-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(6, 1fr); } }
.team-card {
  padding: 1.5rem 1.1rem; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--line);
  text-align: center; transition: transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(243,236,221,.24); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin-inline: auto; margin-bottom: .9rem;
  display: grid; place-items: center; background: linear-gradient(160deg, var(--accent), var(--accent-2));
  font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--cream);
}
.team-card h3 { font-family: var(--sans); font-size: .96rem; font-weight: 600; }
.team-card p { font-size: .78rem; color: var(--cream-3); margin-top: .2rem; }

.team-action-strip { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); margin-top: 3rem; }
@media (min-width: 640px) { .team-action-strip { grid-template-columns: repeat(4, 1fr); } }
.team-action-strip img { border-radius: 14px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* =============================================================
   14. Testimonios
   ============================================================= */
.testi-grid { display: grid; gap: 1.2rem; }
@media (min-width: 860px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  padding: 1.8rem; border-radius: 16px; background: var(--bg-3); border: 1px dashed var(--line);
}
.testi-card p.quote { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--cream-2); }
.testi-card .author { margin-top: 1rem; font-size: .82rem; color: var(--cream-3); }
.placeholder-flag {
  display: inline-block; margin-top: .9rem; font-family: var(--mono); font-size: .66rem;
  color: var(--accent); letter-spacing: .04em; text-transform: uppercase;
}

/* =============================================================
   15. Promo / membresías
   ============================================================= */
.promo-card {
  border-radius: 20px; padding: clamp(2rem, 5vw, 3.2rem); background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line); display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 780px) { .promo-card { grid-template-columns: 1fr auto; } }
.promo-card h3 { font-size: 1.6rem; }
.promo-card p { color: var(--cream-2); margin-top: .7rem; max-width: 56ch; }

/* =============================================================
   16. FAQ
   ============================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.3rem; text-align: left; font-family: var(--serif); font-size: 1.08rem;
}
.faq-q .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--cream); transition: transform .3s var(--ease-out); }
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { padding-bottom: 1.4rem; color: var(--cream-3); max-width: 62ch; }
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* =============================================================
   17. Ubicación
   ============================================================= */
.location-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-map { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: radial-gradient(120% 100% at 30% 20%, var(--bg-4), var(--bg-3)); }
.location-map iframe { position: relative; z-index: 1; width: 100%; height: 100%; border: 0; background: transparent; filter: grayscale(.25) contrast(1.05); }
.location-map-backdrop { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; }
.location-map-backdrop svg { width: 64px; height: 64px; color: var(--line); }
.location-map-badge {
  position: absolute; left: .9rem; bottom: .9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem; border-radius: 999px;
  background: rgba(18,16,13,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--cream); font-size: .82rem; font-weight: 600; border: 1px solid var(--line);
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}
.location-map-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.location-map-badge:hover { background: rgba(18,16,13,.95); transform: translateY(-2px); }
.location-info { display: grid; gap: 1.4rem; align-content: start; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.info-row h3 { font-family: var(--sans); font-size: .95rem; font-weight: 600; }
.info-row p { font-size: .9rem; color: var(--cream-3); margin-top: .2rem; }
.info-note { font-size: .78rem; color: var(--cream-3); font-style: italic; }

/* =============================================================
   18. CTA final
   ============================================================= */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-final .hero-actions { justify-content: center; }

/* =============================================================
   19. Footer
   ============================================================= */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 2rem; background: var(--bg-2); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--cream-3); font-size: .9rem; margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .92rem; color: var(--cream-2); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--cream-3);
}
.footer-bottom a { color: var(--cream-3); }
.footer-bottom a:hover { color: var(--cream-2); }
.social-row { display: flex; gap: .8rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.social-row a:hover { border-color: var(--cream-2); transform: translateY(-2px); }
.social-row svg { width: 17px; height: 17px; }

/* =============================================================
   20. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #0b1a0f;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .3s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* =============================================================
   21. Formulario de reserva
   ============================================================= */
.booking-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.8rem); max-width: 640px; margin-inline: auto;
}
.form-grid { display: grid; gap: 1.3rem; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--cream-2); margin-bottom: .5rem; }
.field .req { color: var(--accent); }
.field select, .field input {
  width: 100%; padding: .85rem 1rem; border-radius: 10px; background: var(--bg-2);
  border: 1px solid var(--line); color: var(--cream); font-family: var(--sans); font-size: .95rem;
  transition: border-color .25s var(--ease-out);
}
.field select:focus, .field input:focus { border-color: var(--accent); }
.field-error { display: none; color: #E38A6B; font-size: .78rem; margin-top: .4rem; }
.field.has-error select, .field.has-error input { border-color: #E38A6B; }
.field.has-error .field-error { display: block; }
.booking-preview {
  margin-top: 1.6rem; padding: 1.1rem 1.3rem; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--line); font-size: .88rem; color: var(--cream-2); white-space: pre-wrap;
  font-family: var(--mono); line-height: 1.7;
}
.booking-status { margin-top: 1rem; font-size: .85rem; display: none; align-items: center; gap: .5rem; }
.booking-status.is-visible { display: flex; }
.booking-status.success { color: var(--ok); }
.booking-actions { margin-top: 1.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================================
   22. Página de galería completa (galeria.html)
   ============================================================= */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.gallery-filter {
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); font-size: .82rem;
  color: var(--cream-2); transition: all .25s var(--ease-out);
}
.gallery-filter.is-active, .gallery-filter:hover { border-color: var(--accent); color: var(--cream); background: rgba(193,96,46,.12); }

/* =============================================================
   23. 404
   ============================================================= */
.error-page {
  min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 2rem; padding-top: calc(var(--nav-h) + 2rem);
}
.error-page .kicker { justify-content: center; }
.error-page h1 { font-size: clamp(3rem, 10vw, 6rem); margin-top: .8rem; }
.error-page p { color: var(--cream-2); margin-top: 1rem; max-width: 46ch; margin-inline: auto; }
.error-page .hero-actions { justify-content: center; margin-top: 2rem; }

/* =============================================================
   24. Aviso de privacidad
   ============================================================= */
.legal-page { padding-top: calc(var(--nav-h) + 3rem); }
.legal-content { max-width: 72ch; margin-inline: auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.2rem; margin-bottom: .8rem; }
.legal-content p, .legal-content li { color: var(--cream-2); font-size: .96rem; margin-top: .7rem; }
.legal-content ul { list-style: disc; padding-left: 1.3rem; }
.legal-note {
  margin-top: 2.5rem; padding: 1.2rem 1.4rem; border-radius: 12px; border: 1px dashed var(--line);
  font-size: .85rem; color: var(--cream-3);
}

/* =============================================================
   25. Responsive breakpoints ya integrados por componente
   ============================================================= */
@media (min-width: 540px)  { .hero-title { max-width: 22ch; } }
@media (min-width: 1600px) { .container { max-width: 1320px; } }

/* =============================================================
   26. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; opacity: .5; }
  .splash { animation: none; opacity: 0; pointer-events: none; }
}
