/* ============================================================
   LUMIERE & SOYE - Luxury Spa & Salon
   "Soft Luxury & Serenity" Design System
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --soft-ivory: #f9f7f2;
  --pale-blush: #f3e5e1;
  --rose-gold: #b76e79;
  --rose-gold-light: #c98a93;
  --rose-gold-dark: #9a5a64;
  --champagne-gold: #d4af37;
  --champagne-gold-light: #e0c36a;
  --deep-charcoal: #333333;
  --taupe-grey: #7a7a7a;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 4px 30px rgba(183, 110, 121, 0.08);
  --shadow-medium: 0 8px 40px rgba(183, 110, 121, 0.12);
  --shadow-hover: 0 12px 50px rgba(183, 110, 121, 0.18);
  --shadow-gold: 0 8px 40px rgba(212, 175, 55, 0.15);
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  --max-width: 1280px;
  --section-padding: 100px 0;
  --container-padding: 0 24px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--deep-charcoal);
  background-color: var(--soft-ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep-charcoal);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

p {
  color: var(--taupe-grey);
  font-size: 0.95rem;
  line-height: 1.8;
}

.text-italic {
  font-style: italic;
}

.text-gold {
  color: var(--champagne-gold);
}

.text-rose {
  color: var(--rose-gold);
}

/* ── Page Transition Overlay ── */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--soft-ivory);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white-90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
}

.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--champagne-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.navbar__logo span {
  font-weight: 700;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-charcoal);
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--rose-gold);
}

.navbar__cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--rose-gold);
  color: var(--rose-gold);
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.navbar__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rose-gold);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.navbar__cta:hover::before {
  left: 0;
}

.navbar__cta:hover {
  color: var(--white);
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger__line {
  width: 28px;
  height: 1.5px;
  background: var(--deep-charcoal);
  transition: var(--transition-fast);
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--soft-ivory);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__link {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-charcoal);
  transition: var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--rose-gold);
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  padding: 120px 24px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--taupe-grey);
  letter-spacing: 0.05em;
}

.breadcrumbs__link {
  color: var(--taupe-grey);
  transition: var(--transition-fast);
}

.breadcrumbs__link:hover {
  color: var(--rose-gold);
}

.breadcrumbs__separator {
  color: var(--rose-gold-light);
  font-size: 0.7rem;
}

.breadcrumbs__current {
  color: var(--rose-gold);
  font-weight: 500;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ── Section ── */
.section {
  padding: var(--section-padding);
}

.section--blush {
  background: var(--pale-blush);
}

.section--ivory {
  background: var(--soft-ivory);
}

.section--white {
  background: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--champagne-gold);
  margin: 20px auto 0;
}

.section__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--taupe-grey);
  font-size: 1.1rem;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn--primary {
  background: var(--rose-gold);
  color: var(--white);
  border: 1px solid var(--rose-gold);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--rose-gold-dark);
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn--primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--outline {
  background: transparent;
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
}

.btn--outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn--gold {
  background: transparent;
  color: var(--champagne-gold);
  border: 1px solid var(--champagne-gold);
}

.btn--gold:hover {
  background: var(--champagne-gold);
  color: var(--white);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(249, 247, 242, 0.3) 0%,
    rgba(249, 247, 242, 0.5) 50%,
    rgba(249, 247, 242, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--rose-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}

.hero__brand-amp {
  font-size: 0.6em;
  color: var(--champagne-gold);
  font-style: italic;
  margin: 0 4px;
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--taupe-grey);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero__divider {
  width: 80px;
  height: 1px;
  background: var(--champagne-gold);
  margin: 0 auto 40px;
}

/* ── Experience Cards ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-gold-light);
}

.experience-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-card__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--champagne-gold);
  fill: none;
  stroke-width: 1.2;
}

.experience-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--deep-charcoal);
}

.experience-card__text {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.testimonials__slider {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--champagne-gold);
}

.testimonial-card__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--deep-charcoal);
  margin-bottom: 24px;
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--taupe-grey);
  margin-top: 4px;
}

/* Swiper customization */
.testimonials .swiper-pagination-bullet {
  background: var(--rose-gold-light);
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: var(--transition-fast);
}

.testimonials .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--rose-gold);
  width: 24px;
  border-radius: 4px;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-gold-light);
}

.service-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--champagne-gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.service-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--taupe-grey);
}

.service-card__meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.service-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--rose-gold);
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-tab {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--pale-blush);
  border-radius: 50px;
  color: var(--taupe-grey);
  transition: var(--transition-fast);
  cursor: pointer;
  background: var(--white);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

/* ── Price List ── */
.price-list {
  max-width: 800px;
  margin: 0 auto;
}

.price-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--pale-blush);
  transition: var(--transition-fast);
}

.price-list__item:hover {
  padding-left: 12px;
}

.price-list__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--deep-charcoal);
}

.price-list__detail {
  font-size: 0.82rem;
  color: var(--taupe-grey);
  margin-top: 2px;
}

.price-list__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--rose-gold);
  white-space: nowrap;
}

.price-list__divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--pale-blush), transparent);
  margin: 0 20px;
}

/* ── Stylist Cards ── */
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stylist-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 520px;
  cursor: pointer;
  group: true;
}

.stylist-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(30%);
}

.stylist-card:hover .stylist-card__image {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.stylist-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 28px 28px;
  background: linear-gradient(
    0deg,
    rgba(51, 51, 51, 0.9) 0%,
    rgba(51, 51, 51, 0.4) 60%,
    transparent 100%
  );
  transition: var(--transition-smooth);
}

.stylist-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.stylist-card__specialty {
  font-size: 0.8rem;
  color: var(--champagne-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stylist-card__experience {
  font-size: 0.78rem;
  color: var(--white-70);
  margin-bottom: 12px;
}

.stylist-card__desc {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.stylist-card:hover .stylist-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.stylist-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.stylist-card:hover .stylist-card__btn {
  opacity: 1;
  transform: translateY(0);
}

.stylist-card__btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--champagne-gold);
  fill: none;
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.stylist-card__btn:hover svg {
  transform: translateX(4px);
}

/* ── Certifications ── */
.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
}

.certification-logo {
  height: 65px;
  opacity: 0.75;
  transition: var(--transition-fast);
}

.certification-logo:hover {
  opacity: 1;
}

/* ── Gallery Masonry ── */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item__image {
  width: 100%;
  display: block;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-item__image {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(183, 110, 121, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(183, 110, 121, 0.25);
}

.gallery-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white-90);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-90);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__image {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
}

.lightbox__close:hover {
  background: var(--rose-gold);
}

.lightbox__close:hover svg {
  stroke: var(--white);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep-charcoal);
  fill: none;
  stroke-width: 2;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
}

.lightbox__nav:hover {
  background: var(--rose-gold);
}

.lightbox__nav:hover svg {
  stroke: var(--white);
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep-charcoal);
  fill: none;
  stroke-width: 2;
}

.lightbox__prev {
  left: 30px;
}

.lightbox__next {
  right: 30px;
}

/* ── Video Gallery ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-card__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-card:hover .video-card__thumbnail {
  transform: scale(1.04);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white-90);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-medium);
}

.video-card:hover .video-card__play {
  background: var(--rose-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play svg {
  width: 24px;
  height: 24px;
  fill: var(--rose-gold);
  margin-left: 3px;
  transition: var(--transition-fast);
}

.video-card:hover .video-card__play svg {
  fill: var(--white);
}

.video-card__title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* ── Booking Form ── */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group {
  position: relative;
}

.form-group__input,
.form-group__select,
.form-group__textarea {
  width: 100%;
  padding: 16px 0 8px;
  border: none;
  border-bottom: 1px solid var(--pale-blush);
  background: transparent;
  font-size: 0.95rem;
  color: var(--deep-charcoal);
  transition: var(--transition-fast);
  outline: none;
}

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

.form-group__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b76e79' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group__label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 0.88rem;
  color: var(--taupe-grey);
  transition: var(--transition-fast);
  pointer-events: none;
}

.form-group__input:focus ~ .form-group__label,
.form-group__input:not(:placeholder-shown) ~ .form-group__label,
.form-group__select:focus ~ .form-group__label,
.form-group__select:valid ~ .form-group__label,
.form-group__textarea:focus ~ .form-group__label,
.form-group__textarea:not(:placeholder-shown) ~ .form-group__label {
  top: 0;
  font-size: 0.72rem;
  color: var(--rose-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width 0.4s ease;
}

.form-group__input:focus ~ .form-group__line,
.form-group__select:focus ~ .form-group__line,
.form-group__textarea:focus ~ .form-group__line {
  width: 100%;
}

.form-group--full {
  grid-column: 1 / -1;
}

/* ── Contact Info ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card__text {
  font-size: 0.88rem;
  color: var(--taupe-grey);
  line-height: 1.6;
}

.contact-card__link {
  color: var(--rose-gold);
  font-weight: 500;
}

.contact-card__link:hover {
  color: var(--rose-gold-dark);
}

/* ── Map ── */
.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--pale-blush);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--deep-charcoal);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--rose-gold);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--pale-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 2;
}

.faq-item.active .faq-item__icon svg {
  stroke: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── Counters ── */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-item {
  text-align: center;
  padding: 32px 16px;
}

.counter-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item__label {
  font-size: 0.82rem;
  color: var(--taupe-grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  position: relative;
}

.cta-section__title {
  margin-bottom: 16px;
}

.cta-section__text {
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  background: var(--white);
  padding: 60px 24px 30px;
  border-top: 1px solid var(--pale-blush);
}

.footer__top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--pale-blush);
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--champagne-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__brand-text {
  font-size: 0.85rem;
  color: var(--taupe-grey);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--deep-charcoal);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--taupe-grey);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--rose-gold);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pale-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--taupe-grey);
  transition: var(--transition-fast);
}

.footer__social-link:hover svg {
  fill: var(--white);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--taupe-grey);
}

/* ── Note Card ── */
.note-card {
  background: var(--pale-blush);
  border-radius: var(--border-radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}

.note-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
}

.note-card__text {
  font-size: 0.88rem;
  color: var(--deep-charcoal);
}

/* ── Navigation Buttons ── */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stylists-grid .stylist-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-masonry {
    columns: 2;
  }

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

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

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

  .navbar__menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 18px 24px;
  }

  .navbar.scrolled {
    padding: 12px 24px;
  }

  .hero__brand {
    letter-spacing: 0.08em;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .stylists-grid .stylist-card:last-child {
    max-width: 100%;
  }

  .stylist-card {
    height: 420px;
  }

  .gallery-masonry {
    columns: 1;
  }

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

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

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

  .booking-form {
    padding: 32px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand-text {
    max-width: 100%;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

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

  .counter-item__number {
    font-size: 2rem;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: center;
  }

  .breadcrumbs {
    padding: 100px 24px 16px;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero__brand {
    font-size: 2.4rem;
  }

  .service-card__image-wrap {
    height: 200px;
  }

  .price-list__item {
    flex-wrap: wrap;
    gap: 4px;
  }

  .price-list__divider {
    display: none;
  }
}

/* ── Utility / Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ── Loading Screen ── */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--soft-ivory);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader__brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--champagne-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 120px;
  height: 1px;
  background: var(--pale-blush);
  position: relative;
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rose-gold);
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ── Shimmer Button Effect ── */
.btn--shimmer {
  position: relative;
  overflow: hidden;
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--champagne-gold));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ── Selection ── */
::selection {
  background: var(--rose-gold);
  color: var(--white);
}

::-moz-selection {
  background: var(--rose-gold);
  color: var(--white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--soft-ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--rose-gold-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose-gold);
}
