:root {
  --emerald: #0B6B4F;
  --emerald-dark: #064D38;
  --emerald-deep: #032D21;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-pale: #F0E2B8;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --white: #FAFAF8;
  --white-muted: #E8E6E0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); }

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #021410 0%, var(--emerald-deep) 32%, var(--emerald-dark) 68%, var(--emerald) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.09) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 35%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

/* HERO 3D EMBLEM */
.hero-emblem-stage {
  width: 150px;
  max-width: 36vw;
  margin: 0 auto 1.2rem;
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform .3s ease-out;
}
.hero-emblem {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.55));
  animation: heroEmblemSpin 16s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes heroEmblemSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-emblem { animation: none; }
}

/* STAT COUNTERS (scroll-triggered, styles ready — no block rendered until real figures are set) */
.stats-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.8rem; margin-top: 2rem; }
.stat-counter-item { text-align: center; }
.stat-counter-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-counter-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); margin-top: 0.5rem; }
/* Video de fondo del hero (opcional, aparece si subes hero-video.mp4) */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero h1 span {
  background: linear-gradient(180deg, #F6E27A 0%, #E2C97E 35%, #C9A84C 70%, #9c7d1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,.35));
}
/* Oro metálico imponente para todos los títulos de sección */
.section-header h2 span,
h2 span {
  background: linear-gradient(180deg, #F6E27A 0%, #E2C97E 35%, #C9A84C 70%, #9c7d1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 5px rgba(201,168,76,.3));
}
.section-header h2 { font-weight: 800 !important; letter-spacing: 1px; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.4rem;
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 1.4rem;
}
.hero-stars .stars-icons { color: var(--gold); font-size: 1.15rem; letter-spacing: 3px; text-shadow: 0 2px 10px rgba(201,168,76,.4); }
.hero-stars .stars-label { color: var(--white-muted); font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; }
.hero-barber {
  font-size: 0.8rem;
  color: var(--white-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-barber strong { color: var(--gold); font-weight: 600; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* Hero tickers (scrolling banners replacing the static badge + barber line) */
.hero-ticker {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 2rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.hero-ticker--badge {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 9px 0;
}
.hero-ticker-track {
  display: flex;
  width: max-content;
  animation: heroTickerScroll 24s linear infinite;
}
.hero-ticker-track--slow { animation-duration: 18s; }
.hero-ticker-group { display: flex; align-items: center; flex-shrink: 0; }
.hero-ticker-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  padding: 0 16px;
}
.hero-ticker-item::after {
  content: '\2605';
  margin-left: 16px;
  font-size: 0.45rem;
  opacity: 0.55;
  color: var(--gold);
  vertical-align: middle;
}
.hero-ticker--secondary .hero-ticker-item {
  background: linear-gradient(90deg, #9c7d1e 0%, #F6E27A 22%, #E2C97E 45%, #C9A84C 68%, #F6E27A 85%, #9c7d1e 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 2.5px;
  animation: tickerShine 4s linear infinite;
}
.hero-ticker--secondary .hero-ticker-item strong {
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
  font-weight: 700;
}
@keyframes heroTickerScroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}
@keyframes tickerShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ticker-track { animation: none; }
  .hero-ticker--secondary .hero-ticker-item,
  .top-ticker .hero-ticker-item {
    animation: none;
  }
}
.btn-book {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  transition: all 0.3s ease;
}
.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-book-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  margin-left: 16px;
  transition: all 0.3s ease;
}
.btn-book-outline:hover {
  background: rgba(201,168,76,0.1);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* DIVIDER */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 100%;
}

/* SERVICES */
.services {
  background: var(--black);
  padding: 5rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.section-header h2 span { color: var(--gold); }
.section-header p {
  color: var(--white-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
}
.service-card {
  background: var(--black-soft);
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--emerald-deep); }
.service-card.popular {
  background: var(--emerald-dark);
  position: relative;
}
.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.service-desc {
  font-size: 0.75rem;
  color: var(--white-muted);
  line-height: 1.5;
  max-width: 300px;
}
.service-meta { text-align: right; min-width: 70px; }
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}
.service-time {
  font-size: 0.7rem;
  color: var(--white-muted);
  margin-top: 2px;
}

/* LOYALTY */
.loyalty {
  background: var(--black);
  padding: 5rem 2rem;
}
.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.loyalty-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.loyalty-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}
.loyalty-visits {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}
.loyalty-visits small {
  display: block;
  font-size: 0.65rem;
  color: var(--white-muted);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.loyalty-reward {
  font-size: 0.85rem;
  color: var(--white);
  margin-top: 12px;
  font-weight: 500;
}

/* BARBER */
.barber-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--emerald-deep) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.barber-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.barber-title {
  font-size: 0.75rem;
  color: var(--white-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.barber-bio {
  max-width: 550px;
  margin: 0 auto 2rem;
  color: var(--white-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 2rem;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.social-links svg { width: 18px; height: 18px; fill: var(--gold); }

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-info {
  color: var(--white-muted);
  font-size: 0.75rem;
  line-height: 2;
}
.footer-info a { color: var(--gold); text-decoration: none; }
.footer-cta {
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-book-outline { margin-left: 0; }
  .service-card { flex-direction: column; gap: 8px; }
  .service-meta { text-align: left; }
  .social-links { flex-direction: column; align-items: center; }
  .popup-card { padding: 2rem 1.5rem !important; }
  .popup-card h2 { font-size: 1.3rem !important; }
  .filter-tabs { gap: 8px !important; }
  .filter-tabs button { padding: 8px 16px !important; font-size: 0.65rem !important; }
}

/* EMAIL POPUP */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  animation: fadeInPopup 0.5s ease 1.5s forwards;
}
@keyframes fadeInPopup {
  to { opacity: 1; }
}
.popup-card {
  background: linear-gradient(180deg, var(--emerald-deep) 0%, var(--emerald-dark) 100%);
  border: 1px solid var(--gold);
  max-width: 440px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--white-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--gold); }
.popup-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.popup-card p {
  color: var(--white-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.popup-card .popup-offer {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}
.popup-form {
  display: flex;
  gap: 0;
}
.popup-form input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}
.popup-form input::placeholder { color: rgba(255,255,255,0.4); }
.popup-form input:focus { border-color: var(--gold); }
.popup-form button {
  padding: 14px 24px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.popup-form button:hover { background: var(--gold-light); }
.popup-skip {
  display: block;
  margin-top: 1rem;
  color: var(--white-muted);
  font-size: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.popup-skip:hover { opacity: 1; }
.popup-success {
  display: none;
  text-align: center;
}
.popup-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.popup-success p {
  color: var(--white-muted);
  font-size: 0.8rem;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-tabs button {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--white-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-tabs button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-tabs button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* NOTIFICATION BAR */
.notify-bar {
  text-align: center;
  padding: 12px;
  background: rgba(201,168,76,0.08);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.notify-bar a {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.notify-bar a:hover { text-decoration: underline; }

/* TOP MARKETING/SEO TICKER (homepage only) — solid black strip above the nav, keywords in motion */
.top-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5001;
  height: 30px;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.top-ticker .hero-ticker-track { animation-duration: 20s; }
.top-ticker .hero-ticker-item {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  padding: 0 20px;
  line-height: 30px;
  background: linear-gradient(90deg, #9c7d1e 0%, #F6E27A 22%, #E2C97E 45%, #C9A84C 68%, #F6E27A 85%, #9c7d1e 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  animation: tickerShine 4s linear infinite;
}
.top-ticker .hero-ticker-item strong {
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
  font-weight: 800;
}
@media (max-width: 600px) {
  .top-ticker { height: 26px; }
  .top-ticker .hero-ticker-item { font-size: 0.56rem; letter-spacing: 1.6px; line-height: 26px; padding: 0 14px; }
}
/* CTA pill (solid gold chip) — placed after the shimmer rules above so it wins the cascade */
.hero-ticker-item.cta-pill {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  -webkit-text-fill-color: var(--black) !important;
  color: var(--black) !important;
  font-weight: 800;
  animation: none !important;
  margin: 0 4px;
  box-shadow: 0 0 16px rgba(201,168,76,0.35);
}
.hero-ticker-item.cta-pill::after { content: none; }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav.nav--with-topbar { top: 30px; }
@media (max-width: 600px) {
  .nav.nav--with-topbar { top: 26px; }
}
/* Home page only: starts transparent over the hero photo, goes solid once scrolled (see .nav-transparent script in index.html) */
.nav.nav-transparent {
  background: rgba(10,10,10,0.22); backdrop-filter: blur(6px);
  border-bottom-color: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}
.nav.nav-transparent.scrolled {
  background: rgba(10,10,10,0.92); backdrop-filter: blur(16px);
  border-bottom-color: rgba(201,168,76,0.12);
}
.nav-logo img { filter: drop-shadow(0 1px 4px rgba(0,0,0,.7)); }
.nav-toggle span { box-shadow: 0 1px 3px rgba(0,0,0,.5); }
.nav-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: 1px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-muted); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-book {
  background: var(--gold); color: var(--black); padding: 8px 20px;
  font-weight: 600; transition: all 0.3s;
}
.nav-links .nav-book:hover { background: var(--gold-light); }
.nav-toggle { display: none; cursor: pointer; padding: 4px; background: transparent; border: none; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--gold); margin: 5px 0; transition: all 0.3s; }
.sticky-cta { display: none; }

/* ABOUT */
.about { background: var(--black); padding: 5rem 2rem; }
.about-inner { max-width: 700px; margin: 0 auto; }
.about-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 0.3rem; }
.about-title { font-size: 0.7rem; color: var(--white-muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2rem; }
.about-text { color: var(--white-muted); font-size: 0.85rem; line-height: 1.9; margin-bottom: 1.5rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.15); margin-top: 2rem; }
.about-value { background: var(--black-soft); padding: 1.5rem; }
.about-value h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--gold); margin-bottom: 6px; }
.about-value p { font-size: 0.78rem; color: var(--white-muted); line-height: 1.6; }
.academy-logo-wrap { position: relative; display: inline-block; }
.academy-logo-wrap::before { content: ''; position: absolute; inset: -18px; background: radial-gradient(circle, rgba(201,168,76,.28), transparent 70%); filter: blur(14px); z-index: -1; animation: academyGlowPulse 4s ease-in-out infinite; }
@keyframes academyGlowPulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.academy-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 2rem 0; text-align: left; }
.academy-feature { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.22); border-radius: 14px; padding: 1.4rem 1.2rem; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, background .35s ease; }
.academy-feature:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,.35); background: rgba(201,168,76,0.11); }
.academy-feature svg { display: block; margin-bottom: .7rem; }
.academy-feature h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--gold); margin-bottom: 6px; }
.academy-feature p { font-size: 0.8rem; color: var(--white-muted); line-height: 1.6; margin: 0; }
@media (max-width: 700px) { .academy-features { grid-template-columns: 1fr; text-align: center; } }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.15); padding: 1.2rem 0; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--gold); font-weight: 600; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--white-muted); line-height: 1.7; margin-top: 0.8rem; }

/* BOOKING */
.booking { background: linear-gradient(180deg, var(--emerald-deep) 0%, var(--emerald-dark) 50%, var(--emerald-deep) 100%); padding: 5rem 2rem; text-align: center; }
.booking-box { border: 2px solid var(--gold); max-width: 500px; margin: 2rem auto 0; padding: 2.5rem; position: relative; }
.booking-box::before { content: 'BOOK ONLINE'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; padding: 4px 16px; }
.booking-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.15); max-width: 700px; margin: 2.5rem auto 0; }
.booking-info-item { background: rgba(3,45,33,0.6); padding: 1.2rem; text-align: left; }
.booking-info-item h4 { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--gold); margin-bottom: 4px; }
.booking-info-item p { font-size: 0.75rem; color: var(--white-muted); line-height: 1.5; }

/* REVIEWS */
.reviews { background: var(--black); padding: 5rem 2rem; }
.review-cta { text-align: center; margin-top: 2.5rem; }
.review-cta p { color: var(--white-muted); font-size: 0.8rem; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* GALLERY */
.gallery { background: var(--black-soft); padding: 5rem 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.15); max-width: 900px; margin: 2rem auto 0; }
.gallery-item { aspect-ratio: 1; background: var(--black); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white-muted); font-size: 0.75rem; transition: background 0.3s; cursor: pointer; }
.gallery-item:hover { background: var(--emerald-deep); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-icon { font-size: 1.8rem; color: var(--emerald); margin-bottom: 6px; }
.gallery-cta { text-align: center; margin-top: 2rem; }
.gallery-cta p { color: var(--white-muted); font-size: 0.8rem; margin-bottom: 1rem; }

/* CONTACT */
.contact { background: var(--black); padding: 5rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 2rem auto 0; }
.contact-item { display: flex; gap: 14px; margin-bottom: 1.5rem; }
.contact-icon-box { width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.85rem; margin-bottom: 3px; }
.contact-detail p { font-size: 0.8rem; color: var(--white-muted); line-height: 1.5; }
.contact-detail a { color: var(--gold); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-hours { border: 1px solid rgba(201,168,76,0.15); margin-top: 1.5rem; }
.contact-hours h4 { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--gold); padding: 1rem 1.2rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
.hours-row { display: flex; justify-content: space-between; padding: 8px 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.8rem; }
.hours-day { color: var(--white-muted); }
.hours-time { color: var(--white); font-weight: 500; }
.contact-map { border: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; min-height: 380px; text-align: center; color: var(--white-muted); }
.contact-map p { font-size: 0.8rem; line-height: 1.6; }

/* MEMBERSHIPS */
.memberships { background: linear-gradient(180deg, var(--black) 0%, var(--emerald-deep) 50%, var(--black) 100%); padding: 5rem 2rem; text-align: center; }
.membership-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; padding: 6px 18px; margin-bottom: 1.5rem; }
.membership-urgency { max-width: 640px; margin: 0 auto; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.35); color: var(--gold); font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px; padding: 0.9rem 1.4rem; line-height: 1.5; }
.membership-social-proof { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 1.1rem auto 0; }
.membership-social-stat { color: var(--white-muted); font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.2px; }
.membership-social-stat strong { color: var(--white); font-weight: 700; }
.membership-social-divider { width: 4px; height: 4px; background: rgba(201,168,76,0.5); border-radius: 50%; display: none; }
@media (min-width: 640px) { .membership-social-divider { display: inline-block; } }
.membership-migration-note { max-width: 620px; margin: 1.8rem auto 0; color: var(--white-muted); font-size: 0.95rem; line-height: 1.6; font-style: italic; }
.membership-panel { display: none; }
.membership-panel.active { display: block; }
.membership-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.15); max-width: 900px; margin: 2.5rem auto; }
.tier-card { background: var(--black-soft); padding: 2rem 1.5rem; text-align: center; transition: box-shadow 0.25s ease; }
.tier-card.featured { background: var(--emerald-deep); position: relative; }
.tier-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: 0; right: 0; background: var(--gold); color: var(--black); font-size: 0.55rem; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; }
.tier-card.tier-unlimited { position: relative; }
.tier-card.tier-unlimited::before { content: 'UNLIMITED'; position: absolute; top: 0; right: 0; background: var(--black); color: var(--gold); font-size: 0.55rem; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; }
.tier-card:hover { box-shadow: 0 0 0 2px rgba(201,168,76,0.4) inset; }
.tier-card.selected-plan { box-shadow: 0 0 0 3px var(--gold) inset; }
.wizard-step-label { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 0 0 -0.5rem; }
.tier-name { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tier-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); font-weight: 700; }
.tier-price small { font-size: 0.8rem; color: var(--white-muted); font-weight: 400; }
.tier-desc { font-size: 0.75rem; color: var(--white-muted); margin: 6px 0 16px; }
.tier-features { list-style: none; text-align: left; }
.tier-features li { font-size: 0.75rem; color: var(--white-muted); padding: 6px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.tier-features li::before { content: '✦ '; color: var(--gold); }
.tier-fairuse { font-size: 0.65rem; color: #1a3b2e; opacity: 0.85; margin-top: 12px; font-style: italic; }
.membership-note { font-size: 0.7rem; color: var(--white-muted); max-width: 600px; margin: 1.5rem auto 0; line-height: 1.6; }
.membership-note strong { color: var(--gold); }
/* WIZARD STEP 2 SELECTOR (service type / billing cycle — class names shared/reused, no longer tied to a "Cut Packs" product) */
.pack-calculator { max-width: 620px; margin: 2.5rem auto; border: 1px solid rgba(201,168,76,0.2); background: var(--black-soft); }
.pack-calc-header { padding: 1.5rem 2rem 1rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
.pack-calc-body { padding: 1.5rem 2rem 2rem; }
.pack-field { margin-bottom: 1.5rem; }
.pack-field label { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pack-field select { width: 100%; background: var(--black); border: 1px solid rgba(201,168,76,0.2); color: var(--white); padding: 10px 14px; font-size: 0.85rem; font-family: inherit; appearance: auto; }
.pack-field select:focus { border-color: var(--gold); outline: none; }
.wizard-unlimited-box { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3); padding: 14px 16px; font-size: 0.8rem; color: var(--white); line-height: 1.6; }
.wizard-unlimited-box span { display: block; margin-top: 6px; font-size: 0.7rem; color: var(--gold); }
.pack-tiers-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 1.5rem; }
.pack-tier { border: 1px solid rgba(201,168,76,0.15); padding: 1.2rem 0.8rem; text-align: center; cursor: pointer; transition: all 0.3s; position: relative; }
.pack-tier:hover { border-color: rgba(201,168,76,0.4); }
.pack-tier.selected { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.pack-tier-badge { position: absolute; top: -1px; right: -1px; background: var(--gold); color: var(--black); font-size: 0.5rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; }
.pack-tier-cuts { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.pack-tier-label { font-size: 0.65rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 2px; margin: 4px 0 8px; }
.pack-result { background: rgba(11,107,79,0.15); border: 1px solid rgba(11,107,79,0.3); padding: 1.2rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; text-align: center; }
.pack-result-item { }
.pack-result-label { font-size: 0.6rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.pack-result-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.pack-result-sub { font-size: 0.65rem; color: var(--gold); margin-top: 2px; }
.tier-join-btn { display: block; margin: 1.2rem auto 0; background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 28px; border: none; text-decoration: none; text-align: center; cursor: pointer; transition: all 0.3s; }
.tier-join-btn:hover { background: var(--white); }
.pack-buy-btn { display: block; margin: 1.5rem auto 0; background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px 36px; border: none; text-decoration: none; text-align: center; cursor: pointer; transition: all 0.3s; }
.pack-buy-btn:hover { background: var(--white); }
/* Signup Modal */
.signup-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); z-index: 10000; align-items: center; justify-content: center; }
.signup-overlay.active { display: flex; }
.signup-modal { background: var(--black-soft); border: 1px solid rgba(201,168,76,0.3); max-width: 420px; width: 90%; padding: 2.5rem 2rem; position: relative; }
.signup-modal h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 4px; }
.signup-modal .signup-subtitle { font-size: 0.78rem; color: var(--white-muted); margin-bottom: 1.5rem; }
.signup-modal .signup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: var(--white-muted); font-size: 1.4rem; cursor: pointer; }
.signup-modal .signup-close:hover { color: var(--white); }
.signup-field { margin-bottom: 1rem; }
.signup-field label { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.signup-field input { width: 100%; background: var(--black); border: 1px solid rgba(201,168,76,0.2); color: var(--white); padding: 10px 14px; font-size: 0.85rem; font-family: inherit; box-sizing: border-box; }
.signup-field input:focus { border-color: var(--gold); outline: none; }
.signup-submit { display: block; width: 100%; margin-top: 1.2rem; background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px; border: none; cursor: pointer; transition: all 0.3s; }
.signup-submit:hover { background: var(--white); }
.signup-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.signup-terms { margin: 1.2rem 0 0.4rem; padding-top: 1rem; border-top: 1px solid rgba(201,168,76,0.15); }
.signup-terms-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.78rem; color: var(--white-muted); line-height: 1.5; }
.signup-terms-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.signup-terms-link { background: none; border: none; padding: 0; color: var(--gold); text-decoration: underline; cursor: pointer; font: inherit; }
.signup-terms-link:hover { color: var(--white); }
.signup-terms-box { display: none; margin-top: 10px; padding: 12px 14px; background: var(--black); border: 1px solid rgba(201,168,76,0.15); font-size: 0.72rem; color: var(--white-muted); line-height: 1.6; max-height: 160px; overflow-y: auto; }
.signup-terms-box.open { display: block; }
.signup-terms-box ul { margin: 0; padding-left: 18px; }
.signup-terms-box li { margin-bottom: 6px; }
.signup-signature-note { font-size: 0.65rem; color: var(--white-muted); opacity: 0.75; margin-top: 0.6rem; line-height: 1.5; text-align: center; }
.signup-success { display: none; text-align: center; padding: 2rem 0; }
.signup-success h3 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 8px; }
.signup-success p { color: var(--white-muted); font-size: 0.85rem; line-height: 1.6; }
.membership-email { border: 1px solid rgba(201,168,76,0.3); max-width: 440px; margin: 2rem auto 0; padding: 2rem; }
.membership-email h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); margin-bottom: 6px; }
.membership-email p { font-size: 0.78rem; color: var(--white-muted); margin-bottom: 1rem; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); padding: 1.5rem 2rem; gap: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .about-values { grid-template-columns: 1fr; }
  .booking-info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .membership-tiers { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
  .sticky-cta {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 4500;
    background: rgba(10,10,10,0.96); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201,168,76,0.25);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
  .sticky-cta a {
    display: block; text-align: center; background: var(--gold); color: var(--black);
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem;
    padding: 14px; text-decoration: none; border-radius: 4px;
  }
}

/* ===== PREMIUM ANIMATIONS (scroll reveal + micro-interactions) ===== */
/* Respeta usuarios que prefieren menos movimiento (accesibilidad + SEO) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
  .reveal.in-view { opacity: 1; transform: none; }
  .reveal.delay-1 { transition-delay: .08s; }
  .reveal.delay-2 { transition-delay: .16s; }
  .reveal.delay-3 { transition-delay: .24s; }
}
/* Micro-interacción premium en tarjetas de servicio */
.service-card { transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.45); }
/* Micro-interacción premium en tarjetas del equipo */
.team-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.45); border-color: var(--gold) !important; }
/* Brillo sutil al pasar por botones de reserva */
.btn-book, .nav-book { position: relative; overflow: hidden; }
.btn-book::after, .nav-book::after {
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn-book:hover::after, .nav-book:hover::after { left: 140%; }
/* Imágenes de galería con zoom suave */
.gallery img, .gallery-item { transition: transform .5s cubic-bezier(.16,1,.3,1); }
.gallery img:hover, .gallery-item:hover { transform: scale(1.04); }

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 4400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 768px) {
  .whatsapp-float { bottom: 88px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ===== BOOKING WIZARD (/booking/) ===== */
.wizard-section { max-width: 720px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
.wizard-progress { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 2.5rem; }
.wizard-progress-step { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: .95rem; border: 1px solid rgba(201,168,76,.25); color: var(--white-muted); background: var(--black-soft); transition: all .3s ease; flex-shrink: 0; }
.wizard-progress-step.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }
.wizard-progress-step.done { border-color: var(--emerald); color: var(--white); background: var(--emerald-dark); }
.wizard-progress-line { flex: 1; max-width: 60px; height: 1px; background: rgba(201,168,76,.2); }
.wizard-progress-line.done { background: var(--emerald); }

.wizard-step-panel { display: none; }
.wizard-step-panel.active { display: block; animation: wizardFadeIn .4s ease; }
@keyframes wizardFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.wizard-step-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); text-align: center; margin-bottom: .4rem; }
.wizard-step-sub { text-align: center; color: var(--white-muted); font-size: .85rem; margin-bottom: 2rem; }

.wizard-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.wizard-option { border: 1px solid rgba(201,168,76,.15); background: var(--black-soft); padding: 1.2rem 1.4rem; cursor: pointer; transition: all .3s ease; text-align: left; position: relative; }
.wizard-option:hover { border-color: rgba(201,168,76,.4); }
.wizard-option.selected { border-color: var(--gold); background: rgba(201,168,76,.08); }
.wizard-option-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 4px; padding-right: 26px; }
.wizard-option-meta { font-size: .75rem; color: var(--gold); font-weight: 600; }
.wizard-option-desc { font-size: .75rem; color: var(--white-muted); margin-top: 6px; line-height: 1.5; }
.wizard-option-check { position: absolute; top: 14px; right: 14px; width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: transparent; }
.wizard-option.selected .wizard-option-check { border-color: var(--gold); background: var(--gold); color: var(--black); }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; gap: 1rem; }
.wizard-btn-back { background: none; border: 1px solid rgba(201,168,76,.25); color: var(--white-muted); padding: 12px 24px; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; }
.wizard-btn-back:hover { border-color: var(--gold); color: var(--gold); }
.wizard-btn-next { background: var(--gold); color: var(--black); border: none; padding: 12px 32px; font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; opacity: .35; pointer-events: none; margin-left: auto; }
.wizard-btn-next.enabled { opacity: 1; pointer-events: auto; }
.wizard-btn-next.enabled:hover { background: var(--white); }

.wizard-summary { background: rgba(11,107,79,.15); border: 1px solid rgba(11,107,79,.3); padding: 1.5rem; margin-bottom: 1.5rem; }
.wizard-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,.1); font-size: .85rem; gap: 1rem; }
.wizard-summary-row:last-child { border-bottom: none; }
.wizard-summary-label { color: var(--white-muted); }
.wizard-summary-value { color: var(--white); font-weight: 600; text-align: right; }

@media (max-width: 640px) {
  .wizard-options { grid-template-columns: 1fr; }
  .wizard-progress-line { max-width: 30px; }
  .wizard-nav { flex-wrap: wrap; }
}
