@import url("https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");

:root {
  /* Canvas — dark luxe */
  --bg:         oklch(9% 0.013 52);
  --bg-2:       oklch(12% 0.014 52);
  --bg-3:       oklch(15% 0.014 52);
  --bg-soft:    oklch(13% 0.014 52);
  --bg-warm:    oklch(16% 0.018 50);

  /* Text */
  --text:       oklch(92% 0.008 70);
  --text-2:     oklch(62% 0.010 68);
  --text-3:     oklch(40% 0.009 68);

  /* Accents */
  --gold:       oklch(73% 0.13 66);
  --gold-hi:    oklch(80% 0.10 68);
  --gold-deep:  oklch(68% 0.13 64);
  --blush:      oklch(11% 0.015 52);
  --blush-2:    oklch(9.5% 0.013 52);

  /* Structure */
  --border:     oklch(100% 0 0 / 0.12);
  --border-dim: oklch(100% 0 0 / 0.07);

  /* Glass (nav-on-scroll, cards) */
  --glass:        oklch(100% 0 0 / 0.068);
  --glass-hi:     oklch(100% 0 0 / 0.11);
  --glass-border: oklch(100% 0 0 / 0.13);
  --glass-blur:   22px;

  /* Inverse */
  --bg-dark:    oklch(5% 0.010 52);
  --bg-dark-2:  oklch(9% 0.013 52);
  --text-inv:   oklch(92% 0.008 70);
  --text-inv-2: oklch(62% 0.010 68);
  --text-inv-3: oklch(38% 0.009 68);

  /* Typography */
  --f-display: 'Vollkorn', Georgia, serif;
  --f-body:    'Source Sans 3', system-ui, sans-serif;
  --f-script:  'Vollkorn', Georgia, serif;

  /* Mobile-first scale — readable + editorial */
  --t-xs:    13px;
  --t-sm:    15px;
  --t-base:  16px;
  --t-lg:    18px;
  --t-xl:    clamp(1.4rem, 4.5vw, 1.8rem);
  --t-2xl:   clamp(1.8rem, 6vw, 2.4rem);
  --t-3xl:   clamp(2.4rem, 8vw, 3.6rem);
  --t-hero:  clamp(3rem, 12vw, 6rem);

  /* Spacing — base scale */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;  --s-10: 128px;

  /* Section vertical padding — generous mobile-first */
  --sec-pad: clamp(48px, 10vw, 128px);

  /* Layout */
  --max-w: 1280px;
  --nav-h: 56px;

  /* Motion */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --dur-reveal: 600ms;
  --dur-hover:  200ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s-8);
  z-index: 200;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.3s ease;
}
/* Light text when nav sits over the dark hero photo */
.nav:not(.is-scrolled) .nav__logo,
.nav:not(.is-scrolled) .nav__link {
  color: oklch(95% 0.014 78 / 0.82);
}
.nav:not(.is-scrolled) .nav__link:hover { color: oklch(97% 0.007 75); }
.nav:not(.is-scrolled) .nav__bar { background: oklch(95% 0.014 78 / 0.82); }

.nav.is-scrolled {
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.05) 0%, transparent 100%),
    oklch(12% 0.015 52 / 0.95);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    0 1px 0 oklch(28% 0.012 52),
    inset 0 1px 0 oklch(100% 0 0 / 0.10);
}
.nav.is-scrolled .nav__logo { color: var(--text-inv); }
.nav.is-scrolled .nav__link { color: oklch(55% 0.009 68); }
.nav.is-scrolled .nav__link:hover { color: var(--gold); }
.nav.is-scrolled .nav__bar { background: var(--text-inv); }
.nav__logo {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: var(--s-7);
  list-style: none;
}
.nav__link {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__cta {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 22px;
  transition: background 0.2s, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__cta:hover { background: var(--gold-hi); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__bar {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav.is-open .nav__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__bar:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--bg-2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-7);
  z-index: 199;
  display: none;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: oklch(16% 0.012 52);
  background: var(--gold);
  border: none;
  padding: 13px 28px;
  cursor: pointer;
  transition: background var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.btn-pri:hover { background: var(--gold-hi); }
.btn-pri:active { transform: scale(0.98); }

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  background: none;
  border: 1px solid var(--border);
  padding: 13px 28px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-sec:hover { color: var(--text); border-color: var(--text-2); }
/* Inside hero: override to light on dark photo overlay */
.hero .btn-sec {
  color: oklch(88% 0.010 75);
  border-color: oklch(95% 0.014 78 / 0.32);
}
.hero .btn-sec:hover {
  color: oklch(97% 0.007 75);
  border-color: oklch(95% 0.014 78 / 0.65);
}

/* ── Section common ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
}
.sec-title {
  font-family: var(--f-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-7);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
  z-index: 10;
}

/* Static hero photo */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  animation: hero-ken-burns 28s ease-in-out infinite alternate;
}
@keyframes hero-ken-burns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}

/* Legacy slideshow layers (kept for fallback during transition) */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(108deg,
      oklch(7% 0.012 52 / 0.92) 0%,
      oklch(7% 0.012 52 / 0.72) 32%,
      oklch(7% 0.012 52 / 0.32) 58%,
      transparent 78%),
    linear-gradient(to top,
      oklch(7% 0.012 52 / 0.78) 0%,
      oklch(7% 0.012 52 / 0.25) 30%,
      transparent 52%),
    linear-gradient(to bottom,
      oklch(7% 0.012 52 / 0.38) 0%,
      transparent 18%);
  pointer-events: none;
}
/* Soft golden glow that pulses gently behind hero title */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 60% 50% at 50% 75%,
    oklch(73% 0.13 66 / 0.10) 0%,
    transparent 65%);
  pointer-events: none;
  animation: hero-glow-pulse 6s var(--ease-soft) infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

/* Top strip */
.hero__strip {
  position: absolute;
  top: calc(var(--nav-h) + var(--s-5));
  left: var(--s-8);
  right: var(--s-8);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: fade-up 0.7s var(--ease) 0.2s forwards;
}
.hero__slide-label {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(95% 0.014 78 / 0.80);
}
@keyframes label-exit {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
@keyframes label-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__slide-label.is-exit  { animation: label-exit  0.22s var(--ease) forwards; }
.hero__slide-label.is-enter { animation: label-enter 0.38s var(--ease) forwards; }
.hero__counter {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  color: oklch(95% 0.014 78 / 0.72);
  font-variant-numeric: tabular-nums;
}

/* Content overlay */
.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0 var(--s-8) calc(var(--s-8) + 52px);
  max-width: min(960px, calc(100% - var(--s-8)));
}
.hero__eyebrow {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 0.8s var(--ease) 0.15s forwards;
}
.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: oklch(96% 0.014 78);
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  animation: hero-title-rise 1.2s var(--ease-soft) 0.3s forwards;
  margin-bottom: var(--s-5);
}
@keyframes hero-title-rise {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero__script {
  font-family: var(--f-script);
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: var(--gold);
  margin-bottom: var(--s-6);
  letter-spacing: 0.005em;
}
.hero__script-line {
  display: inline-block;
  position: relative;
}
.hero__script-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  animation: script-word-in 1s var(--ease-soft) forwards;
  margin-right: 0.18em;
}
.hero__script-word:nth-child(1) { animation-delay: 1.3s; }
.hero__script-word:nth-child(2) { animation-delay: 1.55s; }
.hero__script-word:nth-child(3) { animation-delay: 1.8s; }
@keyframes script-word-in {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
/* Underline draws beneath script signature like a pen stroke */
.hero__script-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: oklch(73% 0.13 66 / 0.55);
  animation: script-underline 1.4s var(--ease-soft) 2.2s forwards;
}
@keyframes script-underline {
  to { right: 8%; }
}

/* Screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero__lede {
  font-size: var(--t-base);
  color: oklch(88% 0.010 75);
  max-width: 34ch;
  line-height: 1.6;
  margin-bottom: var(--s-6);
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up 0.9s var(--ease-soft) 1s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-soft) 1.2s forwards;
}
.hero__phone {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: oklch(95% 0.014 78 / 0.85);
  border-bottom: 1px solid oklch(95% 0.014 78 / 0.45);
  padding-bottom: 2px;
  transition: color var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
.hero__phone:hover { color: oklch(98% 0.014 78); border-color: oklch(98% 0.014 78); }
.hero__trust {
  margin-top: var(--s-5);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: oklch(95% 0.014 78 / 0.70);
  line-height: 1.6;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-soft) 1.4s forwards;
}

/* Nav controls */
.hero__nav {
  position: absolute;
  bottom: var(--s-6);
  right: var(--s-8);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--s-5);
  opacity: 0;
  animation: fade-up 0.6s var(--ease) 1.2s forwards;
}
.hero__arrow {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid oklch(95% 0.014 78 / 0.2);
  background: none;
  color: oklch(95% 0.014 78 / 0.55);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.hero__arrow:hover {
  color: var(--text);
  border-color: oklch(95% 0.014 78 / 0.5);
}
.hero__dots {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.hero__dot {
  height: 2px;
  border-radius: 1px;
  width: 10px;
  background: oklch(95% 0.014 78 / 0.28);
  cursor: pointer;
  transition: width 0.4s var(--ease), background 0.3s;
}
.hero__dot.is-active {
  width: 28px;
  background: var(--gold);
}

/* Progress bar */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: oklch(95% 0.014 78 / 0.08);
  z-index: 20;
}
.hero__progress-fill {
  height: 100%;
  background: oklch(73% 0.13 66 / 0.65);
  width: 0%;
}

/* ── Ticker ───────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid oklch(73% 0.13 66 / 0.20);
  border-bottom: 1px solid oklch(73% 0.13 66 / 0.20);
  padding: 16px 0;
  background: var(--bg);
}
.ticker__track {
  display: flex;
  animation: ticker 26s linear infinite;
  white-space: nowrap;
}
.ticker__item {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0 var(--s-7);
  flex-shrink: 0;
}
.ticker__item--accent { color: var(--gold); }

/* ── Services ─────────────────────────────────────────────── */
.services {
  display: block;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sec-pad) var(--s-4);
  overflow: hidden;
}
.services__hd {
  margin-bottom: var(--s-6);
  text-align: center;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.services__hd .sec-title { margin-bottom: var(--s-4); }
.services__hd p { color: var(--text-2); font-size: var(--t-sm); }

@media (min-width: 768px) {
  .services { padding: var(--sec-pad) var(--s-7); }
}
.services::before { display: none; }
.services > * { position: relative; z-index: 1; }
.services__hd {
  position: sticky;
  top: calc(var(--nav-h) + var(--s-6));
}
/* Thin gold rule below the services heading */
.services__hd .sec-title {
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-5);
  position: relative;
}
.services__hd .sec-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-top: var(--s-5);
}
.services__hd p {
  font-size: var(--t-sm);
  color: var(--text-2);
  max-width: 34ch;
  line-height: 1.75;
  margin-bottom: var(--s-7);
}
.services__list { display: flex; flex-direction: column; gap: 5px; }

.acc {
  position: relative;
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.055) 0%, transparent 52%),
    var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.13);
  padding: 0 var(--s-5);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.acc:last-child { border-bottom: 1px solid var(--glass-border); }
.acc.is-open {
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.07) 0%, transparent 52%),
    var(--glass-hi);
  border-color: oklch(73% 0.13 66 / 0.28);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.18), 0 0 0 1px oklch(73% 0.13 66 / 0.10);
}

.acc__hd {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  cursor: pointer;
  user-select: none;
}
.acc__hd:hover .acc__name { color: var(--gold); }
.acc__num {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--text-3);
  width: 2ch;
  flex-shrink: 0;
}
.acc__name {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--text);
  transition: color 0.2s;
  flex: 1;
}
.acc__icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-3);
  transition: transform 0.35s var(--ease), border-color 0.2s, color 0.2s;
  font-style: normal;
}
.acc.is-open .acc__icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }

.acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.acc.is-open .acc__body { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__content {
  padding-bottom: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.acc__img {
  overflow: hidden;
  height: 260px;
  position: relative;
}
.acc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.6s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.82) contrast(1.06) saturate(1.15);
}
.acc.is-open .acc__img img { transform: scale(1); filter: brightness(0.95) contrast(1.03) saturate(1.2); }

.acc__desc {
  font-size: var(--t-sm);
  color: var(--text-2);
  max-width: 40ch;
  line-height: 1.75;
}
.acc__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
}
.acc__treats { display: flex; flex-direction: column; gap: 6px; }
.acc__treat {
  font-size: var(--t-xs);
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  letter-spacing: 0.03em;
}
.acc__treat::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.acc__price { text-align: right; flex-shrink: 0; }
.acc__from {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 2px;
}
.acc__val {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--gold);
  line-height: 1;
}

/* ── About ────────────────────────────────────────────────── */
/* Decorative corner-bracket frame around the about image */
.about__frame {
  position: relative;
}
.about__frame::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 64px; height: 64px;
  border-top: 1px solid oklch(73% 0.13 66 / 0.55);
  border-left: 1px solid oklch(73% 0.13 66 / 0.55);
  pointer-events: none;
  z-index: 2;
}
.about__frame::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 64px; height: 64px;
  border-bottom: 1px solid oklch(73% 0.13 66 / 0.35);
  border-right: 1px solid oklch(73% 0.13 66 / 0.35);
  pointer-events: none;
  z-index: 2;
}

.about {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sec-pad) var(--s-4);
}
@media (min-width: 768px) {
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-9);
    align-items: center;
    padding: var(--sec-pad) var(--s-7);
  }
}
.about__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.06);
}
.about__tag {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(90% 0.010 75);
  text-shadow: 0 1px 3px oklch(0% 0 0 / 0.5);
}
.about__body { padding: var(--s-7) 0; }
.about__body .sec-title { margin-bottom: var(--s-4); }
.about__quote {
  font-family: var(--f-script);
  font-style: italic;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  color: var(--text);
  line-height: 1.45;
  margin: var(--s-6) 0;
}
.about__copy {
  font-size: var(--t-sm);
  color: var(--text-2);
  max-width: 44ch;
  line-height: 1.8;
  margin-bottom: var(--s-7);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testi {
  position: relative;
  background: var(--bg-dark);
  padding: var(--sec-pad) var(--s-4);
  text-align: center;
}
@media (min-width: 768px) {
  .testi { padding: var(--sec-pad) var(--s-7); }
}
.testi__inner { max-width: 680px; margin: 0 auto; }
.testi__slide { display: none; }
.testi__slide.is-active {
  display: block;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  padding: var(--s-7) var(--s-9);
}

/* Ruled-line quote design */
.testi__text {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-inv);
  margin-bottom: var(--s-5);
  padding: var(--s-7) 0;
}
.testi__text::before,
.testi__text::after {
  content: '';
  display: block;
  height: 1px;
  width: 44px;
  background: var(--gold);
  opacity: 0.45;
  margin: 0 auto;
}
.testi__text::before { margin-bottom: var(--s-6); }
.testi__text::after  { margin-top: var(--s-6); }

.testi__author {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.testi__dots {
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-7);
}
.testi__dot {
  width: 24px; height: 2px;
  border-radius: 1px;
  background: oklch(100% 0 0 / 0.15);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.testi__dot.is-active { background: var(--gold); width: 36px; }

/* ── Gallery preview ──────────────────────────────────────── */
.gp {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-10) var(--s-8);
}
.gp__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s-7);
}
.gp__head .sec-title { margin-bottom: 0; }
.gp__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-2);
}
.gp__cell { overflow: hidden; }
.gp__cell:first-child { grid-row: 1 / 3; }
.gp__cell img {
  width: 100%; height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) contrast(1.02) saturate(1.1);
  transition: transform 0.65s var(--ease), filter 0.3s;
}
.gp__cell:hover img { transform: scale(1.05); filter: brightness(0.9) contrast(1.05); }

/* ── Booking CTA ──────────────────────────────────────────── */
.booking {
  background: var(--bg-dark);
  padding: var(--sec-pad) var(--s-4);
  text-align: center;
}
@media (min-width: 768px) {
  .booking { padding: var(--sec-pad) var(--s-7); }
}
.booking__sub {
  font-size: var(--t-sm);
  color: var(--text-inv-2);
  margin-top: var(--s-2);
}
.booking__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  margin: var(--s-5) auto var(--s-7);
}
.booking__num:hover { color: var(--gold); }
.booking__acts {
  display: flex;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--s-9)) var(--s-8) var(--s-9);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-dim);
}
.page-hero__title {
  font-family: var(--f-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  font-size: var(--t-base);
  color: var(--text-2);
  max-width: 48ch;
  line-height: 1.7;
  margin-top: var(--s-5);
}

/* ── Services full page ───────────────────────────────────── */
.svc-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-9) var(--s-8);
  border-bottom: 1px solid var(--border-dim);
}
.svc-section:last-of-type { border-bottom: none; }
.svc-section__name {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-7);
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.svc-section__num {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-weight: 400;
}
.svc-table { width: 100%; border-collapse: collapse; }
.svc-table tr {
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.15s;
}
.svc-table tr:hover { background: var(--bg-2); }
.svc-table td {
  padding: var(--s-4) var(--s-3);
  font-size: var(--t-sm);
  color: var(--text-2);
  vertical-align: middle;
}
.svc-table td:first-child {
  color: var(--text);
  padding-left: 0;
  font-weight: 400;
}
.svc-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-family: var(--f-display);
  font-size: var(--t-base);
  white-space: nowrap;
  padding-right: 0;
}

/* ── Gallery full page ────────────────────────────────────── */
.gallery-full {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-9) var(--s-8);
  columns: 3;
  column-gap: var(--s-2);
}
.gallery-full__item {
  break-inside: avoid;
  margin-bottom: var(--s-2);
  overflow: hidden;
}
.gallery-full__item img {
  width: 100%;
  display: block;
  filter: brightness(0.82) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.3s;
}
.gallery-full__item:hover img { transform: scale(1.03); filter: brightness(0.92) contrast(1.05); }

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-9) var(--s-8);
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--border-dim);
}
.contact-info__item:first-child { border-top: 1px solid var(--border-dim); }
.contact-info__label {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-info__val {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-info__val:hover { color: var(--gold); }
.contact-map {
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  gap: var(--s-4);
}
.contact-map__placeholder {
  font-size: var(--t-sm);
  color: var(--text-3);
  text-align: center;
}
.contact-map__addr {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  color: var(--text-2);
  text-align: center;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: var(--s-9) var(--s-8) var(--s-7);
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-9);
}
.footer__logo {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  color: var(--text-inv);
  display: block;
  margin-bottom: var(--s-4);
  text-decoration: none;
}
.footer__desc {
  font-size: var(--t-sm);
  color: var(--text-inv-3);
  max-width: 28ch;
  line-height: 1.7;
}
.footer__col h4 {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-inv-3);
  margin-bottom: var(--s-5);
  font-family: var(--f-body);
  font-weight: 400;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
.footer__col a {
  font-size: var(--t-sm);
  color: var(--text-inv-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-6);
  border-top: 1px solid oklch(22% 0.010 52);
}
.footer__copy, .footer__legal a {
  font-size: var(--t-xs);
  color: var(--text-inv-3);
}
.footer__legal { display: flex; gap: var(--s-6); }
.footer__legal a { text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: var(--gold); }

/* ── Stats strip ──────────────────────────────────────────── */
.stats {
  background: var(--bg-dark);
  padding: var(--s-10) var(--s-8);
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1px auto;
  gap: 0 var(--s-9);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}
.stats__anchor {
  /* big year + description */
}
.stats__big-num {
  font-family: var(--f-display);
  font-size: clamp(5.5rem, 16vw, 20rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--gold);
  display: block;
}
.stats__desc {
  font-size: var(--t-sm);
  color: var(--text-2);
  max-width: 22ch;
  line-height: 1.75;
  display: block;
  margin-top: var(--s-5);
}
.stats__rule {
  width: 1px;
  height: 140px;
  background: var(--border-dim);
  flex-shrink: 0;
}
.stats__pair {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.stats__fact-num {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--gold);
  display: block;
}
.stats__fact-label {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-inv-3);
  display: block;
  margin-top: var(--s-2);
}

/* ── Reviews ticker ───────────────────────────────────────── */
.reviews-ticker {
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-dark);
}
.reviews-ticker__track {
  display: flex;
  animation: ticker-rev 38s linear infinite;
  white-space: nowrap;
}
.reviews-ticker__item {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-style: italic;
  color: var(--text-inv-3);
  padding: 0 var(--s-8);
  flex-shrink: 0;
}
.reviews-ticker__item .stars { color: var(--gold); letter-spacing: 0.05em; font-style: normal; font-size: var(--t-xs); }
@keyframes ticker-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Gallery caption overlay ──────────────────────────────── */
.gp__cell { position: relative; overflow: hidden; }
.gp__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s-7) var(--s-5) var(--s-4);
  background: linear-gradient(to top, oklch(28% 0.025 50 / 0.78) 0%, transparent 100%);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(93% 0.010 75);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.gp__cell:hover .gp__cap { transform: translateY(0); }

/* Inset frame on hover */
.gp__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid oklch(97% 0.007 75 / 0);
  transition: inset 0.4s var(--ease), border-color 0.4s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.gp__cell:hover::after {
  inset: 12px;
  border-color: oklch(97% 0.007 75 / 0.38);
}

/* ── Booking decoration ───────────────────────────────────── */
.booking { position: relative; overflow: hidden; }
.booking__ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-script);
  font-size: clamp(9rem, 22vw, 24rem);
  color: oklch(73% 0.13 66 / 0.09);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}
.booking > * { position: relative; z-index: 1; }

/* ── Testimonial quote mark ───────────────────────────────── */
.testi__inner { position: relative; }
.testi__inner::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: clamp(9rem, 16vw, 18rem);
  line-height: 0.65;
  color: oklch(73% 0.13 66 / 0.14);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.testi__inner > * { position: relative; z-index: 1; }

/* ── Booking form page ────────────────────────────────────── */
.bf {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--s-9) var(--s-8) var(--s-10);
}

.bf__progress {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-9);
}
.bf__step-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.bf__step-dot.is-active { background: var(--gold); transform: scale(1.5); }
.bf__step-dot.is-done   { background: var(--gold); opacity: 0.35; }
.bf__progress-line { flex: 1; height: 1px; background: var(--border-dim); }

.bf__panel { display: none; }
.bf__panel.is-active {
  display: block;
  animation: bf-enter 0.38s var(--ease) both;
}
@keyframes bf-enter {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: none; }
}

.bf__step-label {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: var(--s-4);
}
.bf__q {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s-7);
}

/* Service choice cards */
.bf__choices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.bf__choice {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-5) var(--s-5) var(--s-4);
  border: 1px solid var(--border-dim);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.bf__choice:hover { border-color: var(--border); }
.bf__choice.is-selected {
  border-color: var(--gold);
  background: oklch(73% 0.13 66 / 0.06);
}
.bf__choice-num {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--text-3);
  transition: color 0.2s;
}
.bf__choice.is-selected .bf__choice-num { color: var(--gold); }
.bf__choice-name {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  color: var(--text);
  line-height: 1.1;
}
.bf__choice-sub {
  font-size: var(--t-xs);
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: var(--s-1);
}

/* Specialist cards */
.bf__spec-choices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.bf__spec {
  border: 1px solid var(--border-dim);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.bf__spec:hover { border-color: var(--border); }
.bf__spec.is-selected { border-color: var(--gold); }
.bf__spec-img { height: 130px; overflow: hidden; }
.bf__spec-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.06) saturate(0.8);
  transition: filter 0.3s;
}
.bf__spec.is-selected .bf__spec-img img { filter: brightness(0.85) contrast(1.06) saturate(0.9); }
.bf__spec-img-empty {
  height: 130px;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  font-family: var(--f-script);
  font-size: 2.4rem;
  color: var(--text-3);
}
.bf__spec-info { padding: var(--s-3) var(--s-4); }
.bf__spec-role {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s-1);
}
.bf__spec-name {
  font-family: var(--f-display);
  font-size: var(--t-base);
  color: var(--text);
}

/* Date / time fields */
.bf__fields {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.bf__field { display: flex; flex-direction: column; gap: var(--s-2); }
.bf__field label {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.bf__field input,
.bf__field select {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  color: var(--text);
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 300;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  color-scheme: dark;
}
.bf__field input:focus,
.bf__field select:focus { outline: none; border-color: var(--gold); }
.bf__field input::placeholder { color: var(--text-3); }
.bf__field select option { background: var(--bg-2); }

/* Summary block */
.bf__summary {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-7);
}
.bf__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border-dim);
}
.bf__summary-row:last-child { border-bottom: none; }
.bf__summary-key {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.bf__summary-val {
  font-family: var(--f-display);
  font-size: var(--t-base);
  color: var(--text);
  text-align: right;
}

/* Step navigation */
.bf__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.bf__back {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.bf__back:hover { color: var(--text-2); }
.bf__back[hidden] { visibility: hidden; pointer-events: none; }

/* Booking section — redesigned for primary online booking */
.booking__heading {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-inv);
  margin: var(--s-4) 0 var(--s-5);
}
.booking__tel {
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
  color: var(--text-inv-3);
  text-decoration: none;
  transition: color 0.2s;
  align-self: center;
}
.booking__tel:hover { color: var(--text-inv-2); }

/* ── Team section ─────────────────────────────────────────── */
.team {
  padding: var(--s-10) 0;
  background: var(--blush);
  border-bottom: none;
  overflow: hidden;
}
.team__head,
.team__grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--s-8);
  padding-right: var(--s-8);
  position: relative;
  z-index: 1;
}
.team__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s-9);
}
.team__head .sec-title { margin-bottom: 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.team__member {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  padding: var(--s-5);
  transition: background 0.3s, border-color 0.3s;
}
.team__member:hover {
  background: var(--glass-hi);
  border-color: oklch(73% 0.13 66 / 0.22);
}
.team__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: var(--s-5);
  box-shadow: 0 8px 32px oklch(73% 0.13 66 / 0.12);
  transition: box-shadow 0.4s var(--ease);
}
.team__member:hover .team__photo {
  box-shadow: 0 12px 48px oklch(73% 0.13 66 / 0.22);
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.06) saturate(0.85);
  transition: transform 0.7s var(--ease), filter 0.3s;
}
.team__member:hover .team__photo img {
  transform: scale(1.04);
  filter: brightness(0.88) contrast(1.05) saturate(0.9);
}
.team__role {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.team__name {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  color: var(--text);
  margin-bottom: var(--s-3);
}
.team__spec {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--s-5);
}
.team__tel {
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.team__tel::before { content: '→'; color: var(--gold); }
.team__tel:hover { color: var(--text); }

/* Decorative concentric circles ornament — team section */
.team::before,
.team::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.team::before {
  bottom: -24%;
  right: -7%;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid oklch(73% 0.13 66 / 0.10);
}
.team::after {
  bottom: -24%;
  right: -7%;
  width: 32vw;
  aspect-ratio: 1;
  border: 1px solid oklch(73% 0.13 66 / 0.06);
}

/* ── Section rule divider ────────────────────────────────── */
.section-rule {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) var(--s-8);
  position: relative;
  z-index: 6;
  background: var(--bg);
}
.section-rule__line {
  flex: 1;
  height: 1px;
  background: var(--border-dim);
}
.section-rule__text {
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }


/* ── Hero mobile overrides ───────────────────────────────── */
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    padding: 0 var(--s-5) calc(var(--s-7) + 52px);
  }
  .hero__overlay {
    background:
      linear-gradient(to top,
        oklch(28% 0.025 50 / 0.85) 0%,
        oklch(28% 0.025 50 / 0.55) 40%,
        oklch(28% 0.025 50 / 0.25) 68%,
        transparent 88%),
      linear-gradient(to bottom,
        oklch(28% 0.025 50 / 0.30) 0%,
        transparent 22%);
  }
  .hero__scroll { display: none; }
  .hero__strip  { left: var(--s-5); right: var(--s-5); }
  .hero__nav    { right: var(--s-5); bottom: var(--s-5); gap: var(--s-4); }
  .hero__lede   { font-size: var(--t-sm); max-width: 100%; line-height: 1.55; }
}

/* ── Hero beams canvas ────────────────────────────────────── */
#hero-beams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}


/* ── Keyframes ────────────────────────────────────────────── */
@keyframes fade-up   { to { opacity: 1; transform: none; } }
@keyframes wipe-right { to { clip-path: inset(0 0% 0 0); } }
@keyframes reveal-img { to { clip-path: inset(0 0 0% 0); } }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Image marquee strip ──────────────────────────────────── */
.img-strip {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: var(--s-7) 0 var(--s-8);
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
}
.img-strip__hd {
  padding: 0 var(--s-8) var(--s-5);
}
.img-strip__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.img-strip__row {
  overflow: hidden;
}
.img-strip__track {
  display: flex;
  width: max-content;
}
.img-strip__track--fwd {
  animation: ticker 32s linear infinite;
}
.img-strip__track--rev {
  animation: ticker-rev 44s linear infinite;
}
.img-strip__item {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 1;
  overflow: hidden;
}
.img-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.6s var(--ease);
}
.img-strip__item img:hover {
  filter: brightness(1) saturate(1);
}
.img-strip__fade {
  position: absolute;
  inset-block: 0;
  width: clamp(60px, 12vw, 160px);
  pointer-events: none;
  z-index: 2;
}
.img-strip__fade--l {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.img-strip__fade--r {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
@media (max-width: 600px) {
  .img-strip__item { width: clamp(120px, 36vw, 160px); }
}

/* ── Price list ───────────────────────────────────────────── */
.pl {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: var(--s-10) var(--s-8);
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
}
.pl__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0 var(--s-10);
  align-items: start;
}
.pl__img-col {
  position: sticky;
  top: calc(var(--nav-h) + var(--s-7));
  padding-top: var(--s-2);
}
.pl__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.pl__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84) contrast(1.06) saturate(1.1);
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: transform 0.7s var(--ease);
}
.pl__img-col:hover .pl__photo img { transform: scale(1.04); }
.pl__photo::after {
  content: '';
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  bottom: var(--s-5);
  left: 16%;
  border: 1px solid oklch(73% 0.13 66 / 0.18);
  pointer-events: none;
}
.pl__hd { margin-bottom: var(--s-9); }
.pl__hd-flex { margin-top: var(--s-4); }
.pl__note {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 44ch;
  margin-top: var(--s-6);
  margin-left: auto;
}
.pl__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.pl__cat {
  padding: var(--s-6);
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.06) 0%, transparent 55%),
    var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.14);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pl__cat:hover {
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.09) 0%, transparent 55%),
    var(--glass-hi);
  border-color: oklch(73% 0.13 66 / 0.20);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.20);
}
.pl__cat-hd {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.pl__cat-num {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 400;
}
.pl__cat-name {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--text);
}
.pl__rows { list-style: none; }
.pl__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding: 11px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: padding-left 0.25s var(--ease);
}
.pl__row:last-child { border-bottom: none; }
.pl__row:hover { padding-left: var(--s-3); }
.pl__service {
  font-size: var(--t-sm);
  color: var(--text-2);
  transition: color 0.2s;
}
.pl__row:hover .pl__service { color: var(--text); }
.pl__price {
  font-family: var(--f-display);
  font-size: var(--t-base);
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.pl__footer {
  margin-top: var(--s-9);
  display: flex;
  align-items: center;
  gap: var(--s-7);
  padding-top: var(--s-7);
  border-top: 1px solid var(--border-dim);
}
.pl__cta-text {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.15;
}
.pl__bg-word {
  position: absolute;
  bottom: -6%;
  right: -1%;
  font-family: var(--f-script);
  font-size: clamp(10rem, 26vw, 30rem);
  line-height: 0.8;
  color: oklch(73% 0.13 66 / 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.pl > * { position: relative; z-index: 1; }

/* ── Section z-index shields (petals at z-index 5) ────────── */
.ticker         { position: relative; z-index: 6; }
.stats          { position: relative; z-index: 6; }
.services       { position: relative; z-index: 6; }
.reviews-ticker { position: relative; z-index: 6; }
.gp             { position: relative; z-index: 6; }
.team           { position: relative; z-index: 6; overflow: hidden; }
.footer         { position: relative; z-index: 6; }
.testi          { position: relative; z-index: 6; }
.booking        { z-index: 6; } /* already has position:relative from decoration rule */

/* ── About background tint ────────────────────────────────── */
.about {
  position: relative;
  overflow: hidden;
  background: var(--blush-2);
}
.about::before {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(73% 0.13 66 / 0.10) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.about::after { display: none; }
.about__frame,
.about__body { position: relative; z-index: 1; }

.booking::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(73% 0.13 66 / 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Location section ─────────────────────────────────────── */
.loc {
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  padding: var(--s-10) var(--s-8);
  position: relative;
  z-index: 6;
}
.loc__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
.loc__info .sec-title { margin-bottom: var(--s-7); }
.loc__items { display: flex; flex-direction: column; }
.loc__item {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--border-dim);
}
.loc__item:last-child { border-bottom: none; padding-bottom: 0; }
.loc__item-label {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: var(--s-2);
}
.loc__item-val {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  color: var(--text);
  line-height: 1.5;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
a.loc__item-val:hover { color: var(--gold); }
.loc__item-acts {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-top: var(--s-4);
}
.loc__tel {
  font-size: var(--t-sm);
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.loc__tel:hover { color: var(--gold); }
.loc__map {
  height: 520px;
  position: relative;
  overflow: hidden;
}
.loc__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(92%) hue-rotate(180deg) saturate(0.75) brightness(0.82);
}

/* ── Responsive ─────────────────────────────────────────────
   Mobile: hamburger menu, aggressive vertical compression.
   Goal: page height proportional to viewport ratio.
   ─────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  :root {
    --nav-h: 56px;
    --s-5:  14px;
    --s-6:  18px;
    --s-7:  24px;
    --s-8:  32px;
    --s-9:  40px;
    --s-10: 52px;
  }

  /* Burger menu: hide inline links, show burger */
  .nav { padding: 0 var(--s-4); }
  .nav__logo { font-size: var(--t-base); }
  .nav__links { display: none; }
  .nav__cta { display: inline-flex; font-size: var(--t-xs); padding: 6px 14px; }
  .nav__burger { display: inline-flex; }

  .hero__strip { left: var(--s-4); right: var(--s-4); }
  .hero__content { padding: 0 var(--s-4) calc(var(--s-6) + 36px); }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: var(--s-3); }

  .services { gap: var(--s-6); padding: var(--s-7) var(--s-4); }
  .services__hd { position: static; }

  .about { grid-template-columns: 1fr 1fr; padding: 0 var(--s-4) var(--s-7); gap: var(--s-4); }
  .about__quote { font-size: clamp(1rem, 2.5vw, 1.5rem); }
  .about__copy { max-width: 100%; }

  .gp { padding: var(--s-7) var(--s-4); }
  .gp__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gp__cell:first-child { grid-row: auto; grid-column: 1 / -1; max-height: 180px; }

  .testi { padding: var(--s-7) var(--s-4); }
  .booking { padding: var(--s-7) var(--s-4); }
  .gallery-full { columns: 2; padding: var(--s-6) var(--s-4); }
  .contact-grid { grid-template-columns: 1fr 1fr; padding: var(--s-6) var(--s-4); gap: var(--s-4); }
  .page-hero { padding: calc(var(--nav-h) + var(--s-6)) var(--s-4) var(--s-6); }
  .svc-section { padding: var(--s-6) var(--s-4); }

  .pl { padding: var(--s-7) var(--s-4); }
  .pl__inner { grid-template-columns: 1fr; }
  .pl__img-col { display: none; }
  .pl__hd-flex { margin-top: var(--s-3); flex-direction: column; gap: var(--s-3); }
  .pl__note { margin-left: 0; max-width: 100%; }
  .pl__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .pl__footer { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: var(--s-3); }

  .stats { padding: var(--s-6) var(--s-4); }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .stats__rule { width: 60px; height: 1px; }
  .stats__pair { flex-direction: row; gap: var(--s-5); }

  .loc { padding: var(--s-7) var(--s-4); }
  .loc__inner { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .loc__map { height: 220px; }

  .team { padding: var(--s-7) 0; }
  .team__head, .team__grid { padding-left: var(--s-4); padding-right: var(--s-4); }
  .team__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
  .team__photo { aspect-ratio: 3/4; }
  .team__name { font-size: var(--t-base); }
  .team__spec { font-size: var(--t-xs); }

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .footer { padding: var(--s-6) var(--s-4) var(--s-4); }
  .footer__bottom { flex-direction: row; flex-wrap: wrap; gap: var(--s-3); }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 56px;
    --s-4:  16px;
    --s-5:  20px;
    --s-6:  24px;
    --s-7:  32px;
    --s-8:  40px;
    --s-9:  52px;
    --s-10: 64px;
    --t-xs:   13px;
    --t-sm:   15px;
    --t-base: 16px;
    --t-lg:   18px;
    --t-xl:   1.4rem;
    --t-2xl:  clamp(1.7rem, 6.5vw, 2.2rem);
    --t-3xl:  clamp(2.1rem, 8.5vw, 2.9rem);
    --t-hero: clamp(3.4rem, 14vw, 5rem);
  }

  /* Body — readable size on phone */
  body { font-size: 16px; line-height: 1.6; }

  /* Hero: clean, no slideshow indicators */
  .hero { height: 70vh; min-height: 460px; }
  .hero__strip { display: none; }
  .hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 18px 30px;
    max-width: 100%;
  }
  .hero__eyebrow { font-size: 12px; margin-bottom: 12px; }
  .hero__title { margin-bottom: 14px; line-height: 1; }
  .hero__script { font-size: clamp(1.5rem, 6vw, 2.2rem); margin-bottom: 16px; }
  .hero__lede {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 34ch;
  }
  .hero__actions { gap: 12px; margin-bottom: 16px; }
  .hero__trust {
    margin-top: 0;
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.55;
  }

  .nav { padding: 0 16px; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  /* Services — single column for readability */
  .services { grid-template-columns: 1fr; gap: 18px; padding: 24px 16px; }
  .services__hd { position: static; }
  .services__hd p { display: block; font-size: 15px; line-height: 1.55; max-width: 100%; margin-top: 12px; }
  .services__hd .btn-sec { display: inline-flex; margin-top: 14px; }
  .acc__img { display: none; }
  .acc__content { padding-bottom: 14px; gap: 12px; }
  .acc__desc { font-size: 14px; line-height: 1.55; max-width: 100%; }
  .acc__treat { font-size: 13px; }
  .acc__val { font-size: var(--t-lg); }
  .acc__from { font-size: 11px; }
  .acc__hd { padding: 16px 0; }
  .acc__name { font-size: 1.15rem; }
  .services::before { font-size: clamp(6rem, 22vw, 12rem); }

  /* Price list — 2-col cards (4 cats fit in 2x2) */
  .pl { padding: 24px 16px; }
  .pl__hd { margin-bottom: 18px; }
  .pl__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pl__cat { padding: 12px; }
  .pl__cat-hd { margin-bottom: 10px; }
  .pl__cat-name { font-size: 14px; }
  .pl__row { padding: 7px 0; gap: 8px; }
  .pl__service { font-size: 12px; line-height: 1.35; }
  .pl__price { font-size: 12px; }
  .pl__footer { margin-top: 18px; padding-top: 14px; gap: 14px; }
  .pl__cta-text { font-size: 1rem; }
  .pl__note { display: none; }
  .pl__bg-word { font-size: clamp(6rem, 20vw, 12rem); }

  /* About — keep 2-col for visual interest */
  .about { grid-template-columns: 1fr 1fr; padding: 0 16px 22px; gap: 14px; }
  .about__img { max-height: 200px; }
  .about::after { font-size: clamp(5rem, 18vw, 9rem); }
  .about__quote { font-size: clamp(1rem, 4vw, 1.3rem); line-height: 1.45; }
  .about__copy { font-size: 14px; line-height: 1.55; }

  /* Gallery preview */
  .gp { padding: 22px 16px; }
  .gp__cell:first-child { max-height: 160px; }
  .gp__cell img { min-height: 100px; }

  /* Gallery full */
  .gallery-full { columns: 2; padding: 22px 16px; max-height: 540px; overflow: hidden; }
  .gallery-full img { max-height: 240px; object-fit: cover; }

  /* Testimonials */
  .testi { padding: 26px 16px; }
  .testi__text { font-size: clamp(1.05rem, 4.5vw, 1.4rem); line-height: 1.5; }

  /* Stats — 2-col stays */
  .stats { padding: 22px 16px; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats__num { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .stats__big-num { font-size: clamp(2.6rem, 12vw, 4rem); }

  /* Booking */
  .booking { padding: 26px 16px; }
  .booking__acts { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* Contact */
  .contact-grid { padding: 22px 16px; gap: 14px; }

  /* Team — 2-col, readable size */
  .team { padding: 24px 0; }
  .team__head, .team__grid { padding-left: 16px; padding-right: 16px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team__photo { aspect-ratio: 3/4; }
  .team__name { font-size: 1rem; }
  .team__spec { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12px; line-height: 1.4; }
  .team__member { padding: 10px; }

  /* Location */
  .loc { padding: 24px 16px; }
  .loc__map { height: 180px; }

  /* Footer */
  .footer { padding: 22px 16px 14px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer__bottom { flex-direction: row; flex-wrap: wrap; gap: 10px; }

  /* Section headings */
  .sec-title { margin-bottom: 14px; }
  .eyebrow { margin-bottom: 10px; font-size: 12px; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }

  /* Image strip */
  .img-strip { padding: 20px 0 22px; }
  .img-strip__item { width: clamp(130px, 36vw, 160px); }

  /* Mobile drawer styles */
  .nav__mobile a { font-size: var(--t-xl); }
  .nav__mobile { gap: var(--s-5); }
}

@media (max-width: 380px) {
  .team__grid { gap: 4px; }
}

/* ════════════════════════════════════════════════════════════
   NEW COMPONENTS — mobile-first soft-editorial
   ════════════════════════════════════════════════════════════ */

/* About facts — inline row of stats */
.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  list-style: none;
}
.about__facts li { display: flex; flex-direction: column; gap: 2px; }
.about__facts strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__facts span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* Specialists — horizontal scroll-snap carousel */
.specialists {
  padding: var(--sec-pad) 0;
  background: var(--bg);
}
.specialists__head {
  padding: 0 var(--s-4);
  margin-bottom: var(--s-6);
  text-align: center;
}
.specialists__head .eyebrow { color: var(--gold-deep); }
.specialists__head .sec-title { color: var(--text); margin-bottom: var(--s-3); }
.specialists__lede {
  font-size: var(--t-sm);
  color: var(--text-2);
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.6;
}
.specialists__carousel {
  display: flex;
  gap: var(--s-4);
  padding: 0 var(--s-4) var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.specialists__carousel::-webkit-scrollbar { display: none; }
.spec-card {
  flex: 0 0 84%;
  scroll-snap-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.spec-card:active { transform: scale(0.99); }
.spec-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.spec-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.spec-card:hover .spec-card__photo img { transform: scale(1.04); }
.spec-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.spec-card__role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.spec-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}
.spec-card__spec {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  margin: var(--s-2) 0 var(--s-3);
}
.spec-card__tel {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  text-decoration: none;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border-dim);
}
.spec-card__tel:hover { color: var(--text); }

/* Service image cards — stacked full-bleed */
.svc-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: 0 var(--s-4);
}
.svc-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  overflow: hidden;
}
.svc-card__photo {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.svc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.svc-card:hover .svc-card__photo img { transform: scale(1.04); }
.svc-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.svc-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
}
.svc-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.svc-card__price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-deep);
  white-space: nowrap;
}
.svc-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}
.svc-card__treats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  padding: 0;
}
.svc-card__treats li {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  background: var(--bg-warm);
  border-radius: 999px;
  padding: 4px 10px;
}

/* Gallery — scroll-snap carousel */
.gallery {
  padding: var(--sec-pad) 0;
  background: var(--bg);
}
.gallery__head {
  padding: 0 var(--s-4);
  margin-bottom: var(--s-6);
  text-align: center;
}
.gallery__carousel {
  display: flex;
  gap: var(--s-3);
  padding: 0 var(--s-4) var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery__carousel::-webkit-scrollbar { display: none; }
.gallery__cell {
  flex: 0 0 78%;
  scroll-snap-align: center;
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
}
.gallery__cell img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.gallery__cell:hover img { transform: scale(1.03); }
.gallery__cell figcaption {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(96% 0.012 70);
  padding: 6px 12px;
  background: oklch(28% 0.025 50 / 0.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

/* Pricing — minimalist stripped accordions */
.pricing {
  padding: var(--sec-pad) var(--s-4);
  background: var(--bg);
}
.pricing__head { text-align: center; margin-bottom: var(--s-7); }
.pricing__list { max-width: 640px; margin: 0 auto; }
.price-acc {
  border-bottom: 1px solid var(--border);
}
.price-acc:first-child { border-top: 1px solid var(--border); }
.price-acc__hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-5) 0;
  list-style: none;
  cursor: pointer;
  position: relative;
}
.price-acc__hd::-webkit-details-marker { display: none; }
.price-acc__hd::after {
  content: '+';
  font-family: var(--f-body);
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 1;
  transition: transform var(--dur-hover) var(--ease-out);
  margin-left: var(--s-3);
}
.price-acc[open] .price-acc__hd::after { content: '−'; }
.price-acc__name {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  flex: 1;
}
.price-acc__from {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  white-space: nowrap;
}
.price-acc__rows {
  list-style: none;
  padding: 0 0 var(--s-5);
  margin: 0;
}
.price-acc__rows li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-2);
  border-top: 1px solid var(--border-dim);
}
.price-acc__rows li:first-child { border-top: none; }

/* Sticky bottom CTA bar — mobile only */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__btn {
  display: block;
  text-align: center;
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: oklch(16% 0.012 52);
  background: var(--gold);
  padding: 14px 20px;
  border-radius: 4px;
  transition: background var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.sticky-cta__btn:active { transform: scale(0.98); }
.sticky-cta__btn:hover  { background: var(--gold-hi); }

@media (min-width: 768px) {
  .sticky-cta { display: none; }

  /* Specialists — grid on desktop */
  .specialists__carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: var(--s-5);
    overflow: visible;
    padding: 0 var(--s-7) var(--s-4);
    max-width: 1280px;
    margin: 0 auto;
  }
  .spec-card { flex: 1 1 auto; }

  /* Service cards — 2x2 grid on desktop */
  .svc-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
    padding: 0 var(--s-7);
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Gallery — 4-col grid on desktop */
  .gallery__carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: var(--s-3);
    overflow: visible;
    padding: 0 var(--s-7) var(--s-4);
    max-width: 1280px;
    margin: 0 auto;
  }
  .gallery__cell { flex: 1 1 auto; }
  .gallery__cell:first-child { grid-column: span 2; grid-row: span 2; }
}
