/* Pedikúra VJ — Graphite Moss + Vintage Lilac */

:root {
  --graphite: #6C6C6A;
  --graphite-deep: #555553;
  --graphite-soft: #8A8A88;
  --lilac: #E8CCD8;
  --lilac-soft: #F3E6EC;
  --lilac-deep: #D4B0C0;
  --background: #F3E6EC;
  --foreground: #6C6C6A;
  --card: #E8CCD8;
  --muted: #E8CCD8;
  --muted-foreground: #6C6C6A;
  --primary: #6C6C6A;
  --primary-foreground: #E8CCD8;
  --secondary: #E8CCD8;
  --accent: #E8CCD8;
  --border: #D4B0C0;
  --gold: #6C6C6A;
  --champagne: #8A8A88;
  --charcoal: #6C6C6A;
  --black: #555553;
  --gray: #6C6C6A;
  --gray-soft: #8A8A88;
  --rose: #E8CCD8;
  --rose-deep: #D4B0C0;
  --rose-soft: #F3E6EC;
  --rose-muted: #D4B0C0;
  --radius: 0.5rem;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --font-accent: 'WindSong', cursive;
  --header-h: 84px;
  --hero-gold: #E8CCD8;
  --hero-gold-soft: #F3E6EC;
  --hero-ivory: #E8CCD8;
  --hero-charcoal: #6C6C6A;
  --hero-black: #555553;
  --container: 72rem;
  --block-gap: clamp(2.5rem, 5vh, 4rem);
  --bento-gap: clamp(2.5rem, 4.5vw, 4.5rem);
  --shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

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

/* scroll-behavior: auto — Lenis owns page smooth scroll (see script.js) */
html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-h);
  height: auto;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  height: auto;
  min-height: 100%;
  /* hidden not clip — overflow-x:clip can force Y clip in some browsers */
  overflow-x: hidden;
}

/* Lenis root must stay vertically scrollable (lenis.css uses overflow:clip when stopped/locked) */
html.lenis,
html.lenis body {
  height: auto;
}
html.lenis.lenis-stopped,
html.lenis.lenis-locked {
  overflow: visible !important;
  overflow-y: auto !important;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4.5vw, 2.5rem);
}

/* Utilities */
.boty-transition { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.boty-shadow { box-shadow: var(--shadow); }

@keyframes blur-in {
  0% { opacity: 0; filter: blur(12px); transform: translateY(10px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}
.animate-blur-in { animation: blur-in 0.8s ease-out forwards; opacity: 0; }

@keyframes scale-fade-in {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.animate-scale-fade-in { animation: scale-fade-in 0.6s ease-out; }

@keyframes scroll-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scroll-up {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Služby — staged entrance */
@keyframes treatments-rise {
  from { opacity: 0; transform: translateY(1.75rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes treatments-title-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 92% 0);
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
@keyframes treatments-eyebrow-in {
  from {
    opacity: 0;
    letter-spacing: 0.55em;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    letter-spacing: 0.3em;
    transform: translateY(0);
  }
}
@keyframes treatments-num-in {
  from { opacity: 0; transform: translateX(-1.1rem) scale(0.88); }
  to { opacity: 0.5; transform: translateX(0) scale(1); }
}
@keyframes treatments-piece-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes treatments-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes treatments-underline {
  from { background-size: 0% 1px; }
  to { background-size: 100% 1px; }
}
@keyframes treatments-card-in {
  from {
    opacity: 0;
    transform: translate3d(var(--card-x, 0), 1.35rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.treatments .reveal { opacity: 0; }
.treatments .reveal.is-visible {
  animation: treatments-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

.treatments__header .eyebrow.reveal.is-visible {
  animation: treatments-eyebrow-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

.treatments .section-title.reveal {
  clip-path: inset(0 0 92% 0);
}
.treatments .section-title.reveal.is-visible {
  animation: treatments-title-reveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

.treatment-card:nth-child(odd) { --card-x: -1.15rem; }
.treatment-card:nth-child(even) { --card-x: 1.15rem; }

.treatment-card.reveal.is-visible {
  animation: treatments-card-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

.treatment-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(108, 108, 106, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.treatment-card.reveal.is-visible::after {
  animation: treatments-line-draw 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.2s);
}

.treatment-card.reveal .treatment-card__num,
.treatment-card.reveal .treatment-card__info,
.treatment-card.reveal .treatment-card__desc,
.treatment-card.reveal .treatment-card__stat {
  opacity: 0;
}
.treatment-card.reveal.is-visible .treatment-card__num {
  animation: treatments-num-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.08s);
}
.treatment-card.reveal.is-visible .treatment-card__info {
  animation: treatments-piece-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.14s);
}
.treatment-card.reveal.is-visible .treatment-card__desc {
  animation: treatments-piece-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.22s);
}
.treatment-card.reveal.is-visible .treatment-card__stat--duration {
  animation: treatments-piece-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.3s);
}
.treatment-card.reveal.is-visible .treatment-card__stat--price {
  animation: treatments-piece-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.36s);
}

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--gold); }

.text-gold { color: var(--champagne); font-style: italic; }

.section {
  padding-block: var(--block-gap);
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--left { text-align: left; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.section-title em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.section-title--left { text-align: left; }
.section-title--light { color: var(--primary-foreground); }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn--pill { border-radius: 9999px; padding: 1rem 2rem; }
.btn--sm { border-radius: 9999px; padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn--primary { background: var(--primary); color: var(--primary-foreground); box-shadow: none; }
.btn--primary:hover { background: var(--graphite-deep); }
.btn--ghost { background: rgba(255,255,255,0.5); color: var(--foreground); border: 1px solid rgba(0,0,0,0.08); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: var(--gold); }
.btn--outline { background: transparent; color: var(--foreground); border: 1px solid rgba(44,44,44,0.2); border-radius: 9999px; padding: 1rem 2rem; }
.btn--outline:hover { background: rgba(44,44,44,0.05); }
.btn--light { background: var(--primary-foreground); color: var(--primary); border-radius: 9999px; padding: 1rem 2rem; }
.btn--light:hover { opacity: 0.9; }

/* ========== HEADER ==========
   Over dark hero: white text. Past hero: .header--on-light → Graphite. */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.header__nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: 5rem;
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding: 0.75rem clamp(1.5rem, 6vw, 4.5rem);
}

.header__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  transition: color 0.3s;
}

.header__brand-mark {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__brand-text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.header__links {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

.header__link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s, opacity 0.3s;
}
.header__link:hover { color: #fff; opacity: 0.72; }

.header__book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  justify-self: end;
}
.header__book:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.header__book--mobile {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  justify-self: end;
  grid-column: 3;
  transition: color 0.3s;
}
.header__burger .icon-close { display: none; }
.header__burger.is-open .icon-menu { display: none; }
.header__burger.is-open .icon-close { display: block; }

.header__mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease;
  background: rgba(20, 14, 16, 0.92);
}
.header__mobile.is-open { max-height: 420px; }
.header__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.35rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.35s ease;
}
.header__mobile-inner .header__link {
  font-size: 0.8125rem;
  color: #fff;
}

/* Scrolled past hero — Graphite on lilac / light sections */
.header--on-light {
  background: rgba(243, 230, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header--on-light .header__brand,
.header--on-light .header__burger {
  color: var(--graphite);
}

.header--on-light .header__link {
  color: var(--graphite);
}
.header--on-light .header__link:hover {
  color: var(--graphite-deep);
  opacity: 0.8;
}

.header--on-light .header__book {
  color: var(--graphite);
  border-color: rgba(108, 108, 106, 0.65);
}
.header--on-light .header__book:hover {
  background: rgba(108, 108, 106, 0.08);
  border-color: var(--graphite);
}

.header--on-light .header__mobile {
  background: rgba(255, 255, 255, 0.96);
}
.header--on-light .header__mobile-inner {
  border-top-color: rgba(108, 108, 106, 0.18);
}
.header--on-light .header__mobile-inner .header__link {
  color: var(--graphite);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #2a1a20;
  margin-bottom: var(--block-gap);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
}

/* Strong wine/dark veil on LEFT ~45–50%; right stays bright pink */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(18, 8, 12, 0.88) 0%,
      rgba(28, 12, 18, 0.78) 22%,
      rgba(42, 18, 28, 0.5) 42%,
      rgba(60, 28, 40, 0.18) 58%,
      rgba(0, 0, 0, 0) 72%
    ),
    linear-gradient(
      180deg,
      rgba(12, 6, 10, 0.35) 0%,
      rgba(12, 6, 10, 0.08) 28%,
      rgba(12, 6, 10, 0.2) 78%,
      rgba(12, 6, 10, 0.55) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 0;
  padding:
    calc(var(--header-h) + 1.5rem)
    clamp(1.5rem, 7vw, 5.5rem)
    clamp(1.25rem, 3vh, 2rem);
  padding-top: calc(var(--header-h) + clamp(2rem, 8vh, 5rem));
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: min(58rem, 88vw);
  width: 100%;
  transform: translateY(4vh);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 7.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 clamp(1.5rem, 2.8vh, 2rem);
  max-width: none;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__title-line--italic {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  color: var(--lilac);
  font-size: 0.92em;
  letter-spacing: 0.01em;
  margin-top: 0.06em;
  line-height: 1.1;
}

.hero__rule {
  display: block;
  width: 4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  margin: 0 0 clamp(1.5rem, 2.8vh, 2rem);
}

.hero__subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
  margin: 0 0 clamp(2rem, 4vh, 2.75rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.25rem;
}

.btn--hero-primary {
  background: var(--lilac);
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.95rem 1.75rem;
  box-shadow: none;
  border: none;
}
.btn--hero-primary:hover {
  background: var(--lilac-deep);
  color: var(--graphite);
}

.hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(232, 204, 216, 0.7);
  padding-bottom: 0.15rem;
  transition: opacity 0.3s, border-color 0.3s, color 0.3s;
}
.hero__text-link:hover {
  opacity: 1;
  color: var(--lilac);
  border-color: var(--lilac);
}

/* Bottom contact strip — thin divider only, no cards */
.hero__contact {
  position: relative;
  z-index: 2;
  margin:
    0
    clamp(1.25rem, 6vw, 4.5rem)
    clamp(1.35rem, 3.5vh, 2.5rem);
  border: none;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  overflow: visible;
  box-sizing: border-box;
}

.hero__contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 1.65rem 0 1.6rem;
  list-style: none;
  border: none;
}

.hero__contact-list li {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  border: none;
}

/* Clear mid-gap vertical separators between columns */
.hero__contact-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3.35rem;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero__contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.55rem clamp(1.35rem, 3vw, 2.35rem);
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.3s;
}
a.hero__contact-item:hover { opacity: 0.78; }

.hero__contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.hero__contact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.hero__contact-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.25;
}

.hero__contact-value {
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .header__links { display: flex; }
  .header__burger { display: none; }
  .header__mobile { display: none !important; }

  .hero__title {
    font-size: clamp(4.5rem, 7.5vw, 7.5rem);
  }

  .hero__title-line--italic {
    font-size: 0.92em;
  }
}

@media (min-width: 768px) and (max-height: 860px) {
  .hero__title {
    font-size: clamp(3.5rem, 5.8vw, 5.25rem);
  }

  .hero__text {
    transform: translateY(2vh);
  }

  .hero__subtitle {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .header__nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 4.5rem;
    gap: 0.65rem;
    padding-inline:
      max(1.15rem, env(safe-area-inset-left))
      max(1.15rem, env(safe-area-inset-right));
    padding-top: max(0.55rem, env(safe-area-inset-top));
  }

  .header__brand {
    min-width: 0;
  }

  .header__brand-mark {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
  }

  .header__book:not(.header__book--mobile) {
    padding: 0.55rem 0.85rem;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    min-height: 2.5rem;
  }

  .header__brand-text {
    letter-spacing: 0.18em;
    font-size: 0.625rem;
  }

  .header__burger {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.65rem;
  }

  .header__mobile-inner {
    gap: 0.35rem;
    padding:
      0.5rem
      max(1.25rem, env(safe-area-inset-left))
      max(1.5rem, env(safe-area-inset-bottom))
      max(1.25rem, env(safe-area-inset-right));
  }

  .header__mobile-inner .header__link {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding-block: 0.35rem;
    font-size: 0.875rem;
  }

  .header__book--mobile {
    margin-top: 0.75rem;
    min-height: 2.75rem;
    justify-content: center;
    align-self: stretch;
    text-align: center;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(18, 8, 12, 0.82) 0%,
        rgba(28, 12, 18, 0.72) 35%,
        rgba(42, 18, 28, 0.45) 62%,
        rgba(18, 8, 12, 0.55) 100%
      ),
      linear-gradient(
        90deg,
        rgba(18, 8, 12, 0.7) 0%,
        rgba(28, 12, 18, 0.35) 55%,
        transparent 100%
      );
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-inline:
      max(1.25rem, env(safe-area-inset-left))
      max(1.25rem, env(safe-area-inset-right));
    padding-bottom: 1.25rem;
    align-items: flex-end;
  }

  .hero__text {
    max-width: 100%;
    min-width: 0;
    transform: none;
  }

  .hero__title {
    font-size: clamp(2.35rem, 8.2vw, 3.25rem);
    max-width: 100%;
  }

  .hero__title-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__title-line--italic {
    font-size: 0.88em;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .btn--hero-primary {
    min-height: 2.75rem;
    padding: 0.9rem 1.5rem;
  }

  .hero__text-link {
    min-height: 2.5rem;
    padding-block: 0.35rem;
  }

  .hero__contact {
    margin-inline:
      max(1.25rem, env(safe-area-inset-left))
      max(1.25rem, env(safe-area-inset-right));
    margin-bottom: max(1.25rem, env(safe-area-inset-bottom));
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero__contact-list {
    grid-template-columns: 1fr;
    padding: 0.4rem 0 0.55rem;
  }

  .hero__contact-list li:not(:last-child)::after {
    left: 1.15rem;
    right: 1.15rem;
    top: auto;
    bottom: 0;
    transform: none;
    width: auto;
    height: 1px;
  }

  .hero__contact-item {
    padding: 0.95rem 1.1rem;
    min-height: 3.25rem;
  }

  .hero__contact-value {
    font-size: 0.9rem;
  }

  .hero__video {
    object-position: 62% 40%;
  }
}

/* ========== TREATMENTS / CENNÍK ========== */
.treatments {
  background: var(--background);
  display: block;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.treatments__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.treatments__header {
  text-align: center;
  margin: 0 auto;
  max-width: 40rem;
}

.treatments__header .eyebrow {
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--graphite-soft);
}

.treatments .section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  margin-bottom: 1.15rem;
  line-height: 1.12;
  text-align: center;
}

.treatments .section-title em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  font-size: 0.92em;
}

.treatments__subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 0 auto;
  padding-bottom: 0;
  border-bottom: none;
}

.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(108, 108, 106, 0.22);
}

.treatment-card {
  display: block;
  position: relative;
  background: transparent;
  border: none;
  border-bottom: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: background 0.35s ease;
}

.treatment-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.treatment-card__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num info"
    "desc desc"
    "duration price";
  column-gap: 1rem;
  row-gap: 0.95rem;
  align-items: start;
  padding: clamp(1.35rem, 3vw, 1.85rem) 0.1rem;
}

.treatment-card__num {
  grid-area: num;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lilac-deep);
  opacity: 0.55;
  white-space: nowrap;
  padding-top: 0.2rem;
}

.treatment-card__num-slash {
  font-weight: 400;
  opacity: 0.85;
}

.treatment-card__info {
  grid-area: info;
  min-width: 0;
  padding-top: 0.15rem;
}

.treatment-card__category {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite-soft);
  margin-bottom: 0.4rem;
}

.treatment-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--graphite);
  margin: 0;
}

.treatment-card__desc {
  grid-area: desc;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 42rem;
}

.treatment-card__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.treatment-card__stat--duration { grid-area: duration; }
.treatment-card__stat--price {
  grid-area: price;
  justify-self: end;
  align-items: flex-end;
}

.treatment-card__stat-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite-soft);
}

.treatment-card__stat-value {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--graphite);
  line-height: 1.3;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(108, 108, 106, 0.4);
  width: fit-content;
}

.treatment-card__price {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: var(--graphite);
  white-space: nowrap;
  line-height: 1.1;
}

.treatments__footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 1.75rem;
  border-top: none;
  text-align: left;
}

.booking-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--graphite);
  margin: 0;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.booking-link__main {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(108, 108, 106, 0.4);
  transition: border-color 0.3s ease;
}

.booking-link__arrow {
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-0.08em);
}

.booking-link__sub {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--graphite-soft);
  line-height: 1.4;
}

.booking-link:hover {
  opacity: 0.78;
  color: var(--graphite);
}

.booking-link:hover .booking-link__main {
  border-color: var(--graphite);
}

.booking-link:hover .booking-link__sub {
  color: var(--graphite);
}

.booking-link:focus-visible {
  outline: 2px solid var(--graphite);
  outline-offset: 4px;
}

@keyframes booking-badge-spin {
  to { transform: rotate(360deg); }
}

.booking-badge {
  --badge-size: clamp(7.25rem, 22vw, 9.25rem);
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--badge-size);
  height: var(--badge-size);
  color: var(--graphite-deep);
  text-decoration: none;
  border-radius: 50%;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.booking-badge:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

.booking-badge:focus-visible {
  outline: 2px solid var(--graphite);
  outline-offset: 4px;
}

.booking-badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: booking-badge-spin 20s linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

.booking-badge__text {
  fill: currentColor;
  font-family: var(--font-sans);
  font-size: 6.35px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-badge__center {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.booking-badge__icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: none;
  box-shadow: none;
  filter: none;
}

/* Fixed floating booking badge (replaces EasyWeek default FAB)
   Color flip = Detaility technique: mix-blend-mode: difference on the fixed badge.
   Paint for dark sections (light outlined text + dark icon);
   difference auto-inverts over light lilac sections. */
.booking-badge--fab {
  --badge-size: clamp(4.375rem, 16vw, 7.5rem);
  --badge-ink: #f7f0f3;
  --badge-icon: #1a1216;
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  color: var(--badge-ink);
  mix-blend-mode: difference;
  background: none;
}

html.show-booking-fab .booking-badge--fab {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

html.show-booking-fab .booking-badge--fab:hover {
  transform: scale(1.04);
  opacity: 1;
}

.booking-badge--fab .booking-badge__text {
  fill: var(--badge-ink);
  stroke: none;
  font-family: var(--font-sans);
  font-size: 6.1px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-stretch: normal;
}

.booking-badge--fab .booking-badge__center {
  width: 40%;
  height: 40%;
  background: transparent;
  color: var(--badge-icon);
  box-shadow: none;
  place-self: center;
}

.booking-badge--fab .booking-badge__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  /* White ink so mix-blend-mode:difference stays visible (black → invisible) */
  filter: none;
}

.booking-badge--fab:focus-visible {
  outline-color: var(--badge-ink);
}

@media (max-width: 767px) {
  .booking-badge--fab {
    --badge-size: clamp(4.375rem, 19vw, 4.5rem);
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .booking-badge--fab .booking-badge__text {
    font-size: 6.2px;
    letter-spacing: 0.06em;
  }

  .booking-badge--fab .booking-badge__center {
    width: 40%;
    height: 40%;
  }
}

@media (min-width: 900px) {
  .treatments {
    padding-block: clamp(3.5rem, 6vw, 5.5rem);
  }

  .treatments__inner {
    gap: clamp(2.25rem, 3.5vw, 3.25rem);
  }

  .treatments__header {
    max-width: 42rem;
  }

  .treatments .section-title {
    font-size: clamp(3rem, 4.8vw, 4.5rem);
    margin-bottom: 1.15rem;
    line-height: 1.1;
  }

  .treatments__subtitle {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .treatment-card__body {
    grid-template-columns:
      5.25rem
      minmax(12rem, 1fr)
      minmax(0, 1.65fr)
      6.5rem
      6rem;
    grid-template-areas: "num info desc duration price";
    column-gap: clamp(1.5rem, 2.8vw, 2.75rem);
    row-gap: 0;
    align-items: center;
    padding: clamp(1.5rem, 2.2vw, 2rem) 0.15rem;
  }

  .treatment-card__num {
    font-size: clamp(2.15rem, 2.8vw, 2.75rem);
    padding-top: 0;
    align-self: center;
    opacity: 0.5;
  }

  .treatment-card__info {
    padding-top: 0;
  }

  .treatment-card__name {
    font-size: clamp(1.35rem, 1.95vw, 1.7rem);
  }

  .treatment-card__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: none;
    align-self: center;
  }

  .treatment-card__stat--duration {
    justify-self: start;
    align-items: flex-start;
  }

  .treatment-card__stat--price {
    justify-self: end;
    align-items: flex-end;
  }

  .treatment-card__stat-value {
    font-size: 0.875rem;
  }

  .treatment-card__price {
    font-size: clamp(1.55rem, 2vw, 1.95rem);
  }

  .treatments__footer {
    padding-top: 2.25rem;
  }
}

@media (max-width: 899px) {
  .treatment-card__num {
    align-self: start;
  }

  .treatment-card__body {
    min-width: 0;
  }

  .treatment-card__info,
  .treatment-card__desc,
  .treatment-card__stat {
    min-width: 0;
  }
}

/* ========== WORK GALLERY / FEATURES ========== */
.features {
  background: var(--background);
  padding-block: 0;
}

.results-showcase.work-gallery {
  --gallery-bg: #4a4a48;
  --gallery-bg-deep: #3d3d3b;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(232, 204, 216, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--gallery-bg) 0%, var(--gallery-bg-deep) 100%);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(4rem, 7vw, 5.75rem);
  color: #F3E6EC;
  overflow: hidden;
}

.work-gallery__container {
  max-width: min(80rem, calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: 0;
}

.work-gallery__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  padding-inline: clamp(0.25rem, 1vw, 0.5rem);
  overflow: visible;
}

.work-gallery__title {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #F3E6EC;
  margin: 0;
  text-align: right;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.work-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.work-card {
  min-width: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.work-card__box {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  aspect-ratio: 4 / 3;
  background: #2e2e2c;
  transform: translate3d(0, 0, 0);
}

.work-card__media {
  position: absolute;
  inset: -14% 0;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.work-card__box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 55%);
  transition: opacity 0.2s ease-out;
}

.work-card__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.45s ease;
}

.work-card__category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-block;
  padding: 0.4em 0.9em;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}

.work-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.5rem 1.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.work-card__caption p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.work-card__box:hover::after,
.work-card__box:focus-within::after {
  opacity: 1;
}

.work-card__box:hover img,
.work-card__box:focus-within img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.work-card__box:hover .work-card__caption,
.work-card__box:focus-within .work-card__caption {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: none) {
  .work-card__box::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 45%);
  }

  .work-card__caption {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .work-card__box:hover img,
  .work-card__box:focus-within img {
    filter: none;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .work-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .work-gallery__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }

  .work-card--wide {
    grid-column: span 6;
  }

  .work-card:not(.work-card--wide) {
    grid-column: span 4;
  }

  .work-card--wide .work-card__box {
    aspect-ratio: 16 / 11;
  }

  .work-card:not(.work-card--wide) .work-card__box {
    aspect-ratio: 4 / 5;
  }
}

/* Mobile: horizontal snap scroll */
@media (max-width: 639px) {
  .work-gallery__grid {
    display: flex;
    gap: 0.875rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 204, 216, 0.35) transparent;
  }

  .work-card {
    flex: 0 0 min(78vw, 18.5rem);
    scroll-snap-align: start;
  }

  .work-card__box {
    aspect-ratio: 3 / 4;
  }
}

.features > .container {
  padding-block: clamp(1.25rem, 3dvh, 2rem);
}

.about-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: 0;
}

.about-split .section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
  max-width: 28rem;
}

.about-split .section-title em {
  font-family: var(--font-accent);
  font-style: normal;
  font-size: 1.08em;
}

.about-split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: none;
}
.about-split__media video,
.about-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__prose {
  display: grid;
  gap: 1rem;
  max-width: 30rem;
}

.about-split__prose p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.about-split__closing {
  margin-top: 0.35rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(108, 108, 106, 0.18);
  font-family: var(--font-serif) !important;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem) !important;
  line-height: 1.45 !important;
  color: var(--graphite) !important;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(108, 108, 106, 0.2);
  max-width: 28rem;
}

.about-points li {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(108, 108, 106, 0.2);
}

.about-points strong {
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--graphite);
}

.about-points span {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.feature-cards { display: none; }
.feature-card { display: none; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--background);
  overflow: hidden;
}

.testimonials__wrap {
  position: relative;
  height: 600px;
}

.testimonials__fade {
  position: absolute;
  left: 0; right: 0;
  height: 8rem;
  z-index: 2;
  pointer-events: none;
}
.testimonials__fade--top { top: 0; background: linear-gradient(to bottom, var(--background), transparent); }
.testimonials__fade--bottom { bottom: 0; background: linear-gradient(to top, var(--background), transparent); }

.testimonials__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  height: 100%;
}

.testimonials__col { overflow: hidden; }
.testimonials__col--down > * { animation: scroll-down 18s linear infinite; }
.testimonials__col--up > * { animation: scroll-up 18s linear infinite; }
.testimonials__col:hover > * { animation-play-state: paused; }

.testimonial-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(108, 108, 106, 0.2);
  border-radius: 0.85rem;
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease;
  transform: translateZ(0);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(108, 108, 106, 0.32);
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--graphite);
  margin-bottom: 1rem;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
.testimonial-card footer strong {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 400;
  display: block;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}
.testimonial-card footer span {
  display: none;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  --contact-ivory: #F3E6EC;
  --contact-muted: rgba(243, 230, 236, 0.72);
  --contact-pink: #E8CCD8;
  --contact-pink-deep: #D4B0C0;
  --contact-line: rgba(232, 204, 216, 0.14);
  --contact-map-bg: #f3e6ec;

  position: relative;
  overflow: hidden;
  background: #2a1a20;
  color: var(--contact-ivory);
  min-height: 100dvh;
  height: 100dvh;
  max-height: 100dvh;
  padding:
    calc(var(--header-h) + clamp(1rem, 2.5vh, 2rem))
    clamp(1.5rem, 5vw, 3.5rem)
    clamp(1.25rem, 3vh, 2.25rem);
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

/* Same wine/dark veil as .hero__veil — left readable, right bright pink */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(18, 8, 12, 0.88) 0%,
      rgba(28, 12, 18, 0.78) 22%,
      rgba(42, 18, 28, 0.5) 42%,
      rgba(60, 28, 40, 0.18) 58%,
      rgba(0, 0, 0, 0) 72%
    ),
    linear-gradient(
      180deg,
      rgba(12, 6, 10, 0.35) 0%,
      rgba(12, 6, 10, 0.08) 28%,
      rgba(12, 6, 10, 0.2) 78%,
      rgba(12, 6, 10, 0.55) 100%
    );
}

.contact-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
}

.contact-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: 1;
  width: clamp(7.5rem, 14vw, 10.5rem);
  height: auto;
  opacity: 0.14;
  pointer-events: none;
  color: rgba(255, 248, 250, 0.85);
  mix-blend-mode: soft-light;
  transform: translate(-50%, -50%);
}

.contact-watermark__svg {
  display: block;
  width: 100%;
  height: auto;
}

.contact-watermark__ring {
  fill: currentColor;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-watermark__vj {
  fill: currentColor;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(72rem, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 3.5vh, 2.5rem);
  min-height: 0;
  height: 100%;
}

/* ---- Header ---- */
.contact-intro {
  display: flex;
  align-items: stretch;
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
  max-width: 36rem;
  margin-bottom: clamp(1.25rem, 4vh, 2.75rem);
}

.contact-intro__rule {
  flex: 0 0 1px;
  width: 1px;
  align-self: stretch;
  background: rgba(232, 204, 216, 0.45);
  margin-block: 0.35rem 0.55rem;
}

.contact-intro__copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.contact-intro__title {
  margin: 0;
  line-height: 1.05;
}

.contact-intro__line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}

.contact-intro__accent {
  position: relative;
  display: inline-block;
  margin-top: 0.1em;
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.8vw, 3.65rem);
  line-height: 1.15;
  color: var(--contact-pink);
  letter-spacing: 0.01em;
}

.contact-intro__swoosh {
  position: absolute;
  left: 0.1em;
  right: 0;
  bottom: -0.08em;
  width: 92%;
  height: auto;
  color: var(--contact-pink-deep);
  pointer-events: none;
}

.contact-intro__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.875rem, 1.35vw, 1rem);
  line-height: 1.55;
  color: var(--contact-muted);
  max-width: 28rem;
}

/* ---- 4-column grid ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  width: 100%;
}

.contact-grid__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0 clamp(1rem, 2.2vw, 1.75rem);
  min-width: 0;
  transition: opacity 0.3s;
}

.contact-grid__item:first-child {
  padding-left: 0;
}

.contact-grid__item:not(:first-child) {
  border-left: 1px solid var(--contact-line);
}

a.contact-grid__item:hover {
  opacity: 0.82;
}

.contact-grid__icon {
  display: flex;
  color: var(--contact-pink);
  margin-bottom: 0.15rem;
}

.contact-grid__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--contact-pink);
}

.contact-grid__value {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ---- Bottom row ---- */
.contact-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1.2fr);
  align-items: start;
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 1.25rem;
  padding-top: clamp(0.65rem, 1.4vh, 1rem);
  margin-top: clamp(0.25rem, 1vh, 0.75rem);
  border-top: 1px solid var(--contact-line);
}

.contact-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.7rem;
  min-width: 0;
  justify-self: start;
  padding-top: 0.15rem;
}

.contact-social__label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--contact-pink-deep);
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  transition: opacity 0.3s, color 0.3s;
}

a.contact-social__link:hover {
  opacity: 0.78;
  color: var(--contact-pink);
}

.contact-social__link--static {
  cursor: default;
}

.contact-social__link svg {
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--contact-pink);
}

.contact-social__link > span {
  display: block;
  line-height: 1;
}

.btn--contact-outline {
  justify-self: center;
  align-self: center;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(232, 204, 216, 0.78);
  box-shadow: none;
  padding: 0.95rem 2.4rem;
  min-width: 13.5rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn--contact-outline:hover {
  background: rgba(232, 204, 216, 0.1);
  color: #fff;
  border-color: var(--contact-pink);
  transform: none;
  box-shadow: none;
}

.contact-map-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  min-width: 0;
  width: 100%;
  max-width: 28rem;
  justify-self: end;
}

.contact-map {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(13rem, 26vh, 17.5rem);
  background: var(--contact-map-bg);
  border: 1px solid rgba(212, 176, 192, 0.45);
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.3s;
}

.contact-map:hover {
  border-color: rgba(232, 204, 216, 0.55);
}

.contact-map__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--contact-map-bg);
}

.contact-map__canvas .leaflet-container {
  width: 100%;
  height: 100%;
  background: var(--contact-map-bg);
  font-family: var(--font-sans);
}

.contact-map__canvas .leaflet-tile-pane {
  position: relative;
}

.contact-map__canvas .leaflet-tile {
  filter:
    sepia(0.28)
    saturate(0.9)
    hue-rotate(300deg)
    brightness(1.04)
    contrast(0.96);
}

.contact-map__canvas .leaflet-tile-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(232, 204, 216, 0.22), rgba(212, 176, 192, 0.18)),
    radial-gradient(circle at 50% 42%, rgba(243, 230, 236, 0.35), transparent 58%);
  mix-blend-mode: soft-light;
}

.contact-map__canvas .leaflet-control-attribution {
  background: rgba(243, 230, 236, 0.82) !important;
  color: rgba(90, 60, 75, 0.55) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0.02em;
  padding: 2px 6px !important;
  margin: 0 !important;
  border-radius: 0.25rem 0 0 0;
  z-index: 700 !important;
}

.contact-map__canvas .leaflet-control-attribution a {
  color: rgba(90, 60, 75, 0.7) !important;
}

.contact-map__pin-wrap {
  background: transparent;
  border: none;
}

.contact-map__marker {
  color: #E8CCD8;
  filter: drop-shadow(0 0 12px rgba(232, 204, 216, 0.28));
  line-height: 0;
}

.contact-map__pin-label {
  background: rgba(42, 26, 32, 0.88) !important;
  border: 1px solid rgba(232, 204, 216, 0.55) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 20px rgba(42, 26, 32, 0.22) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.55rem !important;
  margin: 0 !important;
}

.contact-map__pin-label::before {
  display: none !important;
}

.contact-map__hint {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.3s, opacity 0.3s;
}

.contact-map__hint:hover {
  color: var(--contact-pink);
  background: transparent;
  opacity: 1;
}

@media (min-width: 768px) and (max-height: 820px) {
  .contact-intro__line {
    font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  }

  .contact-intro__accent {
    font-size: clamp(2.1rem, 4vw, 2.85rem);
  }

  .contact-intro {
    margin-bottom: clamp(0.75rem, 2.5vh, 1.5rem);
  }

  .contact-map {
    height: clamp(11rem, 22vh, 14.5rem);
  }

  .contact-container {
    gap: clamp(1.15rem, 2.5vh, 1.75rem);
  }

  .contact-bottom {
    padding-top: clamp(0.5rem, 1.2vh, 0.85rem);
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }

  .contact-grid__item {
    padding: 0;
  }

  .contact-grid__item:first-child {
    padding-left: 0;
  }

  .contact-grid__item:nth-child(odd) {
    padding-right: 1rem;
    border-left: none;
  }

  .contact-grid__item:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--contact-line);
  }

  .contact-grid__item:nth-child(n + 3) {
    border-top: 1px solid var(--contact-line);
    padding-top: 1.5rem;
  }

  .contact-grid__value {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-bottom {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-social {
    order: 1;
  }

  .contact-map-block {
    order: 2;
  }

  .contact-social__link {
    overflow-wrap: anywhere;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-section {
    height: auto;
    max-height: none;
    min-height: 100dvh;
    padding:
      calc(var(--header-h) + 1.25rem)
      max(1.25rem, env(safe-area-inset-right))
      max(6.5rem, calc(env(safe-area-inset-bottom) + 5.75rem))
      max(1.25rem, env(safe-area-inset-left));
  }

  .contact-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(18, 8, 12, 0.82) 0%,
        rgba(28, 12, 18, 0.72) 35%,
        rgba(42, 18, 28, 0.45) 62%,
        rgba(18, 8, 12, 0.55) 100%
      ),
      linear-gradient(
        90deg,
        rgba(18, 8, 12, 0.7) 0%,
        rgba(28, 12, 18, 0.35) 55%,
        transparent 100%
      );
  }

  .contact-bg-video {
    object-position: 58% 40%;
  }

  .contact-watermark {
    width: 6.75rem;
    top: 50%;
    left: 50%;
    right: auto;
    opacity: 0.12;
    z-index: 0;
    transform: translate(-50%, -50%);
  }

  .contact-container {
    height: auto;
    gap: 1.75rem;
    min-width: 0;
  }

  .contact-intro {
    max-width: none;
    margin-bottom: 0.25rem;
  }

  .contact-intro__line {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
  }

  .contact-intro__accent {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

  .contact-intro__swoosh {
    width: 88%;
  }

  .contact-intro__text {
    max-width: none;
    font-size: 0.9rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.35rem;
  }

  .contact-grid__item {
    padding: 0;
    min-width: 0;
  }

  .contact-grid__item:nth-child(odd) {
    padding-right: 0.85rem;
    border-left: none;
  }

  .contact-grid__item:nth-child(even) {
    padding-left: 0.85rem;
    border-left: 1px solid var(--contact-line);
  }

  .contact-grid__item:nth-child(n + 3) {
    border-top: 1px solid var(--contact-line);
    padding-top: 1.35rem;
  }

  .contact-grid__value {
    font-size: 0.875rem;
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0.85rem;
  }

  .contact-social {
    order: 1;
  }

  .contact-social__link {
    min-height: 2.5rem;
    padding-block: 0.2rem;
  }

  .contact-map-block {
    order: 2;
    max-width: none;
  }

  .contact-map {
    height: 15rem;
  }

  .contact-map__hint {
    white-space: normal;
    line-height: 1.4;
    padding-block: 0.35rem;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .contact-grid__item,
  .contact-grid__item:nth-child(odd),
  .contact-grid__item:nth-child(even) {
    padding: 1.15rem 0;
    border-left: none;
  }

  .contact-grid__item:first-child {
    padding-top: 0;
  }

  .contact-grid__item:nth-child(n + 2) {
    border-top: 1px solid var(--contact-line);
  }

  .contact-grid__item:nth-child(n + 3) {
    padding-top: 1.15rem;
  }

  .contact-intro__line {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }

  .contact-intro__accent {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .contact-map {
    height: 14rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--card);
  padding: 2.75rem 0 1.75rem;
  position: relative;
  overflow: hidden;
}

.footer__watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(12rem, 30vw, 25rem);
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer__inner { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(108, 108, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44,44,44,0.6);
  box-shadow: none;
  transition: color 0.4s, border-color 0.4s;
}
.footer__social a:hover { color: var(--foreground); border-color: var(--graphite); }

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
}

.footer__brand p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 16rem;
  line-height: 1.45;
}

.footer__social { display: flex; gap: 0.75rem; }

.footer__col h3 { font-weight: 500; margin-bottom: 0.65rem; font-size: 0.9375rem; }
.footer__col li { margin-bottom: 0.4rem; }
.footer__col a, .footer__col li {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  transition: color 0.4s;
  line-height: 1.4;
}
.footer__col a:hover { color: var(--foreground); }

.footer__bottom {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(216,207,196,0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer__bottom p { font-size: 0.8125rem; color: var(--muted-foreground); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.4s;
}
.footer__legal a:hover { color: var(--foreground); }

.footer__credit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--graphite);
  text-decoration: none;
  transition: color 0.35s ease;
}

.footer__credit-label {
  position: relative;
  z-index: 1;
}

.footer__credit-badge {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  z-index: 2;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--lilac);
  color: var(--graphite-deep, #3f3f3d);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0.35rem);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
}

.footer__credit:hover,
.footer__credit:focus-visible {
  color: var(--graphite-deep, #3f3f3d);
}

.footer__credit:hover .footer__credit-badge,
.footer__credit:focus-visible .footer__credit-badge {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (hover: none) {
  .footer__credit-badge {
    display: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .about-split { grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr); gap: clamp(1.25rem, 2.5vw, 2rem); }

  .features > .container {
    display: flex;
    align-items: center;
    min-height: 100dvh;
    padding-block: clamp(1rem, 2.5dvh, 1.75rem);
  }

  .about-split {
    width: 100%;
    align-items: stretch;
    min-height: 0;
    max-height: min(86dvh, 40rem);
  }

  .about-split__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    max-height: min(86dvh, 40rem);
  }

  .about-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
  }

  .testimonials__columns { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 767px) {
  .testimonials__col--hide-mobile { display: none; }

  .container {
    padding-inline:
      max(1.25rem, env(safe-area-inset-left))
      max(1.25rem, env(safe-area-inset-right));
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(2.35rem, 9vw, 3.25rem);
  }

  .treatments {
    padding-block: clamp(2.75rem, 7vw, 3.75rem);
  }

  .treatments .section-title {
    font-size: clamp(2.25rem, 8.5vw, 3rem);
  }

  .treatment-card__body {
    column-gap: 0.75rem;
    row-gap: 0.85rem;
    padding-inline: 0;
  }

  .treatment-card__name {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem);
  }

  .treatment-card__desc {
    font-size: 0.875rem;
  }

  .treatments__footer {
    padding-top: 1.5rem;
  }

  .work-gallery.results-showcase {
    padding-block: clamp(2.75rem, 7vw, 3.75rem) clamp(3rem, 7vw, 4.25rem);
  }

  .work-gallery__container {
    max-width: min(80rem, calc(100% - 1.5rem));
  }

  .work-gallery__title {
    font-size: clamp(2.15rem, 9vw, 3rem);
    max-width: 100%;
  }

  .work-gallery__header {
    margin-bottom: 1.5rem;
  }

  .about-points {
    max-width: none;
  }

  .about-split {
    gap: 1.75rem;
  }

  .about-split .section-title {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    line-height: 1.15;
  }

  .about-split__media {
    max-height: 26rem;
  }

  .section-title--left { text-align: left; }
  .about-split__content { text-align: left; }
  .about-split__prose { margin-inline: 0; max-width: none; }

  .testimonials__wrap {
    height: 520px;
  }

  .testimonial-card {
    padding: 1.2rem 1.15rem;
  }

  .testimonial-card p {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
  }

  .footer {
    padding: 3.5rem 0 max(6.25rem, calc(env(safe-area-inset-bottom) + 5.5rem));
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .footer__brand p {
    max-width: none;
  }

  .footer__social a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .footer__col a,
  .footer__col li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer__col a {
    display: inline-flex;
    min-height: 2.25rem;
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-top: 1.25rem;
  }

  .footer__watermark {
    font-size: clamp(8rem, 42vw, 14rem);
  }
}

@media (max-width: 480px) {
  .header__brand-text {
    display: none;
  }

  .header__book:not(.header__book--mobile) {
    padding: 0.5rem 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero__title {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .work-card {
    flex-basis: min(82vw, 17rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .treatments .reveal,
  .treatment-card.reveal .treatment-card__num,
  .treatment-card.reveal .treatment-card__info,
  .treatment-card.reveal .treatment-card__desc,
  .treatment-card.reveal .treatment-card__stat {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    letter-spacing: inherit;
  }
  .treatment-card::after {
    transform: scaleX(1) !important;
  }
  .booking-badge__ring {
    animation: none !important;
  }
}

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

/* Hide EasyWeek built-in floating trigger permanently */
.EWBookingWidgetTrigger,
.EWBookingWidgetTrigger__text {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

