/* ═══════════════════════════════════════════════════════════════
   LUMIÈRE — Beauty Salon
   AWWWARDS-level Design System
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colors */
  --c-white: #FFFFFF;
  --c-cream: #FAF8F5;
  --c-cream-dark: #F2EDE8;
  --c-blush: #F5E6E0;
  --c-blush-dark: #E8CFC5;
  --c-gold: #B8977E;
  --c-gold-light: #D4BC9E;
  --c-charcoal: #2C2C2C;
  --c-charcoal-light: #555555;
  --c-charcoal-dark: #1A1A1A;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs: clamp(0.7rem, 0.8vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 0.9vw, 0.9rem);
  --fs-base: clamp(0.95rem, 1vw, 1.05rem);
  --fs-md: clamp(1.1rem, 1.2vw, 1.25rem);
  --fs-lg: clamp(1.4rem, 2vw, 2rem);
  --fs-xl: clamp(2rem, 3.5vw, 3.5rem);
  --fs-2xl: clamp(2.5rem, 5vw, 5rem);
  --fs-3xl: clamp(3rem, 7vw, 7rem);
  --fs-hero: clamp(3.5rem, 9vw, 9rem);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 10rem;
  --sp-section: clamp(5rem, 10vh, 8rem);

  /* Layout */
  --container-width: 1400px;
  --container-padding: clamp(1.5rem, 4vw, 4rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

  --duration-fast: 0.3s;
  --duration-base: 0.5s;
  --duration-slow: 0.8s;
  --duration-slower: 1.2s;

  /* Z-index */
  --z-cursor: 9999;
  --z-preloader: 9998;
  --z-header: 110;
  --z-mobile-menu: 100;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-charcoal);
  background-color: var(--c-cream);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

::selection {
  background-color: var(--c-blush);
  color: var(--c-charcoal);
}

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

.section {
  padding: var(--sp-section) 0;
}

/* ─── Typography ────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: var(--sp-lg);
}

.section-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-charcoal);
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--c-gold);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--c-charcoal-light);
  line-height: 1.7;
  max-width: 600px;
  margin-top: var(--sp-md);
}

.section-header {
  margin-bottom: var(--sp-xl);
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-label {
  justify-content: center;
}

.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Custom Cursor (only on desktop with pointer) ──────────── */
.cursor,
.cursor-follower {
  display: none;
}

body.has-cursor .cursor {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--c-charcoal);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              background 0.3s var(--ease-out),
              opacity 0.3s var(--ease-out);
  mix-blend-mode: difference;
}

body.has-cursor .cursor-follower {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-charcoal);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out),
              height 0.4s var(--ease-out),
              border-color 0.3s,
              opacity 0.3s;
  opacity: 0.4;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor select,
body.has-cursor textarea {
  cursor: none;
}

.cursor.is-active {
  width: 60px;
  height: 60px;
  background: var(--c-gold);
  opacity: 0.3;
  mix-blend-mode: normal;
}

.cursor-follower.is-active {
  width: 80px;
  height: 80px;
  border-color: var(--c-gold);
  opacity: 0.2;
}

.cursor.is-hidden,
.cursor-follower.is-hidden {
  opacity: 0;
  width: 0;
  height: 0;
}

/* ─── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-charcoal-dark);
  z-index: var(--z-preloader);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out);
}

.preloader.is-done {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-lg);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 0 auto var(--sp-md);
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--c-gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.preloader-counter {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--c-gold);
  letter-spacing: 0.1em;
}

/* ─── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: var(--sp-md) 0;
  background: rgba(250, 248, 245, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s var(--ease-out),
              background 0.4s,
              padding 0.4s var(--ease-out);
}

.header.is-scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-sm) 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Service pages — solid header, always visible */
.header.header--solid {
  background: var(--c-cream);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  opacity: 1;
  transform: none;
}

/* Header is always visible — no is-hidden state */

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

.logo {
  position: relative;
  z-index: calc(var(--z-mobile-menu) + 10);
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-charcoal);
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  gap: var(--sp-lg);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-charcoal-light);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav-link:hover {
  color: var(--c-charcoal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

/* ─── Nav Phone ────────────────────────────────────────────── */
.nav-phone {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-charcoal);
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--c-gold);
}

/* ─── Nav Social Icons ─────────────────────────────────────── */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 44, 0.15);
  color: var(--c-charcoal);
  transition: all var(--duration-fast) var(--ease-out);
  flex-shrink: 0;
}

.nav-social:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(184, 151, 126, 0.08);
}

.nav-social svg {
  width: 22px;
  height: 22px;
}

/* Header scrolled state — adjust social icon colors */
.header.is-scrolled .nav-social {
  border-color: rgba(44, 44, 44, 0.12);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85em 2em;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--c-charcoal);
  color: var(--c-cream);
  border: 1px solid var(--c-charcoal);
}

.btn-primary:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
}

.btn-ghost {
  background: transparent;
  color: var(--c-charcoal);
  border: 1px solid var(--c-charcoal);
}

.btn-ghost:hover {
  background: var(--c-charcoal);
  color: var(--c-cream);
}

.btn-nav {
  background: transparent;
  color: var(--c-charcoal);
  border: 1px solid var(--c-charcoal);
  padding: 0.6em 1.6em;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-nav:hover {
  background: var(--c-charcoal);
  color: var(--c-cream);
}

.btn-lg {
  padding: 1.1em 2.6em;
  font-size: var(--fs-base);
}

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

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn-icon {
  transform: translate(3px, -3px);
}

/* ─── Burger ────────────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: calc(var(--z-mobile-menu) + 10);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.burger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-charcoal);
  transition: all var(--duration-fast) var(--ease-out);
}

.burger-line:first-child {
  margin-bottom: 6px;
}

.burger.is-active .burger-line:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.burger.is-active .burger-line:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* ─── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--c-cream);
  z-index: var(--z-mobile-menu);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-out),
              visibility var(--duration-slow);
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem var(--container-padding) 50px;
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: 30px;
}

.mobile-menu-link {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-block;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out),
              opacity 0.6s var(--ease-out),
              color 0.3s;
}

.mobile-menu.is-open .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open li:nth-child(1) .mobile-menu-link { transition-delay: 0.1s; }
.mobile-menu.is-open li:nth-child(2) .mobile-menu-link { transition-delay: 0.15s; }
.mobile-menu.is-open li:nth-child(3) .mobile-menu-link { transition-delay: 0.2s; }
.mobile-menu.is-open li:nth-child(4) .mobile-menu-link { transition-delay: 0.25s; }
.mobile-menu.is-open li:nth-child(5) .mobile-menu-link { transition-delay: 0.3s; }
.mobile-menu.is-open li:nth-child(6) .mobile-menu-link { transition-delay: 0.35s; }

.mobile-menu-link:hover {
  color: var(--c-gold);
}

/* ─── Mobile Menu Info Section ─────────────────────────────── */
.mobile-menu-info {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out) 0.4s;
}

.mobile-menu.is-open .mobile-menu-info {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-info-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
}

.mobile-menu-info-text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--c-charcoal-light);
  max-width: 320px;
  margin: 0 auto var(--sp-md);
}

.mobile-menu-schedule {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}

.mobile-menu-schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
  font-size: var(--fs-sm);
  color: var(--c-charcoal-light);
}

.mobile-menu-schedule-row span:first-child {
  font-weight: 500;
  color: var(--c-charcoal);
}

.mobile-menu-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-size: var(--fs-sm);
  color: var(--c-charcoal-light);
  margin-bottom: var(--sp-sm);
}

.mobile-menu-address svg {
  flex-shrink: 0;
  color: var(--c-gold);
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
  padding: 14px 32px;
  background: var(--c-charcoal);
  color: var(--c-white);
  border-radius: var(--border-radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out);
}

.mobile-menu-cta:hover {
  background: var(--c-gold);
}

.mobile-menu-footer {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out) 0.5s;
}

.mobile-menu.is-open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

/* Hide FABs when mobile menu is open */
body.mobile-menu-open .fab-group {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-menu-contact {
  display: block;
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: var(--sp-md);
  color: var(--c-gold);
}

.mobile-menu-socials {
  display: flex;
  justify-content: center;
  gap: var(--sp-lg);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu-socials a:hover {
  color: var(--c-gold);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px; /* Отступ от шапки */
  padding-bottom: var(--sp-3xl);
  overflow: hidden;
}

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

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 245, 0.3) 0%,
    rgba(250, 248, 245, 0.6) 40%,
    rgba(250, 248, 245, 0.92) 75%,
    rgba(250, 248, 245, 1) 100%
  );
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Initial hidden state for hero elements — prevents FOUC */
body.js-ready .hero-content {
  visibility: hidden;
}

body.js-ready .hero-content.is-animating {
  visibility: visible;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero-label-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--c-gold);
}

.hero-label-text {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-lg);
}

.hero-title em {
  font-style: italic;
  color: var(--c-gold);
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em; /* Запас для нижних выносных элементов (у, р, д) */
}

.hero-desc {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-charcoal-light);
  max-width: 560px;
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  right: var(--container-padding);
  bottom: var(--sp-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  z-index: 2;
}

.hero-scroll-text {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--c-charcoal-light);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: var(--c-charcoal-light);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gold);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── Marquee ───────────────────────────────────────────────── */
.marquee-section {
  padding: var(--sp-xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(44,44,44,0.08);
  border-bottom: 1px solid rgba(44,44,44,0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  padding-right: var(--sp-xl);
  flex-shrink: 0;
}

.marquee-content span {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 400;
  white-space: nowrap;
  color: var(--c-charcoal);
  letter-spacing: -0.01em;
}

.marquee-dot {
  color: var(--c-gold) !important;
  font-size: var(--fs-sm) !important;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── About ─────────────────────────────────────────────────── */
.about {
  background: var(--c-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
  margin-bottom: var(--sp-2xl);
}

.about-title {
  font-size: var(--fs-xl);
}

.about-text {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--c-charcoal-light);
  margin-bottom: var(--sp-md);
}

.about-stats {
  display: flex;
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(44,44,44,0.1);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-charcoal);
  display: inline;
  line-height: 1;
}

.stat-plus {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-gold);
}

.stat-label {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-charcoal-light);
  margin-top: var(--sp-xs);
}

/* About Images */
.about-images {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: var(--sp-md);
  align-items: end;
}

.about-img {
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

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

.about-img-1 {
  height: 500px;
}

.about-img-2 {
  height: 400px;
}

.about-img-3 {
  height: 350px;
}

/* ─── Services ──────────────────────────────────────────────── */
.services {
  background: var(--c-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}

.service-card {
  background: var(--c-white);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.service-card-img {
  overflow: hidden;
  height: 280px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.service-card-content {
  padding: var(--sp-lg);
}

.service-card-num {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--sp-sm);
}

.service-card-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.service-card-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--c-charcoal-light);
  margin-bottom: var(--sp-md);
}

.service-card-price {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-gold);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--duration-fast) var(--ease-out),
              gap var(--duration-fast) var(--ease-out);
}

.service-card-link:hover {
  color: var(--c-gold);
  gap: 12px;
}

.service-card-link svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* ─── Text Divider ──────────────────────────────────────────── */
.text-divider {
  padding: var(--sp-xl) 0;
  overflow: hidden;
  background: var(--c-charcoal-dark);
}

.text-divider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  white-space: nowrap;
}

.text-divider-word {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  font-style: italic;
}

.text-divider-dot {
  font-size: var(--fs-lg);
  color: var(--c-gold);
}

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery {
  background: var(--c-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: var(--sp-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--sp-lg);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: 0.02em;
  transform: translateY(10px);
  transition: transform var(--duration-base) var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
}

.gallery-item-lg {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* ─── Team ──────────────────────────────────────────────────── */
.team {
  background: var(--c-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.team-card {
  text-align: center;
}

.team-card-img {
  overflow: hidden;
  margin-bottom: var(--sp-md);
  aspect-ratio: 3/4;
  position: relative;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.team-card-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: var(--fs-sm);
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 2px;
}

.team-card-exp {
  font-size: var(--fs-xs);
  color: var(--c-charcoal-light);
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials {
  background: var(--c-charcoal-dark);
  color: var(--c-cream);
}

.testimonials .section-label {
  color: var(--c-gold-light);
}

.testimonials .section-label-line {
  background: var(--c-gold-light);
}

.testimonials .section-title {
  color: var(--c-cream);
}

.testimonials .section-title em {
  color: var(--c-gold-light);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--sp-xl);
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
  color: rgba(250, 248, 245, 0.9);
  margin-bottom: var(--sp-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}

.testimonial-name {
  font-weight: 600;
  color: var(--c-cream);
}

.testimonial-sep {
  color: var(--c-gold);
}

.testimonial-since {
  color: rgba(250, 248, 245, 0.5);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
}

.testimonials-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(250, 248, 245, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  transition: all var(--duration-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.testimonials-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(184, 151, 126, 0.1);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.2);
  border: none;
  transition: all var(--duration-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.testimonials-dot.active {
  background: var(--c-gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── Booking / CTA ─────────────────────────────────────────── */
.booking {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}

.booking-marquee {
  overflow: hidden;
  padding: var(--sp-md) 0;
  margin-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(44,44,44,0.08);
}

.booking-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.booking-marquee-content {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  padding-right: var(--sp-xl);
  flex-shrink: 0;
}

.booking-marquee-content span {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
  color: var(--c-gold);
}

.marquee-star {
  font-size: var(--fs-sm) !important;
  font-style: normal !important;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.booking-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.booking-title em {
  font-style: italic;
  color: var(--c-gold);
}

.booking-desc {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-charcoal-light);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1.1em 0;
  border: none;
  border-bottom: 1px solid rgba(44,44,44,0.15);
  background: transparent;
  color: var(--c-charcoal);
  font-size: var(--fs-base);
  transition: border-color var(--duration-fast) var(--ease-out);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: var(--c-charcoal-light);
  opacity: 0.6;
}

.form-input:focus {
  border-bottom-color: var(--c-gold);
}

.form-select {
  cursor: pointer;
  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='%232C2C2C' 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-select option {
  background: var(--c-cream);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--c-charcoal-dark);
  color: var(--c-cream);
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-lg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(250, 248, 245, 0.08);
  margin-bottom: var(--sp-lg);
  gap: var(--sp-2xl);
}

.footer-brand {
  flex-shrink: 0;
}

.footer-logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-cream);
  display: block;
  margin-bottom: var(--sp-sm);
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(250, 248, 245, 0.4);
  font-style: italic;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2xl);
}

.footer-col-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
  color: var(--c-cream);
}

.footer-list li {
  font-size: var(--fs-sm);
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-list a {
  transition: color var(--duration-fast);
}

.footer-list a:hover {
  color: var(--c-gold);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  font-size: var(--fs-sm);
  color: rgba(250, 248, 245, 0.5);
  transition: color var(--duration-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  flex-shrink: 0;
}

.social-link:hover {
  color: var(--c-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(250, 248, 245, 0.3);
}

.footer-credit {
  text-align: center;
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.15);
  border-top: 1px solid rgba(250, 248, 245, 0.04);
}

.footer-credit span {
  font-weight: 600;
  color: rgba(250, 248, 245, 0.25);
}

.footer-back-top {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 245, 0.4);
  transition: color var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
}

.footer-back-top:hover {
  color: var(--c-gold);
}

/* ─── Process ──────────────────────────────────────────────── */
.process {
  background: var(--c-cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: process-counter;
}

.process-step {
  position: relative;
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border-right: 1px solid rgba(44, 44, 44, 0.08);
}

.process-step:last-child {
  border-right: none;
}

.process-step-num {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: rgba(184, 151, 126, 0.2);
  line-height: 1;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
  transition: color var(--duration-slow) var(--ease-out);
}

.process-step:hover .process-step-num {
  color: rgba(184, 151, 126, 0.5);
}

.process-step-line {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto var(--sp-lg);
  transition: width var(--duration-base) var(--ease-out);
}

.process-step:hover .process-step-line {
  width: 60px;
}

.process-step-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.process-step-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--c-charcoal-light);
  max-width: 280px;
  margin: 0 auto;
}

/* ─── Philosophy ───────────────────────────────────────────── */
.philosophy {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--sp-section) 0;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
}

.philosophy-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(44, 44, 44, 0.75) 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 1;
}

.philosophy-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-icon {
  color: var(--c-gold-light);
  margin-bottom: var(--sp-xl);
  opacity: 0.6;
}

.philosophy-quote {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-cream);
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.01em;
}

.philosophy-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
}

.philosophy-author-line {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}

.philosophy-author-name {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

/* ─── Pricing ──────────────────────────────────────────────── */
.pricing {
  background: var(--c-cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}

.pricing-card {
  background: var(--c-white);
  padding: var(--sp-xl);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.pricing-card-icon {
  color: var(--c-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 151, 126, 0.3);
  border-radius: 50%;
}

.pricing-card-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.3;
}

.pricing-list {
  list-style: none;
}

.pricing-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.04);
  transition: background var(--duration-fast) var(--ease-out);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item:hover {
  background: rgba(184, 151, 126, 0.04);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}

.pricing-item-name {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--c-charcoal);
  white-space: nowrap;
}

.pricing-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(44, 44, 44, 0.2);
  min-width: 20px;
  margin-bottom: 4px;
}

.pricing-item-price {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.pricing-card-link {
  display: inline-block;
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.05em;
  transition: color var(--duration-fast) var(--ease-out),
              letter-spacing var(--duration-fast) var(--ease-out);
}

.pricing-card-link:hover {
  color: var(--c-charcoal);
  letter-spacing: 0.1em;
}

.pricing-note {
  text-align: center;
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--c-white);
  border-left: 3px solid var(--c-gold);
}

.pricing-note p {
  font-size: var(--fs-sm);
  color: var(--c-charcoal-light);
  font-style: italic;
  line-height: 1.7;
}

/* ─── Brands ───────────────────────────────────────────────── */
.brands {
  background: var(--c-white);
  overflow: hidden;
}

.brands-marquee {
  overflow: hidden;
  margin-bottom: var(--sp-2xl);
  padding: var(--sp-xl) 0;
  border-top: 1px solid rgba(44, 44, 44, 0.06);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.brands-slide {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
  padding-right: var(--sp-2xl);
  flex-shrink: 0;
}

.brand-item {
  position: relative;
  padding: var(--sp-md) var(--sp-xl);
}

.brand-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: rgba(44, 44, 44, 0.25);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color var(--duration-base) var(--ease-out);
}

.brand-item:hover .brand-name {
  color: var(--c-gold);
}

.brands-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.brands-feature {
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
}

.brands-feature-icon {
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184, 151, 126, 0.25);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: all var(--duration-base) var(--ease-out);
}

.brands-feature:hover .brands-feature-icon {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}

.brands-feature-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  margin-bottom: var(--sp-xs);
  line-height: 1.3;
}

.brands-feature-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--c-charcoal-light);
  max-width: 280px;
  margin: 0 auto;
}

/* ─── Reveal Animations (initial states — only when JS is ready) ─ */
body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

body.js-ready .pricing-card,
body.js-ready .process-step,
body.js-ready .brands-feature,
body.js-ready .philosophy-content {
  opacity: 0;
  transform: translateY(40px);
}

body.js-ready [data-reveal-img] {
  clip-path: inset(100% 0 0 0);
}

body.js-ready [data-reveal-img] img {
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Large Tablet / Small Desktop */
@media (max-width: 1200px) {
  .services-grid {
    gap: var(--sp-md);
  }

  .about-img-1 { height: 400px; }
  .about-img-2 { height: 320px; }
  .about-img-3 { height: 280px; }

  .process-step-num {
    font-size: var(--fs-2xl);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-phone-text {
    display: none;
  }

  .burger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .booking-content {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

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

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid rgba(44, 44, 44, 0.08);
  }

  .process-step:nth-last-child(-n+2) {
    border-bottom: none;
  }

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

  .brands-features {
    gap: var(--sp-lg);
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .footer-top {
    flex-direction: column;
    gap: var(--sp-xl);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-xl);
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --sp-section: clamp(3.5rem, 8vh, 6rem);
  }

  .nav-phone {
    display: none;
  }

  .nav-socials {
    gap: 4px;
  }

  .nav-social {
    width: 34px;
    height: 34px;
  }

  .nav-social svg {
    width: 16px;
    height: 16px;
  }

  .nav-right {
    gap: var(--sp-sm);
  }

  .hero {
    padding-bottom: var(--sp-2xl);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }

  .hero-scroll {
    display: none;
  }

  .hero-desc br {
    display: none;
  }

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

  .service-card-img {
    height: 220px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item-lg,
  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
  }

  .about-img-3 {
    display: none;
  }

  .about-img-1 { height: 300px; }
  .about-img-2 { height: 300px; }

  .about-stats {
    gap: var(--sp-lg);
    flex-wrap: wrap;
  }

  .testimonial-text {
    font-size: var(--fs-md);
  }

  .testimonials-slider {
    min-height: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }

  .text-divider-word {
    font-size: var(--fs-2xl);
  }

  .text-divider-inner {
    gap: var(--sp-lg);
  }

  .section-header {
    margin-bottom: var(--sp-lg);
  }

  .marquee-content span {
    font-size: var(--fs-lg);
  }

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

  .process-step {
    border-right: none !important;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    padding: var(--sp-lg) var(--sp-md);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .process-step-num {
    font-size: var(--fs-2xl);
  }

  .philosophy {
    min-height: 50vh;
    padding: var(--sp-section) 0;
  }

  .philosophy-quote {
    font-size: var(--fs-lg);
  }

  .brands-features {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .brands-feature {
    padding: var(--sp-md);
  }

  .pricing-card {
    padding: var(--sp-lg);
  }

  .pricing-item-name {
    font-size: var(--fs-sm);
    white-space: normal;
  }

  .pricing-item-price {
    font-size: var(--fs-sm);
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --sp-section: clamp(3rem, 7vh, 5rem);
    --container-padding: 1.25rem;
  }

  .hero {
    padding-bottom: var(--sp-xl);
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3.5rem);
    margin-bottom: var(--sp-md);
  }

  .hero-label {
    margin-bottom: var(--sp-md);
  }

  .hero-desc {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-lg);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-sm);
  }

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

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img-2 {
    display: none;
  }

  .about-img-1 {
    height: 250px;
  }

  .about-stats {
    flex-direction: column;
    gap: var(--sp-md);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-md);
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .about-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .booking-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .booking-content {
    gap: var(--sp-lg);
  }

  .mobile-menu-link {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .philosophy {
    min-height: 50vh;
    padding: var(--sp-xl) 0;
  }

  .philosophy-quote {
    font-size: var(--fs-md);
  }

  .philosophy-icon svg {
    width: 32px;
    height: 32px;
  }

  .philosophy-author {
    flex-direction: column;
    gap: var(--sp-sm);
  }

  .pricing-card {
    padding: var(--sp-md);
  }

  .pricing-card-icon {
    width: 44px;
    height: 44px;
  }

  .pricing-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .brand-name {
    font-size: var(--fs-lg);
  }

  .testimonial-text {
    font-size: var(--fs-base);
  }

  .testimonials-slider {
    min-height: 160px;
  }

  .testimonials-nav {
    gap: var(--sp-md);
  }

  .testimonials-btn {
    width: 40px;
    height: 40px;
  }
}

/* ─── Disable custom cursor on touch/mobile devices ─────────── */
@media (hover: none) and (pointer: coarse),
       (max-width: 1024px) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }

  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor input,
  body.has-cursor select,
  body.has-cursor textarea {
    cursor: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAB (Fixed Action Buttons)
   ═══════════════════════════════════════════════════════════════ */
.fab-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* --- Messenger FAB (round) --- */
.fab {
  position: relative;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.fab-messenger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-charcoal);
}

.fab-messenger:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
  transform: scale(1.05);
}

.fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out);
}

.fab-icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.fab-messenger.is-active .fab-icon:not(.fab-icon-close) {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.fab-messenger.is-active .fab-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Pulse animation */
.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--c-gold);
  animation: fab-pulse 2.5s ease-out infinite;
}

@keyframes fab-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.fab-messenger.is-active .fab-pulse {
  animation: none;
  opacity: 0;
}

/* --- Booking FAB --- */
.fab-booking {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--c-charcoal-dark);
  color: var(--c-white);
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.fab-booking:hover {
  background: var(--c-charcoal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

.fab-booking-icon {
  display: flex;
  transition: transform 0.3s var(--ease-out);
}

.fab-booking:hover .fab-booking-icon {
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════════
   MESSENGER POPUP
   ═══════════════════════════════════════════════════════════════ */
.messenger-popup {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  z-index: 199;
  width: 340px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
}

.messenger-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.messenger-popup-inner {
  background: var(--c-white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(0, 0, 0, 0.04);
}

.messenger-popup-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.messenger-popup-label {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-charcoal);
  display: block;
  margin-bottom: 0.25rem;
}

.messenger-popup-desc {
  font-size: var(--fs-sm);
  color: var(--c-charcoal-light);
}

/* --- Messenger option links --- */
.messenger-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--c-charcoal);
  transition: all var(--duration-fast) var(--ease-out);
  margin-bottom: 0.35rem;
}

.messenger-option:last-child {
  margin-bottom: 0;
}

.messenger-option:hover {
  background: var(--c-cream);
}

.messenger-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.messenger-option:hover .messenger-option-icon {
  background: var(--c-cream-dark);
}

.messenger-option-icon-wa {
  background: #dcf8c6;
  color: #25d366;
}

.messenger-option:hover .messenger-option-icon-wa {
  background: #c5f0a8;
}

.messenger-option-icon-tg {
  background: #e3f2fd;
  color: #2196f3;
}

.messenger-option:hover .messenger-option-icon-tg {
  background: #bbdefb;
}

.messenger-option-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.messenger-option-name {
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1.3;
}

.messenger-option-detail {
  font-size: var(--fs-xs);
  color: var(--c-charcoal-light);
  line-height: 1.4;
}

.messenger-option-arrow {
  color: var(--c-charcoal-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--duration-fast) var(--ease-out);
}

.messenger-option:hover .messenger-option-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════════════════════════ */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--c-white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.5s var(--ease-out);
}

.booking-modal-overlay.is-open .booking-modal {
  transform: translateY(0) scale(1);
}

/* Scrollbar styling */
.booking-modal::-webkit-scrollbar {
  width: 4px;
}
.booking-modal::-webkit-scrollbar-track {
  background: transparent;
}
.booking-modal::-webkit-scrollbar-thumb {
  background: var(--c-cream-dark);
  border-radius: 4px;
}

.booking-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--c-cream);
  color: var(--c-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 10;
}

.booking-modal-close:hover {
  background: var(--c-cream-dark);
  transform: rotate(90deg);
}

/* --- Steps indicator --- */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.booking-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-cream-dark);
  transition: all 0.4s var(--ease-out);
}

.booking-step-dot.is-active {
  background: var(--c-gold);
  transform: scale(1.2);
}

.booking-step-dot.is-done {
  background: var(--c-gold);
}

.booking-step-line {
  width: 48px;
  height: 2px;
  background: var(--c-cream-dark);
  margin: 0 0.5rem;
  position: relative;
  overflow: hidden;
}

.booking-step-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.booking-step-line.is-done::after {
  transform: scaleX(1);
}

/* --- Modal Step --- */
.booking-modal-step {
  display: none;
}

.booking-modal-step.is-active {
  display: block;
  animation: bookingStepIn 0.4s var(--ease-out);
}

@keyframes bookingStepIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-modal-step-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.booking-modal-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-charcoal);
}

.booking-modal-title em {
  font-style: italic;
  color: var(--c-gold);
}

/* --- Service cards grid --- */
.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.booking-service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-service-card {
  cursor: pointer;
}

.booking-service-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all var(--duration-fast) var(--ease-out);
  background: var(--c-white);
}

.booking-service-card:hover .booking-service-card-inner {
  border-color: var(--c-gold-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.booking-service-card input:checked + .booking-service-card-inner {
  border-color: var(--c-gold);
  background: linear-gradient(135deg, #faf8f5, #f5ede6);
  box-shadow: 0 4px 20px rgba(184, 151, 126, 0.15);
}

.booking-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--c-charcoal);
  transition: all var(--duration-fast) var(--ease-out);
}

.booking-service-card input:checked + .booking-service-card-inner .booking-service-icon {
  background: var(--c-gold);
  color: var(--c-white);
}

.booking-service-name {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--c-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.booking-service-price {
  font-size: var(--fs-xs);
  color: var(--c-charcoal-light);
}

/* --- Master cards grid --- */
.booking-master-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.booking-master-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-master-card {
  cursor: pointer;
}

.booking-master-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all var(--duration-fast) var(--ease-out);
}

.booking-master-card:hover .booking-master-card-inner {
  border-color: var(--c-gold-light);
}

.booking-master-card input:checked + .booking-master-card-inner {
  border-color: var(--c-gold);
  background: linear-gradient(135deg, #faf8f5, #f5ede6);
  box-shadow: 0 4px 20px rgba(184, 151, 126, 0.15);
}

.booking-master-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.6rem;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.booking-master-card input:checked + .booking-master-card-inner .booking-master-avatar {
  border-color: var(--c-gold);
}

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

.booking-master-avatar-any {
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-charcoal-light);
}

.booking-master-name {
  font-weight: 500;
  font-size: var(--fs-xs);
  color: var(--c-charcoal);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.booking-master-role {
  font-size: 0.65rem;
  color: var(--c-charcoal-light);
  line-height: 1.3;
}

/* --- Modal form --- */
.booking-modal-form .form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-charcoal-light);
  margin-bottom: 0.4rem;
}

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

/* --- Modal actions --- */
.booking-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.booking-modal-actions .btn {
  flex: 1;
}

.booking-modal-submit .btn-icon,
.booking-modal-next .btn-icon {
  margin-left: 0.25rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background: transparent;
  color: var(--c-charcoal);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn-outline:hover {
  border-color: var(--c-charcoal);
  background: var(--c-cream);
}

/* --- Success state --- */
.booking-modal-success {
  text-align: center;
  padding: 2rem 0;
}

.booking-success-icon {
  margin-bottom: 1.5rem;
  animation: successPop 0.6s var(--ease-elastic);
}

@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.booking-success-text {
  font-size: var(--fs-base);
  color: var(--c-charcoal-light);
  max-width: 320px;
  margin: 0.75rem auto 2rem;
  line-height: 1.6;
}

.booking-modal-done {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   FAB & POPUP Responsive
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .fab-group {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .fab-messenger {
    width: 50px;
    height: 50px;
  }

  .fab-booking {
    padding: 0.75rem 1.25rem;
  }

  .messenger-popup {
    right: 1.25rem;
    bottom: 5.5rem;
    width: calc(100vw - 2.5rem);
    max-width: 340px;
  }

  .booking-modal-overlay {
    align-items: flex-start;
    padding: 1rem;
  }

  .booking-modal {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    max-height: none;
    margin: auto 0;
  }

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

  .booking-master-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-steps {
    margin-bottom: 1.5rem;
  }
}

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

  .booking-modal-actions {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGES
   ═══════════════════════════════════════════════════════════════ */

/* Service Hero */
.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: var(--sp-2xl);
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 245, 0.2) 0%,
    rgba(250, 248, 245, 0.5) 30%,
    rgba(250, 248, 245, 0.9) 70%,
    rgba(250, 248, 245, 1) 100%
  );
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-charcoal-light);
  margin-bottom: var(--sp-lg);
}

.service-hero-breadcrumb a {
  color: var(--c-gold);
  transition: color var(--duration-fast) var(--ease-out);
}

.service-hero-breadcrumb a:hover {
  color: var(--c-charcoal);
}

.service-hero-breadcrumb svg {
  opacity: 0.4;
}

.service-hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-md);
}

.service-hero-title em {
  font-style: italic;
  color: var(--c-gold);
}

.service-hero-desc {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-charcoal-light);
  max-width: 600px;
}

/* Service Detail Grid */
.service-detail {
  background: var(--c-cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.service-detail-text h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-md);
}

.service-detail-text h3 em {
  font-style: italic;
  color: var(--c-gold);
}

.service-detail-text p {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--c-charcoal-light);
  margin-bottom: var(--sp-md);
}

.service-detail-text p:last-child {
  margin-bottom: 0;
}

.service-detail-img {
  overflow: hidden;
  border-radius: 4px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.service-detail-img:hover img {
  transform: scale(1.04);
}

/* Service Features List */
.service-features {
  list-style: none;
  display: grid;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: var(--c-white);
  border-radius: 8px;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.service-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold);
}

.service-feature-content h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 4px;
}

.service-feature-content p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--c-charcoal-light);
}

/* Service Price Table */
.service-prices {
  background: var(--c-white);
}

.service-price-table {
  max-width: 800px;
  margin: 0 auto;
}

.service-price-group {
  margin-bottom: var(--sp-xl);
}

.service-price-group:last-child {
  margin-bottom: 0;
}

.service-price-group-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background var(--duration-fast) var(--ease-out);
}

.service-price-row:hover {
  background: var(--c-cream);
  padding-left: var(--sp-sm);
  padding-right: var(--sp-sm);
  margin-left: calc(-1 * var(--sp-sm));
  margin-right: calc(-1 * var(--sp-sm));
  border-radius: 4px;
}

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

.service-price-name {
  font-size: var(--fs-base);
  color: var(--c-charcoal);
}

.service-price-name small {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-charcoal-light);
  margin-top: 2px;
}

.service-price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  margin: 0 var(--sp-md);
  min-width: 40px;
  align-self: center;
}

.service-price-value {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-charcoal);
  white-space: nowrap;
}

/* Service Gallery */
.service-gallery {
  background: var(--c-cream);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.service-gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-gallery-item:hover img {
  transform: scale(1.06);
}

/* Service CTA */
.service-cta {
  background: var(--c-charcoal-dark);
  text-align: center;
}

.service-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.service-cta-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-cream);
  margin-bottom: var(--sp-md);
}

.service-cta-title em {
  font-style: italic;
  color: var(--c-gold);
}

.service-cta-desc {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: var(--sp-xl);
}

.service-cta .btn-primary {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
}

.service-cta .btn-primary:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
}

/* Service page responsive */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

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

@media (max-width: 768px) {
  .service-hero {
    min-height: 50vh;
    padding-bottom: var(--sp-xl);
  }

  .service-hero-title {
    font-size: var(--fs-xl);
  }

  .service-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-sm);
  }

  .service-price-row:hover {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .service-hero {
    min-height: 45vh;
  }

  .service-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track,
  .booking-marquee-track {
    animation: none;
  }
}
