/* ================================================================
   CHAND UNISEX SALON — style.css
   Aesthetic: Gilded Elegance — deep warm blacks with rich gold accents
   Fonts: Playfair Display (headings) + Raleway (body)
================================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Colors */
  --black:        #0c0905;
  --dark:         #120e08;
  --dark-alt:     #1c1710;
  --dark-card:    #211b12;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dim:     #8a7030;
  --gold-pale:    #f5e8c0;
  --cream:        #faf6f0;
  --white:        #ffffff;
  --text-light:   #f0ead8;
  --text-muted:   #9e8f78;
  --text-dark:    #1a1510;
  --border-gold:  rgba(201,168,76,0.25);
  --border-dark:  rgba(255,255,255,0.06);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  /* Spacing */
  --section-pad:  120px;
  --container:    1260px;
  --radius:       12px;
  --radius-lg:    20px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast:   0.2s var(--ease);
  --trans-med:    0.4s var(--ease);
  --trans-slow:   0.6s var(--ease);

  /* Shadows */
  --shadow-gold:  0 8px 40px rgba(201,168,76,0.18);
  --shadow-dark:  0 20px 60px rgba(0,0,0,0.6);
  --shadow-card:  0 4px 30px rgba(0,0,0,0.4);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* Selection */
::selection { background: var(--gold); color: var(--black); }

/* ── 3. UTILITY CLASSES ───────────────────────────────────────── */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-heading.light { color: var(--white); }

.section-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.section-subtext.light { color: rgba(245,240,232,0.75); }

.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all var(--trans-med);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 32px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(201,168,76,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-large {
  padding: 17px 44px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ── 5. ANNOUNCEMENT BAR ──────────────────────────────────────── */
#announcement-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  z-index: 100;
}

.announcement-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex: 1;
  text-align: center;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ann-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--trans-fast);
}
.ann-phone:hover { color: var(--gold-light); }

.ann-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--trans-fast);
}
.ann-social:hover { color: var(--gold); }

/* ── 6. HEADER / NAVBAR ───────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(12,9,5,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--trans-med), box-shadow var(--trans-med);
}
#header.scrolled {
  background: rgba(12,9,5,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--trans-med);
}
.logo:hover .logo-emblem { transform: rotate(-8deg) scale(1.08); }

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--trans-fast);
  letter-spacing: 0.04em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--trans-fast);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 60%; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  transition: all var(--trans-fast);
}
.nav-social-icon:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  transform: translateY(-1px);
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: all var(--trans-fast);
}
.btn-book-now:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  margin-left: auto;
  cursor: pointer;
}
.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--trans-fast);
  transform-origin: left center;
}
.hamburger.open .ham-line:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: var(--dark-alt);
  border-top: 1px solid var(--border-dark);
}
.mobile-menu.open {
  max-height: 500px;
}
.mobile-nav-links {
  padding: 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  display: block;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--trans-fast);
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-cta {
  padding: 20px 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.mobile-social {
  display: flex;
  gap: 14px;
}
.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  transition: all var(--trans-fast);
}
.mobile-social a:hover { color: var(--gold); border-color: var(--gold); }

/* ── 7. HERO SECTION ──────────────────────────────────────────── */
#hero {
  position: relative;
  height: calc(100svh - var(--ann-h, 38px));
  min-height: 580px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,9,5,0.92) 0%,
    rgba(12,9,5,0.7) 50%,
    rgba(12,9,5,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  max-width: 740px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}
.hero-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,234,216,0.75);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-bar {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── 8. STATS SECTION ─────────────────────────────────────────── */
#stats {
  background: var(--dark-alt);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 60px 40px;
}

.stats-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 30px 24px;
  position: relative;
}
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-gold);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--gold);
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-dim);
}
.stat-card p {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── 9. ABOUT SECTION ─────────────────────────────────────────── */
#about {
  padding: var(--section-pad) 0;
  background: var(--black);
}

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

.about-visual {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow-dark);
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(12,9,5,0.4));
  z-index: 1;
}

.about-year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.badge-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 2px;
}

.about-text-col { display: flex; flex-direction: column; gap: 0; }

.about-features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.feature strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3px;
}
.feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── 10. SERVICES SECTION ─────────────────────────────────────── */
#services {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

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

.service-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card.service-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(145deg, #221c12, #1a1510);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img-wrap img {
  transition: transform 0.7s var(--ease);
  height: 100%;
  width: 100%;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.service-card:hover .card-hover-overlay { opacity: 1; }

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-info {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.service-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap var(--trans-fast), color var(--trans-fast);
  margin-top: auto;
}
.cta-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* ── 11. COURSES SECTION ──────────────────────────────────────── */
#courses {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.courses-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.courses-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,7,4,0.95) 0%, rgba(10,7,4,0.88) 100%);
}

.courses-inner {
  position: relative;
  z-index: 2;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.course-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-med);
  backdrop-filter: blur(10px);
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  background: rgba(201,168,76,0.06);
}

.course-img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.course-img-wrap img {
  transition: transform 0.6s var(--ease);
}
.course-card:hover .course-img-wrap img { transform: scale(1.06); }
.course-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,7,4,0.7));
}

.course-body {
  padding: 22px 22px 26px;
}
.course-emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.course-body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.course-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.course-highlights {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.course-highlights li {
  font-size: 0.8rem;
  color: var(--gold-pale);
  font-weight: 500;
}
.course-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.courses-cta-block {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.05);
  backdrop-filter: blur(10px);
}
.courses-cta-block p {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ── 12. GALLERY SECTION ──────────────────────────────────────── */
#gallery {
  padding: var(--section-pad) 0;
  background: var(--black);
}

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

.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: zoom-in;
}
.g-item.g-tall {
  grid-row: span 2;
  height: 100%;
}
.g-item.g-wide {
  grid-column: span 2;
}
.g-item img {
  transition: transform 0.6s var(--ease);
}
.g-item:hover img { transform: scale(1.07); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,9,5,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-pale);
}

.gallery-follow {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gallery-follow p {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── 13. SEO SECTION ──────────────────────────────────────────── */
#seo-section {
  padding: 60px 0;
  background: var(--dark-alt);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.seo-block {
  margin-bottom: 36px;
}
.seo-block:last-child { margin-bottom: 0; }

.seo-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-tag {
  display: inline-block;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 50px;
  transition: all var(--trans-fast);
  cursor: pointer;
}
.seo-tag:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(201,168,76,0.07);
}

/* ── 14. CONTACT SECTION ──────────────────────────────────────── */
#contact {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
}
.contact-card:first-child { padding-top: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--trans-fast);
}
.contact-link:hover { color: var(--gold); }

.closed-note { color: var(--gold-dim) !important; font-size: 0.82rem !important; }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}
.contact-soc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-dark);
  transition: all var(--trans-fast);
}
.contact-soc-link:hover {
  color: var(--gold);
  border-color: var(--border-gold);
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-dark);
  height: 480px;
}
.contact-map-wrap iframe { width: 100%; height: 100%; }

/* ── 15. FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--dark-alt);
  border-top: 1px solid var(--border-gold);
}

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand { padding-right: 20px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.fsoc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  transition: all var(--trans-fast);
}
.fsoc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '·';
  color: var(--gold-dim);
}
.footer-col ul a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-contact-item svg { color: var(--gold-dim); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a {
  color: var(--cream);
  font-weight: 600;
  transition: color var(--trans-fast);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-dark);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-seo-tags {
  font-size: 0.72rem !important;
  color: rgba(158,143,120,0.5) !important;
}

/* ── 16. BACK TO TOP ──────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-alt);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans-med);
  box-shadow: var(--shadow-card);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ── 18. SCROLL REVEAL STATES ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="slide-right"] {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal="slide-left"] {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ── 19. RESPONSIVE DESIGN ────────────────────────────────────── */

/* Large desktops */
@media (max-width: 1200px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid   { gap: 50px; }
}

/* Tablets */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-right .nav-social-icon { display: none; }
  .nav-right .btn-book-now { display: none; }  /* hidden on mobile — CTA lives in mobile menu */
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame    { height: 420px; }
  .about-year-badge   { bottom: -15px; right: 10px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid       { grid-template-columns: 1fr; }
  .contact-map-wrap   { height: 340px; }
  .gallery-masonry    { grid-template-columns: repeat(2, 1fr); }
  .g-item.g-wide      { grid-column: span 2; }
}

/* Mobile landscape + large phones */
@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .section-container { padding: 0 20px; }
  .announcement-inner { padding: 8px 20px; }
  .announcement-text { display: none; }

  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2)::after { display: none; }
  .stat-card:nth-child(4)::after { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .courses-grid  { grid-template-columns: 1fr 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero-content { padding: 0 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* Small phones */
@media (max-width: 480px) {
  .courses-grid     { grid-template-columns: 1fr; }
  .gallery-masonry  { grid-template-columns: 1fr; }
  .g-item.g-tall    { height: 260px; }
  .g-item.g-wide    { grid-column: span 1; }

  .about-year-badge { width: 90px; height: 90px; }
  .badge-num        { font-size: 1.3rem; }

  .contact-socials  { flex-direction: column; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 2.8rem); }

  .stats-container { grid-template-columns: repeat(2, 1fr); }
}

/* ── 20. PRINT STYLES ─────────────────────────────────────────── */
@media print {
  body { background: white; color: black; }
}

/* ═══════════════════════════════════════════════════════════════
   21. HERO SLIDER — fullscreen, per-slide content
   ═══════════════════════════════════════════════════════════════ */

/* ── Each slide ── */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease;
  will-change: opacity, transform;
  z-index: 0;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* ── Per-slide gradient overlay ── */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(12, 9, 5, 0.90) 0%,
    rgba(12, 9, 5, 0.65) 55%,
    rgba(12, 9, 5, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;              /* never intercept clicks */
}

/* ── Per-slide content ── */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  max-width: 720px;
  /* Animate in when slide becomes active */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease 0.3s, transform 0.85s ease 0.3s;
}

.hero-slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Content typography */
.slide-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
}

.st-line { display: block; }
.st-accent { color: var(--gold); font-style: italic; font-weight: 400; }

.slide-desc {
  font-size: 1.02rem;
  color: rgba(240, 234, 216, 0.78);
  line-height: 1.85;
  margin-bottom: 34px;
  max-width: 500px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Arrow buttons ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(12, 9, 5, 0.50);
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: rgba(201, 168, 76, 0.28);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* ── Dot indicators ── */
.slider-dots {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.65rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(201, 168, 76, 0.14);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
}

/* ── Scroll hint ── */
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-bar {
  width: 1.5px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Mobile hero ── */
@media (max-width: 768px) {
  .slide-content { padding: 0 24px; max-width: 100%; }
  .slide-title   { font-size: clamp(2rem, 8vw, 3rem); }
  .slide-desc    { font-size: 0.92rem; }
  .slider-arrow  { width: 42px; height: 42px; }
  .slider-prev   { left: 0.75rem; }
  .slider-next   { right: 0.75rem; }
  .hero-scroll   { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   22. GALLERY — HORIZONTAL MARQUEE (auto-scroll both directions)
   ═══════════════════════════════════════════════════════════════ */

#gallery {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  overflow: hidden;
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 1.1rem;
  /* Subtle fade at edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  will-change: transform;
}

/* Row 1 scrolls left */
.marquee-left {
  animation: mqLeft 42s linear infinite;
}

/* Row 2 scrolls right (starts at -50% so it begins from the middle) */
.marquee-right {
  animation: mqRight 36s linear infinite;
}

@keyframes mqLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mqRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on hover for a premium interactive feel */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Individual image cards — 9:16 Instagram Reel / Story ratio ── */
.mq-item {
  flex-shrink: 0;
  /* 9:16 portrait — same ratio as Instagram Reels & Stories */
  width: 195px;
  height: 346px;
  border-radius: 20px;          /* rounded like a phone screen / story card */
  overflow: hidden;
  position: relative;
  cursor: pointer;
  /* Thin gold border for premium story-frame feel */
  box-shadow:
    0 0 0 1.5px rgba(201,168,76,0.35),
    0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.mq-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}

/* Gold shimmer overlay on hover */
.mq-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(201,168,76,0.08) 0%,
    transparent 50%,
    rgba(0,0,0,0.18) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mq-item:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow:
    0 0 0 2px rgba(201,168,76,0.7),
    0 20px 50px rgba(201,168,76,0.22);
}

.mq-item:hover img    { transform: scale(1.06); }
.mq-item:hover::after { opacity: 1; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

/* Gallery follow CTA */
.gallery-follow {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.gallery-follow p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mq-item { width: 148px; height: 263px; border-radius: 16px; }
}

@media (max-width: 480px) {
  .mq-item { width: 118px; height: 210px; border-radius: 14px; }
}
