/* ============================================================
   Thai Hoang Seoul — Light Luxury Stylesheet
   Inspired by edrichairstudio.com aesthetic
   Palette: White/cream base · Bronze-gold primary · Charcoal text
   Fonts: Playfair Display (headings) · DM Sans (body)
   ============================================================ */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap&subset=vietnamese');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds */
  --bg:           #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-elevated:  #F5F1EA;
  --bg-soft:      #EDE9E2;

  /* Gold palette — warm bronze-gold, primary brand color */
  --gold:         #C9A86A;
  --gold-light:   #D4B87A;
  --gold-dark:    #A37C3B;
  --gold-dim:     rgba(201,168,106,0.10);
  --gold-glow:    rgba(201,168,106,0.18);

  /* Semantic aliases — gold is the primary action/brand color */
  --primary:      #C9A86A;
  --primary-dark: #A37C3B;
  --secondary:    #D4B87A;
  --accent:       rgba(201,168,106,0.08);

  /* Charcoal — text, headings, dark surfaces */
  --charcoal:     #111111;
  --charcoal-mid: #1F1F1F;

  /* Text */
  --text:         #111111;
  --text-muted:   #888880;

  /* Borders */
  --border:        #D8D2C8;
  --border-subtle: rgba(0,0,0,0.07);

  /* Status */
  --danger:  #c0392b;
  --success: #27ae60;

  /* Typography */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: var(--font-head);

  /* Shape */
  --radius:    4px;
  --radius-sm: 2px;

  /* Elevation */
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);

  /* Motion */
  --transition: .28s ease;

  /* Layout */
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 52px 0;
}

/* ── Section labels & headings ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  font-size: .9375rem;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 52px;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9375rem;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Primary: gold fill, dark text */
.btn-primary {
  background: var(--primary);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,106,0.30);
}

/* Outline: gold border + gold text, fills on hover */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* White: white surface, suitable for hero overlays */
.btn-white {
  background: #ffffff;
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Sizes */
.btn-lg {
  padding: 15px 42px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: .8125rem;
}

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,106,0.12);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 32px rgba(0,0,0,0.07);
  border-bottom-color: rgba(201,168,106,0.20);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition);
}

.logo:hover img {
  opacity: 0.82;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .8125rem;
  color: var(--text);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--primary);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Nav CTA */
.btn-nav-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: var(--charcoal) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-nav-book svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-nav-book:hover {
  background: var(--charcoal);
  color: var(--primary) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.btn-nav-book:hover svg {
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .main-nav a {
    padding: 6px 10px;
    font-size: .75rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: .875rem;
    letter-spacing: .06em;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a::after {
    display: none;
  }

  .btn-nav-book {
    padding: 8px 16px;
    font-size: .75rem;
  }

  .btn-nav-book span {
    display: none;
  }
}

/* ============================================================
   7. HERO / SLIDER
   ============================================================ */
.hero {
  margin-top: var(--header-h);
  position: relative;
  background: #111111;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,.75) 0%,
    rgba(17,17,17,.40) 55%,
    rgba(17,17,17,.15) 100%
  );
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #ffffff;
}

/* Kicker label above hero h1 */
.hero-content .kicker {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-content .kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.slider-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 3px;
}

/* ── Fullscreen hero (index page) — height driven by image aspect ratio ── */
.hero-fullscreen {
  min-height: unset;
  height: auto;
  display: block;
  overflow: hidden;
}

/* Swiper fills naturally — no absolute positioning to avoid overflow ── */
.hero-swiper {
  width: 100%;
  overflow: hidden; /* prevent any swiper-wrapper bleed on mobile */
}

.hero-swiper .swiper-slide {
  overflow: hidden;
  line-height: 0; /* remove inline gap below img */
}

/* Image defines the height — aspect-ratio keeps it consistent */
.hero-swiper .swiper-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 1920 / 820;
  object-fit: cover;
}

/* Fallback placeholder when no banners */
.hero-slide-placeholder {
  aspect-ratio: 1920 / 820;
  background: linear-gradient(135deg, #111111, #1F1F1F);
}

/* ── Pagination dots ── */
.hero-pagination {
  bottom: 20px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  border-radius: 50%;
  transition: all .3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* ── Prev / Next nav buttons ── */
.hero-nav-btn {
  width: 44px !important;
  height: 44px !important;
  background: rgba(0,0,0,.45) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: #fff !important;
  transition: background .2s ease, border-color .2s ease !important;
  top: 50% !important;
  margin-top: -22px !important;
}

.hero-nav-btn:hover {
  background: rgba(0,0,0,.75) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.hero-nav-btn::after {
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* Mobile */
@media (max-width: 768px) {
  /* Reset .hero mobile overrides that cause the black gap */
  .hero-fullscreen {
    min-height: unset !important;
    align-items: initial !important;
    padding-bottom: 0 !important;
  }

  .hero-swiper .swiper-slide img,
  .hero-slide-placeholder {
    aspect-ratio: 500 / 214;
  }

  .hero-nav-btn {
    width: 34px !important;
    height: 34px !important;
    margin-top: -17px !important;
  }

  .hero-nav-btn::after {
    font-size: 12px !important;
  }
}

/* ── Booking CTA Band — white section, black card inset ── */
.booking-cta-band {
  background: var(--bg);
}

.booking-cta-inner {
  display: flex;
  width: 100%;
  max-width: 860px;
  margin: 80px auto;
  border-radius: 5px;
  background: #000;
  padding: 35px 40px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.booking-cta-left {
  flex: auto;
}

.booking-cta-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.booking-cta-desc {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.booking-cta-btn {
  display: flex;
  border-radius: 2px;
  background: var(--gold);
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 45px;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  flex-shrink: 0;
  text-decoration: none;
  transition: all .2s ease;
}

.booking-cta-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 5px 5px 0px var(--gold);
  transform: scale(1.025);
}

/* Tablet */
@media (max-width: 900px) {
  .booking-cta-inner {
    margin: 0;
    border-radius: 0;
    padding: 25px 20px;
  }

  .booking-cta-title { font-size: 30px; margin-bottom: 3px; }
  .booking-cta-desc  { font-size: 20px; }
}

/* Mobile */
@media (max-width: 600px) {
  .booking-cta-inner {
    flex-direction: column;
    padding: 20px 15px;
  }

  .booking-cta-title { font-size: 20px; margin-bottom: 5px; text-align: center; }
  .booking-cta-desc  { font-size: 14px; font-weight: 300; text-align: center; }
  .booking-cta-btn   { gap: 8px; padding: 8px 16px; font-size: 16px; }
}

/* ============================================================
   8. SERVICES STRIP
   ============================================================ */
.services-strip {
  background: var(--bg-elevated);
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(163,124,59,.12);
}

.service-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.service-card p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   9. NEWS SECTION
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elevated);
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-cat {
  font-size: .6375rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
}

.news-card-body p {
  font-size: .8125rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.65;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: .75rem;
  color: var(--text-muted);
}

.news-card-footer a {
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.news-card-footer a:hover {
  gap: 10px;
}

/* ── News/Article detail hero ── */
.page-hero {
  background: var(--bg-elevated);
  padding: 80px 0 56px;
  margin-top: var(--header-h);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-head);
  color: var(--text);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  max-width: 760px;
  font-weight: 500;
}

.page-hero .meta {
  color: var(--gold);
  font-size: .875rem;
  margin-top: 14px;
  letter-spacing: .04em;
}

/* Article body */
.article-content {
  max-width: 760px;
}

.article-content img {
  border-radius: var(--radius);
  margin: 28px 0;
  border: 1px solid var(--border-subtle);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 32px 0 14px;
}

.article-content p {
  margin-bottom: 18px;
  color: #444440;
  line-height: 1.85;
}

.article-content ul,
ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: #444440;
}

/* ============================================================
   10. TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--bg-soft);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

.team-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.04);
}

/* Hover overlay — subtle white fade from bottom */
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,.92) 0%, transparent 50%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  transition: opacity var(--transition);
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-overlay .btn {
  font-size: .8rem;
  padding: 9px 22px;
  letter-spacing: .06em;
}

.team-card-info {
  padding: 18px 16px;
  border-top: 1px solid var(--border-subtle);
}

.team-card-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.team-card-spec {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.team-card-stars {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 4px;
}

.team-card-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

/* ── Team skeleton ── */
.team-skeleton {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #EDE8DF 25%, #E4DDD4 50%, #EDE8DF 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

/* ============================================================
   11. SALON SYSTEM
   ============================================================ */
.salon-system-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: start;
}

.salon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.salon-list::-webkit-scrollbar {
  width: 4px;
}

.salon-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

/* Horizontal card: thumbnail left, info right */
.salon-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-card);
}

.salon-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.salon-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(17,17,17,0.08), var(--shadow);
}

.salon-item-img {
  width: 96px;
  flex-shrink: 0;
}

.salon-item-img img {
  width: 96px;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  display: block;
}

.salon-item-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.salon-item-body h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.salon-addr {
  font-size: .775rem;
  color: var(--text-muted);
  display: flex;
  gap: 5px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.salon-addr i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: .7rem;
}

.salon-meta {
  font-size: .775rem;
  color: var(--text-muted);
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 3px;
}

.salon-meta i {
  color: var(--gold);
  flex-shrink: 0;
  width: 11px;
  font-size: .7rem;
}

.salon-meta a {
  color: var(--primary);
  font-weight: 500;
}

/* Map */
.salon-map-wrap {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 520px;
}

.salon-map-wrap iframe {
  height: 100%;
}

@media (max-width: 860px) {
  .salon-system-layout {
    grid-template-columns: 1fr;
  }

  .salon-list {
    max-height: none;
  }

  .salon-map-wrap {
    position: static;
    height: 320px;
  }
}

/* ============================================================
   12. CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary) 50%, var(--gold-light) 100%);
  padding: 72px 0;
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--charcoal);
  font-weight: 600;
}

.cta-band p {
  color: rgba(17,17,17,.68);
  margin-bottom: 0;
  font-size: .9375rem;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  text-align: left;
}

.cta-band-actions,
.cta-band .btn-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Buttons inside gold CTA band — dark charcoal style */
.cta-band .btn-primary {
  background: var(--charcoal);
  color: #ffffff;
}

.cta-band .btn-primary:hover {
  background: #000000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.cta-band .btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(17,17,17,.4);
}

.cta-band .btn-outline:hover {
  background: rgba(17,17,17,.08);
  color: var(--charcoal);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

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

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  letter-spacing: .02em;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: inherit;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 48px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   14. BOOKING FORM
   ============================================================ */
.booking-wrap {
  margin-top: var(--header-h);
}

.booking-hero {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.booking-hero h1 {
  font-family: var(--font-head);
  color: var(--text);
  font-weight: 500;
}

.booking-hero p {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: .9375rem;
}

/* Progress bar */
.booking-steps-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
  position: sticky;
  top: var(--header-h);
  z-index: 10;
}

.steps-list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.steps-list::-webkit-scrollbar {
  display: none;
}

.step-item {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  gap: 7px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.step-item.active {
  border-bottom-color: var(--primary);
}

.step-item.done {
  border-bottom-color: rgba(17,17,17,.25);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,.04);
  color: var(--text-muted);
  font-size: .8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid var(--border-subtle);
}

.step-item.active .step-num {
  background: var(--primary);
  color: var(--charcoal);
  border-color: var(--primary);
}

.step-item.done .step-num {
  background: rgba(17,17,17,.06);
  color: var(--text);
  border-color: var(--border);
}

.step-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  letter-spacing: .04em;
}

.step-item.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

/* Booking body */
.booking-body {
  padding: 48px 0;
  background: var(--bg-soft);
  min-height: 500px;
}

.booking-panel {
  display: none;
}

.booking-panel.active {
  display: block;
}

.booking-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  padding: 32px;
}

.booking-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  letter-spacing: .04em;
}

.booking-card-title i {
  color: var(--gold);
}

/* ── Station cards ── */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.station-opt {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-elevated);
}

.station-opt:hover {
  border-color: var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.station-opt.selected {
  border-color: var(--primary);
  background: var(--gold-dim);
}

.station-opt img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.station-opt h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.station-opt p {
  font-size: .75rem;
  color: var(--text-muted);
}

.station-opt .check {
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--charcoal);
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  float: right;
}

.station-opt.selected .check {
  display: flex;
}

/* ── Stylist cards ── */
.stylist-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stylist-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  background: var(--bg-elevated);
}

.stylist-opt:hover {
  border-color: var(--border);
  background: var(--bg-card);
}

.stylist-opt.selected {
  border-color: var(--primary);
  background: var(--gold-dim);
}

.stylist-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.stylist-opt.selected .stylist-avatar {
  border-color: var(--primary);
}

.stylist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-info {
  flex: 1;
}

.stylist-info h4 {
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}

.stylist-info p {
  font-size: .8125rem;
  color: var(--text-muted);
}

.stylist-stars {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.stylist-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: transparent;
  font-size: .6rem;
}

.stylist-opt.selected .stylist-check {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--charcoal);
}

/* ── Services options ── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-card);
}

.service-opt:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.service-opt.selected {
  border-color: var(--primary);
  background: var(--gold-dim);
}

.service-opt-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.service-opt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-opt-img i {
  color: var(--gold);
  font-size: 1.25rem;
}

.service-opt-info {
  flex: 1;
}

.service-opt-info h4 {
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}

.service-opt-info p {
  font-size: .8125rem;
  color: var(--text-muted);
}

.service-opt-price {
  font-weight: 600;
  color: var(--text);
  font-size: .9375rem;
  white-space: nowrap;
}

.service-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.service-opt.selected .service-check {
  background: var(--primary);
  border-color: var(--primary);
}

.service-opt.selected .service-check::after {
  content: '✓';
  color: var(--charcoal);
  font-size: .7rem;
  font-weight: 700;
}

/* ── Date-time picker ── */
.date-input-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.date-input-group label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: .04em;
}

.form-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  background: var(--bg-card);
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input-wrap {
  flex: 1;
  min-width: 180px;
}

/* ── Slot groups ── */
#slots-grid {
  margin-top: 16px;
}

.slot-group {
  margin-bottom: 22px;
}

.slot-group-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.slots-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.slot-btn {
  padding: 10px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-card);
  transition: all var(--transition);
  color: var(--text);
  text-align: center;
}

.slot-btn:hover:not(:disabled):not(.slot-unavailable) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(17,17,17,.04);
}

.slot-btn.selected {
  background: var(--primary);
  color: var(--charcoal);
  border-color: var(--primary);
  font-weight: 600;
}

.slot-btn:disabled,
.slot-btn.slot-unavailable {
  opacity: .3;
  cursor: not-allowed;
  background: var(--bg-elevated);
  text-decoration: line-through;
}

.slots-loading {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: .875rem;
}

/* ── Stylist + Time combined board ── */
.stylist-time-hint {
  font-size: .8125rem;
  color: var(--text-muted);
  margin: 12px 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stylist-time-hint i {
  color: var(--gold);
  flex-shrink: 0;
}

.stylist-time-board {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.stylist-time-board::-webkit-scrollbar {
  height: 4px;
}

.stylist-time-board::-webkit-scrollbar-track {
  background: var(--bg-elevated);
  border-radius: 4px;
}

.stylist-time-board::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.stylist-col {
  flex-shrink: 0;
  width: 148px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
  max-height: 460px;
  background: var(--bg-card);
}

.stylist-col.col-selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--gold-dim);
}

.stylist-col-header {
  padding: 14px 8px 10px;
  text-align: center;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.stylist-col.col-selected .stylist-col-header {
  background: var(--gold-dim);
  border-bottom-color: var(--gold-glow);
}

.stylist-col-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto 8px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
}

.stylist-col-avatar.avatar-any {
  background: var(--bg-elevated);
  color: var(--text-muted);
}

.stylist-col-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-col-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 3px;
}

.stylist-col.col-selected .stylist-col-name {
  color: var(--gold-dark);
}

.stylist-col-spec {
  font-size: .6375rem;
  color: var(--text-muted);
  line-height: 1.3;
  letter-spacing: .04em;
}

.stylist-col-slots {
  flex: 1;
  overflow-y: auto;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.col-slot-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.col-slot-group-label {
  font-size: .6375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.col-slot-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.col-slot-btn {
  width: 100%;
  padding: 8px 4px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-elevated);
  transition: all var(--transition);
  color: var(--text);
  text-align: center;
  font-family: var(--font-body);
  line-height: 1;
}

.col-slot-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(17,17,17,.04);
}

.col-slot-btn.selected {
  background: var(--primary);
  color: var(--charcoal);
  border-color: var(--primary);
  font-weight: 600;
}

.col-slot-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.col-no-slots {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 20px 4px;
  line-height: 1.5;
}

/* Skeleton for slot columns */
.col-slot-skeleton {
  height: 34px;
  background: linear-gradient(90deg, #EDE8DF 25%, #E4DDD4 50%, #EDE8DF 75%);
  background-size: 200% 100%;
  border-radius: var(--radius-sm);
  animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ── Contact form ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .03em;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-row-single {
  grid-column: 1 / -1;
}

/* ── Booking summary panel ── */
.booking-summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.booking-summary h3 {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .8875rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row .label {
  color: var(--text-muted);
  flex-shrink: 0;
}

.summary-row .value {
  font-weight: 500;
  text-align: right;
  color: var(--text);
}

.summary-total {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  gap: 12px;
}

/* ── Category tabs ── */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cat-tab {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-card);
  color: var(--text-muted);
  transition: all var(--transition);
  letter-spacing: .04em;
}

.cat-tab:hover {
  border-color: var(--primary);
  color: var(--text);
}

.cat-tab.active {
  background: var(--primary);
  color: var(--charcoal);
  border-color: var(--primary);
  font-weight: 600;
}

/* ── Success state ── */
.booking-success {
  text-align: center;
  padding: 56px 24px;
}

.booking-success .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(39,174,96,.08);
  border: 1px solid rgba(39,174,96,.2);
  color: var(--success);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 8px rgba(39,174,96,.04);
}

.booking-success h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}

.booking-success p {
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
  font-size: .9375rem;
  line-height: 1.7;
}

/* ============================================================
   15. UTILITIES & MISC
   ============================================================ */

/* Skeleton shimmer */
.skeleton {
  background: linear-gradient(
    90deg,
    #EDE8DF 25%,
    #E4DDD4 50%,
    #EDE8DF 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  margin-bottom: 16px;
  border-left: 3px solid;
}

.alert-error {
  background: rgba(192,57,43,.06);
  color: var(--danger);
  border-color: var(--danger);
}

.alert-success {
  background: rgba(39,174,96,.06);
  color: var(--success);
  border-color: var(--success);
}

.alert-info {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  background: var(--bg-card);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--charcoal);
  font-weight: 600;
}

/* Spinner */
.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(17,17,17,.08);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 32px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Tags */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--gold-dim);
  border: 1px solid rgba(163,124,59,.2);
  color: var(--gold);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Micro-utilities */
.text-primary { color: var(--gold-dark); }
.fw-bold      { font-weight: 700; }
.mt-auto      { margin-top: auto; }

/* ============================================================
   16. ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--charcoal);
  padding-bottom: 60px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.7) 0%, transparent 60%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}

.about-hero-content p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 520px;
}

/* Stats bar */
.about-stats-bar {
  background: var(--charcoal);
  padding: 36px 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Content layout */
.about-content-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.about-rich-text {
  font-size: .9375rem;
  line-height: 1.85;
  color: #444;
}

.about-rich-text h2,
.about-rich-text h3 {
  margin: 28px 0 12px;
  color: var(--text);
}

.about-rich-text p {
  margin-bottom: 16px;
}

.about-rich-text img {
  border-radius: var(--radius);
  margin: 20px 0;
}

.about-mission-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-glow);
  border-radius: var(--radius);
}

.about-mission-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .875rem;
}

.about-mission-block h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.about-mission-block p {
  font-size: .875rem;
  color: #555;
  line-height: 1.7;
}

/* Highlight cards */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-highlight-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.about-highlight-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.about-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .875rem;
}

.about-highlight-card h4 {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.about-highlight-card p {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stations grid */
.about-stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.about-station-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition);
}

.about-station-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.about-station-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.about-station-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.about-station-card:hover .about-station-img img {
  transform: scale(1.04);
}

.about-station-body {
  padding: 22px;
}

.about-station-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   17. GALLERY / BỘ SƯU TẬP
   ============================================================ */

/* Filter tab bar */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Masonry-like 3-col grid */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-subtle);
}

.gallery-card-img {
  position: relative;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.05);
}

/* Dark overlay + expand icon on hover */
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 55, 64, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-card-overlay i {
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(.8);
  transition: all var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  background: rgba(14, 55, 64, .45);
}

.gallery-card:hover .gallery-card-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Title label below image */
.gallery-card-label {
  padding: 10px 12px;
  font-size: .825rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Empty state */
.gallery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  color: var(--text-muted);
  gap: 16px;
}

.gallery-empty i {
  font-size: 3rem;
  opacity: .35;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 24px;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-lightbox-close:hover {
  background: rgba(255,255,255,.22);
}

.gallery-lightbox-inner {
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.gallery-lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.gallery-lightbox-caption {
  margin-top: 14px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-card  { margin-bottom: 10px; }
}

/* ============================================================
   18. REDUCED MOTION (was 17)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   17. MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

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

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .cta-band {
    padding: 52px 0;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

  .booking-card {
    padding: 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .station-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INNER HERO — Shared dark-luxury hero for inner pages
   (bo-suu-tap · academy · he-thong-salon)
   Dark charcoal bg · Gold ornaments · Cinematic serif heading
   ============================================================ */
.inner-hero {
  position: relative;
  padding: clamp(100px, 18vh, 160px) 0 clamp(80px, 14vh, 120px);
  background: #111111;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

/* Gold radial glow from bottom-center */
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 115%, rgba(201,168,106,0.18) 0%, transparent 68%),
    radial-gradient(ellipse 130% 70% at 50% -15%, rgba(201,168,106,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Inner border frame — elegant luxury touch */
.inner-hero::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,106,0.12);
  pointer-events: none;
  z-index: 0;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

/* ── Label (uppercase tracker above h1) ── */
.inner-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.inner-hero-label::before,
.inner-hero-label::after {
  content: '';
  width: 44px;
  height: 1px;
  flex-shrink: 0;
}

.inner-hero-label::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.inner-hero-label::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}

/* ── Main heading ── */
.inner-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}

/* Gold-tinted word emphasis */
.inner-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

/* ── Diamond ornament divider ── */
.inner-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 26px;
}

.inner-hero-divider::before,
.inner-hero-divider::after {
  content: '';
  width: 52px;
  height: 1px;
  background: rgba(201,168,106,0.45);
}

.inner-hero-divider-gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(201,168,106,0.5);
}

/* ── Description text ── */
.inner-hero-desc {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.85;
  max-width: 460px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── Entrance animations ── */
@keyframes innerHeroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.inner-hero-label   { animation: innerHeroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) both; }
.inner-hero h1      { animation: innerHeroFadeUp 0.75s 0.1s cubic-bezier(0.16,1,0.3,1) both; }
.inner-hero-divider { animation: innerHeroFadeUp 0.65s 0.22s cubic-bezier(0.16,1,0.3,1) both; }
.inner-hero-desc    { animation: innerHeroFadeUp 0.65s 0.32s cubic-bezier(0.16,1,0.3,1) both; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .inner-hero {
    padding: clamp(80px, 15vh, 120px) 0 clamp(60px, 10vh, 90px);
  }

  .inner-hero::after {
    inset: 12px;
  }

  .inner-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .inner-hero::after {
    display: none;
  }
}
