/* ══════════════════════════════════════════════════════
   HIGH-GIENE BEAUTY CLINIC — GLOBAL DESIGN SYSTEM
   Dusty Mauve · Warm Cream · Gold Accents
   Cormorant Garamond + Jost
   ══════════════════════════════════════════════════════ */

@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;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --pink:      oklch(0.72 0.09 350);
  --pink-lt:   oklch(0.85 0.055 350);
  --pink-dk:   oklch(0.52 0.098 350);
  --pink-bg:   oklch(0.972 0.013 350);
  --pink-mid:  oklch(0.935 0.030 350);
  --gold:      oklch(0.76 0.088 76);
  --gold-lt:   oklch(0.91 0.040 76);
  --cream:     oklch(0.986 0.008 60);
  --ink:       oklch(0.19 0.016 345);
  --ink-mid:   oklch(0.42 0.028 350);
  --ink-lt:    oklch(0.65 0.020 350);
  --font-d:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Jost', 'Helvetica Neue', sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --r-pill:    999px;
  --r-lg:      20px;
  --r-md:      12px;
  --r-sm:      8px;
  --fade-duration: 0.78s;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-d);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
}
em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}
.section    { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ── NAVIGATION ──────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.25rem, 5vw, 3.5rem);
  transition: padding 0.45s var(--ease), background 0.45s, box-shadow 0.45s;
}
.site-nav.scrolled {
  background: oklch(0.986 0.008 60 / 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem clamp(1.25rem, 5vw, 3.5rem);
  box-shadow: 0 1px 0 oklch(0.72 0.09 350 / 0.07), 0 4px 30px oklch(0 0 0 / 0.05);
}
.nav-logo img {
  height: 44px;
  mix-blend-mode: multiply;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ── NAV DROPDOWN ───────────────────────────────── */
.nav-has-dd { position: relative; }
.nav-has-dd > a { display: inline-flex; align-items: center; gap: 0.3em; }
.nav-chevron {
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  vertical-align: middle;
  transition: transform 0.22s var(--ease);
  flex-shrink: 0;
}
.nav-has-dd:hover .nav-chevron { transform: rotate(180deg); }
.nav-has-dd > a::after {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 18px;
}
.nav-dd {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white;
  border-radius: var(--r-md);
  box-shadow: 0 12px 44px oklch(0 0 0/0.13), 0 0 0 1px oklch(0.72 0.09 350/0.09);
  padding: 0.4rem;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
  z-index: 501;
}
.nav-dd::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
}
.nav-has-dd:hover .nav-dd,
.nav-has-dd:focus-within .nav-dd {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink-mid);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-dd-item:hover { background: var(--pink-bg); color: var(--pink-dk); }
.nav-dd-badge { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; color: var(--pink); }
.nav-dd-sep { height: 1px; background: var(--pink-mid); margin: 0.3rem 0.6rem; }
.nav-dd-all {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  transition: background 0.18s;
}
.nav-dd-all:hover { background: var(--pink-bg); }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 600;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.32s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--ink);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mm-book {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .nav-right .btn:not(.nav-burger) { display: none; }
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.8em 1.75em;
  border-radius: var(--r-pill);
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.3s;
  white-space: nowrap;
}
.btn > *:not(.btn-overlay) { position: relative; z-index: 1; }
.btn-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }

/* Pink filled */
.btn-pink { background: var(--pink); color: white; }
.btn-pink .btn-overlay { background: linear-gradient(135deg, oklch(0.83 0.05 335 / 0.45), oklch(0.52 0.10 358 / 0.4)); }
.btn-pink:hover { box-shadow: 0 8px 32px oklch(0.72 0.09 350 / 0.38); }
.btn-pink:hover .btn-overlay { opacity: 1; }

/* Outline */
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid oklch(0.72 0.09 350 / 0.3); }
.btn-outline .btn-overlay { background: var(--pink); }
.btn-outline:hover { color: white; border-color: transparent; box-shadow: 0 8px 32px oklch(0.72 0.09 350 / 0.28); }
.btn-outline:hover .btn-overlay { opacity: 1; }

/* White (on dark) */
.btn-white { background: white; color: var(--pink-dk); }
.btn-white .btn-overlay { background: linear-gradient(135deg, oklch(0.98 0.01 60), oklch(0.93 0.03 350)); }
.btn-white:hover { box-shadow: 0 8px 32px oklch(0 0 0 / 0.18); }
.btn-white:hover .btn-overlay { opacity: 1; }

/* Ghost white (on dark/pink) */
.btn-ghost-white { background: transparent; color: white; border: 1.5px solid oklch(1 0 0 / 0.38); }
.btn-ghost-white .btn-overlay { background: white; }
.btn-ghost-white:hover { color: var(--pink-dk); border-color: transparent; }
.btn-ghost-white:hover .btn-overlay { opacity: 1; }

/* Gold outline */
.btn-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-gold .btn-overlay { background: var(--gold); }
.btn-gold:hover { color: white; box-shadow: 0 8px 28px oklch(0.76 0.088 76 / 0.3); }
.btn-gold:hover .btn-overlay { opacity: 1; }

.btn-sm { padding: 0.62em 1.3em; font-size: 0.68rem; }
.btn-lg { padding: 1em 2.2em; font-size: 0.76rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--fade-duration) var(--ease), transform var(--fade-duration) var(--ease);
}
[data-fade].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.42s; }
[data-delay="6"] { transition-delay: 0.52s; }

/* ── ARCH IMAGE FRAMES ───────────────────────────────── */
.arch-frame {
  border-radius: 100vw 100vw 0 0;
  overflow: hidden;
  position: relative;
}
.arch-card-frame {
  border-radius: 100vw 100vw var(--r-lg) var(--r-lg);
  overflow: hidden;
  position: relative;
}

/* ── IMAGE PLACEHOLDER ───────────────────────────────── */
.img-ph {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 12px, oklch(0.72 0.09 350 / 0.05) 12px, oklch(0.72 0.09 350 / 0.05) 24px),
    linear-gradient(160deg, var(--pink-mid) 0%, var(--pink-bg) 100%);
  color: var(--ink-lt);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
  font-family: var(--font-b);
  font-weight: 500;
  gap: 0.5rem;
}

/* ── DIVIDERS ────────────────────────────────────────── */
.line-gold {
  display: block;
  width: 44px; height: 1px;
  background: var(--gold);
}
.line-pink {
  display: block;
  width: 44px; height: 1px;
  background: var(--pink-lt);
}

/* ── MARQUEE BAR ─────────────────────────────────────── */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-bar {
  overflow: hidden;
  background: var(--pink-bg);
  border-top: 1px solid var(--pink-mid);
  border-bottom: 1px solid var(--pink-mid);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: fit-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-lt);
}
.marquee-dot {
  color: var(--pink);
  font-size: 0.55rem;
}

/* ── SERVICE CARD ────────────────────────────────────── */
.srv-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  position: relative;
}
.srv-card-img {
  aspect-ratio: 3/4;
  transition: transform 0.5s var(--ease), box-shadow 0.4s;
  will-change: transform;
}
.srv-card:hover .srv-card-img {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px oklch(0.72 0.09 350 / 0.16);
}
.srv-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.srv-card:hover h3 { color: var(--pink); }
.srv-card p { font-size: 0.85rem; line-height: 1.65; }
.srv-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.srv-card:hover .srv-link { gap: 0.7em; }

/* ── LOCATION CARD ───────────────────────────────────── */
.loc-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid oklch(0.72 0.09 350 / 0.1);
  transition: box-shadow 0.35s, transform 0.3s var(--ease);
}
.loc-card:hover {
  box-shadow: 0 14px 50px oklch(0.72 0.09 350 / 0.12);
  transform: translateY(-4px);
}
.loc-badge {
  display: inline-block;
  background: var(--pink-bg);
  color: var(--pink-dk);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28em 0.8em;
  border-radius: var(--r-pill);
  margin-bottom: 0.75rem;
}
.loc-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.loc-meta {
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.8rem 0 1.4rem;
}
.loc-meta span { display: flex; gap: 0.55em; align-items: flex-start; color: var(--ink-lt); }
.loc-meta strong { color: var(--ink-mid); font-weight: 400; }
.loc-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--pink-mid) 0%, var(--cream) 70%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60vw; height: 160%;
  background: radial-gradient(ellipse at center, oklch(0.72 0.09 350 / 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 50ch;
  margin-top: 1rem;
  color: var(--ink-mid);
}

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1rem;
  max-width: 52ch;
  color: var(--ink-lt);
}

/* ── STAT ROW ────────────────────────────────────────── */
.stat-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid oklch(0.72 0.09 350 / 0.12);
}
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--pink);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-lt);
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: oklch(0.21 0.055 350);
  color: oklch(0.72 0.025 350);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

/* Top hero strip */
.ft-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.ft-top-left { display: flex; flex-direction: column; gap: 1.25rem; }
.ft-wordmark {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ft-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 34ch; }
.ft-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Ghost white button for dark footer */
.btn-ft-ghost {
  background: transparent;
  color: oklch(0.85 0.02 350);
  border: 1.5px solid oklch(1 0 0 / 0.25);
}
.btn-ft-ghost .btn-overlay { background: oklch(1 0 0 / 0.1); }
.btn-ft-ghost:hover { color: white; border-color: oklch(1 0 0 / 0.45); }
.btn-ft-ghost:hover .btn-overlay { opacity: 1; }

.ft-socials { display: flex; gap: 0.6rem; }
.ft-soc-btn {
  width: 36px; height: 36px;
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: oklch(1 0 0 / 0.45);
  transition: all 0.25s;
}
.ft-soc-btn:hover { background: var(--pink); border-color: var(--pink); color: white; }
.ft-soc-btn svg { width: 14px; height: 14px; }

/* Photo card */
.ft-photo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 24px 60px oklch(0 0 0 / 0.35);
  cursor: default;
}
.ft-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.65s var(--ease);
  display: block;
}
.ft-photo-card:hover img { transform: scale(1.04); }
.ft-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, oklch(0.21 0.055 350 / 0.9) 0%, transparent 100%);
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ft-caption-label {
  font-family: var(--font-d);
  font-size: 1rem;
  font-style: italic;
  color: white;
  line-height: 1.3;
}
.ft-caption-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-lt);
  text-align: right;
}

/* Links grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.ft-col h5 {
  font-family: var(--font-b);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.32);
  margin-bottom: 1.1rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.ft-col ul a { font-size: 0.85rem; color: oklch(0.72 0.025 350); transition: color 0.2s; }
.ft-col ul a:hover { color: var(--pink-lt); }
.ft-hours-val {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-style: italic;
  color: white;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}
.ft-hours-note { font-size: 0.78rem; color: oklch(0.6 0.02 350); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: oklch(1 0 0 / 0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: oklch(0.65 0.03 350); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--pink-lt); }

@media (max-width: 900px) {
  .ft-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── TESTIMONIALS SCROLL (shared across all pages) ───────── */
@keyframes testiScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.testi-marquee { overflow:hidden; mask-image:linear-gradient(to right,transparent 0%,black 7%,black 93%,transparent 100%); -webkit-mask-image:linear-gradient(to right,transparent 0%,black 7%,black 93%,transparent 100%); cursor:default; }
.testi-track { display:flex; gap:1rem; width:fit-content; animation:testiScroll 44s linear infinite; padding:0.5rem 0 1.5rem; }
.testi-track.paused { animation-play-state:paused; }
.testi-card-s { width:280px; flex-shrink:0; background:white; border-radius:var(--r-lg); padding:1.5rem; border:1px solid var(--pink-mid); display:flex; flex-direction:column; gap:0.75rem; transition:box-shadow 0.3s,transform 0.3s var(--ease); }
.testi-track.paused .testi-card-s:hover { box-shadow:0 12px 40px oklch(0.72 0.09 350/0.12); transform:translateY(-3px); }
.testi-stars-s { color:var(--gold); font-size:0.78rem; letter-spacing:0.1em; }
.testi-text-s { font-family:var(--font-d); font-size:1rem; font-style:italic; line-height:1.5; color:var(--ink); flex:1; }
.testi-author-s { font-size:0.68rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-lt); padding-top:0.5rem; border-top:1px solid var(--pink-mid); }

/* ── SERVICE MINI CARD BUTTONS ───────────────────────────── */
.srv-mini-btns { display:flex; gap:0.45rem; flex-wrap:wrap; margin-top:0.75rem; padding-top:0.75rem; border-top:1px solid var(--pink-mid); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: oklch(0.21 0.055 350);
  color: oklch(0.68 0.025 350);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1rem, 2vw, 1.5rem);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
/* Brand col */
.ft-brand { display:flex; flex-direction:column; gap:0.9rem; }
.ft-wordmark { font-family:var(--font-d); font-size:clamp(1.6rem, 3vw, 2.2rem); font-style:italic; color:white; letter-spacing:-0.02em; line-height:1; }
.ft-tagline { font-size:0.82rem; line-height:1.65; max-width:30ch; }
.ft-ctas { display:flex; gap:0.45rem; flex-wrap:wrap; }
.btn-ft-ghost { background:transparent; color:oklch(0.82 0.02 350); border:1.5px solid oklch(1 0 0/0.2); }
.btn-ft-ghost .btn-overlay { background:oklch(1 0 0/0.1); }
.btn-ft-ghost:hover { color:white; border-color:oklch(1 0 0/0.4); }
.btn-ft-ghost:hover .btn-overlay { opacity:1; }
.ft-socials { display:flex; gap:0.5rem; }
.ft-soc-btn { width:34px; height:34px; border:1px solid oklch(1 0 0/0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; color:oklch(1 0 0/0.45); transition:all 0.25s; flex-shrink:0; }
.ft-soc-btn:hover { background:var(--pink); border-color:var(--pink); color:white; }
.ft-soc-btn svg { width:13px; height:13px; }
/* Photo + hours col */
.ft-middle { display:flex; flex-direction:column; gap:0.85rem; }
.ft-photo-card { position:relative; border-radius:var(--r-md); overflow:hidden; aspect-ratio:16/9; max-height:120px; box-shadow:0 6px 24px oklch(0 0 0/0.3); }
.ft-photo-card img { width:100%; height:100%; object-fit:cover; object-position:center 40%; transition:transform 0.6s var(--ease); display:block; }
.ft-photo-card:hover img { transform:scale(1.05); }
.ft-photo-caption { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top,oklch(0.21 0.055 350/0.88),transparent); padding:0.6rem 0.75rem; }
.ft-caption-label { font-family:var(--font-d); font-size:0.82rem; font-style:italic; color:white; }
.ft-caption-tag { font-size:0.56rem; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--pink-lt); display:block; }
.ft-hours { display:flex; flex-direction:column; gap:0.15rem; }
.ft-hours-label { font-size:0.58rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; color:oklch(1 0 0/0.28); }
.ft-hours-val { font-family:var(--font-d); font-size:1rem; font-style:italic; color:white; line-height:1.3; }
.ft-hours-note { font-size:0.72rem; color:oklch(0.55 0.02 350); }
/* Navigation col */
.ft-nav { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.ft-col h5 { font-family:var(--font-b); font-size:0.58rem; font-weight:600; letter-spacing:0.24em; text-transform:uppercase; color:oklch(1 0 0/0.28); margin-bottom:0.8rem; }
.ft-col ul { display:flex; flex-direction:column; gap:0.42rem; }
.ft-col ul a { font-size:0.8rem; color:oklch(0.65 0.025 350); transition:color 0.2s; }
.ft-col ul a:hover { color:var(--pink-lt); }
/* Bottom bar */
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:0.68rem; color:oklch(1 0 0/0.2); flex-wrap:wrap; gap:0.4rem; }
.footer-bottom a { color:oklch(0.58 0.03 350); transition:color 0.2s; }
.footer-bottom a:hover { color:var(--pink-lt); }

@media(max-width:900px) { .footer-main { grid-template-columns:1fr 1fr; } .ft-middle { display:none; } }
@media(max-width:560px) { .footer-main { grid-template-columns:1fr; } .footer-bottom { flex-direction:column; text-align:center; } }
.cta-photo-layer {
  position: absolute;
  inset: 0;
  background: url('img/headerbg.png') center top / cover no-repeat;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

/* ── HOVER IMAGE ZOOM (for gallery etc) ──────────────── */
.img-zoom-wrap { overflow: hidden; }
.img-zoom-wrap img,
.img-zoom-wrap .img-ph {
  transition: transform 0.55s var(--ease);
}
.img-zoom-wrap:hover img,
.img-zoom-wrap:hover .img-ph {
  transform: scale(1.04);
}

/* ── PROCESS STEPS ───────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.step-num {
  font-family: var(--font-d);
  font-size: 4rem;
  font-weight: 300;
  color: var(--pink-mid);
  line-height: 1;
}
.step h4 { font-size: 1.1rem; }
.step p { font-size: 0.85rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIAL CARD ────────────────────────────────── */
.testi-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--pink-mid);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; }
.testi-text {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.testi-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lt);
}

/* ── RESPONSIVE GRID OVERRIDES ───────────────────────── */
@media (max-width: 768px) {
  .grid-2-md { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .grid-2-sm, .grid-3-sm { grid-template-columns: 1fr !important; }
}
