/* ============================================================
   CUPID SPA ASIAN MASSAGE — Master Stylesheet
   Designed & Developed by Novelio Technologies · 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&family=Dancing+Script:wght@600;700&display=swap');

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  --primary:        #CC1A1A;
  --primary-dark:   #991111;
  --primary-light:  #FFCDD2;
  --gold:           #D4AF37;
  --gold-light:     #F0D878;
  --gold-dark:      #A8891F;
  --bg-dark:        #0D0D0D;
  --bg-dark-2:      #141414;
  --bg-dark-3:      #1C1C1C;
  --bg-light:       #FFF5F5;
  --bg-surface:     #FFFFFF;
  --text-dark:      #1A1A1A;
  --text-light:     #F5F5F5;
  --text-muted:     #6B7280;
  --text-muted-dark:#9CA3AF;
  --glass-bg:       rgba(255,255,255,0.06);
  --glass-bg-md:    rgba(255,255,255,0.10);
  --glass-border:   rgba(255,255,255,0.13);
  --glass-light:    rgba(255,255,255,0.88);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.14), 0 8px 40px rgba(204,26,26,0.08);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.22), 0 24px 80px rgba(204,26,26,0.14);
  --shadow-gold:    0 0 24px rgba(212,175,55,0.35);
  --shadow-card:    0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(204,26,26,0.07), 0 20px 60px rgba(0,0,0,0.10);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-full:    9999px;
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;
  --z-base:     1;
  --z-drop:     10;
  --z-sticky:   20;
  --z-overlay:  30;
  --z-modal:    40;
  --z-top:      50;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px; left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: var(--z-top);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

/* ── 3. TYPOGRAPHY SCALE ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.script-text {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color: var(--primary);
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── 4. UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5.5rem 0; }
.section--dark  { background: var(--bg-dark); color: var(--text-light); }
.section--dark-2{ background: var(--bg-dark-2); color: var(--text-light); }
.section--light { background: var(--bg-light); }
.section--white { background: var(--bg-surface); }

.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__header h2 { margin-bottom: 0.8rem; }
.section__header p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section--dark .section__header p,
.section--dark-2 .section__header p { color: var(--text-muted-dark); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-primary{ color: var(--primary); }

/* Divider */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: var(--radius-full);
  margin: 1rem auto 0;
}
.divider--left { margin-left: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal),
              background var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0D0D0D;
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
}
.btn--gold:hover { box-shadow: var(--shadow-gold), 0 8px 32px rgba(212,175,55,0.45); }

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(204,26,26,0.30);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(204,26,26,0.45); }

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-dark {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(204,26,26,0.30);
}

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 1rem; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── 6. TOP BAR ── */
.top-bar {
  background: var(--bg-dark);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.55rem 0;
  z-index: var(--z-sticky);
  position: relative;
}
.top-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar__left { display: flex; align-items: center; gap: 1.2rem; }
.top-bar__left span { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.75); }
.top-bar__left span svg { color: var(--gold); flex-shrink: 0; }
.top-bar__right { display: flex; align-items: center; gap: 1.2rem; }
.top-bar__link {
  display: flex; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
}
.top-bar__link:hover { color: var(--gold); }
.top-bar__link svg  { flex-shrink: 0; }

/* ── 7. NAVIGATION ── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: background var(--transition-slow),
              box-shadow var(--transition-slow),
              backdrop-filter var(--transition-slow);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.14);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  display: block;
  height: 52px;
  width: 260px;
  object-fit: cover;
  object-position: left center;
}
.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.nav__logo-text span { display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__links a {
  color: rgba(26,26,26,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-fast);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}
.nav__links a:hover,
.nav__links a.active { color: var(--primary); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 60%; }

.nav__cta { margin-left: 1rem; flex-shrink: 0; }

.nav__hamburger {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav__hamburger:hover { background: rgba(0,0,0,0.07); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: var(--radius-full);
  transition: transform var(--transition-normal), opacity var(--transition-fast);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(24px);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.nav__mobile.open { opacity: 1; pointer-events: auto; }
.nav__mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), transform var(--transition-normal);
  transform: translateY(20px);
  opacity: 0;
}
.nav__mobile.open a {
  transform: translateY(0);
  opacity: 1;
}
.nav__mobile.open a:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.10s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.20s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.25s; }
.nav__mobile.open a:nth-child(6) { transition-delay: 0.30s; }
.nav__mobile.open a:nth-child(7) { transition-delay: 0.35s; }
.nav__mobile a:hover { color: var(--gold); transform: translateX(8px); }
.nav__mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.6);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav__mobile-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ── 8. HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner5.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.82) 0%,
    rgba(153,17,17,0.38) 50%,
    rgba(13,13,13,0.72) 100%
  );
}
/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.25;
  animation: floatOrb 7s ease-in-out infinite;
}
.hero__orb--1 { width: 400px; height: 400px; background: var(--primary); top: -10%; left: -8%; animation-delay: 0s; }
.hero__orb--2 { width: 300px; height: 300px; background: var(--gold); top: 60%; right: -5%; animation-delay: 2.5s; }
.hero__orb--3 { width: 200px; height: 200px; background: var(--primary-light); bottom: 10%; left: 40%; animation-delay: 4.5s; }
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.06); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem;
  margin: 0 auto 0 10%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero__badge svg { flex-shrink: 0; }

.hero h1 {
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  opacity: 0;
  animation: heroHeadline 0.9s ease forwards 0.3s;
}
@keyframes heroHeadline {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
  opacity: 0;
  animation: heroHeadline 0.9s ease forwards 0.55s;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroHeadline 0.9s ease forwards 0.8s;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* ── 9. TRUST BAR ── */
.trust-bar {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.trust-bar__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-item__icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.trust-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.trust-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── 10. SERVICES SECTION ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal),
              border-color var(--transition-normal),
              background var(--transition-normal);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,26,26,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204,26,26,0.35);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(204,26,26,0.35);
}
.service-card__icon svg { color: #fff; }
.service-card__name { font-size: 1.25rem; margin-bottom: 0.6rem; color: #fff; }
.service-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.2rem; }
.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.service-card__link:hover { gap: 0.7rem; color: var(--gold-light); }

/* Light bg service cards */
.service-card--light {
  background: #fff;
  border-color: rgba(204,26,26,0.12);
  backdrop-filter: none;
}
.service-card--light .service-card__name { color: var(--text-dark); }
.service-card--light .service-card__desc { color: var(--text-muted); }
.service-card--light:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

/* ── 11. ABOUT SECTION ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}
.about-img-wrap:hover .about-img-main { transform: scale(1.02); }
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-img-badge strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-img-badge span  { font-size: 0.78rem; letter-spacing: 0.1em; opacity: 0.85; }

.about-content h2  { margin-bottom: 1.2rem; }
.about-content p   { color: var(--text-muted); margin-bottom: 1.6rem; font-size: 1.04rem; }
.about-bullets { list-style: none; margin-bottom: 2rem; }
.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(204,26,26,0.08);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-bullets li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ── 12. REVIEWS SECTION ── */
.reviews-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.tab-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
  color: #0D0D0D;
}

.reviews-panel { display: none; }
.reviews-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: default;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 0.9rem; }
.review-card__stars svg { fill: var(--gold); }
.review-card__text { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 1.2rem; }
.review-card__footer { display: flex; align-items: center; gap: 0.75rem; }
.review-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-card__name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.review-card__date { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.review-card__badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(204,26,26,0.25);
  color: var(--primary-light);
  border: 1px solid rgba(204,26,26,0.35);
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 0.7rem 1.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.google-badge:hover { background: rgba(255,255,255,0.1); color: #fff; }
.google-badge svg { flex-shrink: 0; }

/* ── 13. PROMOS SECTION ── */
.promos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.promo-card {
  background: var(--glass-bg-md);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(212,175,55,0.2); border-color: rgba(212,175,55,0.5); }
.promo-card:hover::before { opacity: 1; }
.promo-card__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,175,55,0.4);
  padding: 0.2rem 0.8rem; border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}
.promo-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.6rem; }
.promo-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; line-height: 1.6; }

/* ── 14. INQUIRY / CONTACT FORM ── */
.inquiry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.inquiry-info h2    { margin-bottom: 1rem; }
.inquiry-info p     { color: var(--text-muted); margin-bottom: 2rem; }
.contact-detail     { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.4rem; }
.contact-detail svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail span { font-size: 0.97rem; color: var(--text-dark); }
.hours-table { border-collapse: collapse; width: 100%; margin-top: 0.5rem; font-size: 0.9rem; }
.hours-table td { padding: 0.3rem 0; color: var(--text-muted); }
.hours-table td:first-child { font-weight: 600; color: var(--text-dark); width: 110px; }
.open-badge {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34,197,94,0.25);
  margin-left: 0.5rem;
}

/* Map */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* Form */
.form-glass {
  background: var(--bg-surface);
  border: 1px solid rgba(204,26,26,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { position: relative; margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(204,26,26,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204,26,26,0.12);
}
.form-field input.error,
.form-field textarea.error { border-color: #ef4444; animation: shake 0.35s ease; }
.form-field .error-msg { font-size: 0.78rem; color: #ef4444; margin-top: 0.3rem; display: none; }
.form-field .error-msg.visible { display: block; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { cursor: pointer; }

.form-submit { width: 100%; margin-top: 0.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #16a34a;
}
.form-success svg { margin: 0 auto 1rem; color: #16a34a; }
.form-success h3 { color: var(--text-dark); margin-bottom: 0.5rem; }
.form-success p  { color: var(--text-muted); font-size: 0.95rem; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

/* ── 15. GALLERY TEASER / FULL ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { color: #fff; font-size: 0.88rem; font-weight: 600; }

/* Masonry gallery (gallery page) */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  aspect-ratio: auto;
}
.gallery-masonry .gallery-item img { height: auto; aspect-ratio: auto; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  transition: transform var(--transition-normal);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(2px); }

/* ── 16. BOOKING WIZARD ── */
.booking-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.booking-progress {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}
.booking-progress::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  height: 2px;
  background: rgba(204,26,26,0.15);
  z-index: 0;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.progress-step__circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(204,26,26,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-surface);
  transition: all var(--transition-normal);
}
.progress-step.active .progress-step__circle  { border-color: var(--primary); background: var(--primary); color: #fff; }
.progress-step.done .progress-step__circle    { border-color: var(--primary); background: var(--primary); color: #fff; }
.progress-step__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.progress-step.active .progress-step__label  { color: var(--primary); }

.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeInStep 0.4s ease; }
@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.service-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.service-option {
  border: 2px solid rgba(204,26,26,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: var(--bg-surface);
}
.service-option:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(204,26,26,0.12); }
.service-option.selected { border-color: var(--primary); background: rgba(204,26,26,0.04); }
.service-option h4 { margin-bottom: 0.3rem; color: var(--text-dark); }
.service-option p  { font-size: 0.85rem; color: var(--text-muted); }

.time-slots { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.75rem; margin-top: 1.5rem; }
.time-slot {
  padding: 0.7rem 0.5rem;
  text-align: center;
  border: 1.5px solid rgba(204,26,26,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.time-slot:hover  { border-color: var(--primary); color: var(--primary); }
.time-slot.selected { background: var(--primary); border-color: var(--primary); color: #fff; }
.time-slot.unavailable { opacity: 0.38; cursor: not-allowed; pointer-events: none; }

.booking-nav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }

/* Booking success */
.booking-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.booking-success.active { display: block; animation: fadeInStep 0.5s ease; }
.checkmark-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(34,197,94,0.3);
}
.checkmark-circle svg { color: #fff; }

/* ── 17. BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.blog-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(204,26,26,0.08);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card__img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__img-wrap { overflow: hidden; }
.blog-card__body { padding: 1.5rem; }
.blog-card__cat {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(204,26,26,0.08);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.7rem;
}
.blog-card__title { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--text-dark); line-height: 1.35; }
.blog-card__excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); }
.blog-card__read-more { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; transition: gap var(--transition-fast); }
.blog-card__read-more:hover { gap: 0.5rem; }

/* Blog post article */
.blog-post { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.blog-post__header { margin-bottom: 2.5rem; text-align: center; }
.blog-post__cat   { margin-bottom: 1rem; display: block; }
.blog-post__title { margin-bottom: 1rem; }
.blog-post__meta  { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.blog-post__hero  { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }
.blog-post__content h2 { font-size: 1.7rem; margin: 2rem 0 0.8rem; }
.blog-post__content h3 { font-size: 1.35rem; margin: 1.6rem 0 0.6rem; color: var(--primary-dark); }
.blog-post__content p  { margin-bottom: 1.3rem; color: #374151; line-height: 1.8; font-size: 1.02rem; }
.blog-post__content ul { margin: 0.8rem 0 1.3rem 1.5rem; }
.blog-post__content ul li { margin-bottom: 0.5rem; color: #374151; line-height: 1.7; }
.blog-post__cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}
.blog-post__cta h3 { color: #fff; margin-bottom: 0.6rem; }
.blog-post__cta p  { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

/* Sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.sidebar-card {
  background: var(--bg-surface);
  border: 1px solid rgba(204,26,26,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--primary-light); }

/* ── 18. PAGE HERO (short) ── */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.7) 0%, rgba(153,17,17,0.4) 100%);
}
.page-hero__content { position: relative; z-index: 2; color: #fff; padding: 0 1.5rem; }
.page-hero__content .script-text { font-size: 1.3rem; margin-bottom: 0.4rem; }
.page-hero__content h1 { color: #fff; margin-bottom: 0.7rem; }
.page-hero__content p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  justify-content: center;
  margin-top: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { flex-shrink: 0; }

/* ── 19. SERVICES PAGE ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(204,26,26,0.08);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail__img { border-radius: var(--radius-xl); width: 100%; height: 380px; object-fit: cover; box-shadow: var(--shadow-md); }
.service-detail__benefits { list-style: none; margin: 1.2rem 0 1.8rem; }
.service-detail__benefits li { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.95rem; color: var(--text-muted); }
.service-detail__benefits li svg { color: var(--primary); flex-shrink: 0; }
.duration-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.duration-tag {
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(204,26,26,0.25);
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.pricing-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.pricing-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(204,26,26,0.08);
  font-size: 0.93rem;
  color: var(--text-dark);
}
.pricing-table tr:hover td { background: rgba(204,26,26,0.03); }
.pricing-table tr:last-child td { border-bottom: none; }
.price-range { color: var(--primary); font-weight: 600; }

/* ── 20. ABOUT PAGE ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.value-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid rgba(204,26,26,0.1);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: default;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(204,26,26,0.1) 0%, rgba(153,17,17,0.1) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background var(--transition-normal);
}
.value-card:hover .value-card__icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.value-card__icon svg { color: var(--primary); transition: color var(--transition-normal); }
.value-card:hover .value-card__icon svg { color: #fff; }
.value-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.value-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card {
  text-align: center;
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid rgba(204,26,26,0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: default;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.team-card__photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-light);
}
.team-card h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card span { font-size: 0.82rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 0.4rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }
.team-card__avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem; font-weight: 700; color: #fff;
  letter-spacing: 0.05em;
  border: 3px solid rgba(212,175,55,0.4);
}

/* ── 21. CONTACT PAGE ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.big-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.big-phone:hover { color: var(--primary-dark); }
.big-phone svg { color: var(--primary); flex-shrink: 0; }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(204,26,26,0.25);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(204,26,26,0.3);
}

.map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}
.map-full iframe { width: 100%; height: 100%; border: none; }

/* ── 22. CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, rgba(204,26,26,0.85) 100%);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-banner p  { color: rgba(255,255,255,0.82); font-size: 1.06rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { justify-content: center; }

/* ── 23. FOOTER ── */
.footer {
  background: #080808;
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.footer__logo-text span { display: block; font-size: 0.65rem; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; }
.footer__desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition-fast);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer__links a:hover { color: var(--gold); }
.footer__links a svg  { flex-shrink: 0; opacity: 0.6; }

.footer__contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.footer__contact p svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer__contact a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__credit { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__credit a { color: var(--gold); transition: color var(--transition-fast); }
.footer__credit a:hover { color: var(--gold-light); }

/* ── 24. MOBILE STICKY BUTTONS ── */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-top);
  height: 60px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  animation: slideUpMobile 0.6s ease forwards 1.5s;
}
@keyframes slideUpMobile {
  to { transform: translateY(0); }
}
.sticky-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.sticky-mobile__call  { background: var(--primary); }
.sticky-mobile__whats { background: #25D366; }
.sticky-mobile a svg  { flex-shrink: 0; }

/* ── 25. SECTION-SPECIFIC BACKGROUNDS ── */
.bg-gradient-rose {
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(153,17,17,0.4) 50%, var(--bg-dark) 100%);
}
.bg-rose-light { background: #FFF0F5; }
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
  margin: 0;
}

/* Gallery filter */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(204,26,26,0.2);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Mini map on contact */
.directions-note {
  background: var(--bg-light);
  border: 1px solid rgba(204,26,26,0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}
.directions-note svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ── 26. RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-split  { gap: 3rem; }
  .team-grid    { grid-template-columns: repeat(2,1fr); }
  .blog-layout  { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-panel.active { grid-template-columns: 1fr; }
  .promos-grid  { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .service-detail--reverse { direction: ltr; }
  .inquiry-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 90svh; }
  .hero__content { margin: 0 auto; text-align: center; padding: 6rem 1.5rem 2rem; }
  .hero__ctas { justify-content: center; }
  .hero__badge { margin-left: auto; margin-right: auto; }

  .trust-bar__grid { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  .services-grid { grid-template-columns: 1fr; }
  .about-split   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-badge { bottom: 1rem; right: 1rem; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .promos-grid   { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .time-slots    { grid-template-columns: repeat(3,1fr); }
  .service-options { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .sticky-mobile { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 3.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .time-slots { grid-template-columns: repeat(2,1fr); }
  .team-grid  { grid-template-columns: 1fr 1fr; }
}

/* ── 27. PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { transform: none; }
  .reveal   { opacity: 1; transform: none; }
}

/* ── 28. MISSING / SUPPLEMENTAL RULES ── */

/* Navbar logo text — nullified (text removed from all nav instances) */
.nav__logo-text { display: none; }

/* Breadcrumb Pattern B — ol/li structure used on services, about, gallery pages */
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__item { display: flex; align-items: center; }
.breadcrumb__item a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}
.breadcrumb__item a:hover { color: var(--gold); }
.breadcrumb__item--active {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
}
.breadcrumb__sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Page hero background-size/position for inline-style pattern (services, about, gallery) */
.page-hero {
  background-size: cover;
  background-position: center;
}

/* Section header variants used across services / about / gallery pages */
.section__header--center { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.section__subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
}
.section--dark  .section__title,
.section--dark-2 .section__title { color: var(--text-light); }
.section--white .section__title,
.section--light .section__title  { color: var(--text-dark); }

/* Service detail sub-elements (services page) */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .service-detail__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.service-detail__image { border-radius: var(--radius-xl); overflow: hidden; }
.service-detail__image img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.service-detail__content {}
.service-detail__content h2 { margin-bottom: 1rem; }
.service-detail__content .section__eyebrow { margin-bottom: 0.4rem; }
.service-detail__desc { color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.75; font-size: 1rem; }
.service-detail__durations {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

/* About page split sub-elements */
.about-split__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-split__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-split__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-split__badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-split__badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.about-split__content { display: flex; flex-direction: column; gap: 0; }
.about-split__content h2 { margin-bottom: 1rem; }
.about-split__content p  { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.75; }
.about-split__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.about-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.about-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Gallery page — inner wrapper and caption elements */
.gallery-item__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-masonry .gallery-item__inner img { width: 100%; height: auto; display: block; }
.gallery-item__caption {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
.gallery-item__zoom {
  color: #fff;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.5rem;
  backdrop-filter: blur(4px);
}

/* Gallery filter active class variant (JS adds filter-btn--active) */
.filter-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Mission quote block (about page) */
.mission-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-quote__blockquote { position: relative; }
.mission-quote__icon {
  color: var(--primary-light);
  margin: 0 auto 1.2rem;
  display: block;
  opacity: 0.4;
}
.mission-quote__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.mission-quote__footer { margin-top: 0.5rem; }
.mission-quote__source {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Page hero title / subtitle helpers (used on services, about, gallery) */
.page-hero__title {
  color: #fff;
  margin-bottom: 0.6rem;
}
.page-hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

/* Value card element aliases (about page uses these instead of generic h3/p) */
.value-card__title { font-size: 1.2rem; margin-bottom: 0.6rem; }
.value-card__desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* About split reverse variant */
.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .about-split--reverse { direction: ltr; }
}

/* Why-list (about page) */
.why-list { list-style: none; margin: 1.2rem 0 1.8rem; }
.why-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(204,26,26,0.08);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.why-list__item svg { color: var(--primary); flex-shrink: 0; }

/* Team card element aliases (about page) */
.team-card__img-wrap { display: flex; justify-content: center; margin-bottom: 0.25rem; }
.team-card__body     { text-align: center; }
.team-card__name     { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text-dark); }
.team-card__role     { font-size: 0.82rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 0.4rem; }
.team-card__desc     { font-size: 0.82rem; color: var(--text-muted); }

/* Pricing table extras (services page) */
.pricing-table-wrap { overflow-x: auto; }
.pricing-table__desc { display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 400; margin-top: 0.15rem; }
.pricing-table__call {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.pricing-table__call:hover { color: var(--primary-dark); text-decoration: underline; }

/* Payment strip (services page) */
.payment-strip {
  background: var(--bg-dark-3);
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.payment-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.payment-strip__accepted {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.payment-strip__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.payment-card {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}
.payment-card--cash { color: var(--gold); border-color: rgba(212,175,55,0.3); background: rgba(212,175,55,0.06); }
.payment-strip__walkin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.payment-strip__walkin svg { color: var(--primary); }

/* CTA banner variants (services page uses more sub-classes than index page) */
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.7rem;
}
.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.cta-banner__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.06rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Outline-white button variant (services page CTA) */
.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ── DISCLAIMER POPUP ── */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.disclaimer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.disclaimer-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.6rem 2.2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28), 0 8px 32px rgba(204,26,26,0.12);
  border-top: 4px solid var(--primary);
  transform: translateY(22px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.disclaimer-overlay.visible .disclaimer-modal {
  transform: translateY(0) scale(1);
}
.disclaimer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.disclaimer-close:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.disclaimer-modal .eyebrow { margin-bottom: 0.5rem; }
.disclaimer-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.disclaimer-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.disclaimer-modal p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 1.8rem;
}
.disclaimer-modal .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 540px) {
  .disclaimer-modal {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: var(--radius-md);
  }
  .disclaimer-modal h3 { font-size: 1.5rem; }
}
