/* ═══════════════════════════════════════════════════════════════════════════
   Kings Club Barbershop — diseño v2 (20-sep-2026)
   Inspirado en la estructura de noyolaarellanes.com: header fijo transparente,
   hero a pantalla completa con texto abajo, frases a pantalla negra, secciones
   alternadas negro / blanco / grafito con "eyebrow" dorado, tarjetas con foto,
   botones pastilla y pie de página en columnas.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --black:     #0a0a0b;
  --graphite:  #1c1c1e;
  --graphite-2:#2c2c2e;
  --gold:      #c9a227;
  --gold-soft: #e4c766;
  --white:     #ffffff;
  --cream:     #f5f5f7;
  --gray-line: #e5e5ea;
  --text:      #3a3a3c;
  --text-soft: #6e6e73;
  --on-dark:   rgba(255,255,255,0.72);
  --on-dark-strong: #ffffff;
  --font:      'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius:    14px;
  --radius-lg: 22px;
  --pad-x:     clamp(1.25rem, 5vw, 4.5rem);
  --sec-y:     clamp(4.5rem, 10vw, 8.5rem);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --wa:        #25d366;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--black); color: var(--on-dark);
  font-family: var(--font); font-size: 16px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; color: inherit; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ── Tipografía de sección ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.sec-title { font-size: clamp(2rem, 4.2vw, 3.4rem); max-width: 16ch; }
.sec-lead { font-size: clamp(1rem, 1.35vw, 1.2rem); max-width: 60ch; margin-top: 1.1rem; }
.sec-head { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2rem 4rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .sec-lead { margin-top: 0; }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } }

/* Temas de sección */
.on-black    { background: var(--black);    color: var(--on-dark); }
.on-graphite { background: var(--graphite); color: var(--on-dark); }
.on-white    { background: var(--white);    color: var(--text); }
.on-cream    { background: var(--cream);    color: var(--text); }
.on-black h2, .on-black h3, .on-graphite h2, .on-graphite h3 { color: var(--on-dark-strong); }
.on-white h2, .on-white h3, .on-cream h2, .on-cream h3 { color: #111; }
.on-white .pack-name, .on-cream .pack-name { color: #fff; }
.place-intro { text-align: center; max-width: 44rem; margin: 0 auto; }
.place-intro .sec-title { max-width: none; }
.on-white .eyebrow, .on-cream .eyebrow { color: #8a7020; }
section.block { padding: var(--sec-y) 0; }

/* ── Botones pastilla ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.01em; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); box-shadow: 0 10px 30px rgba(201,162,39,.25); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-light:hover { background: #fff; color: #111; }
.btn-dark { background: transparent; color: #111; border-color: rgba(0,0,0,.6); }
.btn-dark:hover { background: #111; color: #fff; }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #111; }
.btn-primary { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-ghost:hover { background: #fff; color: #111; }
.link-arrow { font-weight: 700; color: inherit; display: inline-flex; gap: .4rem; align-items: center; }
.link-arrow::after { content: '→'; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── Preloader ─────────────────────────────────────────────────────────── */
#preloader { position: fixed; inset: 0; z-index: 2000; background: var(--black); display: grid; place-items: center; transition: opacity .6s var(--ease), visibility .6s; }
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner { text-align: center; }
.pl-logo { display: flex; flex-direction: column; align-items: center; gap: .6rem; color: #fff; }
.pl-crown { font-size: 2.2rem; }
.pl-name { font-size: 1.05rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.pl-name em { display: block; font-style: normal; font-size: .62rem; letter-spacing: .38em; color: var(--gold); margin-top: .25rem; }
.pl-bar { width: 140px; height: 2px; background: rgba(255,255,255,.12); margin: 1.5rem auto 0; overflow: hidden; }
.pl-fill { width: 40%; height: 100%; background: var(--gold); animation: pl 1.2s var(--ease) infinite; }
@keyframes pl { 0% { transform: translateX(-100%); } 100% { transform: translateX(260%); } }

/* ── Header fijo ───────────────────────────────────────────────────────── */
#header {
  position: fixed; inset: 0 0 auto 0; z-index: 900; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1rem var(--pad-x); color: #fff;
  border-bottom: 1px solid transparent; background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  transition: background .35s, padding .35s, border-color .35s;
}
#header.scrolled { background: rgba(10,10,11,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-color: rgba(255,255,255,.08); padding: .65rem var(--pad-x); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: #fff; border: 1px solid rgba(255,255,255,.18); }
.brand-crown { font-size: 1.5rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.brand-text em { font-style: normal; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.brand-branch { color: var(--gold); }
#header nav { display: flex; gap: 1.7rem; font-size: .84rem; font-weight: 600; letter-spacing: .02em; }
#header nav a { opacity: .85; transition: opacity .2s; padding: .3rem 0; }
#header nav a:hover { opacity: 1; }
.header-cta { background: var(--gold); color: #111; border-radius: 999px; padding: .6rem 1.15rem; font-size: .82rem; font-weight: 700; transition: background .2s, color .2s, box-shadow .2s; }
.header-cta:hover { background: var(--gold-soft); box-shadow: 0 8px 24px rgba(201,162,39,.3); }
.menu-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: transform .3s, opacity .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed; inset: 0; z-index: 890; background: var(--black); display: flex; flex-direction: column; justify-content: center;
  padding: 5rem var(--pad-x) 3rem; gap: .2rem; transform: translateY(-100%); opacity: 0; transition: transform .45s var(--ease), opacity .35s;
}
.mobile-nav.open { transform: none; opacity: 1; }
.mobile-nav a { font-size: 1.6rem; font-weight: 700; color: #fff; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .btn { margin-top: 1.4rem; border-bottom: 0; font-size: 1rem; }
@media (max-width: 960px) {
  #header nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--black); color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.85) contrast(1.05); }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,11,.96) 0%, rgba(10,10,11,.55) 38%, rgba(10,10,11,.15) 70%, rgba(10,10,11,.35) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--pad-x) clamp(3rem, 8vh, 6rem); }
.hero-eyebrow { color: var(--gold); }
.hero-title { font-size: clamp(2.8rem, 8.5vw, 7.2rem); line-height: .95; font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); animation: rise 1s var(--ease) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
@keyframes rise { to { transform: none; } }
.hero-title-gold { color: var(--gold); font-size: .42em; letter-spacing: .32em; font-weight: 700; display: inline-block; margin-top: .35em; }
.hero-sub { max-width: 46ch; font-size: clamp(1rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.82); margin-top: 1.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-scroll-hint { position: absolute; right: var(--pad-x); bottom: 2rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@media (max-width: 720px) { .hero-scroll-hint { display: none; } }

/* ── Frases a pantalla completa ───────────────────────────────────────── */
.statement { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 4rem var(--pad-x); background: var(--black); }
.statement h2 { font-size: clamp(2rem, 5.2vw, 4.4rem); font-weight: 500; letter-spacing: -0.025em; max-width: 22ch; color: #fff; line-height: 1.12; }
.statement h2 em { font-style: normal; color: var(--gold); }
.statement-logo { min-height: 70vh; display: grid; place-items: center; background: var(--black); padding: 4rem var(--pad-x); }
.statement-logo img { width: clamp(150px, 22vw, 260px); height: auto; border-radius: 50%; background: #fff; padding: 6%; box-shadow: 0 0 0 1px rgba(201,162,39,.35), 0 40px 90px rgba(0,0,0,.6); }
.statement-logo p { margin-top: 1.6rem; font-size: .72rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); text-align: center; }

/* ── Journal (posts de Codex; conserva sus ganchos) ────────────────────── */
.posts-home { padding: var(--sec-y) 0; background: var(--black); }
.posts-home-intro { display: grid; grid-template-columns: 1.2fr auto; gap: 1.5rem 3rem; align-items: end; margin-bottom: 2.5rem; }
.posts-home-intro h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; }
.posts-home-intro p { margin-top: .9rem; max-width: 56ch; }
.posts-archive-link { font-weight: 700; color: var(--gold); white-space: nowrap; }
@media (max-width: 760px) { .posts-home-intro { grid-template-columns: 1fr; } }

/* ── Servicios: tarjetas con foto ─────────────────────────────────────── */
.pack-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.pack-card { position: relative; grid-column: span 2; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; background: #111; color: #fff; display: flex; align-items: flex-end; isolation: isolate; }
.pack-card:nth-child(1), .pack-card:nth-child(2) { grid-column: span 3; min-height: 380px; }
.pack-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); filter: saturate(.8); }
.pack-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.05) 100%); }
.pack-card:hover img { transform: scale(1.06); }
.pack-body { padding: 1.5rem 1.5rem 1.4rem; width: 100%; }
.pack-tag { font-size: .65rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.pack-name { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700; margin-top: .3rem; color: #fff; }
.pack-desc { font-size: .88rem; color: rgba(255,255,255,.78); margin-top: .35rem; max-width: 34ch; }
.pack-price { display: inline-block; margin-top: .8rem; font-size: 1.15rem; font-weight: 800; color: var(--gold); }
@media (max-width: 900px) { .pack-grid { grid-template-columns: 1fr 1fr; } .pack-card, .pack-card:nth-child(1), .pack-card:nth-child(2) { grid-column: span 1; min-height: 300px; } }
@media (max-width: 560px) { .pack-grid { grid-template-columns: 1fr; } }

.menu-strip { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.menu-card { background: var(--cream); border: 1px solid var(--gray-line); border-radius: var(--radius-lg); padding: 1.5rem 1.5rem 1.2rem; }
.menu-card h3 { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 800; color: #8a7020; margin-bottom: .8rem; }
.menu-card h3 small { display: block; letter-spacing: .04em; text-transform: none; font-weight: 600; color: var(--text-soft); margin-top: .25rem; font-size: .78rem; }
.menu-card li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--gray-line); font-size: .95rem; }
.menu-card li:last-child { border-bottom: 0; }
.menu-card li strong { font-weight: 800; color: #111; }
.promo-row { margin-top: 1.1rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.promo-card { background: #111; color: #fff; border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid rgba(201,162,39,.35); }
.promo-days { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.promo-card p { margin-top: .25rem; color: rgba(255,255,255,.85); }
.promo-price { font-size: 1.5rem; font-weight: 800; color: var(--gold); white-space: nowrap; }
@media (max-width: 900px) { .menu-strip { grid-template-columns: 1fr; } .promo-row { grid-template-columns: 1fr; } }

/* ── Ritual numerado ───────────────────────────────────────────────────── */
.ritual-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem 5rem; align-items: start; }
.ritual-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.ritual-item { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.ritual-num { font-size: .8rem; font-weight: 800; letter-spacing: .12em; color: var(--gold); padding-top: .35rem; }
.ritual-item strong { display: block; font-size: 1.3rem; color: #fff; font-weight: 600; }
.ritual-item p { margin-top: .35rem; max-width: 46ch; }
@media (max-width: 860px) { .ritual-layout { grid-template-columns: 1fr; } }

/* ── Instalaciones / galería ─────────────────────────────────────────── */
.place-split { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; align-items: center; margin-top: clamp(2.5rem, 5vw, 4rem); }
.place-split img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: var(--radius-lg); }
.place-text h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.place-text p { margin-top: 1rem; max-width: 46ch; }
.place-text .hours { margin-top: 1.4rem; display: grid; gap: .35rem; font-size: .95rem; }
.place-text .hours span { color: var(--gold); font-weight: 700; margin-right: .6rem; }
@media (max-width: 860px) { .place-split { grid-template-columns: 1fr; } .place-split img { min-height: 260px; } }
.gallery-grid { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; background: #111; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(.85); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; left: 1rem; bottom: .9rem; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; } .gallery-item:first-child { grid-row: span 1; grid-column: span 2; } }

/* ── Equipo ─────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.1rem; }
.team-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 2rem 1.4rem 1.6rem; text-align: center; transition: transform .35s var(--ease), border-color .35s; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,.5); }
.team-avatar { width: 84px; height: 84px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #111; font-size: 1.9rem; font-weight: 800; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-foto, .team-nombre-foto { cursor: zoom-in; }
.team-card strong { display: block; font-size: 1.15rem; color: #fff; }
.team-card span { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: .35rem; font-weight: 700; }

/* ── Confianza: cifras + testimonios ────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(2rem, 4vw, 3rem); }
.stat-item { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.stat-num-wrap { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #111; letter-spacing: -0.03em; line-height: 1; display: flex; align-items: baseline; gap: .1rem; }
.stat-suffix { color: var(--gold); font-size: .55em; }
.stat-stars { color: var(--gold); font-size: .6em; letter-spacing: .05em; }
.stat-label { display: block; margin-top: .5rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.testimonial-card { margin: 0; background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.testimonial-card .stars { color: var(--gold); letter-spacing: .1em; font-size: .85rem; }
.testimonial-card p { font-size: 1rem; color: #111; line-height: 1.55; flex: 1; }
.testimonial-card cite { font-style: normal; font-size: .78rem; letter-spacing: .04em; color: var(--text-soft); font-weight: 700; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Sofía (asistente) ──────────────────────────────────────────────────── */
.assistant-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 5rem; align-items: center; }
.assistant-text h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
.assistant-text h2 em { font-style: normal; color: var(--gold); }
.assistant-text p { margin-top: 1rem; max-width: 50ch; }
.assistant-text .btn { margin-top: 1.6rem; }
.chat-preview { background: var(--graphite); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 1.3rem; display: grid; gap: .8rem; box-shadow: 0 40px 80px rgba(0,0,0,.45); }
.chat-head { display: flex; align-items: center; gap: .8rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.chat-head .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: #111; font-weight: 800; }
.chat-head strong { display: block; color: #fff; font-size: .95rem; }
.chat-head small { display: block; color: var(--wa); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.bubble { max-width: 88%; padding: .8rem 1rem; border-radius: 16px; font-size: .92rem; line-height: 1.45; }
.bubble.in { background: #2a2a2d; color: #fff; border-top-left-radius: 4px; }
.bubble.out { background: #1f6f47; color: #fff; margin-left: auto; border-top-right-radius: 4px; }
@media (max-width: 860px) { .assistant-layout { grid-template-columns: 1fr; } }

/* ── Reserva ────────────────────────────────────────────────────────────── */
.channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.channel { background: var(--cream); border: 1px solid var(--gray-line); border-radius: var(--radius-lg); padding: 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; transition: transform .3s var(--ease), border-color .3s; }
.channel:hover { transform: translateY(-3px); border-color: var(--gold); }
.channel span { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: #8a7020; font-weight: 800; }
.channel strong { font-size: 1.05rem; color: #111; }
.channel p { font-size: .88rem; color: var(--text-soft); }
@media (max-width: 900px) { .channels { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .channels { grid-template-columns: 1fr; } }
.booking-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem 5rem; align-items: start; }
.booking-text h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.booking-text p { margin-top: 1rem; max-width: 48ch; }
.booking-include { margin-top: 1.3rem; padding: 1rem 1.2rem; border-left: 3px solid var(--gold); background: var(--cream); color: var(--text); font-size: .92rem; border-radius: 0 var(--radius) var(--radius) 0; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }
.booking-form { background: var(--black); color: #fff; border-radius: var(--radius-lg); padding: 1.8rem; display: grid; gap: 1rem; box-shadow: 0 40px 80px rgba(0,0,0,.25); }
.booking-form label { display: grid; gap: .4rem; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.booking-form select, .booking-form input { width: 100%; background: #151517; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: .85rem 1rem; font: inherit; font-size: .95rem; letter-spacing: 0; text-transform: none; outline: none; transition: border-color .2s; }
.booking-form select:focus, .booking-form input:focus { border-color: var(--gold); }
.booking-form select option { color: #111; }
.booking-form .btn { width: 100%; }
.slot-label { font-size: .82rem; color: rgba(255,255,255,.75); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .5rem; margin-top: .6rem; }
.slot-btn { background: #151517; border: 1px solid rgba(255,255,255,.14); color: #fff; border-radius: 999px; padding: .55rem .4rem; font: inherit; font-size: .88rem; font-weight: 700; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.slot-btn:hover, .slot-btn.active { background: var(--gold); color: #111; border-color: var(--gold); }
.booking-msg { padding: .9rem 1rem; border-radius: 10px; font-size: .92rem; background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.4); }
.booking-msg.ok { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.45); }
.booking-msg.error { background: rgba(255,80,80,.12); border-color: rgba(255,80,80,.45); }
.flatpickr-calendar.dark { background: #151517; }

/* ── Ubicación ─────────────────────────────────────────────────────────── */
.location-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem 4rem; align-items: stretch; }
.location-info address { font-size: 1.05rem; line-height: 1.7; }
.location-info address strong { color: #fff; font-size: 1.2rem; }
.location-info address em { color: var(--gold); font-style: normal; }
.location-info .hours { margin: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.location-info .hours p { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.location-info .hours strong { color: #fff; }
.map-container { min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1); filter: grayscale(.2) contrast(1.05); }
.map-container iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 860px) { .location-layout { grid-template-columns: 1fr; } }

/* ── WhatsApp flotante ────────────────────────────────────────────────── */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 800; display: inline-flex; align-items: center; gap: .5rem; background: var(--wa); color: #fff; padding: .8rem 1.1rem; border-radius: 999px; font-weight: 800; font-size: .88rem; box-shadow: 0 12px 30px rgba(37,211,102,.35); transition: transform .25s var(--ease); }
.wa-float:hover { transform: translateY(-2px) scale(1.03); }
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .wa-float { padding: .8rem; } .wa-float span { display: none; } }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #000; color: rgba(255,255,255,.7); border-top: 1px solid rgba(201,162,39,.35); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand strong { display: block; color: #fff; font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.footer-brand small { display: block; color: var(--gold); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; margin-top: .3rem; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .92rem; }
.footer-col h4 { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 800; }
.footer-col a, .footer-col li { display: block; font-size: .92rem; padding: .25rem 0; color: rgba(255,255,255,.75); }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-admin { color: rgba(255,255,255,.35); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Visor de foto ─────────────────────────────────────────────────────── */
.foto-visor { position: fixed; inset: 0; z-index: 1500; background: rgba(0,0,0,.92); display: none; place-items: center; padding: 2rem; }
.foto-visor.open { display: grid; }
.foto-visor-fig { margin: 0; text-align: center; color: #fff; }
.foto-visor-fig img { max-height: 80vh; max-width: 92vw; border-radius: var(--radius); margin: 0 auto; }
.foto-visor-close { position: absolute; top: 1rem; right: 1.2rem; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ── Aparición al hacer scroll ────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .hero-img { animation: none; transform: none; } .hero-title .line > span { animation: none; transform: none; } }

/* ── Hero en movimiento: paneo lento continuo + humo animado (Alfonso, 20-sep-2026) ── */
.hero-media { will-change: transform; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.hero-img { animation: heroDrift 14s ease-in-out infinite alternate; transform: scale(1.1); will-change: transform; }
@keyframes heroDrift { 0% { transform: scale(1.1) translate(0, 0); } 45% { transform: scale(1.17) translate(-2.2%, -1.6%); } 100% { transform: scale(1.22) translate(1.6%, 1.2%); } }
/* Luz cálida que barre lentamente la foto (da sensación de movimiento aunque la foto sea fija). */
.hero-light { position: absolute; inset: -25%; pointer-events: none; z-index: 1; mix-blend-mode: screen; opacity: .85;
  background: radial-gradient(38% 48% at 50% 50%, rgba(255,205,110,.30) 0%, rgba(255,190,90,.12) 40%, transparent 72%);
  animation: heroLight 11s ease-in-out infinite alternate; }
@keyframes heroLight { 0% { transform: translate(-22%, -14%) scale(1); } 50% { transform: translate(8%, 6%) scale(1.25); } 100% { transform: translate(24%, -10%) scale(.95); } }
.hero-light::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.07) 48%, transparent 60%); animation: heroSheen 9s ease-in-out infinite; }
@keyframes heroSheen { 0%, 20% { transform: translateX(-60%); } 80%, 100% { transform: translateX(60%); } }
.hero-vapor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.vapor-puff { position: absolute; border-radius: 50%; filter: blur(30px); mix-blend-mode: screen; animation: puffRise var(--dur, 9s) ease-in-out var(--dly, 0s) infinite; }
.vapor-puff:nth-child(1) { width: 360px; height: 520px; background: radial-gradient(ellipse, rgba(200,220,255,.22) 0%, transparent 70%); bottom: 8%; left: 6%; --dur: 9s; --dly: 0s; }
.vapor-puff:nth-child(2) { width: 300px; height: 420px; background: radial-gradient(ellipse, rgba(210,230,255,.16) 0%, transparent 70%); bottom: 18%; left: 28%; --dur: 12s; --dly: -3s; }
.vapor-puff:nth-child(3) { width: 260px; height: 380px; background: radial-gradient(ellipse, rgba(230,240,255,.14) 0%, transparent 70%); bottom: 26%; left: 52%; --dur: 10s; --dly: -6s; }
.vapor-puff:nth-child(4) { width: 420px; height: 300px; background: radial-gradient(ellipse, rgba(200,215,255,.11) 0%, transparent 70%); bottom: 4%; left: 40%; --dur: 14s; --dly: -2s; }
.vapor-puff:nth-child(5) { width: 320px; height: 460px; background: radial-gradient(ellipse, rgba(215,230,255,.13) 0%, transparent 70%); bottom: 14%; right: 6%; --dur: 11s; --dly: -5s; }
@keyframes puffRise { 0% { transform: translate(0, 0) scale(1); opacity: 0; } 15% { opacity: 1; } 60% { opacity: .6; } 100% { transform: translate(40px, -140px) scale(1.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-img, .vapor-puff, .hero-light, .hero-light::after { animation: none !important; } .hero-media { transform: none !important; } }

/* ── Promociones (portada, /promos y detalle) ───────────────────────────── */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; }
.promo-tile { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s; }
.promo-tile:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,.12); }
.promo-tile-media { display: block; aspect-ratio: 1200 / 630; background: #0a0a0b; }
.promo-tile-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-tile-fallback { height: 100%; display: grid; place-items: center; color: var(--gold); font-size: 2.4rem; font-weight: 800; }
.promo-tile-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.promo-tile-tag { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 800; color: #8a7020; }
.promo-tile-body h3 { font-size: 1.2rem; line-height: 1.2; }
.promo-tile-body h3 a { color: #111; }
.promo-tile-body p { font-size: .92rem; color: var(--text-soft); }
.promo-tile-price { margin-top: .2rem; font-size: 1.35rem; color: #111; }
.promo-tile-price strong { color: #8a7020; font-weight: 800; }
.promo-tile-price s { font-size: .9rem; color: var(--text-soft); margin-left: .4rem; }
.promo-tile-actions { margin-top: auto; padding-top: 1rem; display: flex; flex-direction: column; gap: .8rem; }
.promo-btn-reservar { width: 100%; padding: .85rem 1.2rem; font-size: .92rem; }
.promo-share { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.promo-share-label { flex: 0 0 100%; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; }
.promo-share .btn { padding: .5rem .8rem; font-size: .76rem; flex: 1 1 auto; border-width: 1px; }
.promo-detail-cta .promo-btn-reservar { width: auto; }
.promo-detail .promo-share .btn { flex: 0 0 auto; }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { background: #1fb457; border-color: #1fb457; }
.on-white .btn-outline, .on-cream .btn-outline { color: #111; border-color: rgba(0,0,0,.35); }
.on-white .btn-outline:hover, .on-cream .btn-outline:hover { background: #111; color: #fff; border-color: #111; }
.promos-page .promos-main { padding-top: 0; }
.promos-page #header { position: sticky; }
.promo-detail-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem 4rem; align-items: center; }
.promo-detail-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.promo-detail-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.promo-detail-price strong { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.promo-detail-price s { color: rgba(255,255,255,.5); font-size: 1.2rem; }
.promo-detail-price span { width: 100%; font-weight: 700; color: #fff; }
.promo-detail-list { margin-top: 1.2rem; display: grid; gap: .4rem; }
.promo-detail-list li { position: relative; padding-left: 1.3rem; }
.promo-detail-list li::before { content: ''; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.promo-detail-cond { margin-top: 1rem; font-size: .84rem; color: rgba(255,255,255,.6); }
.promo-detail-cta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.promo-share-nota { margin-top: 1rem; font-size: .88rem; color: var(--text-soft); word-break: break-all; }
.promo-share-nota a { color: #8a7020; font-weight: 700; }
.post-share-status { position: fixed; left: 50%; bottom: 5.4rem; transform: translate(-50%, 10px); background: #111; color: #fff; padding: .7rem 1.1rem; border-radius: 999px; font-size: .85rem; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 1200; margin: 0; }
.post-share-status.visible { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 860px) { .promo-detail-layout { grid-template-columns: 1fr; } }
