/* ============================================================
   ROSSLYN BEAUTY HAVEN — LUXURY SPA DESIGN SYSTEM
   style.css — Shared Styles Across All Pages
   ============================================================ */

/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Brand Palette */
  --clr-primary:       #C46A2D;  /* Burnt Orange */
  --clr-chocolate:     #4A2C21;  /* Dark Text / Background */
  --clr-cream:         #F7E7CE;  /* Light Background */
  --clr-beige:         #E8D3BE;  /* Secondary Background */
  --clr-gold:          #D4A373;  /* Gold Accent */
  --clr-gold-light:    #E8C99A;  /* Light Gold */
  --clr-white:         #FDFAF6;  /* White/Cream */
  --clr-dark:          #2A1810;  /* Deep Dark */
  --clr-muted:         #8B6F5E;  /* Muted Text */

  /* Semantic Tokens */
  --bg:                var(--clr-cream);
  --bg-surface:        var(--clr-white);
  --bg-elevated:       var(--clr-beige);
  --text-primary:      var(--clr-dark);
  --text-secondary:    var(--clr-chocolate);
  --text-muted:        var(--clr-muted);
  --accent:            var(--clr-primary);
  --accent-hover:      #a85525;
  --border:            rgba(196, 106, 45, 0.18);
  --border-strong:     rgba(196, 106, 45, 0.35);
  --shadow-sm:         0 2px 12px rgba(42, 24, 16, 0.08);
  --shadow-md:         0 8px 32px rgba(42, 24, 16, 0.12);
  --shadow-lg:         0 20px 60px rgba(42, 24, 16, 0.18);
  --shadow-xl:         0 32px 80px rgba(42, 24, 16, 0.24);

  /* Typography */
  --font-display:      'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:         'Jost', 'Gill Sans', sans-serif;
  --font-accent:       'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Layout */
  --max-w:        1280px;
  --max-w-narrow: 860px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-full:  9999px;

  /* Transitions */
  --tr-fast:    0.15s ease;
  --tr-base:    0.3s ease;
  --tr-slow:    0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-bounce:  0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Navbar */
  --navbar-h: 80px;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --bg:           #1E120D;
  --bg-surface:   #2A1810;
  --bg-elevated:  #361F14;
  --text-primary: #F7E7CE;
  --text-secondary: #E8C99A;
  --text-muted:   #9B7A68;
  --accent:       #C46A2D;
  --accent-hover: #D97E40;
  --border:       rgba(196, 106, 45, 0.22);
  --border-strong:rgba(196, 106, 45, 0.4);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.5);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.6);
}

/* ── 2. RESET & NORMALIZE ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg);
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. BASE TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-secondary);
}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 { color: var(--clr-gold-light); }

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
h6 { font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

p { color: var(--text-muted); line-height: 1.75; }
[data-theme="dark"] p { color: var(--clr-cream); opacity: 0.8; }

.text-display { font-family: var(--font-display); }
.text-italic  { font-style: italic; }
.text-gold    { color: var(--clr-gold); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.75rem; }
.text-lg      { font-size: 1.125rem; }

/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--sm { padding: var(--space-2xl) 0; }
.section--lg { padding: var(--space-4xl) 0; }

.grid { display: grid; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ── 5. DECORATIVE ELEMENTS ─────────────────────────────────── */

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* Section dividers */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--clr-gold));
  margin: var(--space-md) 0;
}
.divider--center { margin: var(--space-md) auto; }
.divider--long { width: 120px; }

/* Ornamental line */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--clr-gold);
  opacity: 0.6;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-label::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
}

/* Section heading group */
.section-header {
  margin-bottom: var(--space-2xl);
}
.section-header--center {
  text-align: center;
}
.section-header--center .divider { margin: var(--space-md) auto; }
.section-header--center .section-label {
  justify-content: center;
}
.section-header--center .ornament {
  justify-content: center;
  max-width: 300px;
  margin: 0 auto var(--space-md);
}

/* ── 6. PRELOADER ───────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 120px;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}
.preloader__logo img { width: 100%; filter: brightness(0) invert(1); }

.preloader__bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}
.preloader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-gold), var(--accent));
  border-radius: 9999px;
  animation: preloader-bar 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.preloader__text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.8; }
}
@keyframes preloader-bar {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ── 7. NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.transparent {
  background: transparent;
}
#navbar.scrolled {
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  height: 64px;
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] #navbar.scrolled {
  background: var(--bg-surface);
  border-bottom-color: var(--border);
}

.navbar__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.navbar__logo img {
  height: 52px;
  width: auto;
  transition: height var(--tr-base);
  object-fit: contain;
}
#navbar.scrolled .navbar__logo img { height: 40px; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
}

.navbar__nav-item { position: relative; }

.navbar__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: color var(--tr-base), background var(--tr-base);
  position: relative;
}
#navbar.transparent .navbar__nav-link { color: var(--clr-white); }
.navbar__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--tr-base);
}
.navbar__nav-link:hover::after,
.navbar__nav-link.active::after { transform: scaleX(1); }
.navbar__nav-link:hover { color: var(--accent); }
.navbar__nav-link.active { color: var(--accent); }

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-base);
  z-index: 100;
}
.navbar__nav-item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar__dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.navbar__dropdown a:hover {
  background: var(--bg-elevated);
  color: var(--accent);
}
.navbar__dropdown a i {
  width: 18px;
  color: var(--accent);
  opacity: 0.7;
  font-size: 0.75rem;
}

/* Chevron icon on nav links with dropdown */
.navbar__nav-link .chevron {
  font-size: 0.65rem;
  transition: transform var(--tr-base);
}
.navbar__nav-item:hover .navbar__nav-link .chevron { transform: rotate(180deg); }

/* Navbar actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Dark mode toggle */
.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--tr-base);
  cursor: pointer;
}
.btn-icon:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: rotate(15deg);
}
#navbar.transparent .btn-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: none;
  transition: background var(--tr-base);
}
.hamburger:hover { background: var(--bg-elevated); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--tr-base);
}
#navbar.transparent .hamburger span { background: var(--clr-white); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,24,16,0.6);
  opacity: 0;
  transition: opacity var(--tr-slow);
  backdrop-filter: blur(4px);
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--bg-surface);
  transform: translateX(100%);
  transition: transform var(--tr-slow);
  padding: var(--space-2xl) var(--space-xl);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.mobile-nav.open { pointer-events: all; }
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.open .mobile-nav__panel  { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--tr-base);
}
.mobile-nav__close:hover { background: var(--accent); color: white; }

.mobile-nav__logo { width: 100px; }
.mobile-nav__logo img { width: 100%; }

.mobile-nav__links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav__link {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--tr-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__link:hover { background: var(--bg-elevated); color: var(--accent); }
.mobile-nav__sub { padding-left: var(--space-lg); display: none; flex-direction: column; gap: 2px; }
.mobile-nav__sub.open { display: flex; }
.mobile-nav__sub a {
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--tr-fast);
}
.mobile-nav__sub a:hover { color: var(--accent); background: var(--bg-elevated); }

/* ── 8. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr-bounce);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--tr-fast);
}
.btn:hover::after { opacity: 0.08; }

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #a85525 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(196, 106, 45, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 106, 45, 0.5);
}

/* Secondary / Ghost */
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 106, 45, 0.35);
}

/* White / Hero variant */
.btn--white {
  background: var(--clr-white);
  color: var(--clr-dark);
  border-color: var(--clr-white);
}
.btn--white:hover {
  background: var(--clr-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Gold */
.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  color: var(--clr-dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 163, 115, 0.5);
}

/* Dark */
.btn--dark {
  background: var(--clr-dark);
  color: var(--clr-cream);
  border-color: transparent;
}
.btn--dark:hover { background: var(--clr-chocolate); transform: translateY(-2px); }

/* Sizes */
.btn--sm { padding: 9px 20px; font-size: 0.75rem; }
.btn--lg { padding: 17px 40px; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* Icon-only buttons in actions */
.btn--icon-circle {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
  font-size: 1rem;
}

/* ── 9. HERO SECTION ────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 1.4s ease;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* Center the image to avoid top cropping */
  transform: none !important;  /* Ensure no zoom is applied */
  transition: transform 0.6s ease; /* Keep smoothness if transforms are added later */
  display: block;
}

/* Ensure active slides do not apply any zoom */
.hero__slide.active img {
  transform: none !important;
}

/* Show active slide */
.hero__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Multi-layer overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(42,24,16,0.35) 0%,
      rgba(42,24,16,0.2) 40%,
      rgba(42,24,16,0.75) 100%
    );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  padding-top: var(--navbar-h);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  opacity: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  max-width: 800px;
  opacity: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-gold-light);
  display: block;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(253,250,246,0.75);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  opacity: 0;
}
.hero__stat { text-align: left; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--clr-gold-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.6);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Slide indicators */
.hero__indicators {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 3;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--tr-base);
}
.hero__dot.active {
  width: 24px;
  background: var(--clr-gold);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--tr-base);
}
.hero__scroll:hover { color: var(--clr-gold); }
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: #25D366;
  color: white;
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--tr-bounce);
  overflow: hidden;
  max-width: 52px;
}
.whatsapp-float:hover {
  max-width: 200px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i { font-size: 1.3rem; flex-shrink: 0; }
.whatsapp-float span { white-space: nowrap; }

/* ── 10. SERVICES CAROUSEL ──────────────────────────────────── */
.services-carousel {
  position: relative;
  overflow: hidden;
}
.carousel__track-wrapper { overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel__item { flex-shrink: 0; }

.carousel__controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--tr-bounce);
}
.carousel__btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.1);
}
.carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--border-strong);
  cursor: pointer;
  transition: all var(--tr-base);
}
.carousel__dot.active {
  width: 20px;
  background: var(--accent);
}

/* ── 11. SERVICE CARDS ──────────────────────────────────────── */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--tr-slow);
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.service-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.08); }

.service-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: linear-gradient(135deg, var(--accent), #a85525);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.service-card__badge--gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-dark);
}
.service-card__badge--special {
  background: linear-gradient(135deg, #1a6b3c, #2d9e5f);
  color: white;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,158,95,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(45,158,95,0); }
}

.service-card__body {
  padding: var(--space-lg);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}
[data-theme="dark"] .service-card__title { color: var(--clr-gold-light); }
.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: 0.82rem;
}
.service-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  flex: 1;
}
.service-card__meta-item i { color: var(--accent); font-size: 0.75rem; }

.service-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}
.service-card__price-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 4px;
}
.service-card__savings {
  font-size: 0.72rem;
  color: #2d9e5f;
  font-weight: 600;
  margin-left: 4px;
}

.service-card__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(196, 106, 45, 0.08);
  border: 1px solid rgba(196, 106, 45, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
}
.benefit-tag::before { content: '✦'; font-size: 0.5rem; }

/* Category card (services landing page) */
.category-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--tr-slow);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.category-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.category-card:hover .category-card__img img { transform: scale(1.08); }
.category-card__body {
  padding: var(--space-lg);
}
.category-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196, 106, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}
.category-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}
.category-card__count {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.category-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--space-md);
  transition: gap var(--tr-base);
}
.category-card:hover .category-card__arrow { gap: 10px; }

/* ── 12. PACKAGE CARDS ──────────────────────────────────────── */
.package-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--tr-slow);
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.package-card--featured {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 2px rgba(212, 163, 115, 0.2);
}
.package-card__top-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 1;
}
.package-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.package-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.package-card:hover .package-card__img img { transform: scale(1.08); }
.package-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.package-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.package-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-lg);
  flex: 1;
}
.package-card__includes li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.package-card__includes li::before {
  content: '✦';
  color: var(--clr-gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}
.package-card__pricing {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.package-card__price-now {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
}
.package-card__price-was {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}
.package-card__savings-badge {
  background: linear-gradient(135deg, #1a6b3c, #2d9e5f);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.package-card__actions {
  display: flex;
  gap: var(--space-sm);
}
.package-card__actions .btn { flex: 1; }

/* ── 13. ABOUT SECTION ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  inset: 0 80px 80px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--bg-surface);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-secondary:hover img { transform: scale(1.06); }

.about-badge {
  position: absolute;
  top: var(--space-lg);
  left: -var(--space-lg);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.about-badge__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--tr-base);
}
.value-item:hover { background: var(--bg-elevated); }
.value-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196, 106, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.value-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.value-item__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── 14. WEEKLY SPECIALS ────────────────────────────────────── */
.specials-banner {
  background: linear-gradient(135deg,
    rgba(196, 106, 45, 0.12) 0%,
    rgba(212, 163, 115, 0.08) 100%
  );
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}
.specials-banner--active { border-color: #2d9e5f; background: rgba(45, 158, 95, 0.06); }
.specials-banner__icon { font-size: 1.8rem; flex-shrink: 0; }
.specials-banner__text h4 { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 4px; }
.specials-banner__text p { font-size: 0.85rem; margin: 0; }
.specials-banner__countdown {
  display: flex;
  gap: var(--space-sm);
  margin-left: auto;
  flex-shrink: 0;
}
.countdown-unit {
  text-align: center;
  min-width: 52px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.countdown-unit__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.countdown-unit__label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* Horizontal scroll on Mon-Thu */
.specials-horizontal {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.specials-horizontal::-webkit-scrollbar { height: 4px; }
.specials-horizontal::-webkit-scrollbar-track { background: var(--bg-elevated); border-radius: 2px; }
.specials-horizontal::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.specials-horizontal .special-card { flex-shrink: 0; width: 300px; scroll-snap-align: start; }

.special-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--tr-slow);
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.special-card__header {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(196,106,45,0.08), rgba(212,163,115,0.05));
  border-bottom: 1px solid var(--border);
  position: relative;
}
.special-card__category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.special-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-secondary);
}
[data-theme="dark"] .special-card__title { color: var(--clr-gold-light); }
.special-card__discount-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1a6b3c, #2d9e5f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.special-card__discount-badge span:first-child { font-size: 1.1rem; font-weight: 800; line-height: 1; }
.special-card__discount-badge span:last-child { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em; }
.special-card__body { padding: var(--space-lg); }
.special-card__pricing { margin-bottom: var(--space-md); }
.special-card__price-now { font-family: var(--font-display); font-size: 2rem; color: var(--accent); font-weight: 600; }
.special-card__price-was { font-size: 0.85rem; text-decoration: line-through; color: var(--text-muted); margin-left: 6px; }
.special-card__savings-text { font-size: 0.8rem; color: #2d9e5f; font-weight: 600; margin-top: 2px; }
.special-card__meta { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: var(--space-md); }
.special-card__note {
  font-size: 0.72rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(196,106,45,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

/* Not active message */
.specials-inactive {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.specials-inactive__icon { font-size: 3rem; margin-bottom: var(--space-lg); opacity: 0.5; }
.specials-inactive__title { font-family: var(--font-display); font-size: 2rem; color: var(--text-secondary); margin-bottom: var(--space-sm); }
.specials-schedule {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 360px;
  margin: var(--space-xl) auto;
}
.specials-schedule__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.specials-schedule__row.today {
  background: rgba(196,106,45,0.12);
  border: 1px solid var(--border-strong);
  font-weight: 600;
  color: var(--accent);
}

/* ── 15. GALLERY ────────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr-base);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(196,106,45,0.35);
}

.gallery-masonry {
  columns: 3;
  column-gap: var(--space-md);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,24,16,0.85) 100%);
  opacity: 0;
  transition: opacity var(--tr-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}
.gallery-item--tall { grid-row: span 2; }

/* ── 16. TESTIMONIALS ───────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--tr-slow);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--clr-gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: var(--space-sm);
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.testimonial-card__stars { color: var(--clr-gold); font-size: 0.8rem; margin-bottom: var(--space-md); letter-spacing: 2px; }
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-md); }
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--clr-gold);
}
.testimonial-card__name { font-weight: 600; color: var(--text-secondary); font-size: 0.95rem; }
.testimonial-card__role { font-size: 0.78rem; color: var(--text-muted); }

/* ── 17. SIGNATURE RITUALS / PEDICURES ─────────────────────── */
.ritual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--tr-slow);
  position: relative;
}
.ritual-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--clr-gold); }
.ritual-card__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--clr-gold), var(--accent));
}
.ritual-card__body { padding: var(--space-2xl); }
.ritual-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.ritual-card__price-wrap { display: flex; align-items: baseline; gap: var(--space-sm); margin: var(--space-md) 0; }
.ritual-card__price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--accent); }
.ritual-card__duration { color: var(--text-muted); font-size: 0.85rem; }
.ritual-card__ingredients { margin: var(--space-lg) 0; }
.ritual-card__ingredients-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.ingredient-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ingredient-tag {
  padding: 5px 12px;
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid rgba(212, 163, 115, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--clr-gold);
  font-weight: 500;
}
.ritual-flow { margin: var(--space-lg) 0; }
.ritual-flow-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.ritual-steps { display: flex; flex-direction: column; gap: var(--space-sm); }
.ritual-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--tr-fast);
}
.ritual-step:hover { background: var(--bg-elevated); }
.ritual-step__num {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ritual-step__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── 18. CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all var(--tr-base);
}
.contact-info__item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196, 106, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info__label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.contact-info__value { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }

.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today-row { color: var(--accent); font-weight: 600; }
.hours-row__hours { color: var(--text-muted); }
.hours-row.today-row .hours-row__hours { color: var(--accent); }

/* Contact form */
.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}
.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--tr-bounce);
}
.social-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(196,106,45,0.35);
}
.social-link.instagram:hover { background: #E1306C; border-color: #E1306C; box-shadow: 0 6px 16px rgba(225,48,108,0.4); }
.social-link.tiktok:hover    { background: #010101; border-color: #010101; }
.social-link.youtube:hover   { background: #FF0000; border-color: #FF0000; box-shadow: 0 6px 16px rgba(255,0,0,0.4); }
.social-link.facebook:hover  { background: #1877F2; border-color: #1877F2; }

/* Google Maps embed */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  margin-top: var(--space-xl);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── 19. FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--tr-base);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 106, 45, 0.12);
  background: var(--bg-surface);
}
.form-control.error { border-color: #e05454; box-shadow: 0 0 0 3px rgba(224,84,84,0.1); }
.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }
[data-theme="dark"] .form-control { background: var(--bg-elevated); color: var(--text-primary); }
[data-theme="dark"] .form-control:focus { background: var(--bg-surface); }

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

/* Phone input with country code */
.phone-input-wrap { display: flex; gap: 8px; }
.phone-code-select {
  width: 130px;
  flex-shrink: 0;
  padding: 13px 10px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
  transition: all var(--tr-base);
}
.phone-code-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,106,45,0.12); }
.phone-input-wrap .form-control { flex: 1; }

/* Form validation */
.form-error {
  font-size: 0.76rem;
  color: #e05454;
  margin-top: 4px;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-control { border-color: #e05454; }
.form-group.has-success .form-control { border-color: #2d9e5f; }

/* ── 20. MODALS ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90svh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal--lg { max-width: 900px; }
.modal--xl { max-width: 1100px; }
.modal--video { max-width: 860px; background: #000; }
.modal--video .modal-close { color: white; background: rgba(255,255,255,0.1); }
.modal--video .modal-close:hover { background: var(--accent); }

.modal__header {
  padding: var(--space-xl) var(--space-2xl) var(--space-lg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}
.modal__title { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-secondary); }
.modal__body { padding: var(--space-xl) var(--space-2xl); }
.modal__footer {
  padding: var(--space-lg) var(--space-2xl) var(--space-xl);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--tr-base);
}
.modal-close:hover { background: var(--accent); color: white; }

/* Video modal */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── 21. BOOKING SYSTEM ─────────────────────────────────────── */
.booking-modal .modal { max-width: 960px; }
.booking-modal .modal__body { padding: 0; }

/* Progress steps */
.booking-progress {
  display: flex;
  padding: var(--space-xl) var(--space-2xl) var(--space-lg);
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.booking-step-indicator {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 0;
}
.booking-step-indicator:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 var(--space-sm);
  flex-shrink: 0;
  width: 32px;
  min-width: 16px;
}
.booking-step-indicator.completed::after { background: var(--accent); }

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--tr-base);
  flex-shrink: 0;
}
.booking-step-indicator.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 0 4px rgba(196,106,45,0.2);
}
.booking-step-indicator.completed .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.step-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: var(--space-sm);
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-step-indicator.active .step-label { color: var(--accent); }

/* Booking body layout */
.booking-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 480px;
}

@media (max-width: 720px) {
  .booking-body { grid-template-columns: 1fr; }
}

.booking-main {
  padding: var(--space-xl) var(--space-2xl);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  max-height: 60svh;
}
@media (max-width: 720px) {
  .booking-main { border-right: none; border-bottom: 1px solid var(--border); max-height: none; }
}

.booking-sidebar {
  padding: var(--space-xl);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.basket-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.basket-empty {
  text-align: center;
  padding: var(--space-xl) 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.basket-empty i { font-size: 2rem; opacity: 0.3; display: block; margin-bottom: var(--space-sm); }
.basket-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.basket-item__name { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 2px; }
.basket-item__cat  { font-size: 0.7rem; color: var(--text-muted); }
.basket-item__row  { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-sm); }
.basket-item__price { font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.basket-item__qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all var(--tr-fast);
  color: var(--text-primary);
}
.qty-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.qty-val { font-size: 0.85rem; font-weight: 600; min-width: 16px; text-align: center; color: var(--text-primary); }
.basket-item__remove { color: var(--text-muted); font-size: 0.75rem; cursor: pointer; transition: color var(--tr-fast); padding: 4px; }
.basket-item__remove:hover { color: #e05454; }

.basket-total {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  margin-top: auto;
}
.basket-total__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.basket-total__grand {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 2px solid var(--border-strong);
}

/* Booking form steps */
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Calendar */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.calendar-month {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.calendar-nav {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--tr-base);
}
.calendar-nav:hover { background: var(--accent); color: white; border-color: var(--accent); }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-name {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  padding: 6px 0;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--tr-base);
  color: var(--text-primary);
  border: 1px solid transparent;
}
.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--accent);
}
.calendar-day.today { font-weight: 700; color: var(--accent); border-color: var(--accent); }
.calendar-day.selected { background: var(--accent); color: white; border-color: var(--accent); }
.calendar-day.disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-day.empty { cursor: default; }

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.time-slot {
  padding: 9px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--tr-base);
  color: var(--text-primary);
  background: var(--bg-surface);
}
.time-slot:hover { border-color: var(--accent); color: var(--accent); background: rgba(196,106,45,0.05); }
.time-slot.selected { background: var(--accent); color: white; border-color: var(--accent); }
.time-slot.booked  { opacity: 0.35; cursor: not-allowed; background: var(--bg-elevated); }

/* Booking nav buttons */
.booking-nav {
  padding: var(--space-lg) var(--space-2xl);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Booking confirmation */
.booking-confirm-details {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.confirm-row {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
}
.confirm-row__label { color: var(--text-muted); min-width: 100px; font-weight: 500; }
.confirm-row__value { color: var(--text-secondary); font-weight: 600; }

/* Success state */
.booking-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1a6b3c, #2d9e5f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto var(--space-xl);
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes success-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.booking-ref {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-xl);
  margin: var(--space-md) 0;
  letter-spacing: 0.08em;
}

/* ── 22. LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-base);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90svh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--tr-base);
}
.lightbox__close:hover { background: var(--accent); border-color: var(--accent); }

/* ── 23. TOAST MESSAGES ─────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-sm);
  pointer-events: none;
  align-items: center;
}
.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  white-space: nowrap;
  pointer-events: all;
  animation: toast-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.success { border-color: #2d9e5f; }
.toast.success i { color: #2d9e5f; }
.toast.error   { border-color: #e05454; }
.toast.error i   { color: #e05454; }
.toast.info    { border-color: var(--accent); }
.toast.info i    { color: var(--accent); }
.toast.removing {
  animation: toast-out 0.3s ease forwards;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(-8px) scale(0.95); }
}
/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.c-detail{display:flex;gap:16px;align-items:flex-start;margin-bottom:24px}
.c-ico{width:46px;height:46px;border-radius:var(--r-m);flex-shrink:0;background:var(--burnt-orange-pale);border:1px solid rgba(196,106,45,.22);display:flex;align-items:center;justify-content:center;color:var(--burnt-orange);font-size:.95rem}
.c-lbl{font-size:.66rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--burnt-orange);margin-bottom:4px}
.c-val{font-size:.9rem;color:var(--text-2);line-height:1.65}
.c-val a{color:var(--text-2);transition:color var(--tf)}
.c-val a:hover{color:var(--burnt-orange)}
.hrs-block{background:var(--bg-s);border-radius:var(--r-m);padding:20px;margin:16px 0}
.hrs-head{font-size:.66rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--burnt-orange);margin-bottom:14px;display:flex;align-items:center;gap:6px}
.hr-row{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid var(--border-l);font-size:.86rem}
.hr-row:last-child{border-bottom:none}
.hr-day{color:var(--text-2);font-weight:500}
.hr-time{color:var(--burnt-orange);font-weight:600}
.hr-row.today-hl .hr-day,.hr-row.today-hl .hr-time{color:var(--burnt-orange);font-weight:700}
.c-socials{display:flex;gap:10px;margin-top:22px}
.c-soc{width:42px;height:42px;border-radius:50%;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-2);font-size:.88rem;transition:all var(--tb)}
.c-soc:hover{background:var(--burnt-orange);border-color:var(--burnt-orange);color:var(--white);transform:translateY(-3px)}
.map-wrap{height:280px;border-radius:var(--r-l);overflow:hidden;border:1.5px solid var(--border);margin-top:24px}
.map-wrap iframe{width:100%;height:100%;border:none}
.c-form-card{background:var(--bg-card);border:1.5px solid var(--border);border-radius:var(--r-xl);padding:44px;box-shadow:var(--sh-s)}
.c-form-title{font-family:var(--font-disp);font-size:1.7rem;font-weight:400;color:var(--text-1);margin-bottom:5px}
.c-form-sub{font-size:.85rem;color:var(--text-3);margin-bottom:28px}
.fg{margin-bottom:18px}
.fg label{display:block;font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-2);margin-bottom:8px}
.fg label .req{color:var(--burnt-orange);margin-left:2px}
.fi{width:100%;background:var(--bg-surf);border:1.5px solid var(--border);border-radius:var(--r-m);padding:12px 15px;font-size:.88rem;color:var(--text-1);outline:none;transition:all var(--tb);appearance:none;font-family:inherit}
.fi:focus{border-color:var(--burnt-orange);box-shadow:0 0 0 3px rgba(196,106,45,.12);background:var(--bg-card)}
.fi::placeholder{color:var(--text-3)}
textarea.fi{resize:vertical;min-height:115px}
.fi.err{border-color:#E74C3C}
.fe{font-size:.72rem;color:#E74C3C;margin-top:4px;display:none}
.fe.show{display:block}
.phone-row{display:grid;grid-template-columns:130px 1fr;gap:8px}
.fr2{display:grid;grid-template-columns:1fr 1fr;gap:14px}

/* ── 24. FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--clr-dark);
  color: var(--clr-cream);
  padding: var(--space-3xl) 0 0;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), var(--accent), var(--clr-gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand__logo {
  width: 110px;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
}
.footer-brand__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-md);
}
.footer-brand__desc {
  font-size: 0.85rem;
  color: rgba(247,231,206,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.footer-brand .social-links .social-link {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(247,231,206,0.6);
}
.footer-brand .social-links .social-link:hover { color: white; }

.footer-col__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(212,163,115,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(247,231,206,0.55);
  transition: color var(--tr-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer-links a:hover { color: var(--clr-gold); }
.footer-links a::before { content: '→'; opacity: 0; font-size: 0.7rem; transition: opacity var(--tr-fast); }
.footer-links a:hover::before { opacity: 1; }

.newsletter-form { display: flex; gap: 6px; margin-top: var(--space-sm); }
.newsletter-input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--clr-cream);
  outline: none;
  transition: all var(--tr-base);
}
.newsletter-input::placeholder { color: rgba(247,231,206,0.35); }
.newsletter-input:focus { border-color: var(--clr-gold); background: rgba(255,255,255,0.1); }

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-bottom__copy { font-size: 0.8rem; color: rgba(247,231,206,0.35); }
.footer-bottom__links { display: flex; gap: var(--space-lg); }
.footer-bottom__links a { font-size: 0.78rem; color: rgba(247,231,206,0.35); transition: color var(--tr-fast); }
.footer-bottom__links a:hover { color: var(--clr-gold); }

/* ── 25. SCROLL REVEAL (JS-triggered) ──────────────────────── */
.sr {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.sr.from-bottom  { transform: translateY(40px); }
.sr.from-left    { transform: translateX(-40px); }
.sr.from-right   { transform: translateX(40px); }
.sr.from-scale   { transform: scale(0.92); }
.sr.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.sr-delay-1 { transition-delay: 0.1s; }
.sr-delay-2 { transition-delay: 0.2s; }
.sr-delay-3 { transition-delay: 0.3s; }
.sr-delay-4 { transition-delay: 0.4s; }
.sr-delay-5 { transition-delay: 0.5s; }

/* ── 26. BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-md) 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--tr-fast); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--accent); font-weight: 600; }

/* ── 27. PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--navbar-h) + var(--space-3xl)) 0 var(--space-2xl);
  position: relative;
  background: linear-gradient(135deg,
    var(--bg-elevated) 0%,
    var(--bg-surface) 100%
  );
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(196,106,45,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.page-hero__subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* Category tabs */
.cat-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.cat-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr-base);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(196,106,45,0.35);
}
.cat-tab i { font-size: 0.8rem; }

/* Sub-category heading */
.subcategory-heading {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-2xl) 0 var(--space-lg);
}
.subcategory-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.subcategory-heading h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  white-space: nowrap;
}

/* Service page grid */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* ── 28. FAQ ACCORDION ──────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--tr-base);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  background: var(--bg-surface);
  transition: background var(--tr-fast);
  gap: var(--space-md);
}
.faq-question:hover { background: var(--bg-elevated); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  transition: all var(--tr-base);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-lg);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-surface);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 var(--space-lg) var(--space-lg); }

/* ── 29. SEARCH BAR ─────────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 480px;
}
.search-input {
  width: 100%;
  padding: 13px 48px 13px var(--space-lg);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--tr-base);
}
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,106,45,0.12); }
.search-icon {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}
.search-clear {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  display: none;
  transition: color var(--tr-fast);
}
.search-clear:hover { color: var(--accent); }
.search-input:not(:placeholder-shown) ~ .search-icon { display: none; }
.search-input:not(:placeholder-shown) ~ .search-clear { display: block; }

/* ── 30. PEOPLE SELECTOR ────────────────────────────────────── */
.people-selector { display: flex; flex-direction: column; gap: var(--space-sm); }
.people-selector label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.people-row { display: flex; align-items: center; gap: var(--space-sm); }
.people-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--tr-base);
}
.people-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.people-count {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 36px;
  text-align: center;
}
.people-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.people-price span { color: var(--accent); font-weight: 700; }

/* ── 31. OFFERS SECTION (in booking) ───────────────────────── */
.offers-section {
  padding: var(--space-md);
  background: rgba(196,106,45,0.05);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}
.offers-section h6 { color: var(--accent); margin-bottom: var(--space-sm); }
.offer-item {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--tr-fast);
}
.offer-item:hover { background: var(--bg-elevated); }
.offer-item i { color: var(--clr-gold); font-size: 0.8rem; }
.offer-item__text { font-size: 0.8rem; color: var(--text-muted); flex: 1; }
.offer-item__badge { font-size: 0.7rem; color: #2d9e5f; font-weight: 700; padding: 2px 8px; background: rgba(45,158,95,0.1); border-radius: var(--radius-full); }

/* ── 32. DAY-SELECTION POPUP (specials booking) ─────────────── */
.day-warning-modal .modal {
  max-width: 440px;
  text-align: center;
}
.day-warning-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}
.day-warning-modal .modal__body p { font-size: 0.9rem; line-height: 1.7; }

/* ── 33. SECTION BACKGROUNDS ────────────────────────────────── */
.bg-cream        { background: var(--clr-cream); }
.bg-surface      { background: var(--bg-surface); }
.bg-elevated     { background: var(--bg-elevated); }
.bg-dark         { background: var(--clr-dark); }
.bg-chocolate    { background: var(--clr-chocolate); }
.bg-gradient     { background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%); }
.bg-texture {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196,106,45,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,163,115,0.05) 0%, transparent 50%);
}

/* ── 34. UTILITY CLASSES ────────────────────────────────────── */
.hidden { display: none !important; }
.invisible { visibility: hidden; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.pointer-none { pointer-events: none; }
.no-scroll { overflow: hidden; }

/* ── 35. RESPONSIVE MEDIA QUERIES ───────────────────────────── */

/* Tablet Landscape: 901px – 1200px */
@media (max-width: 1200px) {
  :root {
    --navbar-h: 72px;
  }
  .container { padding: 0 var(--space-lg); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-newsletter { grid-column: 1 / -1; max-width: 480px; }
}

/* Tablet Portrait: 601px – 900px */
@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .hamburger   { display: flex; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-stack { height: 400px; display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .booking-progress { padding: var(--space-md); }
  .step-label { display: none; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  :root {
    --navbar-h: 64px;
    --space-3xl: 64px;
    --space-2xl: 48px;
  }
  .container { padding: 0 var(--space-md); }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  .hero__stats { flex-wrap: wrap; gap: var(--space-lg); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .booking-main { padding: var(--space-lg); }
  .modal__header { padding: var(--space-lg); }
  .modal__body { padding: var(--space-lg); }
  .modal__footer { padding: var(--space-md) var(--space-lg); }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .about-img-stack { display: none; }
  .specials-banner { flex-direction: column; align-items: flex-start; }
  .specials-banner__countdown { margin-left: 0; }
  .package-card__actions { flex-direction: column; }
  .hero__scroll { display: none; }
  .navbar__actions .btn--primary { display: none; }
}

/* Small Mobile: < 400px */
@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  .btn { padding: 11px 22px; font-size: 0.76rem; }
  .time-slots { grid-template-columns: repeat(2, 1fr); font-size: 0.78rem; }
  .booking-progress { gap: 4px; }
}

/* ── 36. PRINT STYLES ───────────────────────────────────────── */
@media print {
  #navbar, #footer, .whatsapp-float, .toast-container, #preloader { display: none; }
  body { background: white; color: black; }
}

/* ── 37. FOCUS STYLES (Accessibility) ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── 38. SCROLLBAR STYLING ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-elevated); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── 39. SELECTION ──────────────────────────────────────────── */
::selection { background: rgba(196, 106, 45, 0.25); color: var(--clr-dark); }

/* ── 40. ANIMATIONS ─────────────────────────────────────────── */
@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,106,45,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(196,106,45,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg,
    var(--bg-elevated) 0%,
    var(--border) 50%,
    var(--bg-elevated) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin { animation: spin 1s linear infinite; }

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}