/* =============================================
   LE MAGE – MASSAGE & HEILTHERAPIE
   Royal Purple & Gold Theme
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --purple-deep:   #2E0052;
  --purple-royal:  #4B0082;
  --purple-mid:    #6A0DAD;
  --purple-light:  #9B59B6;
  --purple-pale:   #EDE0F5;
  --gold-dark:     #9B7D1F;
  --gold:          #C9A227;
  --gold-bright:   #D4AF37;
  --gold-light:    #F0D878;
  --gold-pale:     #FDF6DC;
  --white:         #FFFFFF;
  --off-white:     #FDF9F4;
  --text-dark:     #1A0A2E;
  --text-mid:      #4A3560;
  --text-muted:    #7A6890;
  --border-gold:   rgba(201,162,39,0.35);
  --shadow-purple: rgba(75,0,130,0.25);
  --shadow-gold:   rgba(201,162,39,0.30);

  --font-display:  'Cinzel', serif;
  --font-serif:    'Playfair Display', serif;
  --font-sans:     'Lato', sans-serif;

  --header-h:      80px;
  --radius-card:   12px;
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--purple-deep); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTION PADDING ---- */
.section-padding { padding: 100px 0; }

/* ---- SHARED TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--purple-royal); font-style: italic; }
.section-title.light em { color: var(--gold-light); }

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
  margin: 20px 0 28px;
  position: relative;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  border-radius: 50%;
}
.gold-divider::before { left: -10px; }
.gold-divider::after  { right: -10px; }
.gold-divider.centered { margin-left: auto; margin-right: auto; }

.section-header.centered { text-align: center; }
.section-intro { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-intro.light { color: rgba(255,255,255,0.75); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 50%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  color: var(--purple-deep);
  box-shadow: 0 4px 18px var(--shadow-gold);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-gold);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--gold-bright);
  color: var(--gold-light);
  backdrop-filter: blur(4px);
}
.btn-gold-outline:hover {
  background: var(--gold-bright);
  color: var(--purple-deep);
  transform: translateY(-2px);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-royal));
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 18px var(--shadow-purple);
}
.btn-purple:hover {
  background: linear-gradient(135deg, var(--purple-royal), var(--purple-mid));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-purple);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled {
  background: rgba(22, 2, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  height: 64px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 76px;
  width: auto;
  transition: height var(--transition), filter var(--transition);
  filter: drop-shadow(0 2px 8px rgba(201,162,39,0.4));
}
.site-header.scrolled .logo-img { height: 56px; }

.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width 0.3s;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 22px; font-size: 0.75rem; }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: var(--transition);
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slides-container { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }

/* Gradient backgrounds – replace with real images via background-image: url() */
.slide-1 { background-image: url('images/slide1.jpg'); background-size: cover; background-position: center; }
.slide-2 { background-image: url('images/slide2.jpg'); background-size: cover; background-position: center; }
.slide-3 { background-image: url('images/slide3.jpg'); background-size: cover; background-position: center; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.35) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  padding-top: var(--header-h);
}

.slide-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 0.3s forwards;
}
.slide.active .slide-tagline { animation: slideUp 0.8s 0.3s forwards; }

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(75,0,130,0.6), 0 0 60px rgba(201,162,39,0.2);
  line-height: 1.05;
  margin-bottom: 16px;
  opacity: 0;
  animation: slideUp 0.8s 0.5s forwards;
}

.slide-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideUp 0.8s 0.7s forwards;
}

.slide-content .btn {
  opacity: 0;
  animation: slideUp 0.8s 0.9s forwards;
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.slide-indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slide-indicators .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.slide-indicators .dot.active {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: scale(1.3);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201,162,39,0.7), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ---- ABOUT ---- */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  aspect-ratio: 5 / 6;
  isolation: isolate;
}

.lotus-symbol {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: rgba(201,162,39,0.3);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.gold-border-accent {
  position: absolute;
  top: -14px; right: -14px;
  width: 65%;
  height: 65%;
  border: 2px solid var(--gold-bright);
  border-radius: 12px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.about-text-col { }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-body {
  color: var(--text-mid);
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stat { text-align: center; flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--purple-royal);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
}

/* ---- SERVICES ---- */
.services {
  background: linear-gradient(160deg, var(--purple-deep) 0%, #1E0038 40%, var(--purple-royal) 100%);
  position: relative;
  overflow: hidden;
}
.services-bg-decor {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.services .section-header { margin-bottom: 60px; }
.services .section-title em { color: var(--gold-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-card);
  padding: 36px 28px 28px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,162,39,0.15);
}
.service-card.featured {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.45);
  box-shadow: 0 8px 32px rgba(201,162,39,0.12);
}
.service-card.featured:hover {
  box-shadow: 0 20px 50px rgba(201,162,39,0.2);
}

.featured-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}

.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  color: var(--gold-bright);
  opacity: 0.85;
}
.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-divider {
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.service-prices {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.price-item {
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.duration {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.btn-service {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-service:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px var(--shadow-gold);
}

/* Madero card extensions */
.madero-card { grid-column: span 1; }

.madero-sub {
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.madero-tagline {
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin: 8px 0 0;
  font-style: italic;
}

.madero-combo-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin: -8px 0 16px;
  padding: 8px 12px;
  border-left: 2px solid rgba(201,162,39,0.3);
  line-height: 1.5;
}

.madero-footer {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  margin-bottom: 16px;
}

.madero-signature {
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.madero-sig-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.madero-sig-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.madero-sig-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-top: 2px;
}

.madero-sig-packages {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(201,162,39,0.2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.madero-sig-pkg-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 2px;
}
.madero-sig-pkg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.madero-sig-pkg-item span:last-child {
  font-family: var(--font-serif);
  color: var(--gold-bright);
  font-weight: 600;
}
.madero-sig-pkg-line {
  flex: 1;
  height: 1px;
  background: rgba(201,162,39,0.25);
}

.services-note {
  text-align: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,162,39,0.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

/* ---- SPECIALTY SECTIONS (HEADSPA & BARBERSHOP) ---- */
.headspa-section {
  background: var(--off-white);
}
.barbershop-section {
  background: linear-gradient(160deg, var(--purple-deep) 0%, #1E0038 50%, var(--purple-royal) 100%);
}
.barbershop-section .section-title { color: var(--white); }
.barbershop-section .section-title em { color: var(--gold-light); }
.barbershop-section .section-label { color: var(--gold-bright); }
.barbershop-section .specialty-lead { color: rgba(255,255,255,0.9); }
.barbershop-section .specialty-body { color: rgba(255,255,255,0.65); }
.barbershop-section .spec-name { color: var(--white); }
.barbershop-section .spec-price { color: var(--gold-light); }
.barbershop-section .spec-dot { background: var(--gold-bright); }
.barbershop-section .spec-service-item { border-color: rgba(201,162,39,0.15); }

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.specialty-grid.reverse { direction: rtl; }
.specialty-grid.reverse > * { direction: ltr; }

.specialty-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}
.specialty-body {
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
}

.specialty-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  overflow: hidden;
}
.spec-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.25s;
}
.spec-service-item:last-child { border-bottom: none; }
.spec-service-item:hover { background: rgba(201,162,39,0.05); }

.spec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}
.spec-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 500;
}
.spec-price {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--purple-royal);
  margin-top: 2px;
}

/* Visual column */
.specialty-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}
.hs-visual {
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple-royal) 60%, var(--purple-mid) 100%);
}
.bs-visual {
  background: linear-gradient(145deg, #1A0A2E 0%, var(--purple-royal) 50%, #9B7D1F 100%);
}
.bs-photo {
  background: none;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  aspect-ratio: 3 / 4;
}
.bs-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.spec-icon-large {
  position: relative;
  z-index: 2;
  width: 180px; height: 180px;
  color: var(--gold-bright);
  opacity: 0.85;
  filter: drop-shadow(0 0 20px rgba(201,162,39,0.4));
}
.spec-icon-large svg { width: 100%; height: 100%; }

.spec-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.12);
  pointer-events: none;
}
.ring-1 { width: 280px; height: 280px; }
.ring-2 { width: 380px; height: 380px; border-color: rgba(201,162,39,0.06); }

/* HeadSpa cards */
.headspa-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.headspa-card {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  padding: 30px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(75,0,130,0.06);
}
.headspa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(75,0,130,0.12);
  border-color: var(--gold-bright);
}
.headspa-card.featured-hs {
  border-color: var(--gold-bright);
  background: linear-gradient(160deg, #FDF8F0 0%, var(--white) 100%);
  box-shadow: 0 8px 32px rgba(201,162,39,0.15);
}

.hs-featured-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}

.hs-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-gold);
}

.hs-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  color: var(--gold-bright);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-royal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
}
.hs-card-icon svg { width: 100%; height: 100%; }

.hs-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.hs-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hs-duration {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.hs-amount {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--purple-royal);
}

.hs-includes {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hs-includes li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.hs-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.hs-addons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: linear-gradient(135deg, var(--purple-pale), #FDF6DC);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.88rem;
}
.hs-addon-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-royal);
  font-weight: 600;
}
.hs-addon-item { color: var(--text-mid); }
.hs-addon-item strong { color: var(--purple-royal); }
.hs-addon-sep { color: var(--gold-bright); font-size: 1.2rem; }

/* Barbershop price list */
.bs-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
}

.bs-price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,162,39,0.12);
}
.bs-price-item:last-child { border-bottom: none; }
.bs-price-item.bs-wellness { align-items: flex-start; }

.bs-service-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  flex: 1;
}
.bs-service-name em {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-top: 3px;
}

.bs-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-bright);
  white-space: nowrap;
  flex-shrink: 0;
}

.bs-price-divider {
  padding: 10px 0 6px;
  margin-top: 4px;
}
.bs-price-divider span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.bs-price-divider.bs-highlight span {
  color: var(--gold-bright);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 820px) {
  .specialty-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .specialty-visual { height: 280px; }
  .headspa-cards { grid-template-columns: 1fr; }
  .hs-addons { border-radius: 12px; }
}

@media (max-width: 600px) {
  .headspa-cards { grid-template-columns: 1fr; }
}

/* ---- GALLERY ---- */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item.gi-large { grid-column: span 2; aspect-ratio: 16 / 7; }
.gallery-item.gi-tall  { grid-row: span 2; aspect-ratio: 3 / 4; }


.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 0, 82, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
.gallery-note code {
  background: var(--purple-pale);
  padding: 2px 8px;
  border-radius: 4px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--purple-royal);
}

/* ---- CONTACT ---- */
.contact {
  background: linear-gradient(160deg, var(--purple-deep) 0%, #1E0038 50%, #2E0052 100%);
  position: relative;
  overflow: hidden;
}
.contact-bg-decor {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact .section-title em { color: var(--gold-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 60px;
  align-items: start;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-bright);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-details h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.contact-details p, .contact-details a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-details a:hover { color: var(--gold-light); }
.contact-details small { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

.hours-table { font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.hours-table td { padding: 2px 0; }
.hours-table td:first-child { width: 70px; color: var(--gold-light); }

.cta-block p {
  font-family: var(--font-body);
  font-style: normal;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.map-col { }
.map-frame {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ---- FOOTER ---- */
.site-footer { background: var(--purple-deep); }

.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(201,162,39,0.3));
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  display: block;
  padding: 4px 0;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(201,162,39,0.12);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 20, 0.94);
  backdrop-filter: blur(8px);
}

.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,162,39,0.2);
  opacity: 1;
  transition: opacity 0.18s ease;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  z-index: 2;
  background: rgba(46,0,82,0.7);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.lb-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lb-close svg { width: 20px; height: 20px; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); width: 50px; height: 50px; }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; }
.lb-prev svg, .lb-next svg { width: 22px; height: 22px; }

.lb-close:hover { background: rgba(201,162,39,0.25); }
.lb-prev:hover  { background: rgba(201,162,39,0.25); transform: translateY(-50%) scale(1.08); }
.lb-next:hover  { background: rgba(201,162,39,0.25); transform: translateY(-50%) scale(1.08); }

.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

/* Cursor hint on gallery items */
.gallery-item { cursor: zoom-in; }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--purple-royal), var(--purple-mid));
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px var(--shadow-purple);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  color: var(--gold-light);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright));
  color: var(--purple-deep);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ---- ENTRY ANIMATIONS ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
}

@media (max-width: 820px) {
  :root { --header-h: 70px; }

  .burger-btn { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(22, 2, 46, 0.98);
    backdrop-filter: blur(16px);
    padding: calc(var(--header-h) + 20px) 30px 30px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(201,162,39,0.15);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a {
    display: block;
    padding: 14px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(201,162,39,0.1);
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { max-width: 380px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { height: 300px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.gi-large { grid-column: span 2; }
  .gallery-item.gi-tall  { grid-row: auto; }
}

@media (max-width: 600px) {
  .section-padding { padding: 70px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gi-large { grid-column: auto; }

  .about-stats { gap: 14px; }
  .stat-number { font-size: 1.8rem; }

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .header-cta { display: none; }
}

@media (max-width: 400px) {
  .slide-title { font-size: 2.8rem; }
}
