/* =============================================================
   MOTO DTAILING · Editorial Dark Warm
   Negro grafito + acento ámbar/dorado
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:       #0E0B09;   /* negro cálido, nunca #000 */
  --bg-2:     #15110E;
  --bg-3:     #1E1813;   /* card */
  --bg-4:     #241D16;

  --cream:    #F4EEE2;   /* texto sobre oscuro */
  --cream-2:  #DBCFBB;
  --cream-3:  #96866D;   /* metadatos */

  --accent:   #F2A93B;   /* ámbar cálido — la energía */
  --accent-2: #E0851C;
  --gold:     #C9A25B;   /* dorado — el premium (lavado Oro) */
  --steel:    #7C8B94;   /* acero frío técnico */
  --wa:       #25D366;   /* verde WhatsApp */

  --line:     rgba(244,238,226,.12);
  --line-2:   rgba(244,238,226,.07);

  --radius:   16px;
  --radius-lg: 24px;
  --gutter:   clamp(1.2rem, 5vw, 3rem);
  --maxw:     1220px;

  --sans:     "Sora", system-ui, -apple-system, sans-serif;
  --serif:    "Fraunces", Georgia, serif;
  --mono:     "JetBrains Mono", ui-monospace, monospace;

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

  --shadow:   0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-accent: 0 24px 60px -24px rgba(242,169,59,.35);
}

/* =============================================================
   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;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, iframe { 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.04; letter-spacing: -0.02em; font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--bg); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.section-lead { color: var(--cream-2); margin-top: 1rem; font-size: 1.08rem; max-width: 56ch; }

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

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: transform .5s var(--ease-out), background .3s, box-shadow .5s var(--ease-out), color .3s, border-color .3s;
  will-change: transform;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #241403;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 30px 70px -22px rgba(242,169,59,.55); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--bg);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { animation: splashOut .8s var(--ease-out) forwards; }
.splash-mark { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.splash-mono {
  font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 12vw, 5.5rem);
  color: var(--accent);
  letter-spacing: .02em;
  position: relative;
}
.splash-mono::after {
  content: ""; position: absolute; left: 50%; bottom: -.4rem;
  width: 0; height: 2px; background: var(--accent);
  transform: translateX(-50%);
  animation: splashLine 1.6s var(--ease-out) forwards;
}
.splash-name {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--cream-3);
  opacity: 0; animation: splashFade .8s .5s forwards;
}
@keyframes splashLine { to { width: 84px; } }
@keyframes splashFade { to { opacity: 1; } }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
@keyframes splashOut { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .4s var(--ease-out), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(14,11,9,.82);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: .85rem var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand-mono {
  font-family: var(--serif); font-weight: 500; font-size: 1.5rem; color: var(--accent);
  line-height: 1;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-3);
}
.brand-word { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
.nav-links { display: none; gap: 1.8rem; }
.nav-links a { color: var(--cream-2); font-size: .95rem; position: relative; transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px;
  background: var(--accent); transition: width .4s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform .4s var(--ease-out), opacity .3s; border-radius: 2px; }
.nav.is-open .nav-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 0 var(--gutter);
  max-height: 0; overflow: hidden;
  background: rgba(14,11,9,.96);
  backdrop-filter: blur(14px);
  transition: max-height .5s var(--ease-out), padding .4s;
}
.nav.is-open .nav-mobile { max-height: 340px; padding: 1rem var(--gutter) 1.6rem; border-bottom: 1px solid var(--line); }
.nav-mobile a { padding: .8rem 0; color: var(--cream-2); border-bottom: 1px solid var(--line-2); }
.nav-mobile a.btn { margin-top: .8rem; color: #241403; border: 0; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem var(--gutter) 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(14,11,9,.86) 34%, rgba(14,11,9,.35) 66%, rgba(14,11,9,.55) 100%),
    linear-gradient(180deg, rgba(14,11,9,.2) 0%, transparent 30%, var(--bg-2) 100%),
    url("assets/img/hero-moto.webp") center right / cover no-repeat,
    var(--bg-2);
}
@media (max-width: 719px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(14,11,9,.55) 0%, rgba(14,11,9,.75) 55%, var(--bg-2) 100%),
      url("assets/img/hero-moto.webp") center 30% / cover no-repeat,
      var(--bg-2);
  }
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(242,169,59,.22), transparent),
    radial-gradient(closest-side at 70% 60%, rgba(224,133,28,.18), transparent),
    radial-gradient(closest-side at 55% 30%, rgba(124,139,148,.12), transparent);
  filter: blur(70px);
  opacity: .8;
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) translate(0,0) rotate(0deg); }
  50%      { transform: scale(1.18) translate(2%, -2%) rotate(8deg); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-meta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .1em;
  color: var(--cream-2);
  padding: .45rem .9rem; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(30,24,19,.5);
  margin-bottom: 1.8rem;
}
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { color: var(--cream-2); font-size: clamp(1.05rem, 2.2vw, 1.25rem); max-width: 48ch; margin-top: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem;
  margin-top: 2.6rem; color: var(--cream-3); font-size: .9rem;
}
.hero-trust strong { color: var(--gold); }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--cream-3); display: inline-block; }

.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 100px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent); animation: scrollDot 1.8s var(--ease-out) infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* =============================================================
   8. Pilares
   ============================================================= */
.pillars { padding: clamp(3.5rem, 8vw, 6rem) 0; background: var(--bg-2); border-top: 1px solid var(--line-2); }
.pillars-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.pillar {
  padding: 2rem 1.8rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  transition: transform .5s var(--ease-out), border-color .4s;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(242,169,59,.4); }
.pillar-ico { display: block; width: 46px; height: 46px; margin-bottom: 1.2rem; color: var(--accent); }
.pillar h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.pillar p { color: var(--cream-2); font-size: .98rem; }

/* =============================================================
   9. Servicios
   ============================================================= */
.services { padding: clamp(4rem, 9vw, 7rem) 0; }
.services-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s var(--ease-out);
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(242,169,59,.08), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.svc-card:hover { transform: translateY(-8px); border-color: rgba(242,169,59,.45); box-shadow: var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; z-index: 1; }
.svc-card.is-featured { border-color: rgba(201,162,91,.5); background: linear-gradient(180deg, var(--bg-4), var(--bg-2)); }

.svc-badge {
  align-self: flex-start;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: .3rem .6rem; border-radius: 100px; margin-bottom: 1rem;
}
.svc-name { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; }
.svc-tagline { color: var(--cream-3); font-size: .9rem; margin-top: .25rem; }
.svc-price { display: flex; align-items: baseline; gap: .3rem; margin: 1.2rem 0 1.3rem; }
.svc-price .amount { font-family: var(--sans); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.03em; color: var(--cream); }
.svc-price .cur { color: var(--cream-3); font-size: .95rem; font-weight: 600; }
.svc-card.is-featured .svc-price .amount { color: var(--gold); }
.svc-includes { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.6rem; flex: 1; }
.svc-includes li { display: flex; gap: .6rem; color: var(--cream-2); font-size: .94rem; }
.svc-includes li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: .12rem; background: var(--accent); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.svc-card.is-featured .svc-includes li::before { background: var(--gold); }
.svc-cta { margin-top: auto; }

.services-fallback { color: var(--cream-2); }
.services-fallback li { padding: .4rem 0; border-bottom: 1px solid var(--line-2); }

/* =============================================================
   10. Reserva
   ============================================================= */
.booking { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg-2); border-top: 1px solid var(--line-2); }
.booking-wrap { display: grid; gap: 1.4rem; grid-template-columns: 1fr; align-items: start; }

.booking-services { display: grid; gap: .8rem; grid-template-columns: 1fr; margin-bottom: 1.4rem; }
.svc-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-3);
  transition: border-color .35s, background .35s;
}
.svc-row.is-active { border-color: rgba(242,169,59,.55); background: var(--bg-4); }
.svc-row-info { flex: 1; min-width: 0; }
.svc-row-info strong { font-weight: 600; font-size: 1.02rem; display: block; }
.svc-row-info span { color: var(--cream-3); font-size: .84rem; }
.svc-row-price { font-family: var(--mono); color: var(--accent); font-size: .92rem; margin-right: .2rem; white-space: nowrap; }

.stepper { display: flex; align-items: center; gap: .1rem; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-2); }
.stepper button {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--cream); font-size: 1.3rem; line-height: 1; border-radius: 50%;
  transition: background .25s, color .25s;
}
.stepper button:hover { background: var(--accent); color: var(--bg); }
.stepper button:disabled { opacity: .3; cursor: not-allowed; }
.stepper button:disabled:hover { background: none; color: var(--cream); }
.stepper output { min-width: 26px; text-align: center; font-family: var(--mono); font-weight: 500; }

.booking-fields { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field:first-child, .field:last-child, .field:not(.field-half) { grid-column: 1 / -1; }
.field-half { grid-column: auto; }
.field label { font-size: .82rem; color: var(--cream-3); font-weight: 500; letter-spacing: .01em; }
.field input {
  padding: .8rem 1rem; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-3); color: var(--cream); font: inherit; font-size: .96rem;
  transition: border-color .3s, background .3s;
  color-scheme: dark;
}
.field input::placeholder { color: var(--cream-3); }
.field input:focus { outline: none; border-color: var(--accent); background: var(--bg-4); }
.booking-hint { margin-top: 1rem; color: var(--accent); font-size: .88rem; font-family: var(--mono); }

/* Resumen */
.booking-summary {
  position: sticky; top: 90px;
  padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  box-shadow: var(--shadow);
}
.booking-summary h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin-bottom: 1.2rem; }
.summary-list { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.2rem; min-height: 40px; }
.summary-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; color: var(--cream-2); }
.summary-list li .s-name { color: var(--cream); }
.summary-list li .s-price { font-family: var(--mono); color: var(--cream-3); white-space: nowrap; }
.summary-empty { color: var(--cream-3) !important; font-style: italic; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1.1rem; margin-bottom: 1.4rem; border-top: 1px solid var(--line);
}
.summary-total span { color: var(--cream-2); font-size: .95rem; }
.summary-total strong { font-family: var(--sans); font-weight: 800; font-size: 1.8rem; color: var(--gold); letter-spacing: -0.02em; }
.summary-note { color: var(--cream-3); font-size: .82rem; margin-top: 1rem; text-align: center; }
[data-whatsapp-send].is-disabled { opacity: .45; pointer-events: none; filter: grayscale(.3); }

/* =============================================================
   11. Ubicación
   ============================================================= */
.location { padding: clamp(4rem, 9vw, 7rem) 0; }
.location-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.info-list { display: flex; flex-direction: column; gap: 1.3rem; margin: 1.8rem 0; }
.info-list li { display: flex; gap: 1rem; }
.info-ico { flex: none; width: 40px; height: 40px; color: var(--accent); display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-3); padding: 9px; }
.info-list strong { display: block; font-weight: 600; margin-bottom: .15rem; }
.info-list p { color: var(--cream-2); font-size: .96rem; }
.info-list a { color: var(--accent); }
.info-list a:hover { text-decoration: underline; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 320px; background: var(--bg-3); }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.3) invert(.92) hue-rotate(180deg) brightness(.9) contrast(.9); }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-inner { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand .brand-mono { margin-bottom: 1rem; }
.footer-name { font-weight: 700; font-size: 1.15rem; }
.footer-tag { color: var(--cream-3); font-size: .9rem; margin-top: .2rem; }
.footer-cols { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.footer-cols h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .9rem; font-weight: 600; }
.footer-cols a, .footer-cols p { display: block; color: var(--cream-2); font-size: .92rem; padding: .2rem 0; transition: color .3s; }
.footer-cols a:hover { color: var(--accent); }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-2); }
.footer-base p { color: var(--cream-3); font-size: .82rem; }

/* =============================================================
   13. WhatsApp float
   ============================================================= */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .4s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
.wa-float .wa-ico { width: 30px; height: 30px; }
.wa-ico {
  display: inline-block; width: 20px; height: 20px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.6-.8-2.6-1.4-3.7-3.2-.3-.5.3-.5.8-1.5.1-.2 0-.4 0-.5 0-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.2.2 2.1 3.3 5.2 4.6 1.9.8 2.7.9 3.6.8.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath d='M12 2a10 10 0 0 0-8.5 15.3L2 22l4.8-1.5A10 10 0 1 0 12 2zm0 18.2c-1.5 0-3-.4-4.3-1.2l-.3-.2-2.9.9.9-2.8-.2-.3A8.2 8.2 0 1 1 12 20.2z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.6-.8-2.6-1.4-3.7-3.2-.3-.5.3-.5.8-1.5.1-.2 0-.4 0-.5 0-.1-.7-1.6-.9-2.2-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.2.2 2.1 3.3 5.2 4.6 1.9.8 2.7.9 3.6.8.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath d='M12 2a10 10 0 0 0-8.5 15.3L2 22l4.8-1.5A10 10 0 1 0 12 2zm0 18.2c-1.5 0-3-.4-4.3-1.2l-.3-.2-2.9.9.9-2.8-.2-.3A8.2 8.2 0 1 1 12 20.2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn .wa-ico { width: 20px; height: 20px; }

/* =============================================================
   14. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .booking-services { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
  .booking-wrap { grid-template-columns: 1.5fr 1fr; }
  .location-grid { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
}
@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .booking-services { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   15. Reduced motion (solo lo intrusivo)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-scroll span { animation: none; }
  .hero-meta .dot { animation: none; }
}
