/* =========================================================================
   LA MUSSA SALÓN — Sistema de diseño
   Estética elegante: negro + dorado + crema. Mobile-first, nivel Awwwards.
   Tipografía display: Cormorant Garamond · Body: Jost.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0f0d0c;
  --bg-soft: #171311;
  --bg-deep: #1c1714;
  --card: #16110e;
  --card-2: #1d1713;
  --ink: #f5efe6;
  --ink-2: #c9bdac;
  --ink-3: #948778;
  --gold: #c9a15a;
  --gold-2: #a9833f;
  --gold-soft: rgba(201, 161, 90, .14);
  --gold-line: rgba(201, 161, 90, .30);
  --nude: #f5efe6;
  --line: rgba(201, 161, 90, .16);
  --footer: #0a0806;
  --footer-ink: #b3a793;
  --success: #7ba05b;
  --danger: #d27868;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .35), 0 10px 30px rgba(0, 0, 0, .25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
  --gold-glow: 0 8px 26px rgba(201, 161, 90, .35);
  --radius: 20px;
  --radius-sm: 14px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nav-h: 70px;
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(1200px 600px at 85% -10%, rgba(201, 161, 90, .06), transparent 60%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; margin: 0 0 .45em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: #14100a; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Tipografía utilitaria ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 28px; height: 1px; background: var(--gold); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 500; font-size: .96rem; line-height: 1; letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(135deg, #d8b06a, var(--gold) 45%, var(--gold-2)); color: #181209; box-shadow: var(--gold-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(201, 161, 90, .48); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--gold-line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .18); }
.btn-dark:hover { background: rgba(255, 255, 255, .14); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn-block { width: 100%; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .28); }
.btn-whatsapp:hover { background: #1fb457; }
.btn-hero-ghost { background: rgba(255, 255, 255, .07); color: #fff; border: 1px solid rgba(201, 161, 90, .45); backdrop-filter: blur(8px); }
.btn-hero-ghost:hover { background: rgba(201, 161, 90, .16); border-color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header .inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
}
.site-header.scrolled { background: rgba(15, 13, 12, .88); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #d8b06a, var(--gold) 45%, var(--gold-2));
  display: grid; place-items: center; color: #14100a; font-family: var(--font-display);
  font-weight: 600; font-size: 1.4rem; box-shadow: var(--gold-glow);
  border: 1px solid rgba(255, 255, 255, .25);
}
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; line-height: 1; color: var(--ink); }
.brand-sub { display: block; font-family: var(--font-body); font-size: .6rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav-links { display: none; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px; font-size: .93rem; font-weight: 400; color: var(--ink-2);
  transition: color .16s, background .16s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(201, 161, 90, .10); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.burger { width: 44px; height: 44px; border-radius: 50%; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; position: relative; transition: background .2s; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .2s, top .2s; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

/* Menú móvil */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(15, 13, 12, .98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
  padding: 12px 20px 22px; transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  max-height: calc(100vh - var(--nav-h)); overflow: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 14px 6px; font-size: 1.06rem; font-weight: 400; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Hero (split) ---------- */
.hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 34px) 0 0; }
.hero::before {
  content: ''; position: absolute; top: -180px; right: -180px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201, 161, 90, .16), transparent 65%); pointer-events: none;
}
.hero-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 8px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 17px; border-radius: 999px;
  background: rgba(201, 161, 90, .10); border: 1px solid var(--gold-line); font-size: .8rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.6rem); color: var(--ink); max-width: 15ch; margin-bottom: .45em; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { font-size: clamp(1.02rem, 2.3vw, 1.22rem); max-width: 46ch; color: var(--ink-2); margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 42px; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: 160px 160px 24px 24px; overflow: hidden;
  border: 1px solid var(--gold-line); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; max-width: 420px; margin: 0 auto;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15, 13, 12, .35)); }
.hero-media .chip {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: rgba(15, 13, 12, .72); backdrop-filter: blur(10px); border: 1px solid var(--gold-line);
  color: var(--ink); font-size: .8rem; letter-spacing: .06em; padding: 9px 16px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Secciones ---------- */
.section { padding: 74px 0; }
.section-tight { padding: 44px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4.8vw, 3rem); }
.section-head p { color: var(--ink-2); font-size: 1.06rem; }
.lead-in { color: var(--ink-2); }

/* ---------- Tarjetas de características / valores ---------- */
.feature-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.feature-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line); padding: 28px 24px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.feature-card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; background: var(--gold-soft); border: 1px solid var(--line); }
.feature-card h3 { font-size: 1.35rem; color: var(--ink); }
.feature-card p { color: var(--ink-2); font-size: .97rem; margin-bottom: 0; }
.feature-link { font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }
.feature-link:hover { gap: 10px; }

/* ---------- Banda de historia / sobre ---------- */
.story-strip { background: var(--footer); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.story-strip .container { display: grid; gap: 32px; grid-template-columns: 1fr; padding-top: 68px; padding-bottom: 68px; }
.story-strip h2 { color: #fff; }
.story-strip p { color: var(--footer-ink); }
.story-mark {
  font-family: var(--font-display); font-size: clamp(4.6rem, 18vw, 9rem); line-height: .85; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold); letter-spacing: -.02em; user-select: none;
}

/* ---------- Rejilla de servicios ---------- */
.service-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.service-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.service-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-deep); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media .ph-emoji { position: relative; z-index: 1; width: 100%; height: 100%; display: grid; place-items: center; font-size: 3.2rem; }
.service-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.service-body .cat { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.service-body h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 7px; }
.service-body .desc { color: var(--ink-2); font-size: .93rem; margin-bottom: 14px; flex: 1; }
.service-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.service-meta .dur { font-size: .78rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: 5px; }
.service-meta .cita { font-size: .72rem; letter-spacing: .04em; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--line); padding: 3px 10px; border-radius: 999px; }
.service-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--gold); white-space: nowrap; }
.price small { font-family: var(--font-body); font-weight: 400; font-size: .82rem; color: var(--ink-3); }
.price.free { font-size: 1rem; font-weight: 500; color: var(--ink-2); }
.reserve-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 11px 20px; border-radius: 999px;
  background: linear-gradient(135deg, #d8b06a, var(--gold) 45%, var(--gold-2)); color: #181209;
  font-weight: 500; font-size: .9rem; transition: transform .16s, box-shadow .16s; box-shadow: var(--gold-glow);
}
.reserve-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201, 161, 90, .42); }
.reserve-btn:active { transform: scale(.95); }

/* ---------- Filtros (Servicios) ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-chip {
  padding: 10px 19px; border-radius: 999px; background: var(--card); border: 1px solid var(--line);
  font-weight: 400; font-size: .9rem; color: var(--ink-2); transition: all .16s;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active { background: linear-gradient(135deg, #d8b06a, var(--gold)); border-color: var(--gold); color: #181209; font-weight: 500; }

.cat-block { margin-bottom: 50px; }
.cat-title { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.cat-title .emoji { font-size: 1.7rem; }
.cat-title h3 { font-size: 1.85rem; margin: 0; color: var(--ink); }
.cat-desc { color: var(--ink-2); margin-bottom: 24px; max-width: 60ch; }

/* ---------- Placeholder editorial (servicios sin foto) ---------- */
.ph-manicura   { background: radial-gradient(circle at 50% 45%, #2c241d 0%, #201a15 55%, #15100d 100%); }
.ph-pedicura   { background: radial-gradient(circle at 50% 45%, #2a251f 0%, #1d1813 55%, #14100d 100%); }
.ph-tratamiento{ background: radial-gradient(circle at 50% 45%, #2b2319 0%, #1f1811 55%, #15100c 100%); }
.ph-bg { position: relative; }
.ph-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201, 161, 90, .08), transparent 55%); }

/* ---------- Galería ---------- */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.gallery-grid figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); position: relative; }
.gallery-grid figure:nth-child(3n+1) { aspect-ratio: 3 / 4; }
.gallery-grid figure:nth-child(3n+2) { aspect-ratio: 1 / 1; }
.gallery-grid figure:nth-child(3n) { aspect-ratio: 3 / 4; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* ---------- Testimonios ---------- */
.reviews-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.review-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: border-color .2s ease; }
.review-card:hover { border-color: var(--gold-line); }
.review-card .stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; margin-bottom: 12px; }
.review-card p { font-size: .98rem; color: var(--ink); }
.review-card .who { display: flex; align-items: center; gap: 11px; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-line); display: grid; place-items: center; font-weight: 500; color: var(--gold); font-family: var(--font-display); font-size: 1.2rem; }
.review-card .who .name { font-weight: 500; font-size: .96rem; color: var(--ink); }
.review-card .who .zone { font-size: .8rem; color: var(--ink-3); }
.review-card .r-tag { display: inline-block; margin-top: 14px; font-size: .72rem; letter-spacing: .04em; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--line); padding: 3px 11px; border-radius: 999px; }

/* ---------- CTA final ---------- */
.final-cta { background: var(--footer); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 300px at 50% 0%, rgba(201, 161, 90, .12), transparent 60%); }
.final-cta .container { position: relative; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
.final-cta p { color: var(--footer-ink); }
.final-cta .ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); color: var(--footer-ink); padding: 60px 0 0; border-top: 1px solid var(--line); }
.site-footer .grid { display: grid; gap: 34px; grid-template-columns: 1fr; padding-bottom: 42px; }
.site-footer h4 { color: #fff; font-size: .86rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 500; }
.site-footer a { color: var(--footer-ink); display: block; padding: 5px 0; font-size: .93rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand { margin-bottom: 16px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: var(--gold); }
.site-footer p { font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(201, 161, 90, .14); padding: 22px 0; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.social-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.social-row a { display: inline-flex; align-items: center; gap: 7px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; }
.social-row a:hover { border-color: var(--gold-line); color: var(--gold); }

/* ---------- FAB WhatsApp ---------- */
.wa-fab {
  position: fixed; right: 18px; bottom: 90px; z-index: 80; width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 27px; height: 27px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 100px; transform: translateX(-50%) translateY(20px);
  background: #221b15; color: var(--ink); padding: 13px 24px; border-radius: 999px; font-weight: 400; font-size: .92rem;
  border: 1px solid var(--gold-line); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: all .3s; z-index: 200; white-space: nowrap; max-width: 92vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Animaciones de aparición ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page hero (vistas internas) ---------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + 58px) 0 52px; border-bottom: 1px solid var(--line); background: radial-gradient(900px 420px at 80% -20%, rgba(201, 161, 90, .10), transparent 60%); }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); max-width: 22ch; }
.page-hero p { color: var(--ink-2); max-width: 62ch; font-size: 1.08rem; }

/* ---------- Formularios ---------- */
.form-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--line); padding: 28px 24px; }
.form-note { font-size: .83rem; color: var(--ink-3); margin-top: 10px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 500; letter-spacing: .03em; margin-bottom: 8px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--bg-deep); color: var(--ink); transition: border-color .16s, box-shadow .16s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 161, 90, .16); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
input[type="date"] { color-scheme: dark; }

.radio-cards { display: grid; gap: 12px; grid-template-columns: 1fr; }
.radio-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; cursor: pointer; transition: border-color .16s, background .16s; background: var(--bg-deep); }
.radio-card:hover { border-color: var(--gold); }
.radio-card.selected { border-color: var(--gold); background: var(--gold-soft); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card .r-title { font-weight: 500; display: flex; align-items: center; gap: 8px; color: var(--ink); }
.radio-card .r-sub { font-size: .84rem; color: var(--ink-2); margin-top: 4px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-toggle { padding: 10px 17px; border-radius: 999px; border: 1px solid var(--line); font-weight: 400; font-size: .88rem; color: var(--ink-2); transition: all .16s; background: var(--bg-deep); }
.chip-toggle.on { background: linear-gradient(135deg, #d8b06a, var(--gold)); border-color: var(--gold); color: #181209; font-weight: 500; }

/* ---------- Wizard de reserva ---------- */
.wizard-steps { display: flex; gap: 8px; margin-bottom: 32px; }
.wizard-steps .step { flex: 1; text-align: center; }
.wizard-steps .dot { width: 100%; height: 3px; border-radius: 3px; background: var(--line); margin-bottom: 9px; }
.wizard-steps .step.active .dot { background: var(--gold); }
.wizard-steps .step.done .dot { background: var(--success); }
.wizard-steps .step span { font-size: .74rem; font-weight: 400; letter-spacing: .04em; color: var(--ink-3); }
.wizard-steps .step.active span { color: var(--gold); }

.wizard-panel { background: var(--card); border-radius: var(--radius); border: 1px solid var(--line); padding: 26px 22px; margin-bottom: 20px; }
.wizard-panel h3 { font-size: 1.45rem; color: var(--ink); }
.wizard-nav { display: flex; gap: 12px; justify-content: space-between; }

/* Selector de servicio en el wizard */
.service-pick { display: grid; gap: 10px; }
.service-pick .pick {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer; transition: all .16s; background: var(--bg-deep);
}
.service-pick .pick:hover { border-color: var(--gold); }
.service-pick .pick.selected { border-color: var(--gold); background: var(--gold-soft); }
.service-pick .pick .p-emoji { font-size: 1.4rem; }
.service-pick .pick .p-info { flex: 1; min-width: 0; }
.service-pick .pick .p-name { font-weight: 500; color: var(--ink); font-size: .98rem; }
.service-pick .pick .p-meta { font-size: .8rem; color: var(--ink-3); }
.service-pick .pick .p-price { font-family: var(--font-display); font-weight: 600; color: var(--gold); font-size: 1.15rem; white-space: nowrap; }

.order-summary { background: var(--bg-deep); border-radius: var(--radius-sm); padding: 16px 18px; border: 1px solid var(--line); }
.order-summary .os-line { display: flex; justify-content: space-between; font-size: .94rem; padding: 6px 0; color: var(--ink-2); }
.order-summary .os-line b { color: var(--ink); font-weight: 500; }
.order-summary .os-line .gold { color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.order-summary .os-total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 12px; font-size: 1.1rem; font-weight: 500; color: var(--ink); }

/* ---------- Acordeón FAQ ---------- */
.faq-group { margin-bottom: 30px; }
.accordion { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); overflow: hidden; margin-bottom: 10px; }
.accordion summary { list-style: none; cursor: pointer; padding: 17px 18px; font-weight: 400; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--ink); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform .2s; font-weight: 300; }
.accordion[open] summary::after { transform: rotate(45deg); }
.accordion .a-body { padding: 0 18px 18px; color: var(--ink-2); font-size: .95rem; }

/* ---------- Contacto ---------- */
.contacto-grid { display: grid; gap: 28px; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; height: 100%; }
.info-card h3 { font-size: 1.25rem; color: var(--ink); }
.info-card p, .info-card a { color: var(--ink-2); font-size: .96rem; }
.info-card a { display: inline-flex; align-items: center; gap: 7px; }
.info-card a:hover { color: var(--gold); }
.info-card .kv { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.info-card .kv:last-of-type { border-bottom: none; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 360px; border: 0; filter: grayscale(.2) contrast(1.02); }

/* ---------- Propietaria (Sobre) ---------- */
.owner-card { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.owner-card .owner-mark { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, #d8b06a, var(--gold) 45%, var(--gold-2)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; color: #14100a; box-shadow: var(--gold-glow); margin: 0 auto; }
.owner-card h3 { font-size: 1.7rem; color: var(--ink); }
.owner-card .rol { color: var(--gold); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .radio-cards { grid-template-columns: 1fr 1fr; }
  .story-strip .container { grid-template-columns: 1fr 2fr; }
  .owner-card { grid-template-columns: auto 1fr; }
  .owner-card .owner-mark { margin: 0; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .hero-media .frame { max-width: none; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .burger { display: none; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer .grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hero { padding: calc(var(--nav-h) + 50px) 0 40px; }
  .section { padding: 100px 0; }
  .radio-cards { grid-template-columns: 1fr 1fr 1fr; }
  .contacto-grid { grid-template-columns: 1.1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
