/* ================================================================
   EZEL LUXURY SPA AND SALON — REDESIGNED GLOBAL STYLESHEET
   Theme: Dark Luxury Gold
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #c4913a;
  --gold-light:  #e8c55a;
  --gold-pale:   #f5e6c8;
  --gold-dark:   #8b6420;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1610;
  --dark-3:      #221e18;
  --mid:         #2e2820;
  --cream:       #f5ede0;
  --cream-2:     #ede0cc;
  --cream-muted: #b8a890;
  --white:       #ffffff;
  --green:       #25d366;
  --red:         #c0392b;

  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans:  "Montserrat", sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.55);

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --header-h: 80px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
p { margin-bottom: 1rem; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
h4 { font-size: 1.3rem; }

/* ── Layout ────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Section Headers ───────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header .gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.75rem auto 1rem;
}
.section-header p { color: var(--cream-muted); max-width: 600px; margin: 0 auto; font-size: 0.95rem; }

/* ── Background Variants ───────────────────────────────────────── */
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }
.bg-mid    { background: var(--mid); }
.bg-gold   { background: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,145,58,0.35); color: var(--black); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }
.btn-light { background: var(--cream); color: var(--black); }
.btn-light:hover { background: var(--white); color: var(--black); }

/* ── Header / Navigation ───────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
header .container { height: 100%; }
.header-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 2rem;
}
.logo { flex-shrink: 0; }
.logo img { width: 160px; height: auto; }

nav ul.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
nav ul.nav-links li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
nav ul.nav-links li a:hover,
nav ul.nav-links li a.active { color: var(--gold); }
nav ul.nav-links li:last-child a,
nav ul.nav-links li a.nav-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
}
nav ul.nav-links li:last-child a:hover,
nav ul.nav-links li a.nav-book:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer; gap: 5px;
}
.mobile-menu-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero (Homepage) ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: linear-gradient(160deg, var(--black) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196,145,58,0.08) 0%, transparent 70%);
}
/* hero-bg-img replaced by .hero-slides slideshow */
.hero-bg-img { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 750px; padding: 0 1.5rem; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p { color: var(--cream-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream-muted);
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Page Header (inner pages) ─────────────────────────────────── */
.page-header {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(160deg, var(--black) 0%, var(--dark-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(196,145,58,0.07) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 0.6rem; }
.page-header p { color: var(--cream-muted); font-size: 1rem; }
.page-header .gold-line { width: 50px; height: 1px; background: var(--gold); margin: 1rem auto 0; }

/* ── Cards (service, info, etc.) ───────────────────────────────── */
.card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover { border-color: rgba(196,145,58,0.4); transform: translateY(-4px); box-shadow: var(--shadow); }

/* ── Service Cards (homepage preview) ──────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(196,145,58,0.15); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(196,145,58,0.15), rgba(232,197,90,0.1));
  border: 1px solid rgba(196,145,58,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--cream-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ── Stats / Numbers ────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; text-align: center; }
.stat-item { padding: 2rem 1rem; }
.stat-number { font-family: var(--ff-serif); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-muted); }

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--cream-2); font-size: 0.92rem; font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; color: var(--gold-pale); text-transform: uppercase; }

/* ── CTA Section ────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(196,145,58,0.12) 0%, rgba(139,100,32,0.08) 100%);
  border-top: 1px solid rgba(196,145,58,0.2);
  border-bottom: 1px solid rgba(196,145,58,0.2);
  text-align: center;
}
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { color: var(--cream-muted); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(196,145,58,0.15);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); letter-spacing: 0.15em; line-height: 1; }
.footer-brand-sub { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-muted); margin-top: 0.25rem; }
.footer-info p { color: var(--cream-muted); font-size: 0.88rem; margin-top: 1rem; line-height: 1.7; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.2);
  border-radius: 50%;
  color: var(--cream-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col h4 { font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--cream-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; font-size: 0.88rem; color: var(--cream-muted); }
.footer-contact-item i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item a { color: var(--cream-muted); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { color: var(--cream-muted); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--cream-muted); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-credit a { color: var(--green) !important; font-weight: 600; }

/* ── About Page ─────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-content h2 { margin-bottom: 1.25rem; }
.story-content p { color: var(--cream-muted); font-size: 0.95rem; }
.story-image img { border-radius: var(--radius-lg); border: 1px solid rgba(196,145,58,0.2); }
.image-caption { text-align: center; font-size: 0.8rem; color: var(--cream-muted); margin-top: 0.75rem; font-style: italic; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--cream-muted); font-size: 0.88rem; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-photo { aspect-ratio: 1; overflow: hidden; background: var(--mid); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--cream-muted); }
.team-info { padding: 1.5rem; }
.team-name { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }

/* ── Services Page ──────────────────────────────────────────────── */
.category-nav {
  position: sticky; top: var(--header-h); z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,145,58,0.15);
  padding: 0;
}
.category-nav-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.category-nav-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--cream-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cat-btn:hover { color: var(--gold); }
.cat-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.service-section { padding: 3.5rem 0; border-bottom: 1px solid rgba(196,145,58,0.08); }
.service-section:last-child { border-bottom: none; }
.service-section-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.service-section-icon { font-size: 1.6rem; color: var(--gold); }
.service-section-header h2 { font-size: 1.8rem; margin: 0; }

.service-table { width: 100%; border-collapse: collapse; }
.service-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background var(--transition); }
.service-table tr:hover { background: rgba(196,145,58,0.04); }
.service-table td { padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--cream-muted); }
.service-table td:first-child { color: var(--cream-2); font-weight: 500; }
.service-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; white-space: nowrap; }
.service-note { font-size: 0.8rem; color: var(--cream-muted); font-style: italic; margin-top: 0.75rem; }

.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.package-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--dark-3), rgba(196,145,58,0.07));
}
.package-badge {
  position: absolute; top: -12px; right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 20px;
}
.package-card h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.package-price { font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); margin-bottom: 0.25rem; }
.package-duration { font-size: 0.8rem; color: var(--cream-muted); margin-bottom: 1.25rem; }
.package-includes { list-style: none; margin-bottom: 1.5rem; }
.package-includes li { font-size: 0.88rem; color: var(--cream-muted); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 0.5rem; }
.package-includes li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(196,145,58,0.25);
  border-radius: 30px;
  color: var(--cream-muted);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; background: var(--dark-3); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.15rem; }
.gallery-info p { font-size: 0.78rem; color: var(--gold-pale); margin: 0; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  padding: 1rem;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-caption { text-align: center; color: var(--cream-muted); font-size: 0.88rem; margin-top: 0.75rem; }
.lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 36px; height: 36px;
  background: var(--gold); color: var(--black);
  border: none; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--gold-light); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; color: var(--white);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── Contact Page ───────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all var(--transition);
}
.info-card:hover { border-color: rgba(196,145,58,0.3); }
.info-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(196,145,58,0.15), rgba(232,197,90,0.08));
  border: 1px solid rgba(196,145,58,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.info-card-body h4 { font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.info-card-body p, .info-card-body a { color: var(--cream-2); font-size: 0.9rem; margin: 0; }
.info-card-body a:hover { color: var(--gold); }

.hours-list { list-style: none; font-size: 0.88rem; color: var(--cream-muted); }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-list li span { color: var(--cream-2); }

/* Contact Form */
.form-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-card h2 { margin-bottom: 0.4rem; }
.form-card > p { color: var(--cream-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,145,58,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(196,145,58,0.04); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-muted); opacity: 0.5; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--dark-2); }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.2rem; accent-color: var(--gold); }
.form-check label { font-size: 0.85rem; color: var(--cream-muted); }
.form-check a { color: var(--gold); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer; gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(196,145,58,0.05); }
.faq-question h3 { font-family: var(--ff-sans); font-size: 0.95rem; font-weight: 600; color: var(--cream-2); margin: 0; }
.faq-question .toggle-icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--cream-muted); font-size: 0.9rem; margin: 0; }
.faq-answer a { color: var(--gold); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: rgba(196,145,58,0.05); }

/* Map */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(196,145,58,0.15); }

/* ── Booking Page ───────────────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.booking-steps { display: flex; gap: 0; margin-bottom: 2.5rem; }
.step-indicator {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.step-indicator::after {
  content: ''; position: absolute; top: 20px; left: 50%;
  width: 100%; height: 1px; background: rgba(196,145,58,0.15); z-index: 0;
}
.step-indicator:last-child::after { display: none; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  color: var(--cream-muted);
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.step-indicator.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-indicator.done .step-num { background: rgba(196,145,58,0.2); border-color: var(--gold); color: var(--gold); }
.step-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); margin-top: 0.5rem; text-align: center; }
.step-indicator.active .step-label { color: var(--gold); }

.form-step { display: none; }
.form-step.active { display: block; }

.booking-card {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.booking-card h3 { font-family: var(--ff-sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }

.service-options-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.service-option {
  border: 1px solid rgba(196,145,58,0.15);
  border-radius: var(--radius);
  padding: 1rem; cursor: pointer;
  transition: all var(--transition);
  display: flex; gap: 0.75rem; align-items: center;
}
.service-option:hover { border-color: var(--gold); background: rgba(196,145,58,0.05); }
.service-option.selected { border-color: var(--gold); background: rgba(196,145,58,0.1); }
.service-option input { display: none; }
.service-option-name { font-size: 0.88rem; color: var(--cream-2); font-weight: 500; }

/* Calendar */
.calendar-container { margin-bottom: 2rem; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.calendar-nav-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--cream-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.calendar-nav-btn:hover { background: rgba(196,145,58,0.15); border-color: var(--gold); color: var(--gold); }
.calendar-month { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--cream); }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.calendar-weekday { text-align: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-muted); padding: 0.35rem 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; cursor: pointer;
  transition: all var(--transition);
  color: var(--cream-2);
}
.calendar-day:hover:not(.disabled):not(.empty) { background: rgba(196,145,58,0.15); color: var(--gold); }
.calendar-day.selected { background: var(--gold); color: var(--black); font-weight: 700; }
.calendar-day.today { border: 1px solid rgba(196,145,58,0.4); }
.calendar-day.disabled { color: rgba(255,255,255,0.15); cursor: not-allowed; }
.calendar-day.empty { cursor: default; }

.time-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.5rem; }
.time-slot {
  padding: 0.6rem; text-align: center;
  border: 1px solid rgba(196,145,58,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.82rem; cursor: pointer;
  color: var(--cream-muted);
  transition: all var(--transition);
}
.time-slot:hover:not(.disabled) { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 600; }
.time-slot.disabled { opacity: 0.3; cursor: not-allowed; }

/* Booking Summary Sidebar */
.booking-summary {
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
}
.booking-summary h3 { font-family: var(--ff-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.summary-item { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.88rem; }
.summary-item:last-child { border-bottom: none; }
.summary-label { color: var(--cream-muted); font-size: 0.78rem; }
.summary-value { color: var(--cream-2); font-weight: 500; text-align: right; }
.summary-empty { color: var(--cream-muted); font-size: 0.85rem; opacity: 0.5; font-style: italic; }

.booking-nav { display: flex; gap: 1rem; margin-top: 2rem; }
.booking-nav .btn { flex: 1; justify-content: center; }

/* Success Message */
.booking-success { display: none; text-align: center; padding: 3rem 2rem; }
.booking-success .success-icon { font-size: 4rem; color: var(--gold); margin-bottom: 1.25rem; }
.booking-success h2 { margin-bottom: 0.75rem; }
.booking-success p { color: var(--cream-muted); }

/* ── Legal Pages ────────────────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.legal-sidebar {
  position: sticky; top: calc(var(--header-h) + 2rem);
  background: var(--dark-3);
  border: 1px solid rgba(196,145,58,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.legal-sidebar h4 { font-family: var(--ff-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.toc-links { display: flex; flex-direction: column; gap: 0.4rem; }
.toc-links a { font-size: 0.85rem; color: var(--cream-muted); transition: color var(--transition); padding: 0.2rem 0; }
.toc-links a:hover { color: var(--gold); }
.legal-updated { font-size: 0.8rem; color: var(--cream-muted); margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.legal-content section { margin-bottom: 2.5rem; scroll-margin-top: calc(var(--header-h) + 2rem); }
.legal-content h2 { font-size: 1.4rem; color: var(--gold-pale); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(196,145,58,0.15); }
.legal-content p, .legal-content li { color: var(--cream-muted); font-size: 0.92rem; }
.legal-content ul { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.legal-content ul li { padding: 0.35rem 0 0.35rem 1.25rem; position: relative; }
.legal-content ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 0.5rem; }
.legal-content a { color: var(--gold); }
.contact-box { background: var(--dark-3); border: 1px solid rgba(196,145,58,0.15); border-radius: var(--radius); padding: 1.25rem; font-size: 0.9rem; }
.contact-box p { color: var(--cream-muted); margin-bottom: 0.35rem; }

/* ── Utilities ──────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--cream-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-auto { margin-top: auto; }
.divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.5rem auto; }
.tag { display: inline-block; padding: 0.2rem 0.75rem; background: rgba(196,145,58,0.1); border: 1px solid rgba(196,145,58,0.25); border-radius: 20px; font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--black);
  border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(196,145,58,0.4);
  transition: all var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); background: var(--gold-light); }

/* Toast */
.toast {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 9999;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.75rem;
  animation: toastIn 0.3s ease;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
}
.toast-success { background: #1a3a20; border: 1px solid #2d6a38; color: #6fcf7a; }
.toast-error { background: #3a1a1a; border: 1px solid #6a2d2d; color: #cf6f6f; }
@keyframes toastIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 5000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(196,145,58,0.2);
  padding: 1rem 0;
}
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-text { font-size: 0.85rem; color: var(--cream-muted); }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .mobile-menu-toggle { display: flex; }
  nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(16px);
    display: none; flex-direction: column; justify-content: center; align-items: center;
    padding: 2rem;
  }
  nav.open { display: flex; }
  nav ul.nav-links { flex-direction: column; align-items: center; gap: 0.5rem; width: 100%; }
  nav ul.nav-links li a { font-size: 1rem; padding: 0.85rem 2rem; text-align: center; width: 100%; max-width: 280px; }
  nav ul.nav-links li:last-child a { margin-top: 0.5rem; }

  .hero-content h1 { font-size: 2.8rem; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-options-grid { grid-template-columns: 1fr 1fr; }
  .lightbox-prev { left: -14px; }
  .lightbox-next { right: -14px; }
  .booking-steps { gap: 0; }
  .step-label { display: none; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .service-options-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .package-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   HERO SLIDESHOW
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Slides container */
.hero-slides {
  position: absolute; inset: 0;
  z-index: 0;
}

/* Individual slide */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  /* Subtle Ken Burns zoom */
  animation: kenBurns 8s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  from { transform: scale(1);     }
  to   { transform: scale(1.06);  }
}

/* Stagger Ken Burns so each slide feels distinct */
.hero-slide:nth-child(1) { animation-delay: 0s;   }
.hero-slide:nth-child(2) { animation-delay: -2s;  }
.hero-slide:nth-child(3) { animation-delay: -4s;  }
.hero-slide:nth-child(4) { animation-delay: -6s;  }

/* Dark gradient overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(5,5,5,0.65) 0%,
    rgba(10,10,10,0.45) 50%,
    rgba(5,5,5,0.70) 100%
  );
}

/* Hero content sits above overlay */
.hero-content {
  position: relative; z-index: 2;
  max-width: 750px; padding: 0 1.5rem;
}

/* Slide indicator dots */
.hero-dots {
  position: absolute; bottom: 5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 0.6rem; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.hero-dot:hover { background: rgba(255,255,255,0.65); }

/* Scroll hint stays on top */
.hero-scroll { z-index: 3; }

/* ================================================================
   SERVICE CARDS — PHOTO BACKGROUND
   ================================================================ */
.service-card[style*="background-image"] {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-color: transparent;
}

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5,5,5,0.72) 0%,
    rgba(20,14,5,0.80) 100%
  );
  z-index: 0;
  border-radius: inherit;
}

/* Push all direct children above overlay */
.service-card[style*="background-image"] > *:not(.service-card-overlay) {
  position: relative;
  z-index: 1;
}

.service-card[style*="background-image"] h3,
.service-card[style*="background-image"] p {
  color: #f5ede0;
}

.service-card[style*="background-image"] .service-icon {
  color: var(--gold);
}

.service-card[style*="background-image"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card[style*="background-image"]:hover .service-card-overlay {
  background: linear-gradient(
    160deg,
    rgba(196,145,58,0.30) 0%,
    rgba(5,5,5,0.82) 100%
  );
}
