/* ============================================================
   HERS & HER BEAUTY BAR — MASTER STYLESHEET
   Brand: #3C1822 (Deep Brown) + #C85585 (Signature Pink)
   Aesthetic: Soft Feminine Luxury
   Version: 1.0 | TRL-6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg:           #3B2625;
  --bg-card:      #472E2D;
  --bg-elevated:  #523635;
  --bg-deep:      #271A19;
  --bg-overlay:   rgba(59, 38, 37, 0.97);

  --pink:         #C85585;
  --pink-hover:   #D96898;
  --pink-muted:   #A03F6A;
  --pink-pale:    rgba(200, 85, 133, 0.10);
  --pink-border:  rgba(200, 85, 133, 0.18);

  --cream:        #F5EDE8;
  --cream-muted:  #C4B5A0;
  --gold:         #C85585;
  --white:        #FFFFFF;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;

  --nav-h:        88px;
  --container:    1200px;
  --radius:       4px;
  --radius-lg:    14px;
  --transition:   0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.85;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--pink);
  margin: 18px 0;
}
.divider.center { margin: 18px auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #C85585;
  color: var(--white);
  border: 1px solid #C85585;
}
.btn-primary:hover {
  background: #D96898;
  border-color: #D96898;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 85, 133, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--pink-border);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--pink);
  border: none;
  padding: 10px 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.btn-ghost::after { content: '  →'; }
.btn-ghost:hover { letter-spacing: 0.28em; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
  overflow: hidden;
  background: var(--bg);
  transition: opacity 0.5s ease 0.85s;
}
#preloader.exit {
  opacity: 0;
  pointer-events: none;
}
.pre-curtain {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: var(--bg);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}
.pre-curtain-top    { top: 0; }
.pre-curtain-bottom { bottom: 0; }
#preloader.exit .pre-curtain-top    { transform: translateY(-100%); }
#preloader.exit .pre-curtain-bottom { transform: translateY(100%);  }
#preloader.gone { display: none; }

.pre-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 2;
}
.pre-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  animation: preLogoIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  box-shadow: 0 0 0 0 rgba(200, 85, 133, 0.4);
  animation: preLogoIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards,
             prePulse 2s ease-in-out 1.4s infinite;
  position: relative;
  z-index: 3;
}
@keyframes preLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes prePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 85, 133, 0.35); }
  50%       { box-shadow: 0 0 0 22px rgba(200, 85, 133, 0); }
}

/* Rings */
.pre-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 85, 133, 0.25);
  opacity: 0;
  animation: preRingExpand 2s ease-out infinite;
}
.pre-ring-1 {
  width: 240px; height: 240px;
  animation-delay: 1.2s;
}
.pre-ring-2 {
  width: 320px; height: 320px;
  animation-delay: 1.7s;
}
@keyframes preRingExpand {
  0%   { opacity: 0; transform: scale(0.7); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.4); }
}

.pre-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0;
  animation: preFadeUp 0.8s ease 1.1s forwards;
}
.pre-location {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C85585;
  opacity: 0;
  animation: preFadeUp 0.8s ease 1.4s forwards;
}
@keyframes preFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: var(--bg-overlay);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--pink-border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
/* Left nav links */
.nav-links-left {
  display: flex;
  align-items: center;
  gap: 38px;
}
/* Right nav links */
.nav-links-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
}
.nav-links-left a,
.nav-links-right a {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.nav-links-left a:hover,
.nav-links-left a.active,
.nav-links-right a:hover,
.nav-links-right a.active { color: var(--cream); }
.nav-links-right .nav-cta {
  color: var(--pink);
  border: 1px solid var(--pink-border);
  padding: 10px 26px;
  border-radius: var(--radius);
  font-size: 0.67rem;
}
.nav-links-right .nav-cta:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
/* Center brand name */
.nav-brand {
  text-align: center;
  white-space: nowrap;
}
.nav-brand a {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
}
.nav-brand a:hover { color: var(--gold); }
/* Keep .nav-links for backwards compat on mobile */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 42px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links .nav-cta {
  color: #C85585;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 26px;
  border-radius: var(--radius);
  font-size: 0.67rem;
  -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.5);
}
.nav-links .nav-cta:hover {
  background: #C85585;
  color: var(--white);
  border-color: #C85585;
  -webkit-text-stroke: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav .mobile-cta {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 14px 44px;
  border-radius: var(--radius);
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 20px 100px;
}

/* Video background layer — activate by adding src to <video> */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59, 38, 37, 0.72);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(90, 48, 54, 0.82) 0%, var(--bg) 68%);
  z-index: 0;
}
/* Subtle grain overlay for editorial depth */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(200,85,133,0.04) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  width: 100%;
}
.hero-logo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--pink-border);
  padding: 12px;
  animation: fadeInDown 1s ease 0.15s both;
  background: rgba(59,38,37,0.5);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 80px rgba(200,85,133,0.10), 0 0 160px rgba(90,48,54,0.25);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 300;
  font-style: italic;
  color: #C85585;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6);
  line-height: 1.1;
  letter-spacing: -0.01em;
  animation: fadeInUp 1s ease 0.35s both;
}
.hero-services-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C85585;
  animation: fadeInUp 1s ease 0.55s both;
}
.hero-services-strip .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cream-muted);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 0.75s both;
}
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  z-index: 1;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll-indicator span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C85585;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, #C85585, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-dark  { background: var(--bg); }
.section-card  { background: var(--bg-card); }
.section-deep  { background: var(--bg-deep); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(86, 42, 56, 0.95) 0%, var(--bg) 65%);
  border-bottom: 1px solid var(--pink-border);
}
.page-hero-content { max-width: 600px; }

/* ============================================================
   SERVICE CARDS (HOME)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.45;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  border-color: rgba(200, 85, 133, 0.55);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.service-card-desc {
  font-size: 0.87rem;
  color: var(--cream-muted);
  line-height: 1.85;
  flex: 1;
}
.service-card-link {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  transition: gap 0.3s ease;
}
.service-card-link::after { content: '→'; }
.service-card-link:hover { gap: 16px; }

/* ============================================================
   PHILOSOPHY BAND
   ============================================================ */
.philosophy {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--pink-border);
  border-bottom: 1px solid var(--pink-border);
  text-align: center;
}
.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.3;
}
.philosophy-attr {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ============================================================
   LOCATION STRIP
   ============================================================ */
.location-strip {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--pink-border);
}
.location-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}
.location-sep {
  height: 64px;
  background: var(--pink-border);
}
.location-item { padding: 0 40px; }
.location-item-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
  display: block;
}
.location-item-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.5;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--pink-border);
  text-align: center;
}
.cta-section .section-title { margin-bottom: 14px; }
.cta-section .section-subtitle { margin: 0 auto 40px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--pink-border);
  border-radius: 40px;
  color: var(--cream-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item.portrait { aspect-ratio: 3/4; }
.gallery-item.landscape { aspect-ratio: 4/3; }
.gallery-item.square { aspect-ratio: 1/1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(39, 26, 25, 0.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-category {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
}

/* Placeholder gallery items */
.gallery-placeholder {
  border: 1px dashed var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  cursor: default;
}
.gallery-placeholder span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  opacity: 0.6;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--pink-border);
}
.service-block:last-of-type { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.service-block-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 18px;
}
.service-block-header p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}
.service-block-header .btn { margin-top: 8px; }

.pricing-list { display: flex; flex-direction: column; }
.pricing-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--pink-border);
  gap: 24px;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item-left { flex: 1; }
.pricing-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 5px;
}
.pricing-item-desc {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.pricing-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--pink);
  white-space: nowrap;
  padding-top: 3px;
  flex-shrink: 0;
}

.policy-box {
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 40px;
}
.policy-box h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.policy-box p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.85;
}
.policy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.policy-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border: 1px solid var(--pink-border);
  padding: 7px 14px;
  border-radius: 40px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text p {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.95;
  margin-bottom: 20px;
}
.about-story-text p:last-child { margin-bottom: 0; }

.about-img-frame {
  position: relative;
}
.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-border);
}
.about-img-frame::after {
  content: '';
  position: absolute;
  top: 14px; right: -14px;
  width: 100%; height: 100%;
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Placeholder image frame */
.about-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.about-img-placeholder span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  opacity: 0.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(200,85,133,0.5);
  transform: translateY(-4px);
}
.value-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--pink);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 18px;
}
.value-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.value-text {
  font-size: 0.87rem;
  color: var(--cream-muted);
  line-height: 1.85;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.book-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form Card */
.booking-card {
  background: var(--bg);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}
.booking-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.booking-card-sub {
  font-size: 0.84rem;
  color: var(--cream-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
input, select, textarea {
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-pale);
}
input::placeholder,
textarea::placeholder { color: var(--cream-muted); opacity: 0.55; }
select option { background: var(--bg-card); color: var(--cream); }
textarea { resize: vertical; min-height: 110px; }

/* Service selector grid */
.service-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.service-opt:hover,
.service-opt.sel {
  border-color: var(--pink);
  background: var(--pink-pale);
}
.service-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.opt-radio {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--pink-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-opt.sel .opt-radio {
  background: var(--pink);
  border-color: var(--pink);
}
.service-opt.sel .opt-radio::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
}
.opt-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  flex: 1;
}
.opt-price {
  font-size: 0.78rem;
  color: var(--cream-muted);
  font-family: var(--font-sans);
}

/* Deposit note */
.deposit-notice {
  background: var(--pink-pale);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0 24px;
  font-size: 0.84rem;
  color: var(--cream-muted);
  line-height: 1.75;
}
.deposit-notice strong { color: var(--cream); font-weight: 500; }

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-submit:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,85,133,0.38);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact + Info Panel */
.contact-stack { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pink-border);
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-row:last-child { margin-bottom: 0; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--pink-pale);
  border: 1px solid var(--pink-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 16px; height: 16px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--cream);
  line-height: 1.5;
}

.hours-grid { width: 100%; }
.hours-grid tr { border-bottom: 1px solid var(--pink-border); }
.hours-grid tr:last-child { border-bottom: none; }
.hours-grid td {
  padding: 10px 0;
  font-size: 0.87rem;
  color: var(--cream-muted);
}
.hours-grid td:last-child {
  text-align: right;
  color: var(--cream);
  font-weight: 400;
}
.hours-closed { color: var(--cream-muted); opacity: 0.5; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pink-border);
}
.map-wrap iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
  filter: saturate(0.8) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--pink-border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.85;
  max-width: 240px;
}
.footer-col-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: block;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--pink); }
.footer-col p {
  font-size: 0.87rem;
  color: var(--white);
  line-height: 1.85;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 0.73rem;
  color: var(--cream-muted);
  opacity: 0.55;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 44px; height: 44px;
  border: 1px solid var(--pink-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-pale);
}
.footer-social svg {
  width: 19px; height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .book-layout   { grid-template-columns: 1fr; }
  .service-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid    { grid-template-columns: 1fr; gap: 48px; }
  .location-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .location-sep { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links-left { display: none; }
  .nav-links-right { display: none; }
  .nav-brand { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .booking-card  { padding: 32px 24px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-logo     { width: 160px; height: 160px; }
  .section-header { margin-bottom: 44px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-services-strip {
    flex-direction: column;
    gap: 6px;
  }
  .hero-services-strip .dot { display: none; }
  .nav-inner { padding: 0 20px; }
}

/* ============================================================
   ANIMATED TEXT SECTION
   ============================================================ */
.text-reveal-section {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--pink-border);
  border-bottom: 1px solid var(--pink-border);
  overflow: hidden;
}
.text-reveal-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.text-reveal-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
}
.word-anim {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin: 0 6px;
}
.word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s ease;
}
.word-anim.revealed .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   SERVICE FILTER TABS (Services Page)
   ============================================================ */
.services-filter-bar {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
.svc-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--bg-card);
  border-right: 1px solid var(--pink-border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.svc-tab:last-child { border-right: none; }
.svc-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.svc-tab.active,
.svc-tab:hover {
  background: var(--pink-pale);
}
.svc-tab.active::after { transform: scaleX(1); }
.svc-tab-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.svc-tab-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.2;
}
.svc-tab-count {
  font-size: 0.7rem;
  color: var(--cream-muted);
  margin-top: 4px;
}

/* Category header */
.svc-category-header {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--pink-border);
  margin-bottom: 56px;
  display: none;
}
.svc-category-header.visible { display: grid; }
.svc-category-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.05;
}
.svc-category-desc {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.9;
}
.svc-category-desc p { margin-bottom: 14px; }
.svc-category-desc p:last-child { margin-bottom: 0; }

/* Service cards grid */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: none;
}
.svc-cards-grid.visible { display: grid; }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(200,85,133,0.45);
}
.svc-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card-img-placeholder span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  opacity: 0.4;
}
.svc-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.svc-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.2;
}
.svc-card-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--pink);
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-card-duration {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 6px;
}
.svc-card-desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.75;
  flex: 1;
}
.svc-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.svc-card-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

/* ============================================================
   SERVICE DETAIL DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 26, 25, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.service-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 680px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--pink-border);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.service-drawer.open {
  transform: translateX(0);
}
.drawer-close {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--pink-border);
  z-index: 1;
}
.drawer-close-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}
.drawer-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pink-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.drawer-close-btn:hover {
  border-color: var(--pink);
  background: var(--pink-pale);
}
.drawer-close-btn svg {
  width: 16px; height: 16px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.drawer-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 28px 32px 0;
}
.drawer-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}
.drawer-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.drawer-img-placeholder {
  width: 100%; height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-img-placeholder span {
  font-size: 0.6rem;
  color: var(--cream-muted);
  opacity: 0.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.drawer-content {
  padding: 32px;
  flex: 1;
}
.drawer-service-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}
.drawer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pink-border);
}
.drawer-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--pink);
}
.drawer-duration {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.drawer-desc {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}
.drawer-section {
  margin-bottom: 24px;
}
.drawer-section-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  display: block;
}
.drawer-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.drawer-bullet::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 7px;
}
.drawer-bullet span {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.drawer-book-btn {
  display: block;
  width: 100%;
  margin-top: 32px;
  padding: 18px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.drawer-book-btn:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,85,133,0.38);
}

/* Horizontal marquee */
.marquee-track {
  overflow: hidden;
  border-top: 1px solid var(--pink-border);
  border-bottom: 1px solid var(--pink-border);
  padding: 18px 0;
  background: var(--bg-deep);
}
.marquee-inner {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 24px;
}
.marquee-item::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .services-filter-bar { flex-direction: column; }
  .svc-tab { border-right: none; border-bottom: 1px solid var(--pink-border); }
  .svc-tab:last-child { border-bottom: none; }
  .svc-category-header { grid-template-columns: 1fr; gap: 24px; }
  .svc-cards-grid { grid-template-columns: 1fr 1fr; }
  .service-drawer { max-width: 100%; }
  .drawer-imgs { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
  .text-reveal-headline { font-size: 2rem; }
}

/* ============================================================
   PWA INSTALL BANNER
   ============================================================ */
.pwa-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 46px;
  z-index: 1100;
  background: #C85585;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 10px;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(200,85,133,0.45);
}
.pwa-banner-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}
.pwa-banner-link img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.pwa-banner-text {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pwa-banner-btn {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #fff;
  color: #C85585;
  border-radius: 40px;
  padding: 5px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pwa-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.pwa-banner-close:hover { color: #fff; }
.nav-banner-offset { top: 46px !important; }
.hero-banner-offset { padding-top: calc(var(--nav-h) + 46px) !important; }
@media (max-width: 768px) {
  .pwa-banner { height: 50px; }
  .pwa-banner-text {
    font-size: 0.65rem;
    max-width: 160px;
  }
  .nav-banner-offset { top: 50px !important; }
  .hero-banner-offset { padding-top: calc(var(--nav-h) + 50px) !important; }
}
