/* ============ TOKENS & RESET ============ */
:root {
  --cream: #FFF9EE;
  --cream-2: #F7F0E2;
  --beige: #F1E9D9;
  --beige-2: #EAE0CB;
  --paper: #FFFFFF;
  --dark: #1A1512;
  --ink: #241C15;
  --ink-2: #6B5D4C;
  --gold: #B8894A;
  --gold-2: #D9B878;
  --gold-ink: #8A6533;
  --rose-soft: #B76E79;
  --err: #B4473B;
  --line: rgba(26, 21, 18, 0.12);
  --line-strong: rgba(26, 21, 18, 0.24);
  --gline: rgba(255, 255, 255, 0.14);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wrap: min(1200px, 100% - clamp(2rem, 6vw, 5rem));
  --pad: clamp(4rem, 9vw, 7rem);
  --shadow: 0 36px 110px rgba(66, 47, 30, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open, body.modal-open { overflow: hidden; }

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
em { font-style: italic; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(3.2rem, 7.5vw, 7rem); line-height: 0.86; letter-spacing: -0.04em; }
h1 em { font-weight: 400; color: var(--gold); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-weight: 500; }
[hidden] { display: none !important; }

::selection { background: var(--gold); color: var(--cream); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: var(--wrap); margin-inline: auto; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--dark); color: var(--cream); padding: 0.6rem 1rem;
}
.skip:focus { left: 0; }

/* ============ BOTONES & PILLS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0 20px; min-height: 48px;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  cursor: pointer;
}
.btn:disabled { opacity: 0.35; pointer-events: none; }
.btn-primary { background: var(--dark); color: var(--cream); box-shadow: 0 18px 50px rgba(17, 17, 17, 0.18); }
.btn-primary:hover { background: #2B2219; transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.55); color: var(--dark); }
.btn-ghost:hover { background: var(--paper); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--dark); }
.btn-light:hover { background: var(--gold); transform: translateY(-2px); }
.btn-lg { min-height: 54px; padding: 0 26px; font-size: 1rem; }
.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--dark);
  font-size: 0.84rem; font-weight: 700;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn-ghost-sm:hover { background: var(--dark); color: var(--cream); transform: translateY(-1px); }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 15px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 242, 0.66);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink);
}
.pill-icon { display: inline-flex; }
.pill-icon svg { width: 15px; height: 15px; fill: none; stroke: var(--gold-ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-ink);
  display: inline-flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); }
.eyebrow--light { color: var(--gold-2); }
.eyebrow--light::before { background: var(--gold-2); }

.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.95rem; }
.stars-lg { font-size: 1.35rem; }

.link-btn {
  font-size: 0.92rem; font-weight: 700; color: var(--dark);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-btn:hover { color: var(--gold-ink); border-color: var(--gold-ink); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 11px 0;
  background: rgba(255, 249, 238, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(26, 21, 18, 0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); letter-spacing: 0.01em; white-space: nowrap; }
.brand em { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem); }
.site-nav a {
  font-size: 0.9rem; font-weight: 600; color: var(--ink-2);
  position: relative; padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--dark); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { min-height: 44px; font-size: 0.9rem; }

.nav-toggle { display: none; width: 2.4rem; height: 2.4rem; position: relative; z-index: 1101; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.2s; }
.nav-toggle span:nth-child(1) { top: 0.8rem; }
.nav-toggle span:nth-child(2) { top: 1.5rem; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 1.15rem; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 1.15rem; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--dark); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  gap: 2rem; padding: clamp(1.5rem, 7vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-links { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-links a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem);
  padding: 0.25rem 0; color: var(--cream);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu.open .mobile-links a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-links a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-links a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-links a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-links a:nth-child(4) { transition-delay: 0.24s; }
.mobile-links a:hover { color: var(--gold-2); }
.mob-foot { border-top: 1px solid var(--gline); padding-top: 1.4rem; display: flex; flex-direction: column; gap: 1.2rem; font-size: 0.9rem; line-height: 1.8; color: rgba(255, 249, 238, 0.75); }
.mob-foot .btn { align-self: flex-start; }

/* ============ HERO ============ */
.hero { padding: 150px 0 90px; display: flex; align-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 58px; align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-copy .pill { margin-bottom: 26px; }
.hero-copy h1 { margin-bottom: 0px; }
.hero-sub {
  max-width: 560px; margin: 26px 0 0; color: var(--ink-2);
  font-size: 1.08rem; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line);
}
.hero-trust p { font-size: 0.85rem; color: var(--ink-2); }
.hero-trust strong { color: var(--dark); font-weight: 800; }
.hero-trust p span { opacity: 0.8; }

.hero-visual { position: relative; min-height: 640px; }
.hero-photo {
  position: absolute; inset: 0 34px 46px 0;
  border-radius: 44px; overflow: hidden;
  background: var(--beige-2);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.02), rgba(17,17,17,0.32)),
    radial-gradient(circle at top left, rgba(255,250,242,0.3), transparent 22rem);
}

.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  min-height: 46px; padding: 0 15px; border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(255, 250, 242, 0.5);
  color: var(--dark); font-size: 0.85rem; font-weight: 750;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.14);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.chip svg, .booking-chip svg, .map-link svg, .floating-wa svg {
  width: 16px; height: 16px; flex: none;
  fill: none; stroke: var(--gold-ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.chip-top { top: 30px; right: 0; }
.chip-bottom { left: 28px; bottom: 116px; }

.booking-chip {
  position: absolute; right: 0; bottom: 0;
  width: 232px; padding: 20px; border-radius: 26px;
  display: flex; flex-direction: column; align-items: flex-start;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(255, 250, 242, 0.5);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.16);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.booking-chip span { color: var(--ink-2); font-size: 0.78rem; font-weight: 700; }
.booking-chip strong { margin-top: 5px; color: var(--dark); font-size: 1.2rem; font-family: var(--serif); font-weight: 500; }
.booking-chip a {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--gold-ink); font-size: 0.88rem; font-weight: 800;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.booking-chip a:hover { color: var(--dark); }

/* ============ MARCAS ============ */
.brands { padding: 26px 0 30px; overflow: hidden; }
.brands-title { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 20px; }
.brands-track { display: flex; width: max-content; overflow: hidden; animation: brandMarquee 42s linear infinite; }
@keyframes brandMarquee { to { transform: translateX(-50%); } }
.brands-group { display: flex; align-items: center; gap: 30px; padding-right: 30px; flex: none; }
.brands-group span { font-family: var(--serif); font-size: 1.12rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26, 21, 18, 0.45); white-space: nowrap; }
.brands-group i { font-style: normal; color: var(--gold); font-size: 0.8rem; }

/* ============ STATS ============ */
.stats { background: var(--dark); color: var(--cream); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat { border-left: 1px solid rgba(255, 255, 255, 0.18); padding-left: 26px; display: flex; flex-direction: column; gap: 8px; }
.stat strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; line-height: 1; }
.stat strong em { color: var(--gold-2); }
.stat span { font-size: 0.82rem; color: rgba(255, 249, 238, 0.62); line-height: 1.5; }

/* ============ SECCIONES ============ */
.section { padding-block: var(--pad); }
.section--beige { background: var(--beige); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2.6rem, 6vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head .eyebrow--light { margin-bottom: 1.2rem; }
.head-note { font-size: 0.85rem; color: var(--ink-2); text-align: right; line-height: 1.7; }
.note { margin-top: 1.6rem; font-size: 0.85rem; color: var(--ink-2); font-style: italic; }

/* ============ SERVICIOS ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: linear-gradient(180deg, #FFFFFF, #FBF6EA);
  border: 1px solid var(--line); border-radius: 24px;
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -30px rgba(66, 47, 30, 0.35); }
.icon-medal {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--dark);
  margin-bottom: 20px;
}
.icon-medal svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3, .treat h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.65; }
.price { display: block; margin-top: 16px; font-size: 0.85rem; font-weight: 800; color: var(--gold-ink); letter-spacing: 0.02em; }
.service-card--cta { background: var(--dark); color: var(--cream); }
.service-card--cta h3 { color: var(--cream); }
.service-card--cta p { color: rgba(255, 249, 238, 0.72); }
.service-card--cta .btn { background: var(--gold); color: var(--dark); margin-top: 20px; box-shadow: none; }
.service-card--cta .btn:hover { background: var(--gold-2); }

/* ============ TRATAMIENTOS ============ */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-pill {
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(26, 21, 18, 0.18);
  font-size: 0.86rem; font-weight: 600; color: var(--ink-2);
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.filter-pill:hover { border-color: var(--dark); color: var(--dark); }
.filter-pill.is-on { background: var(--dark); color: var(--cream); border-color: var(--dark); }

.treat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.treat {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.treat:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -26px rgba(66, 47, 30, 0.35); }
.treat.is-hidden { display: none; }
.treat-cat {
  align-self: flex-start; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-ink);
  border: 1px solid rgba(184, 137, 74, 0.45); border-radius: 999px;
  padding: 3px 10px;
}
.treat h3 { font-size: 1.18rem; margin-bottom: 4px; }
.treat p { font-size: 0.84rem; color: var(--ink-2); line-height: 1.6; flex: 1; }
.treat footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line);
}
.treat footer span { font-size: 0.8rem; color: var(--ink-2); }
.treat footer strong { font-size: 1rem; font-weight: 800; color: var(--gold-ink); font-variant-numeric: tabular-nums; }

/* ============ ESTILISTAS ============ */
.stylists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stylist {
  background: var(--paper); border: 1px solid var(--line); border-radius: 26px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stylist:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -32px rgba(66, 47, 30, 0.4); }
.stylist-photo { aspect-ratio: 5 / 6; overflow: hidden; background: var(--beige-2); }
.stylist-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.stylist:hover .stylist-photo img { transform: scale(1.05); }
.stylist-body { padding: 20px 22px 24px; }
.stylist-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 8px; }
.stylist-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.stylist-spec { font-size: 0.88rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; }
.stylist-xp { font-size: 0.8rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.stylist-xp::before { content: "✳ "; color: var(--gold); font-size: 0.7rem; }

/* ============ GALERÍA ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 14px; }
.g-card { position: relative; border-radius: 20px; overflow: hidden; background: var(--beige-2); }
.g-card--wide { grid-column: span 2; grid-row: span 2; }
.g-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.g-card:hover img { transform: scale(1.05); }
.g-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.65));
  color: var(--cream);
}
.g-card figcaption span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); }
.g-card figcaption h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--cream); }

/* ============ CTA BANDA ============ */
.cta-band { background: var(--dark); color: var(--cream); padding-block: clamp(5rem, 10vw, 7.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 50% 0%, rgba(184, 137, 74, 0.25), transparent 70%);
}
.cta-inner { max-width: 640px; margin-inline: auto; position: relative; }
.cta-inner h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.02; margin: 18px 0 14px; }
.cta-inner h2 em { color: var(--gold-2); }
.cta-inner p { color: rgba(255, 249, 238, 0.72); margin-bottom: 30px; }
.cta-inner .btn { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3); }

/* ============ TESTIMONIOS ============ */
.rating-summary { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; }
.rating-summary p { font-size: 0.95rem; }
.rating-summary p strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.rating-summary > span:last-child { font-size: 0.78rem; color: var(--ink-2); }

.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3rem); }
.t-item { border-top: 2px solid var(--dark); padding-top: 20px; display: flex; flex-direction: column; }
.t-item .stars { margin-bottom: 14px; }
.t-item blockquote { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.12rem; line-height: 1.55; flex: 1; }
.t-item figcaption { margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.t-item cite { font-style: normal; font-weight: 800; font-size: 0.92rem; }
.t-item figcaption span { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }

/* ============ FAQ ============ */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro .eyebrow { margin-bottom: 1.1rem; }
.faq-intro h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 18px 0;
  font-family: var(--serif); font-size: 1.22rem; font-weight: 500;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-ink); }
.faq-ic { flex: none; width: 24px; height: 24px; position: relative; border: 1px solid var(--gold); border-radius: 50%; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold-ink); transform: translate(-50%, -50%); }
.faq-ic::before { width: 10px; height: 1.5px; }
.faq-ic::after { width: 1.5px; height: 10px; transition: opacity 0.2s var(--ease), transform 0.3s var(--ease); }
.faq[open] .faq-ic::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq p { padding: 0 0 20px; max-width: 46ch; font-size: 0.95rem; color: var(--ink-2); line-height: 1.7; animation: fadeIn 0.35s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); color: var(--cream); padding-block: clamp(3.5rem, 8vw, 5.5rem) 2rem; }
.site-footer a { border-bottom: 1px solid rgba(255, 255, 255, 0.25); transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.site-footer a:hover { color: var(--gold-2); border-color: var(--gold-2); }
.site-footer address { font-style: normal; line-height: 1.8; }

.news { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--gline); }
.news > div:first-child { max-width: 36rem; }
.news .f-title { margin-bottom: 6px; }
.news p { font-size: 0.9rem; color: rgba(255, 249, 238, 0.68); line-height: 1.7; }
.news-form { display: flex; gap: 8px; flex: 1; min-width: 250px; max-width: 380px; }
.news-form input {
  flex: 1; min-width: 0; padding: 13px 18px;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08); color: var(--cream);
  transition: border-color 0.2s var(--ease);
}
.news-form input::placeholder { color: rgba(255, 249, 238, 0.4); }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form .btn { background: var(--cream); color: var(--dark); }
.news-form .btn:hover { background: var(--gold); }
.news-msg { flex-basis: 100%; font-size: 0.85rem; color: var(--gold-2); min-height: 1rem; }

.f-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-top: 40px; }
.f-col { display: flex; flex-direction: column; gap: 14px; font-size: 0.95rem; line-height: 1.8; }
.f-title { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 2px; }
.f-list { display: flex; flex-direction: column; }
.f-list li { display: flex; justify-content: space-between; gap: 1rem; padding-block: 8px; border-bottom: 1px solid var(--gline); }
.f-list span { font-size: 0.85rem; color: rgba(255, 249, 238, 0.6); }
.f-list strong { font-weight: 600; }
.map-link { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; }
.map-embed { width: 100%; max-width: 340px; }
.map-embed iframe { width: 100%; height: 200px; border: 0; border-radius: 16px; margin-top: 12px; filter: grayscale(0.25) contrast(0.95); }
.f-social { display: flex; gap: 18px; }

.f-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--gline); font-size: 0.8rem; color: rgba(255, 249, 238, 0.55); }
.f-demo code { font-family: var(--sans); }

/* ============ WHATSAPP FLOTANTE ============ */
.floating-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border-radius: 999px;
  background: var(--dark); color: var(--cream);
  font-size: 0.86rem; font-weight: 800;
  box-shadow: 0 18px 40px -12px rgba(26, 21, 18, 0.5);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.floating-wa:hover { transform: translateY(-3px); background: #2B2219; }

/* ============ MODAL DE RESERVA ============ */
.modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20, 16, 12, 0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: fadeIn 0.25s var(--ease); }
.modal-panel {
  position: relative;
  width: min(760px, 100%); max-height: min(88vh, 780px); overflow-y: auto;
  background: var(--cream);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.35s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); background: var(--paper);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.modal-close:hover { background: var(--dark); color: var(--cream); }
.modal-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.modal-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 24px; }
.pill + .modal-title { margin-top: 16px; }

/* formulario */
.bk-step { border: 0; }
.bk-step + .bk-step { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.bk-label { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 14px; }

.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 11px 14px; cursor: pointer;
  background: var(--paper);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.opt:hover { border-color: var(--gold); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt-dot {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--ink-2); position: relative;
  transition: border-color 0.18s var(--ease);
}
.opt input:checked ~ .opt-dot { border-color: var(--gold); }
.opt input:checked ~ .opt-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold); }
.opt input:checked ~ .opt-name { color: var(--dark); }
.opt:has(input:checked) { border-color: var(--dark); background: var(--cream-2); }
.opt-name { flex: 1; display: flex; flex-wrap: wrap; gap: 2px 6px; align-items: baseline; font-size: 0.92rem; font-weight: 700; color: var(--ink-2); }
.opt-time { font-size: 0.74rem; font-weight: 500; color: var(--ink-2); opacity: 0.8; }
.opt-price { font-family: var(--serif); font-size: 0.98rem; font-weight: 600; color: var(--gold-ink); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* calendario */
.bk-cal { max-width: 22rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; text-transform: capitalize; }
.cal-nav {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.cal-nav:hover:not(:disabled) { border-color: var(--dark); background: var(--cream-2); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-week { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.cal-week span { text-align: center; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); padding-block: 6px; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.day {
  aspect-ratio: 1; display: grid; place-items: center;
  font-size: 0.88rem; border: 1px solid transparent; border-radius: 10px;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s;
}
.day.empty { pointer-events: none; }
.day.off { color: rgba(107, 93, 76, 0.35); text-decoration: line-through; cursor: not-allowed; }
.day.available:hover { border-color: var(--gold); }
.day.selected { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.day.today { border-color: var(--line-strong); font-weight: 800; }

.slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 16px; }
.slot {
  padding: 10px 4px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 0.85rem; text-align: center; font-variant-numeric: tabular-nums;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s;
}
.slot:hover:not(.off):not(.selected) { border-color: var(--gold); }
.slot.off { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }
.slot.selected { background: var(--dark); border-color: var(--dark); color: var(--cream); }
.slots-empty { grid-column: 1 / -1; font-size: 0.85rem; color: var(--ink-2); font-style: italic; padding: 6px 0; }

/* campos */
.fields { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field textarea {
  padding: 12px 14px; border-radius: 12px;
  border: 1.2px solid rgba(26, 21, 18, 0.2); background: var(--paper);
  transition: border-color 0.18s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field.error input, .field.error textarea { border-color: var(--err); }
.field-err { font-size: 0.8rem; color: var(--err); min-height: 1rem; }
.chk { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-2); cursor: pointer; }
.chk input { width: 1.05rem; height: 1.05rem; accent-color: var(--gold-ink); }

.book-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.book-summary { font-size: 0.9rem; color: var(--ink-2); line-height: 1.55; flex: 1; min-width: 200px; }
.book-summary strong { color: var(--dark); font-weight: 700; }

/* ticket */
.ticket-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-bottom: 2px dashed var(--dark); padding-bottom: 14px; }
.t-stamp { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-ink); }
.t-ref { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: 0.04em; }
.t-rows { display: grid; padding-block: 14px; }
.tk-row { display: flex; justify-content: space-between; gap: 1rem; padding-block: 10px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.tk-row { border-bottom: 1px solid var(--line); }
.tk-row:last-child { border-bottom: 0; }
.tk-row dt { color: var(--ink-2); font-size: 0.84rem; }
.tk-row dd { text-align: right; font-weight: 700; }
.t-barcode { height: 3rem; margin: 6px 0 18px; background: repeating-linear-gradient(90deg, var(--dark) 0 2px, transparent 2px 5px, var(--dark) 5px 6px, transparent 6px 11px, var(--dark) 11px 14px, transparent 14px 16px); }
.t-note { font-size: 0.85rem; color: var(--ink-2); font-style: italic; margin-bottom: 18px; }
.tk-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ============ REVEAL ============ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .treat-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-auto-rows: 180px; }
}

@media (max-width: 980px) {
  .hero { padding: 130px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 480px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stylists-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; max-width: 40rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-card--wide { grid-column: span 2; grid-row: span 2; }
  .f-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-intro { position: static; margin-bottom: 1.4rem; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .stylists-grid { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-card--wide { grid-column: span 2; }
  .hero-visual { min-height: 420px; }
  .hero-photo { inset: 0 0 70px 0; border-radius: 30px; }
  .chip-top { right: 12px; top: 18px; }
  .chip-bottom { left: 12px; bottom: 108px; }
  .booking-chip { right: 10px; width: 210px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .head-note, .rating-summary { text-align: left; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .book-foot { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; }
  .tk-actions .btn { width: 100%; }
  .f-bottom { flex-direction: column; }
  .news { flex-direction: column; align-items: stretch; }
  .news-form { max-width: none; }
}

/* ============ MOVIMIENTO REDUCIDO ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .brands-track { animation: none; }
}

/* ============ IMPRESIÓN ============ */
@media print {
  .site-header, .mobile-menu, .floating-wa, .modal-close, .modal-backdrop { display: none !important; }
  .modal { position: static; display: block; padding: 0; }
  .modal-panel { max-height: none; overflow: visible; box-shadow: none; border-radius: 0; padding: 0; }
}