/* ===========================================================
   Alcázar Peluqueros — hoja de estilos
   Paleta: negro carbón · dorado champán · crema cálida
   Tipos: Cormorant Garamond (display) + Manrope (texto)
   =========================================================== */

:root {
  --charcoal: #1A1A1A;
  --charcoal-2: #232120;
  --gold: #C9A24B;
  --gold-deep: #B0883A;
  --gold-soft: #E4CE96;
  --cream: #F7F3EC;
  --cream-2: #FCFAF5;
  --cream-3: #F1EADE;
  --ink: #2B2926;
  --muted: #6F6A62;
  --line: rgba(26, 26, 26, 0.10);
  --line-soft: rgba(26, 26, 26, 0.06);
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(26,26,26,.05), 0 4px 14px rgba(26,26,26,.04);
  --shadow-md: 0 6px 24px rgba(26,26,26,.08), 0 2px 6px rgba(26,26,26,.04);
  --shadow-lg: 0 20px 60px rgba(26,26,26,.16);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--charcoal);
}

::selection { background: var(--gold); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.section-sub {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-gold {
  background: var(--gold);
  color: #211a08;
  box-shadow: 0 8px 22px rgba(201,162,75,.32);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,162,75,.42);
}
.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--charcoal); background: rgba(26,26,26,.03); }
.btn-wa {
  background: #25D366;
  color: #07331a;
}
.btn-wa:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.36); }
.btn-outline-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,236,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled {
  border-color: var(--line-soft);
  box-shadow: 0 4px 24px rgba(26,26,26,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  border: 1.5px solid var(--gold);
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--charcoal);
  letter-spacing: .01em;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--gold-deep); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-weight: 700;
  font-size: .93rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  transition: color .25s;
}
.nav-phone:hover { color: var(--gold-deep); }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-deep); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 78px 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
  z-index: 99;
  padding: 14px var(--gutter) 28px;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link {
  display: block;
  padding: 16px 4px;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--serif);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .m-actions { margin-top: 22px; display: grid; gap: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 9px 9px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.hero-rating b { font-weight: 800; }
.rating-pill {
  background: var(--cream-3);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero h1 .accent { font-style: italic; color: var(--gold-deep); }
.hero-lead {
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--muted);
  max-width: 30ch;
  line-height: 1.55;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: .92rem;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  left: -22px;
  bottom: 38px;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.hero-badge .hb-top { display: flex; align-items: center; gap: 10px; color: var(--gold); margin-bottom: 8px; }
.hero-badge .hb-top svg { width: 20px; height: 20px; }
.hero-badge b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.hero-badge p { margin: 2px 0 0; font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.4; }

/* ---------- photo placeholder ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, var(--cream-3), #E6DCC8 55%, #D8C9A8);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(26,26,26,.035) 0 2px, transparent 2px 11px);
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 70% 15%, rgba(255,255,255,.45), transparent 60%);
}
.ph-label {
  position: relative;
  z-index: 2;
  font-family: 'Manrope', monospace;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(26,26,26,.42);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.5);
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px dashed rgba(26,26,26,.18);
  backdrop-filter: blur(2px);
}
.ph-label svg { width: 14px; height: 14px; }
.ph.dark { background: linear-gradient(135deg, #2b2722, #1d1a16); }
.ph.dark .ph-label { color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.ph.gold { background: linear-gradient(135deg, #E4CE96, #C9A24B 70%, #B0883A); }

/* ---------- servicios ---------- */
.services { background: var(--cream-2); }
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.svc-card .svc-desc { color: var(--muted); font-size: .94rem; margin: 0 0 22px; flex: 1; }
.svc-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.svc-price { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--charcoal); }
.svc-price small { font-size: .82rem; color: var(--muted); font-family: var(--sans); font-weight: 600; }
.svc-time { font-size: .85rem; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.svc-time svg { width: 14px; height: 14px; color: var(--gold-deep); }
.svc-note { margin-top: 26px; font-size: .9rem; color: var(--muted); text-align: center; }

/* ---------- reserva ---------- */
.reserva { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.reserva::before {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,162,75,.18), transparent 65%);
}
.reserva-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.reserva h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.1rem); }
.reserva .eyebrow { color: var(--gold-soft); }
.reserva .eyebrow::before { background: var(--gold); }
.reserva-lead { color: rgba(255,255,255,.74); font-size: 1.1rem; margin: 18px 0 30px; line-height: 1.6; }
.reserva-feats { display: grid; gap: 18px; margin-bottom: 14px; }
.feat { display: flex; gap: 15px; align-items: flex-start; }
.feat-ic {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: rgba(201,162,75,.14);
  color: var(--gold);
  display: grid; place-items: center;
  border: 1px solid rgba(201,162,75,.3);
}
.feat-ic svg { width: 21px; height: 21px; }
.feat b { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: #fff; }
.feat p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.5; }

/* booking widget */
.booking {
  background: var(--cream-2);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.booking-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.booking-head h3 { font-size: 1.55rem; }
.booking-steps { display: flex; gap: 7px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s, width .3s; }
.dot.active { background: var(--gold); width: 22px; border-radius: 100px; }
.dot.done { background: var(--gold-deep); }

.b-field { margin-bottom: 18px; }
.b-label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 100px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip small { color: var(--muted); font-weight: 600; }
.chip:hover { border-color: var(--gold); }
.chip.sel { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.chip.sel small { color: var(--gold-soft); }
.chip.sel .chip-dot { background: var(--gold); }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.pro-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.pro-opt {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  transition: all .25s var(--ease);
}
.pro-opt:hover { border-color: var(--gold); }
.pro-opt.sel { border-color: var(--charcoal); background: var(--charcoal); color: #fff; }
.pro-av {
  width: 38px; height: 38px; border-radius: 50%;
  margin: 0 auto 7px;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  background: var(--cream-3); color: var(--gold-deep);
}
.pro-opt.sel .pro-av { background: var(--gold); color: #211a08; }
.pro-opt span { font-size: .78rem; font-weight: 700; display: block; }

.date-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.date-pill {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 9px 5px;
  min-width: 60px; flex: none;
  text-align: center;
  transition: all .25s var(--ease);
}
.date-pill:hover { border-color: var(--gold); }
.date-pill.sel { border-color: var(--charcoal); background: var(--charcoal); color: #fff; }
.date-pill .dp-dow { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--muted); }
.date-pill.sel .dp-dow { color: var(--gold-soft); }
.date-pill .dp-day { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.1; }
.date-pill .dp-mon { font-size: .66rem; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.date-pill.sel .dp-mon { color: rgba(255,255,255,.6); }

.time-row { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 9px 14px;
  font-size: .88rem; font-weight: 700;
  transition: all .25s var(--ease);
}
.time-slot:hover:not(:disabled) { border-color: var(--gold); }
.time-slot.sel { background: var(--gold); border-color: var(--gold); color: #211a08; }
.time-slot:disabled { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

.booking-summary {
  background: var(--charcoal);
  color: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
  display: none;
}
.booking-summary.show { display: block; animation: fade .4s var(--ease); }
.bs-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: .92rem; }
.bs-row + .bs-row { border-top: 1px solid rgba(255,255,255,.1); }
.bs-row span:first-child { color: rgba(255,255,255,.55); }
.bs-row span:last-child { font-weight: 700; }
.bs-row .gold { color: var(--gold); }

.booking-foot { margin-top: 8px; }
.booking-hint { text-align: center; font-size: .82rem; color: var(--muted); margin: 12px 0 0; display: inline-flex; gap: 7px; align-items: center; justify-content: center; width: 100%; }
.booking-hint svg { width: 14px; height: 14px; color: #25D366; }

.booking-success { text-align: center; padding: 14px 6px; display: none; }
.booking-success.show { display: block; animation: fade .5s var(--ease); }
.bsucc-ic {
  width: 70px; height: 70px; border-radius: 50%;
  margin: 6px auto 18px;
  background: rgba(37,211,102,.12);
  color: #25D366;
  display: grid; place-items: center;
  border: 2px solid rgba(37,211,102,.3);
}
.bsucc-ic svg { width: 34px; height: 34px; }
.booking-success h3 { font-size: 1.7rem; margin-bottom: 8px; }
.booking-success p { color: var(--muted); font-size: .95rem; margin: 0 auto 22px; max-width: 34ch; }

@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- equipo ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 1/1; }
.team-body { padding: 22px 24px 26px; }
.team-body h3 { font-size: 1.55rem; display: flex; align-items: center; gap: 10px; }
.team-tag { font-size: .8rem; font-weight: 700; color: var(--gold-deep); letter-spacing: .04em; text-transform: uppercase; margin: 8px 0 12px; }
.team-body p { color: var(--muted); font-size: .94rem; margin: 0; }
.team-specs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.spec { font-size: .76rem; font-weight: 700; color: var(--ink); background: var(--cream-3); border-radius: 100px; padding: 5px 12px; }

/* ---------- reseñas ---------- */
.reviews { background: var(--cream-2); }
.rev-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 48px; }
.google-badge {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 22px;
  box-shadow: var(--shadow-sm);
}
.google-badge .gb-score { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--charcoal); }
.google-badge .gb-meta .stars { margin-bottom: 4px; }
.google-badge .gb-meta small { color: var(--muted); font-size: .85rem; font-weight: 600; }
.gb-g { font-weight: 800; letter-spacing: -.02em; }
.gb-g .b1{color:#4285F4} .gb-g .b2{color:#EA4335} .gb-g .b3{color:#FBBC05} .gb-g .b4{color:#4285F4} .gb-g .b5{color:#34A853}

.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rev-card .stars { margin-bottom: 16px; }
.rev-quote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.45; color: var(--charcoal); font-weight: 500; flex: 1; margin: 0 0 22px; }
.rev-who { display: flex; align-items: center; gap: 13px; }
.rev-av { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; flex: none; }
.rev-who b { display: block; font-size: .96rem; font-weight: 700; }
.rev-who small { color: var(--muted); font-size: .82rem; }

/* ---------- ubicación ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: stretch; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; position: relative; border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.2) contrast(1.02); min-height: 420px; }
.loc-info { display: flex; flex-direction: column; }
.info-block { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.info-block:first-of-type { padding-top: 0; }
.info-ic {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  background: var(--cream-3); color: var(--gold-deep);
  display: grid; place-items: center;
}
.info-ic svg { width: 23px; height: 23px; }
.info-block h4 { font-size: 1.3rem; margin-bottom: 4px; }
.info-block p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.55; }
.info-block a.lnk { color: var(--gold-deep); font-weight: 700; }
.info-block a.lnk:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 9px 0; font-size: .95rem; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--line-soft); }
.hours-table td:first-child { font-weight: 700; color: var(--charcoal); }
.hours-table td:last-child { text-align: right; color: var(--muted); font-weight: 600; }
.hours-table tr.today td { color: var(--gold-deep); }
.hours-table tr.today td:first-child { position: relative; }
.badge-open { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 800; color: #1c7a44; background: rgba(37,211,102,.14); padding: 3px 10px; border-radius: 100px; margin-left: 8px; }
.badge-open::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #25D366; }
.closed { color: #b04a3a; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--charcoal); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-final::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(201,162,75,.16), transparent 60%);
}
.cta-final .wrap { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 16ch; margin-inline: auto; }
.cta-final h2 .accent { font-style: italic; color: var(--gold); }
.cta-final p { color: rgba(255,255,255,.7); font-size: 1.15rem; margin: 20px auto 36px; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phone { margin-top: 26px; color: rgba(255,255,255,.6); font-size: .95rem; }
.cta-phone a { color: var(--gold-soft); font-weight: 700; }

/* ---------- footer ---------- */
.footer { background: #141312; color: rgba(255,255,255,.6); padding-block: 60px 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .brand-name { color: #fff; }
.foot-about { margin: 18px 0 0; font-size: .92rem; line-height: 1.6; max-width: 30ch; }
.foot-col h5 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin: 0 0 16px; }
.foot-col a, .foot-col p { display: block; color: rgba(255,255,255,.6); font-size: .93rem; margin: 0 0 11px; transition: color .25s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .83rem; color: rgba(255,255,255,.4); }
.foot-bottom .cat { font-style: italic; }

/* ---------- floating whatsapp ---------- */
.fab {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px rgba(37,211,102,.5); }
.fab-ic { width: 60px; height: 60px; display: grid; place-items: center; flex: none; }
.fab-ic svg { width: 30px; height: 30px; }
.fab-txt { font-weight: 700; font-size: .95rem; padding-right: 24px; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width .4s var(--ease), padding .4s; }
.fab:hover .fab-txt, .fab.expand .fab-txt { max-width: 200px; padding-right: 24px; }
.fab-pulse { position: absolute; inset: 0; border-radius: 100px; 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,.45)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

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

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .svc-grid, .team-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr 0.85fr; }
}

@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-cta .btn:not(.nav-burger-btn) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; width: 100%; }
  .hero-photo { aspect-ratio: 16/11; }
  .hero-badge { left: auto; right: 16px; bottom: 16px; }
  .reserva-grid, .loc-grid { grid-template-columns: 1fr; }
  .pro-row { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .svc-grid, .team-grid, .rev-grid { grid-template-columns: 1fr; }
  .booking { padding: 22px 18px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1; min-width: 0; }
  .hero-actions { gap: 10px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .google-badge { width: 100%; }
  .rev-top, .svc-head { flex-direction: column; align-items: flex-start; }
  .section-head { max-width: 100%; }
  .fab-txt { display: none; }
  .pro-row { grid-template-columns: repeat(2, 1fr); }
}
