/* ==========================================================================
   Booster Beauty Clinic — hoja de estilos única
   Convertido desde el handoff de diseño (Booster Beauty Clinic.dc.html).
   ========================================================================== */

:root {
  /* Marca */
  --bg:          #0D0D0D;
  --surface:     #1A1A1A;
  --cream:       #F6F2EA;
  --gold:        #C9A961;
  --gold-light:  #DCC183;
  --gold-dark:   #8F7333;
  --gold-star:   #C1943F;

  /* Texto sobre oscuro */
  --on-dark-1:   #F6F2EA;
  --on-dark-2:   #cfc9bd;
  --on-dark-3:   #bdb8ad;
  --on-dark-4:   #b9b4a9;
  --on-dark-5:   #9A9A9A;
  --on-dark-6:   #77726a;
  --on-dark-7:   #8a857c;

  /* Texto sobre claro */
  --on-light-1:  #0D0D0D;
  --on-light-2:  #55524b;
  --on-light-3:  #6b6862;

  /* Líneas */
  --line-dark:   rgba(246,242,234,.14);
  --line-light:  rgba(13,13,13,.16);
  --line-gold:   rgba(201,169,97,.25);

  /* Tipografía */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', -apple-system, 'Segoe UI', sans-serif;
  --mono:  'SF Mono', Menlo, Consolas, monospace;

  /* Métrica */
  --nav-h:   66px;
  --wide:    1240px;
  --mid:     1140px;
  --narrow:  820px;
  --gutter:  clamp(20px, 5vw, 48px);
  --block:   clamp(72px, 9vw, 120px);
}

/* --------------------------------------------------------------- Base --- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img { max-width: 100%; }

blockquote { margin: 0; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.wrap-anywhere { overflow-wrap: anywhere; }

@keyframes bbc-draw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: .001s !important;
    animation-delay: 0s !important;
    transition: none !important;
  }
}

/* Enlace de salto (accesibilidad) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 18px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: var(--bg);
}

/* Revelado al hacer scroll — sólo se aplica si el JS corre.
   La transición vive en el estado final, no en el inicial: así aplicar
   .fade-init nunca puede animar un desvanecido hacia fuera. */
.fade-init {
  opacity: 0;
  transform: translateY(16px);
}
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* ------------------------------------------------------- Contenedores --- */

.wrap { margin: 0 auto; padding: var(--block) var(--gutter); }
.wrap-md { max-width: var(--mid); }
.wrap-sm { max-width: var(--narrow); }

.section { scroll-margin-top: var(--nav-h); }
.section-dark  { background: var(--bg); color: var(--cream); }
.section-light { background: var(--cream); color: var(--on-light-1); }
.section-mark  { position: relative; overflow: hidden; }

.split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(36px, 5vw, 64px);
}
.split-start { align-items: start; }

/* ------------------------------------------------------- Tipografía  --- */

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-dark { color: var(--gold-dark); }

.h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  color: var(--on-light-1);
}
.h2-light { color: var(--cream); }

.section-lede {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--on-dark-5);
}
.section-foot {
  margin: 26px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--on-dark-6);
}

.rule {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 13px;
}
.rule-lg {
  width: 64px;
  background: rgba(201,169,97,.9);
  margin: 24px 0 0;
}

.hl-gold      { color: var(--gold); }
.hl-gold-dark { color: var(--gold-dark); }
.dot          { color: rgba(201,169,97,.55); }

/* Marcadores de contenido pendiente. Buscar `data-placeholder` para
   localizarlos todos antes de publicar. */
.placeholder {
  font-family: var(--mono);
  letter-spacing: .04em;
}

/* ----------------------------------------------------------- Botones --- */

.btn {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 26px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  transition: background .25s ease, transform .25s ease;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(201,169,97,.45);
  color: var(--cream);
  font-weight: 400;
  padding: 16px 24px;
  transition: border-color .25s ease, color .25s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { font-size: 12px; padding: 15px 24px; }

.btn-ghost-dark {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 18px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.btn-ghost-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn-row-center { justify-content: center; margin-top: 38px; }

/* --------------------------------------------------------------- Nav --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(13,13,13,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,97,.22);
}

.nav-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
  padding: 0 clamp(18px, 4vw, 40px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cream);
}
.brand:hover { color: var(--cream); }

.brand-mark {
  display: block;
  flex: none;
  width: 24px;
  height: 34px;
  color: var(--gold);
  stroke-width: 7;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.35; }
.brand-name { font-size: 12px;   font-weight: 500; letter-spacing: .24em; }
.brand-sub  { font-size: 9.5px;  font-weight: 400; letter-spacing: .42em; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}
/* `:not(.btn)` evita que el color de enlace pise el del botón "Agendar cita",
   que necesita texto oscuro sobre el dorado. */
.nav-links a:not(.btn) {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  transition: color .25s ease;
}
.nav-links a:not(.btn):hover { color: var(--gold); }

.btn-nav {
  font-size: 11px;
  padding: 12px 20px;
  transition: background .25s ease;
}
.btn-nav:hover { transform: none; }

.btn-nav-xs {
  font-size: 10.5px;
  letter-spacing: .16em;
  padding: 10px 14px;
}
.btn-nav-xs:hover { transform: none; }

.nav-mobile { display: none; align-items: center; gap: 16px; }

.nav-toggle {
  /* inline-flex + min-height dan un área táctil de 44 px sin alterar el
     aspecto: el texto sigue centrado dentro de la barra de 66 px. */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  padding: 8px 0;
}

.nav-panel {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(201,169,97,.3);
  padding: 8px 24px 24px;
  display: flex;
  flex-direction: column;
}
/* El `display: flex` de arriba pisa la regla del navegador que oculta
   `[hidden]`; sin esto el panel queda siempre abierto en móvil y el botón
   MENÚ no lo cierra. */
.nav-panel[hidden] { display: none; }
.nav-panel a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(246,242,234,.08);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-panel a:last-child { border-bottom: none; }
.nav-panel a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .nav-links  { display: none; }
  .nav-mobile { display: flex; }
}
@media (min-width: 881px) {
  .nav-panel { display: none; }
}

/* -------------------------------------------------------------- Hero --- */

.hero { position: relative; overflow: hidden; background: var(--bg); }

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 420px at 76% 24%, rgba(201,169,97,.09), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) var(--gutter) clamp(64px, 8vw, 104px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-title {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: .005em;
  color: var(--cream);
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-lede {
  margin: 24px 0 0;
  max-width: 540px;
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--on-dark-4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(246,242,234,.12);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--on-dark-5);
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(201,169,97,.28);
  background: linear-gradient(160deg, #171614, #0D0D0D 62%);
  min-height: clamp(340px, 44vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark {
  display: block;
  width: min(66%, 340px);
  aspect-ratio: 240 / 345;
  color: var(--gold);
  stroke-width: 2.1;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: bbc-draw 2.8s ease .4s forwards;
}

.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  font-size: 10.5px;
  color: rgba(154,154,154,.8);
}

/* ------------------------------------------------ Franja de confianza --- */

.trust-band {
  background: var(--bg);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.trust-grid {
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 44px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 26px 44px;
}

.trust-item p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-2);
}

/* --------------------------------------------- Tratamiento destacado --- */

.feature {
  scroll-margin-top: 80px;
  margin-top: 46px;
  background: var(--bg);
  color: var(--cream);
  padding: clamp(28px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 26px 48px;
  align-items: center;
}

.tag {
  display: inline-block;
  border: 1px solid rgba(201,169,97,.55);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.feature-title {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
}

.feature-text {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-dark-4);
}

.feature-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  justify-self: start;
}

.feature-note {
  margin: 0;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--on-dark-5);
}

/* ------------------------------------------------------------ Tarjetas --- */

.card-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 22px;
}

.card {
  border: 1px solid var(--line-light);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  transition: border-color .3s ease, transform .3s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }

.card-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.15;
  color: var(--on-light-1);
}

.card-text {
  margin: 0;
  flex: 1;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--on-light-2);
}

.card-link {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color .25s ease;
}
.card-link:hover { color: var(--on-light-1); }

/* --------------------------------------------------------- Acordeones --- */

.acc-h { margin: 0; font-weight: inherit; font-size: inherit; }

.acc-trigger {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  padding: 21px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--cream);
}

.acc-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  width: 26px;
  flex: none;
}

.acc-label {
  flex: 1;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(21px, 2.2vw, 25px);
  line-height: 1.25;
}

.acc-plus {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 21px;
  color: var(--gold);
  flex: none;
  transition: transform .3s ease;
}
.acc-trigger[aria-expanded="true"] .acc-plus { transform: rotate(45deg); }

.acc-list { display: flex; flex-wrap: wrap; gap: 9px 20px; }

.acc-tag {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-3);
}
.acc-tag::before { content: "·"; color: var(--gold); margin-right: 8px; }

/* Servicios (sobre fondo oscuro, dos columnas en pantallas anchas) */
.acc-services {
  margin-top: 40px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 0 clamp(28px, 4vw, 64px);
  align-items: start;
}
.acc-services .acc-item  { border-bottom: 1px solid var(--line-dark); }
.acc-services .acc-panel { padding: 0 0 26px 42px; }

/* FAQ (sobre fondo claro, una columna) */
.acc-faq {
  margin-top: 36px;
  border-top: 1px solid var(--line-light);
}
.acc-faq .acc-item    { border-bottom: 1px solid var(--line-light); }
.acc-faq .acc-trigger { gap: 18px; padding: 20px 0; color: var(--on-light-1); }
.acc-faq .acc-label   { font-size: clamp(19px, 2vw, 22px); line-height: 1.3; }
.acc-faq .acc-plus    { color: var(--gold-dark); }
.acc-faq .acc-panel   { padding: 0 34px 24px 0; }

.acc-answer {
  margin: 0;
  max-width: 640px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-light-2);
}

.acc-faq .placeholder {
  margin: 0;
  font-size: 11.5px;
  color: var(--on-dark-7);
}

/* ---------------------------------------------------- Por qué Booster --- */

.watermark {
  position: absolute;
  aspect-ratio: 240 / 345;
  pointer-events: none;
  stroke-width: 2.4;
}
.watermark-right {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: min(46vw, 500px);
  opacity: .07;
  color: var(--on-light-1);
}
.watermark-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  width: min(64vw, 480px);
  opacity: .06;
  color: var(--gold);
}

.philosophy-text {
  margin: 26px 0 0;
  max-width: 440px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-light-2);
}

.numbered {
  border-top: 1px solid rgba(13,13,13,.14);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
}
.numbered-last { padding: 24px 0 0; }

.numbered-n {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
}
.numbered-t {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.numbered-p {
  margin: 9px 0 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-light-2);
}

/* ------------------------------------------------------------- Equipo --- */

.team-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid rgba(246,242,234,.1);
}

.team-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.03);
  border-bottom: 1px solid rgba(246,242,234,.08);
}
.team-photo-a { object-position: 42% 22%; }
.team-photo-b { object-position: 52% 24%; }

.team-photo-empty {
  background: repeating-linear-gradient(45deg, #191817 0 14px, #151413 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-empty .placeholder {
  margin: 0;
  padding: 0 22px;
  text-align: center;
  font-size: 11px;
  color: var(--on-dark-6);
}

.team-body { padding: 22px 24px 26px; }

.team-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--cream);
}

.team-role {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-bio {
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--on-dark-6);
}
.team-bio-pending {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--on-dark-7);
}

/* ---------------------------------------------------------- Opiniones --- */

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.reviews-score {
  margin: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--on-light-2);
}

.reviews {
  margin-top: 42px;
  column-width: 320px;
  column-gap: 22px;
}

.review {
  break-inside: avoid;
  border: 1px solid var(--line-light);
  background: rgba(13,13,13,.025);
  padding: 28px 26px 26px;
  margin: 0 0 22px;
}

.stars {
  display: block;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--gold-star);
}

.review-lead {
  margin: 16px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.review-quote {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--surface);
  text-wrap: pretty;
}

.review-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(13,13,13,.12);
}

.review-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--on-light-1);
}
.review-sub {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--on-light-3);
}

.reviews-more { margin: 30px 0 0; }
.reviews-more a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color .25s ease;
}
.reviews-more a:hover { color: var(--on-light-1); }

/* ---------------------------------------------------------- Ubicación --- */

.address {
  margin: 24px 0 0;
  max-width: 340px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
}

.address-link { margin: 12px 0 0; }
.address-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,97,.4);
  padding-bottom: 3px;
  transition: color .25s ease, border-color .25s ease;
}
.address-link a:hover { color: var(--gold-light); border-color: var(--gold-light); }

.hours {
  margin-top: 26px;
  border-top: 1px solid rgba(246,242,234,.12);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(246,242,234,.08);
  font-size: 14px;
}
.hours-day    { font-weight: 300; color: var(--on-dark-3); }
.hours-time   { color: var(--cream); }
.hours-closed { color: var(--on-dark-5); }

.contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 300;
}
.contact p { margin: 0; color: var(--on-dark-3); }

.note-rule {
  margin: 26px 0 0;
  padding-left: 14px;
  border-left: 1px solid rgba(201,169,97,.6);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-5);
}

.map {
  display: block;
  width: 100%;
  min-height: clamp(320px, 42vw, 460px);
  border: 1px solid rgba(201,169,97,.28);
  filter: grayscale(.35) contrast(1.05);
}

.map-links {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.map-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .25s ease;
}
.map-link:hover { color: var(--gold-light); }
.map-link-dim { color: var(--on-dark-5); }
.map-link-dim:hover { color: var(--gold); }

/* --------------------------------------------------------- CTA final --- */

.cta { position: relative; overflow: hidden; background: var(--bg); }

.cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(96px, 13vw, 160px) var(--gutter);
  text-align: center;
}

.cta-title {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.08;
  color: var(--cream);
  text-wrap: balance;
}

/* ------------------------------------------------------------ Footer --- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line-gold);
}
.footer .wrap { padding: clamp(52px, 7vw, 72px) var(--gutter) 36px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 38px 44px;
}

.footer-logo { display: block; border-radius: 50%; }

.footer-tagline {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
}
.footer-cities {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--on-dark-5);
}

.footer-h {
  margin: 0 0 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 300;
}
.footer-list a { color: var(--on-dark-3); }
.footer-list a:hover { color: var(--gold); }
.footer-dim { color: var(--on-dark-6); }

.footer-legal {
  margin: 0;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-dark-6);
}
.footer-legal + .footer-legal { margin-top: 10px; }

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(246,242,234,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--on-dark-6);
}

/* ------------------------------------------------ WhatsApp flotante --- */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  background: rgba(13,13,13,.92);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  transition: background .25s ease, color .25s ease;
}
.wa-float:hover { background: var(--gold); color: var(--bg); }

/* ----------------------------------------------------- Página de 404 --- */

.page-404 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.error-main {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.error-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 132px) var(--gutter);
  text-align: center;
}
.error-code {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(72px, 14vw, 132px);
  line-height: 1;
  color: var(--gold);
}
.error-title {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.1;
  color: var(--cream);
  text-wrap: balance;
}
.error-text {
  margin: 20px auto 0;
  max-width: 460px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-dark-4);
}
.error-links {
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.error-links a { color: var(--on-dark-5); transition: color .25s ease; }
.error-links a:hover { color: var(--gold); }
