/* ============================================================
   H2O — Salones de Belleza | Estilos
   Paleta: negro tinta + dorado (Only Men) / azul noche + crema (Hair Studio)
   ============================================================ */

:root {
  --ink: #0b0d10;
  --ink-2: #101319;
  --panel: #14181f;
  --panel-2: #1b2029;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #c9a24b;
  --gold-2: #e2c072;
  --gold-soft: rgba(201, 162, 75, 0.14);
  --navy: #0f2440;
  --navy-2: #16375f;
  --cream: #f6f1e7;
  --text: #ece9e2;
  --muted: #9aa2ad;
  --white: #ffffff;
  --ok: #4fae6b;
  --busy: #d5624f;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: .3px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
}
.section-pad { padding: clamp(56px, 8vw, 110px) 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a06; box-shadow: 0 12px 30px -12px rgba(201,162,75,.7); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201,162,75,.85); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: .6rem 1.05rem; font-size: .74rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.step-hint svg { width: 15px; height: 15px; vertical-align: -2px; opacity: .8; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,12,15,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.brand { display: flex; align-items: baseline; gap: .55rem; }
.wordmark { font-family: var(--serif); font-weight: 700; font-size: 1.9rem; letter-spacing: .04em; color: var(--white); line-height: 1; }
.wordmark::after { content: ""; }
.brand .b-sub { font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 1.55rem; margin-left: auto; }
.nav-links a { font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--muted); position: relative; padding: .3rem 0; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: .4rem; }
.hamburger { display: none; margin-left: auto; background: none; border: 0; color: var(--white); cursor: pointer; padding: 8px; }
.hamburger svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: grid; grid-template-columns: 1fr 1fr; }
.hero-half { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 90px) clamp(28px, 5vw, 70px); overflow: hidden; }
.hero-half::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: .9; }
.hero-men { background: var(--ink); }
.hero-men::before { background:
  radial-gradient(120% 100% at 15% 10%, rgba(201,162,75,.16), transparent 55%),
  linear-gradient(180deg, #0a0b0d 0%, #131313 100%);
}
.hero-women { background: var(--navy); }
.hero-women::before { background:
  radial-gradient(120% 100% at 85% 10%, rgba(226,192,114,.2), transparent 55%),
  linear-gradient(180deg, #0f2440 0%, #163a63 100%);
}
.hero-half > * { position: relative; z-index: 1; }
.hero-half .kicker { font-family: var(--serif); font-size: clamp(2.6rem, 4.6vw, 4rem); color: var(--white); }
.hero-half .sub { color: rgba(255,255,255,.82); margin: .5rem 0 1.6rem; max-width: 30ch; font-size: 1.02rem; }
.hero-tag {
  position: absolute; z-index: 3; left: 50%; bottom: 6%; transform: translateX(-50%);
  text-align: center; width: max-content; pointer-events: none;
}
.hero-tag .big { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4.2rem); color: rgba(255,255,255,.96); line-height: .98; text-shadow: 0 6px 30px rgba(0,0,0,.6); }
.hero-tag .big em { color: var(--gold-2); font-style: italic; }
.badge-line { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.badge-line::before, .badge-line::after { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .6; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-block: 1px solid var(--line); }
.stat { text-align: center; padding: clamp(28px,4vw,48px) 1rem; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-2); }
.stat .lbl { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--muted); }
.stat + .stat { border-left: 1px solid var(--line); }

/* ---------- Section header ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 5vw, 56px); }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: .5rem 0 .6rem; color: var(--white); }
.sec-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Toggle marca ---------- */
.brand-toggle { display: inline-flex; background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; }
.brand-toggle button { border: 0; background: transparent; color: var(--muted); font-family: var(--sans); font-weight: 600; letter-spacing: .05em; font-size: .82rem; padding: .6rem 1.4rem; border-radius: 999px; cursor: pointer; transition: .2s; }
.brand-toggle button.active { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a06; }

/* ---------- Servicios ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 34px; }
.svc-card { background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; transition: transform .2s, border-color .2s, box-shadow .25s; }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,.5); box-shadow: var(--shadow); }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); display: grid; place-items: center; color: var(--gold-2); margin-bottom: .3rem; }
.svc-ico svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.3rem; color: var(--white); }
.svc-card .desc { color: var(--muted); font-size: .9rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.svc-price { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-2); }
.svc-price small { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; display: block; }

/* ---------- Equipo ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.team-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; padding-bottom: 1rem; transition: transform .2s, border-color .2s; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,.5); }
.team-avatar { aspect-ratio: 1/1; display: grid; place-items: center; font-family: var(--serif); font-size: 2.6rem; color: #241a06; font-weight: 700; }
.team-card h4 { color: var(--white); font-size: 1.15rem; margin-top: .7rem; }
.team-card .role { color: var(--gold); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }
.team-card .spec { color: var(--muted); font-size: .82rem; padding: 0 .8rem; margin-top: .25rem; }

/* ---------- Nosotros ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) contrast(1.02); }
.about-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem .9rem; font-size: .82rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.75)); }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.about-text p strong { color: var(--text); }
.about-text p:first-child { font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; color: var(--text); font-style: italic; }
.signature { display: flex; align-items: center; gap: .9rem; margin: 1.4rem 0; }
.sig-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; color: #241a06; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.sig-name { font-family: var(--serif); font-size: 1.25rem; color: #fff; }
.sig-role { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.owners { display: flex; gap: 12px; flex-wrap: wrap; }
.owner-chip { background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; padding: .7rem 1rem; }
.owner-chip .oc-role { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.owner-chip .oc-name { display: block; font-weight: 700; color: #fff; }
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.value { background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.value .v-num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.value h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: 1.02rem; margin: .4rem 0 .3rem; }
.value p { color: var(--muted); font-size: .88rem; }

/* ---------- Sucursales ---------- */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.branch-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, border-color .2s, box-shadow .25s; }
.branch-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,.45); box-shadow: var(--shadow); }
.branch-photo { height: 150px; position: relative; display: grid; place-items: center; overflow: hidden; }
.branch-photo .glyph { font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: rgba(255,255,255,.9); letter-spacing: .06em; z-index: 1; }
.branch-photo .chip { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; background: rgba(0,0,0,.55); padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); }
.branch-status { position: absolute; top: 12px; right: 12px; z-index: 2; font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; display: flex; align-items: center; gap: 5px; }
.branch-status.open { background: rgba(79,174,107,.16); color: #8fe0a6; }
.branch-status.closed { background: rgba(213,98,79,.16); color: #f0a396; }
.branch-status.soon { background: rgba(201,162,75,.16); color: var(--gold-2); }
.branch-card.is-soon { opacity: .82; }
.branch-card.is-soon .branch-photo { filter: grayscale(.4); }
.branch-status .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.branch-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.branch-body h3 { color: var(--white); font-size: 1.35rem; }
.branch-line { display: flex; gap: .55rem; align-items: flex-start; color: var(--muted); font-size: .86rem; }
.branch-line svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.branch-actions { display: flex; gap: .5rem; margin-top: auto; padding-top: .8rem; }
.branch-actions .btn { flex: 1; }

/* ---------- Reservas ---------- */
.book { background: linear-gradient(180deg, var(--ink-2), #0a0c10); }
.stepper { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .3rem; margin: 0 auto 2.4rem; max-width: 760px; }
.step-dot { display: flex; flex-direction: column; align-items: center; gap: .4rem; flex: 1; min-width: 84px; position: relative; }
.step-dot .circle { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line); font-weight: 700; font-size: .85rem; color: var(--muted); transition: .25s; z-index: 1; }
.step-dot .txt { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.step-dot::after { content: ""; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.step-dot:last-child::after { display: none; }
.step-dot.done .circle, .step-dot.active .circle { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a06; border-color: transparent; }
.step-dot.active .txt, .step-dot.done .txt { color: var(--white); }

.book-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.book-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 34px); min-height: 420px; }
.book-panel h3.step-title { font-size: 1.7rem; color: var(--white); margin-bottom: .3rem; }
.book-panel .step-hint { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.book-step { display: none; animation: fade .35s ease; }
.book-step.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* opciones (marca / servicio) */
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.opt { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem; cursor: pointer; background: var(--ink-2); transition: .2s; display: flex; flex-direction: column; gap: .3rem; text-align: left; }
.opt:hover { border-color: rgba(201,162,75,.55); transform: translateY(-2px); }
.opt.sel { border-color: var(--gold); background: var(--gold-soft); box-shadow: inset 0 0 0 1px var(--gold); }
.opt h4 { color: var(--white); font-size: 1.15rem; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }
.opt .o-sub { color: var(--muted); font-size: .82rem; }
.opt .o-meta { display: flex; justify-content: space-between; align-items: center; margin-top: .4rem; }
.opt .o-price { color: var(--gold-2); font-family: var(--serif); font-size: 1.15rem; }
.opt .o-dur { font-size: .72rem; color: var(--muted); }

/* ---------- Mapa 3D / 4D ---------- */
.map-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: 1rem; }
.map-legend { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .74rem; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.lg-dot { width: 10px; height: 10px; border-radius: 3px; }
.lg-free { background: var(--ok); }
.lg-busy { background: var(--busy); }
.lg-sel { background: var(--gold); }
.live-clock { font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: .45rem; }
.live-clock .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(79,174,107,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(79,174,107,.55);} 70%{ box-shadow: 0 0 0 9px rgba(79,174,107,0);} 100%{ box-shadow:0 0 0 0 rgba(79,174,107,0);} }

.studio {
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201,162,75,.10), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 2px, transparent 2px 46px),
    linear-gradient(180deg, #14181f, #0c0f14);
  border: 1px solid var(--line);
  padding: 46px 26px 30px;
  perspective: 1400px;
  overflow-x: auto;
}
.studio-floor {
  transform: rotateX(46deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px 26px;
  min-width: 480px;
  margin: 0 auto;
  max-width: 720px;
  transition: transform .5s ease;
}
.studio.flat .studio-floor { transform: rotateX(0deg) rotateZ(0deg); }
.station {
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  transition: transform .25s ease;
}
.station .seat {
  position: relative;
  height: 78px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, #232a34, #171c24);
  border: 1px solid var(--line);
  box-shadow: 0 18px 22px -14px rgba(0,0,0,.85);
  display: grid;
  place-items: center;
  transform: translateZ(0);
  transition: .25s;
}
.station .seat::before { /* respaldo silla */
  content: ""; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 54%; height: 20px; border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #2c333e, #20262f); border: 1px solid var(--line); border-bottom: 0;
}
.station .mirror { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 40%; height: 24px; border-radius: 6px; background: linear-gradient(180deg, rgba(201,162,75,.35), rgba(201,162,75,.05)); border: 1px solid rgba(201,162,75,.4); }
.station .stnum { font-family: var(--serif); font-size: 1.5rem; color: rgba(255,255,255,.35); transform: rotateX(-46deg); }
.station .tag {
  position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%) rotateX(-46deg);
  transform-origin: center bottom;
  background: rgba(8,10,13,.92); border: 1px solid var(--line); border-radius: 8px;
  padding: 5px 9px; width: max-content; max-width: 150px; text-align: center;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.7); pointer-events: none;
}
.station .tag .n { font-size: .74rem; font-weight: 700; color: var(--white); }
.station .tag .s { font-size: .6rem; color: var(--muted); }
.station .status-pill { display: inline-flex; align-items: center; gap: 4px; font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.station .status-pill .d { width: 6px; height: 6px; border-radius: 50%; }
.station.free .seat { border-color: rgba(79,174,107,.5); }
.station.busy .seat { border-color: rgba(213,98,79,.5); opacity: .78; }
.station.busy { cursor: not-allowed; }
.station.sel .seat { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), 0 18px 26px -12px rgba(201,162,75,.6); background: linear-gradient(180deg, #3a3116, #241d0c); }
.station:not(.busy):hover { transform: translateZ(26px) scale(1.04); }
.free-c { color: #8fe0a6; } .busy-c { color: #f0a396; }

/* Calendario / horas */
.cal-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 1.2rem; }
.cal-day { flex: 0 0 auto; width: 64px; text-align: center; padding: .6rem .3rem; border-radius: 12px; border: 1px solid var(--line); background: var(--ink-2); cursor: pointer; transition: .2s; }
.cal-day:hover { border-color: rgba(201,162,75,.5); }
.cal-day.sel { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a06; border-color: transparent; }
.cal-day.off { opacity: .35; cursor: not-allowed; }
.cal-day .dow { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; }
.cal-day .dnum { font-family: var(--serif); font-size: 1.35rem; line-height: 1.1; }
.cal-day .mon { font-size: .6rem; text-transform: uppercase; color: inherit; opacity: .8; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 8px; }
.slot { padding: .6rem .2rem; text-align: center; border-radius: 10px; border: 1px solid var(--line); background: var(--ink-2); font-size: .82rem; cursor: pointer; transition: .18s; font-weight: 600; }
.slot:hover { border-color: var(--gold); }
.slot.busy { background: rgba(213,98,79,.1); color: #b06a5e; border-color: rgba(213,98,79,.25); cursor: not-allowed; text-decoration: line-through; }
.slot.sel { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a06; border-color: transparent; }

.alert { border-radius: 12px; padding: 1rem 1.1rem; margin-top: 1.2rem; font-size: .9rem; display: flex; gap: .7rem; align-items: flex-start; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.alert-busy { background: rgba(213,98,79,.1); border: 1px solid rgba(213,98,79,.3); color: #f0b5a9; }
.alert-ok { background: rgba(79,174,107,.1); border: 1px solid rgba(79,174,107,.3); color: #a6e5ba; }
.reco-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: .7rem; }
.reco-chip { background: rgba(79,174,107,.14); border: 1px solid rgba(79,174,107,.4); color: #bdeecb; padding: .45rem .8rem; border-radius: 999px; font-size: .78rem; cursor: pointer; font-weight: 600; transition: .18s; }
.reco-chip:hover { background: rgba(79,174,107,.28); }

/* Resumen */
.summary { position: sticky; top: 92px; background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.summary h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.sum-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.sum-row .k { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.sum-row .v { color: var(--white); font-size: .9rem; text-align: right; font-weight: 600; }
.sum-row .v.empty { color: #4b525c; font-weight: 400; font-style: italic; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; }
.sum-total .k { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.sum-total .v { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); }
.book-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }

/* Confirmación */
.confirm-box { text-align: center; padding: 1rem; }
.confirm-check { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center; background: rgba(79,174,107,.15); border: 1px solid rgba(79,174,107,.4); }
.confirm-check svg { width: 38px; height: 38px; color: var(--ok); }
.ticket { text-align: left; background: var(--ink-2); border: 1px dashed var(--line); border-radius: 12px; padding: 1.2rem; margin: 1.3rem auto 0; max-width: 380px; }

/* ---------- Productos ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.prod-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; text-align: center; transition: .2s; }
.prod-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,.4); }
.prod-thumb { height: 120px; border-radius: 10px; background: radial-gradient(circle at 50% 35%, rgba(201,162,75,.18), transparent 60%), var(--ink-2); display: grid; place-items: center; margin-bottom: .8rem; }
.prod-thumb svg { width: 44px; height: 44px; color: var(--gold-2); opacity: .8; }
.prod-card h4 { font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--white); min-height: 2.4em; }
.prod-card .brand-name { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.prod-card .price { font-family: var(--serif); font-size: 1.35rem; color: var(--gold-2); margin: .3rem 0 .6rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.contact-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1.1rem; }
.field { margin-bottom: .9rem; }
.field label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .35rem; }
.field input, .field textarea, .field select { width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; color: var(--text); padding: .75rem .9rem; font-family: var(--sans); font-size: .9rem; transition: border-color .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.contact-line { display: flex; align-items: center; gap: .9rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.contact-ico svg { width: 22px; height: 22px; }
.wa { background: rgba(37,211,102,.14); color: #4fe38a; }
.ig { background: linear-gradient(135deg, rgba(225,48,108,.18), rgba(255,199,53,.18)); color: #ff8ab5; }
.fb { background: rgba(59,89,152,.18); color: #7d9be0; }
.contact-line .c-k { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-line .c-v { color: var(--white); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #07090c; border-top: 1px solid var(--line); padding: clamp(40px,6vw,70px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.foot-grid h4 { color: var(--white); font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; }
.foot-grid a { display: block; color: var(--muted); font-size: .88rem; padding: .28rem 0; transition: color .2s; }
.foot-grid a:hover { color: var(--gold); }
.foot-brand img { height: 34px; filter: brightness(0) invert(1); margin-bottom: .8rem; }
.foot-brand p { color: var(--muted); font-size: .88rem; max-width: 30ch; }
.foot-social { display: flex; gap: .6rem; margin-top: 1rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); }
.foot-social a:hover { color: var(--gold); border-color: var(--gold); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { text-align: center; color: #5a616b; font-size: .8rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }

/* ---------- Botón flotante ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab a { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: .82rem; box-shadow: 0 14px 30px -10px rgba(0,0,0,.6); transition: transform .2s; }
.fab a:hover { transform: translateY(-3px); }
.fab .fab-wa { background: #25d366; color: #06331a; }
.fab .fab-book { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a06; }
.fab svg { width: 20px; height: 20px; }

/* ---------- Modal Mapa ---------- */
.map-modal { position: fixed; inset: 0; z-index: 90; background: rgba(5,7,10,.82); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 4vw; }
.map-modal.open { display: flex; animation: fade .25s ease; }
.map-modal-card { position: relative; width: min(920px, 96vw); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-modal-head { padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line); }
.map-modal-head h3 { color: #fff; font-size: 1.5rem; }
.map-modal-addr { color: var(--muted); font-size: .88rem; display: flex; align-items: center; gap: .4rem; margin-top: .2rem; }
.map-modal-addr svg { width: 15px; height: 15px; color: var(--gold); }
.map-frame-wrap { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--ink-2); }
.map-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(8,10,13,.85); color: #fff; cursor: pointer; display: grid; place-items: center; }
.map-close:hover { border-color: var(--gold); color: var(--gold); }
.map-close svg { width: 20px; height: 20px; }
@media (max-width: 620px) { .map-frame-wrap { aspect-ratio: 3 / 4; } }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 65; background: rgba(8,10,13,.97); backdrop-filter: blur(6px); display: none; flex-direction: column; padding: 90px 8vw 40px; gap: .4rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 1.9rem; color: var(--text); padding: .5rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { color: var(--gold); }
.mm-close { position: absolute; top: 24px; right: 8vw; background: none; border: 0; color: var(--white); cursor: pointer; }
.mm-close svg { width: 30px; height: 30px; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .book-layout { grid-template-columns: 1fr; }
  .summary { position: relative; top: 0; order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .about-grid { grid-template-columns: 1fr; gap: 26px; }
  .about-photo { max-height: 340px; }
  .values-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-half { min-height: 58vh; }
  .hero-tag { position: relative; bottom: auto; left: auto; transform: none; margin: 2rem auto 0; padding: 1.5rem; }
  .hero-women .hero-tag { display: none; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat .num { font-size: 2rem; }
  .stat + .stat { border-left: 1px solid var(--line); }
  .studio-floor { transform: rotateX(38deg) rotateZ(-1deg); }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
  .stepper .step-dot .txt { display: none; }
  .fab a span { display: none; }
  .fab a { padding: .9rem; }
}
