/*
  Playful-meets-Zen explorations.
  These are opt-in full-site directions selected with ?vibe=...
  The approved default keeps the Bathhouse layout with a blue-and-beige spa palette;
  query parameters still allow internal comparisons.
*/

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) {
  --line: 2px solid var(--navy);
  --radius: 30px;
}

/* Lavender Bathhouse hero carousel */
.lavender-carousel {
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::before,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::after,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait {
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .lavender-carousel {
  --slide-index: 0;
  position: relative;
  display: block;
  width: min(100%, 640px);
  aspect-ratio: 4 / 3;
  touch-action: pan-y;
}

.lavender-carousel__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--navy) 42%, transparent);
  border-radius: 44px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(40, 78, 104, .2), 14px 14px 0 color-mix(in srgb, var(--blue) 58%, #fff);
  cursor: grab;
  user-select: none;
}

.lavender-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(calc((var(--slide-index) * -100%) + var(--drag-offset, 0px)), 0, 0);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.lavender-carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.lavender-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lavender-carousel.is-dragging .lavender-carousel__viewport {
  cursor: grabbing;
}

.lavender-carousel.is-dragging .lavender-carousel__track {
  transition: none;
}

.lavender-carousel__slide figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(40, 78, 104, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 6px 20px rgba(40, 78, 104, .14);
  color: var(--ink, var(--navy));
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.lavender-carousel__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(40, 78, 104, .2);
  color: var(--ink, var(--navy));
  font: 900 1.55rem/1 var(--font-sans);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.lavender-carousel__arrow:hover {
  background: var(--yellow);
  color: var(--ink, var(--navy));
  transform: translateY(-50%) scale(1.06);
}

.lavender-carousel__arrow:focus-visible,
.lavender-carousel__dots button:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.lavender-carousel__arrow--prev {
  left: 16px;
}

.lavender-carousel__arrow--next {
  right: 16px;
}

.lavender-carousel__dots {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 6px 20px rgba(40, 78, 104, .14);
  backdrop-filter: blur(10px);
}

.lavender-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--navy) 28%, #fff);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.lavender-carousel__dots button[aria-pressed="true"] {
  width: 24px;
  border-radius: 999px;
  background: var(--navy);
}

.lavender-carousel__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 940px) {
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
    width: 100%;
    min-height: 0;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .lavender-carousel {
    width: min(100%, 700px);
  }
}

@media (max-width: 700px) {
  .lavender-carousel__viewport {
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(40, 78, 104, .18), 8px 8px 0 color-mix(in srgb, var(--blue) 58%, #fff);
  }

  .lavender-carousel__arrow {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .lavender-carousel__arrow--prev {
    left: 10px;
  }

  .lavender-carousel__arrow--next {
    right: 10px;
  }

  .lavender-carousel__slide figcaption {
    left: 13px;
    bottom: 12px;
    padding: 8px 11px;
    font-size: .67rem;
  }

  .lavender-carousel__dots {
    right: 13px;
    bottom: 12px;
    gap: 6px;
    padding: 7px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lavender-carousel__track,
  .lavender-carousel__arrow,
  .lavender-carousel__dots button {
    transition: none;
  }
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) body {
  background: #fff;
  font-weight: 500;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-header {
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 36px rgba(25, 38, 77, .06);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .nav-shell {
  min-height: 82px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .brand img {
  border-width: 2px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .brand span {
  letter-spacing: .035em;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-nav a {
  border: 1.5px solid transparent;
  background: transparent;
  padding: 9px 14px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-nav a:hover,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-nav a:focus-visible {
  border-color: color-mix(in srgb, var(--navy) 22%, transparent);
  background: var(--blue);
  transform: translateY(-1px);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-nav a[aria-current="page"] {
  border-color: color-mix(in srgb, var(--navy) 20%, transparent);
  background: var(--blue);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .nav-cta,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .button {
  border-width: 2px;
  box-shadow: none;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .nav-cta {
  background: var(--yellow);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .nav-cta:hover,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .nav-cta:focus-visible,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .button:hover,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .button:focus-visible {
  box-shadow: 0 9px 20px rgba(30, 47, 99, .12);
  transform: translateY(-2px);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .home-hero .button--navy,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .button--yellow {
  background: var(--yellow);
  color: var(--ink, var(--navy));
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .home-hero,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .page-hero {
  border-bottom: 0;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .bubble {
  border-width: 2px;
  opacity: .42;
  animation-duration: 10s;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .marquee {
  border: 0;
  padding-block: 10px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .section {
  padding-block: 88px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .section--tight {
  padding-top: 56px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .section--blue {
  border-block: 0;
  background: var(--blue);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .eyebrow {
  border-width: 1.5px;
  box-shadow: none;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .polaroid,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .feature-card,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .info-card,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .faq-card,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .price-card,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .side-card,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .contact-art,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .about-art,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .service-photo-band img {
  border-width: 1.5px;
  box-shadow: var(--vibe-shadow);
  transform: none;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .polaroid:nth-child(n),
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .feature-card:nth-child(n),
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .price-card,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .loyalty-card {
  transform: none;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .feature-card:nth-child(1),
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .feature-card:nth-child(2),
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .feature-card:nth-child(3) {
  background: #fff;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .feature-card img {
  border-width: 1px;
  border-radius: 22px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .loyalty-card {
  border-width: 1.5px;
  background: var(--blue);
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .loyalty-row,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .price-note {
  border-width: 1px;
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .info-card--navy,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .side-card--navy,
html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .cta-panel {
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .final-cta {
  background: var(--blue);
}

html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-footer {
  border-top: 0;
}

.editorial-hero__portrait .hero-real-image {
  display: none;
}

/* 01 — Bubble Retreat: playful-led, with softer boutique-spa finishes. */
html[data-theme="playful"][data-vibe="bubble-retreat"] {
  --navy: #253365;
  --navy-dark: #18234b;
  --yellow: #67d7cf;
  --blue: #e7f8f6;
  --blue-mid: #83cbc5;
  --ink-soft: #5a6682;
  --vibe-shadow: 0 14px 0 #e0f5f2, 0 24px 46px rgba(37, 51, 101, .10);
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .home-hero--editorial .home-hero__content {
  min-height: 760px;
  gap: 24px;
  padding-block: 62px 76px;
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .editorial-hero__art {
  min-height: 184px;
  width: 218px;
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .editorial-hero__portrait {
  width: 178px;
  border-width: 2px;
  border-radius: 46px;
  box-shadow: 8px 8px 0 var(--blue);
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .editorial-hero__kicker,
html[data-theme="playful"][data-vibe="bubble-retreat"] .eyebrow {
  background: var(--blue);
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .home-hero--editorial h1,
html[data-theme="playful"][data-vibe="bubble-retreat"] .page-hero h1 {
  text-shadow: 4px 4px 0 var(--blue);
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .section-heading h2,
html[data-theme="playful"][data-vibe="bubble-retreat"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="bubble-retreat"] .about-copy h2,
html[data-theme="playful"][data-vibe="bubble-retreat"] .final-cta h2 {
  text-shadow: 3px 3px 0 var(--blue);
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .feature-card:nth-child(1),
html[data-theme="playful"][data-vibe="bubble-retreat"] .feature-card:nth-child(3) {
  background: var(--blue);
}

html[data-theme="playful"][data-vibe="bubble-retreat"] .polaroid:nth-child(1) { transform: rotate(-.65deg); }
html[data-theme="playful"][data-vibe="bubble-retreat"] .polaroid:nth-child(3) { transform: rotate(.65deg); }

/* 02 — Modern Spa: the intended true middle ground. */
html[data-theme="playful"][data-vibe="modern-spa"] {
  --navy: #273159;
  --navy-dark: #1c2342;
  --yellow: #73cbc3;
  --blue: #edf8f6;
  --blue-mid: #9bcfc9;
  --ink-soft: #687087;
  --vibe-shadow: 0 18px 48px rgba(39, 49, 89, .11);
}

html[data-theme="playful"][data-vibe="modern-spa"] .display,
html[data-theme="playful"][data-vibe="modern-spa"] .home-hero h1,
html[data-theme="playful"][data-vibe="modern-spa"] .page-hero h1,
html[data-theme="playful"][data-vibe="modern-spa"] .section-heading h2,
html[data-theme="playful"][data-vibe="modern-spa"] .price-card h2,
html[data-theme="playful"][data-vibe="modern-spa"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="modern-spa"] .about-copy h2,
html[data-theme="playful"][data-vibe="modern-spa"] .loyalty-card h2,
html[data-theme="playful"][data-vibe="modern-spa"] .final-cta h2,
html[data-theme="playful"][data-vibe="modern-spa"] .cta-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.055em;
  text-transform: none;
}

html[data-theme="playful"][data-vibe="modern-spa"] :is(.display, .home-hero h1, .page-hero h1, .section-heading h2, .price-card h2, .service-photo-band h2, .about-copy h2, .loyalty-card h2, .final-cta h2, .cta-panel h2) em {
  font-style: italic;
  font-weight: 400;
}

html[data-theme="playful"][data-vibe="modern-spa"] .feature-card h3,
html[data-theme="playful"][data-vibe="modern-spa"] .info-card h3,
html[data-theme="playful"][data-vibe="modern-spa"] .faq-card h3,
html[data-theme="playful"][data-vibe="modern-spa"] .side-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.025em;
  text-transform: none;
}

html[data-theme="playful"][data-vibe="modern-spa"] .eyebrow,
html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__kicker {
  border: 0;
  border-bottom: 2px solid var(--yellow);
  border-radius: 0;
  background: transparent;
  padding: 0 0 7px;
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .16em;
}

html[data-theme="playful"][data-vibe="modern-spa"] .eyebrow::before {
  content: "✦";
}

html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial .home-hero__content {
  min-height: 740px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .8fr);
  gap: clamp(48px, 7vw, 92px);
  justify-items: stretch;
  padding-block: 72px;
  text-align: left;
}

html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__copy {
  grid-row: auto;
  width: auto;
}

html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__art {
  grid-row: auto;
  min-height: 500px;
  width: auto;
}

html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__art::before {
  display: block;
  width: min(440px, 100%);
  background: var(--blue);
}

html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__portrait {
  width: min(405px, 92%);
  border-width: 1.5px;
  border-radius: 48% 48% 44% 44%;
  box-shadow: var(--vibe-shadow);
  transform: rotate(1deg);
}

html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__note {
  right: -4px;
  bottom: 26px;
  display: grid;
  border-width: 1px;
  box-shadow: 0 12px 30px rgba(39, 49, 89, .08);
}

html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__sparkle {
  left: 0;
  top: 62px;
  display: block;
  color: var(--yellow);
}

html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(5rem, 7.7vw, 7.8rem);
  line-height: .85;
  text-shadow: none;
}

html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial p {
  max-width: 570px;
  margin: 28px 0;
  color: var(--ink-soft);
}

html[data-theme="playful"][data-vibe="modern-spa"] .home-hero .button-row,
html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__proof {
  justify-content: flex-start;
}

html[data-theme="playful"][data-vibe="modern-spa"] .page-hero h1,
html[data-theme="playful"][data-vibe="modern-spa"] .section-heading h2,
html[data-theme="playful"][data-vibe="modern-spa"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="modern-spa"] .about-copy h2,
html[data-theme="playful"][data-vibe="modern-spa"] .final-cta h2 {
  text-shadow: none;
}

html[data-theme="playful"][data-vibe="modern-spa"] .polaroid figcaption,
html[data-theme="playful"][data-vibe="modern-spa"] .loyalty-row strong,
html[data-theme="playful"][data-vibe="modern-spa"] .price {
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .09em;
}

html[data-theme="playful"][data-vibe="modern-spa"] .polaroid,
html[data-theme="playful"][data-vibe="modern-spa"] .feature-card,
html[data-theme="playful"][data-vibe="modern-spa"] .info-card,
html[data-theme="playful"][data-vibe="modern-spa"] .faq-card,
html[data-theme="playful"][data-vibe="modern-spa"] .price-card,
html[data-theme="playful"][data-vibe="modern-spa"] .side-card {
  border-color: color-mix(in srgb, var(--navy) 24%, transparent);
}

html[data-theme="playful"][data-vibe="modern-spa"] .feature-card:nth-child(2) {
  background: var(--blue);
}

html[data-theme="playful"][data-vibe="modern-spa"] .marquee__track span {
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .14em;
}

/* 03 — Zen Club: calm-led, with just enough bubbles and personality. */
html[data-theme="playful"][data-vibe="zen-club"] {
  --navy: #303556;
  --navy-dark: #232741;
  --yellow: #8bcfc7;
  --blue: #f0f7f5;
  --blue-mid: #a8d5cf;
  --ink-soft: #6b7083;
  --vibe-shadow: 0 20px 54px rgba(48, 53, 86, .09);
}

html[data-theme="playful"][data-vibe="zen-club"] body {
  font-weight: 500;
  line-height: 1.7;
}

html[data-theme="playful"][data-vibe="zen-club"] .display,
html[data-theme="playful"][data-vibe="zen-club"] .home-hero h1,
html[data-theme="playful"][data-vibe="zen-club"] .page-hero h1,
html[data-theme="playful"][data-vibe="zen-club"] .section-heading h2,
html[data-theme="playful"][data-vibe="zen-club"] .price-card h2,
html[data-theme="playful"][data-vibe="zen-club"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="zen-club"] .about-copy h2,
html[data-theme="playful"][data-vibe="zen-club"] .loyalty-card h2,
html[data-theme="playful"][data-vibe="zen-club"] .final-cta h2,
html[data-theme="playful"][data-vibe="zen-club"] .cta-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.05em;
  text-transform: none;
}

html[data-theme="playful"][data-vibe="zen-club"] :is(.display, .home-hero h1, .page-hero h1, .section-heading h2, .price-card h2, .service-photo-band h2, .about-copy h2, .loyalty-card h2, .final-cta h2, .cta-panel h2) em {
  font-style: italic;
  font-weight: 400;
}

html[data-theme="playful"][data-vibe="zen-club"] .feature-card h3,
html[data-theme="playful"][data-vibe="zen-club"] .info-card h3,
html[data-theme="playful"][data-vibe="zen-club"] .faq-card h3,
html[data-theme="playful"][data-vibe="zen-club"] .side-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: none;
}

html[data-theme="playful"][data-vibe="zen-club"] .eyebrow,
html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__kicker {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
}

html[data-theme="playful"][data-vibe="zen-club"] .eyebrow::before {
  content: "·";
  color: var(--yellow);
  font-size: 1.35rem;
}

html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial .home-hero__content {
  min-height: 780px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  gap: clamp(54px, 8vw, 108px);
  justify-items: stretch;
  padding-block: 92px;
  text-align: left;
}

html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__copy {
  grid-row: auto;
  width: auto;
}

html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__art {
  grid-row: auto;
  min-height: 490px;
  width: auto;
}

html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__art::before {
  display: block;
  width: min(430px, 100%);
  border-radius: 46% 54% 48% 52%;
  background: var(--blue);
  transform: rotate(3deg);
}

html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__portrait {
  width: min(385px, 90%);
  border: 1px solid color-mix(in srgb, var(--navy) 20%, transparent);
  border-radius: 42px;
  box-shadow: var(--vibe-shadow);
  transform: none;
}

html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__note {
  right: -2px;
  bottom: 24px;
  display: grid;
  width: 122px;
  border: 1px solid color-mix(in srgb, var(--navy) 22%, transparent);
  color: var(--ink-soft);
  box-shadow: 0 14px 32px rgba(48, 53, 86, .07);
}

html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__sparkle {
  left: 8px;
  top: 58px;
  display: block;
  color: var(--yellow);
  font-size: 2.4rem;
}

html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4.9rem, 7.4vw, 7.5rem);
  line-height: .88;
  text-shadow: none;
}

html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial p {
  max-width: 550px;
  margin: 30px 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

html[data-theme="playful"][data-vibe="zen-club"] .home-hero .button-row,
html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__proof {
  justify-content: flex-start;
}

html[data-theme="playful"][data-vibe="zen-club"] .bubble {
  opacity: .26;
}

html[data-theme="playful"][data-vibe="zen-club"] .marquee {
  border-block: 1px solid color-mix(in srgb, var(--navy) 14%, transparent);
  background: #fff;
  color: var(--ink, var(--navy));
}

html[data-theme="playful"][data-vibe="zen-club"] .marquee__track span {
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
}

html[data-theme="playful"][data-vibe="zen-club"] .section {
  padding-block: 106px;
}

html[data-theme="playful"][data-vibe="zen-club"] .section--tight {
  padding-top: 72px;
}

html[data-theme="playful"][data-vibe="zen-club"] .page-hero {
  padding-block: 100px 88px;
  background: linear-gradient(180deg, #fff 0%, var(--blue) 160%);
}

html[data-theme="playful"][data-vibe="zen-club"] .page-hero h1,
html[data-theme="playful"][data-vibe="zen-club"] .section-heading h2,
html[data-theme="playful"][data-vibe="zen-club"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="zen-club"] .about-copy h2,
html[data-theme="playful"][data-vibe="zen-club"] .final-cta h2 {
  text-shadow: none;
}

html[data-theme="playful"][data-vibe="zen-club"] .polaroid {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

html[data-theme="playful"][data-vibe="zen-club"] .polaroid img {
  border-radius: 28px;
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe="zen-club"] .polaroid figcaption {
  padding-top: 16px;
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
}

html[data-theme="playful"][data-vibe="zen-club"] .feature-card,
html[data-theme="playful"][data-vibe="zen-club"] .info-card,
html[data-theme="playful"][data-vibe="zen-club"] .faq-card,
html[data-theme="playful"][data-vibe="zen-club"] .price-card,
html[data-theme="playful"][data-vibe="zen-club"] .side-card {
  border-color: color-mix(in srgb, var(--navy) 14%, transparent);
  background: #fff;
  box-shadow: none;
}

html[data-theme="playful"][data-vibe="zen-club"] .section--blue .feature-card {
  background: rgba(255, 255, 255, .78);
}

html[data-theme="playful"][data-vibe="zen-club"] .feature-card img {
  border: 0;
  border-radius: 24px;
}

html[data-theme="playful"][data-vibe="zen-club"] .loyalty-card {
  border: 0;
  box-shadow: none;
}

html[data-theme="playful"][data-vibe="zen-club"] .loyalty-row {
  border-color: color-mix(in srgb, var(--navy) 14%, transparent);
}

html[data-theme="playful"][data-vibe="zen-club"] .price-note {
  border: 0;
}

/* 04 — Wag & Wave Social: Kimi's graphic neighborhood spa-club direction. */
html[data-theme="playful"][data-vibe="wag-and-wave-social"] {
  --navy: #451b86;
  --navy-dark: #2d115d;
  --yellow: #25c7d3;
  --blue: #eee8f9;
  --blue-mid: #bce9e1;
  --ink-soft: #5e5270;
  --vibe-shadow: 8px 8px 0 #bce9e1;
  --radius: 22px;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .display,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero h1,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .page-hero h1,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .section-heading h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .price-card h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .about-copy h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .loyalty-card h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .final-cta h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .cta-panel h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .feature-card h3,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .info-card h3,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .faq-card h3,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .side-card h3 {
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .9;
  text-transform: uppercase;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] :is(.display, .home-hero h1, .page-hero h1, .section-heading h2, .price-card h2, .service-photo-band h2, .about-copy h2, .loyalty-card h2, .final-cta h2, .cta-panel h2) em {
  font-style: normal;
  font-weight: 400;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .button,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .nav-cta,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .price,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .loyalty-row strong,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .polaroid figcaption {
  font-family: "Titan One", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .055em;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .site-nav a {
  font-size: .79rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .site-nav a[aria-current="page"] {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial .home-hero__content {
  min-height: 730px;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: clamp(42px, 6vw, 82px);
  justify-items: stretch;
  padding-block: 70px 82px;
  text-align: left;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__copy {
  grid-row: auto;
  width: auto;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__art {
  grid-row: auto;
  min-height: 520px;
  width: auto;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__art::before {
  display: block;
  width: min(455px, 96%);
  aspect-ratio: 4 / 3;
  border: 2px solid var(--navy);
  border-radius: 34px;
  background: var(--blue) url("assets/generated/suds-oclock.webp") center / cover no-repeat;
  box-shadow: 12px 12px 0 var(--blue-mid);
  transform: none;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__portrait {
  position: absolute;
  left: 2px;
  bottom: 20px;
  width: 154px;
  border: 2px solid var(--navy);
  border-radius: 34px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--yellow);
  transform: rotate(-5deg);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__note {
  display: none;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__sparkle {
  left: auto;
  right: 3px;
  top: 48px;
  display: block;
  color: var(--yellow);
  font-size: 3.1rem;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__kicker,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .eyebrow {
  border: 2px solid var(--navy);
  background: var(--blue);
  font-family: "Titan One", Impact, sans-serif;
  font-weight: 400;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.8rem, 7.7vw, 7.75rem);
  line-height: .86;
  text-shadow: 4px 4px 0 var(--blue-mid);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial p {
  max-width: 590px;
  margin: 28px 0;
  color: var(--ink-soft);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero .button-row,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__proof {
  justify-content: flex-start;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .marquee {
  background-color: var(--navy);
  background-image: radial-gradient(circle at 10px 0, #fff 0 8px, transparent 9px);
  background-size: 20px 16px;
  background-repeat: repeat-x;
  padding-top: 18px;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .page-hero {
  background: linear-gradient(135deg, #fff 0 58%, var(--blue) 58% 100%);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .page-hero h1,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .section-heading h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .about-copy h2,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .final-cta h2 {
  text-shadow: 3px 3px 0 var(--blue-mid);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .polaroid,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .feature-card,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .price-card,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .side-card,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .contact-art,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .about-art,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .service-photo-band img {
  border: 2px solid var(--navy);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--blue-mid);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .info-card,
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .faq-card {
  border: 2px solid var(--navy);
  box-shadow: none;
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .feature-card:nth-child(1) { background: var(--blue); }
html[data-theme="playful"][data-vibe="wag-and-wave-social"] .feature-card:nth-child(3) { background: var(--blue-mid); }

html[data-theme="playful"][data-vibe="wag-and-wave-social"] .loyalty-card {
  border: 2px solid var(--navy);
  background: var(--blue-mid);
  box-shadow: 8px 8px 0 var(--navy);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] :is(.polaroid, .feature-card, .price-card, .side-card, .contact-art, .about-art) {
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms cubic-bezier(.2,.8,.2,1);
}

html[data-theme="playful"][data-vibe="wag-and-wave-social"] :is(.polaroid, .feature-card, .price-card, .side-card):hover {
  box-shadow: 11px 11px 0 var(--blue-mid);
  transform: translateY(-3px);
}

/* 05 — Blue Bathhouse: a calm, approachable spa atelier. */
html[data-theme="playful"][data-vibe="lavender-bathhouse"] {
  --navy: #284e68;
  --navy-dark: #18394f;
  --yellow: #92bfd7;
  --blue: #f2ede4;
  --blue-mid: #d9e8ef;
  --ink: #171717;
  --ink-soft: #4d4d4d;
  --vibe-shadow: 0 12px 32px rgba(40, 78, 104, .1);
  --radius: 18px;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .display,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero h1,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero h1,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section-heading h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .price-card h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .about-copy h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .loyalty-card h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .final-cta h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .cta-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .96;
  text-transform: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] :is(.display, .home-hero h1, .page-hero h1, .section-heading h2, .price-card h2, .service-photo-band h2, .about-copy h2, .loyalty-card h2, .final-cta h2, .cta-panel h2) em {
  font-style: italic;
  font-weight: 400;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card h3,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .info-card h3,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .faq-card h3,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .side-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.025em;
  text-transform: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .eyebrow,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__kicker {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .1em;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .eyebrow::before {
  content: "01";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--ink, var(--navy));
  font-size: .55rem;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .site-nav a[aria-current="page"] {
  position: relative;
  border-color: transparent;
  background: transparent;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .site-nav a[aria-current="page"]::before {
  content: none;
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 14px;
  background: var(--navy);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial .home-hero__content {
  min-height: 770px;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  justify-items: stretch;
  padding-block: 82px;
  text-align: left;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__copy {
  grid-row: auto;
  width: auto;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
  grid-row: auto;
  min-height: 540px;
  width: auto;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::before,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::after {
  content: "";
  position: absolute;
  display: block;
  width: 43%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
  border-radius: 999px 999px 24px 24px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--vibe-shadow);
  transform: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::before {
  left: 0;
  top: 76px;
  background-image: url("assets/generated/suds-oclock.webp");
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::after {
  right: 0;
  top: 26px;
  background-image: url("assets/generated/maximum-floof.webp");
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait {
  position: absolute;
  z-index: 3;
  left: 29%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
  border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
  border-radius: 999px 999px 24px 24px;
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(40, 78, 104, .12);
  transform: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait img {
  height: 100%;
  object-fit: cover;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait .hero-mascot-image {
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait .hero-real-image {
  display: block;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__note,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__sparkle {
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(4.6rem, 6.5vw, 6.5rem);
  line-height: .92;
  text-shadow: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial p {
  max-width: 550px;
  margin: 28px 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero .button-row,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__proof {
  justify-content: center;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__proof {
  border-block: 1px solid var(--yellow);
  padding-block: 13px;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .bubble {
  opacity: .2;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .marquee {
  border-block: 1px solid color-mix(in srgb, var(--navy) 16%, transparent);
  background: #fff;
  color: var(--ink, var(--navy));
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .marquee__track span {
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero {
  box-shadow: inset 14px 0 0 var(--navy);
  padding-block: 96px 84px;
  background: linear-gradient(180deg, #fff, var(--blue));
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero h1,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section-heading h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .service-photo-band h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .about-copy h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .final-cta h2 {
  text-shadow: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section {
  position: relative;
  box-shadow: inset 14px 0 0 var(--navy);
  padding-block: clamp(82px, 9vw, 124px);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section-heading::after {
  content: "";
  display: block;
  width: min(340px, 70%);
  height: 1px;
  margin: 24px auto 0;
  background: var(--yellow);
  box-shadow: 110px 0 0 -0.5px var(--yellow);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .polaroid,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .info-card,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .faq-card,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .price-card,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .side-card {
  border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
  border-radius: 18px;
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .polaroid img,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card img,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .contact-art,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .about-art,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .service-photo-band img {
  border-radius: 999px 999px 24px 24px;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-grid {
  counter-reset: bathhouse-ritual;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card {
  counter-increment: bathhouse-ritual;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card::before {
  content: "RITUAL 0" counter(bathhouse-ritual);
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--blue-mid);
  padding: 6px 10px;
  font-family: "Bowlby One SC", Impact, sans-serif;
  font-size: .58rem;
  letter-spacing: .08em;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card:nth-child(2) {
  background: var(--blue);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .loyalty-card {
  border: 1px solid color-mix(in srgb, var(--navy) 20%, transparent);
  background: var(--blue-mid);
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .price-note {
  border: 0;
  background: var(--blue-mid);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] :is(.polaroid, .feature-card, .info-card, .faq-card, .price-card, .side-card) {
  transition: transform 520ms cubic-bezier(.16,1,.3,1), box-shadow 520ms cubic-bezier(.16,1,.3,1);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] :is(.polaroid, .feature-card, .info-card, .faq-card, .price-card, .side-card):hover {
  box-shadow: 0 18px 42px rgba(40, 78, 104, .12);
  transform: translateY(-2px);
}

@media (max-width: 940px) {
  html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .nav-shell {
    min-height: 72px;
  }

  html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-nav {
    margin-bottom: 7px;
    border: 1px solid color-mix(in srgb, var(--navy) 16%, transparent);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--vibe-shadow);
    padding: 14px;
  }

  html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .site-nav .mobile-book {
    border-color: transparent;
    background: var(--yellow);
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial .home-hero__content,
  html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial .home-hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding-block: 54px 72px;
    text-align: center;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__copy,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__copy {
    grid-row: 2;
    width: min(100%, 760px);
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__art,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__art {
    grid-row: 1;
    min-height: 330px;
    width: min(430px, 100%);
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .home-hero .button-row,
  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__proof,
  html[data-theme="playful"][data-vibe="zen-club"] .home-hero .button-row,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__proof {
    justify-content: center;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial p,
  html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial p {
    margin-inline: auto;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial .home-hero__content,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial .home-hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    padding-block: 56px 74px;
    text-align: center;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__copy,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__copy {
    grid-row: 2;
    width: min(100%, 760px);
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__art,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
    grid-row: 1;
    min-height: 410px;
    width: min(500px, 100%);
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero .button-row,
  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__proof,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero .button-row,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__proof {
    justify-content: center;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial p,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial p {
    margin-inline: auto;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero::before {
    display: none;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section {
    box-shadow: none;
  }
}

@media (max-width: 700px) {
  html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .section,
  html[data-theme="playful"][data-vibe="zen-club"] .section {
    padding-block: 68px;
  }

  html[data-theme="playful"][data-vibe]:not([data-vibe="aqua-pop"]) .section--tight,
  html[data-theme="playful"][data-vibe="zen-club"] .section--tight {
    padding-top: 48px;
  }

  html[data-theme="playful"][data-vibe="bubble-retreat"] .home-hero--editorial .home-hero__content {
    min-height: auto;
    padding-block: 38px 58px;
  }

  html[data-theme="playful"][data-vibe="bubble-retreat"] .editorial-hero__art {
    min-height: 148px;
    width: 170px;
  }

  html[data-theme="playful"][data-vibe="bubble-retreat"] .editorial-hero__portrait {
    width: 138px;
    border-radius: 34px;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial .home-hero__content,
  html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial .home-hero__content {
    width: min(100% - 32px, 1180px);
    padding-block: 38px 60px;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__art,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__art {
    min-height: 240px;
    width: min(300px, 92%);
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__portrait,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__portrait {
    width: min(230px, 84%);
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__art::before,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__art::before {
    width: min(245px, 88%);
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__note,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__note {
    right: 0;
    bottom: -4px;
    width: 88px;
    font-size: .68rem;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .editorial-hero__sparkle,
  html[data-theme="playful"][data-vibe="zen-club"] .editorial-hero__sparkle {
    left: 0;
    top: 24px;
    font-size: 2rem;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .home-hero--editorial h1,
  html[data-theme="playful"][data-vibe="zen-club"] .home-hero--editorial h1 {
    font-size: clamp(3.8rem, 17vw, 5.45rem);
    line-height: .87;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .page-hero,
  html[data-theme="playful"][data-vibe="zen-club"] .page-hero {
    padding-block: 68px 62px;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .page-hero h1,
  html[data-theme="playful"][data-vibe="zen-club"] .page-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
    line-height: .87;
  }

  html[data-theme="playful"][data-vibe="modern-spa"] .section-heading h2,
  html[data-theme="playful"][data-vibe="zen-club"] .section-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: .93;
  }

  html[data-theme="playful"][data-vibe="zen-club"] .polaroid img {
    border-radius: 22px;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial .home-hero__content,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial .home-hero__content {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding-block: 38px 60px;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__art,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
    min-height: 300px;
    width: min(330px, 94%);
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__art::before {
    width: min(285px, 88%);
    border-radius: 24px;
    box-shadow: 8px 8px 0 var(--blue-mid);
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__portrait {
    left: 2px;
    bottom: 4px;
    width: 105px;
    border-radius: 24px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .editorial-hero__sparkle {
    right: 0;
    top: 20px;
    font-size: 2.1rem;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .home-hero--editorial h1 {
    font-size: clamp(3.45rem, 15.5vw, 5rem);
    line-height: .88;
    text-shadow: 3px 3px 0 var(--blue-mid);
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .page-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.65rem);
    line-height: .9;
  }

  html[data-theme="playful"][data-vibe="wag-and-wave-social"] .section-heading h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.5rem);
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::before,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::after {
    width: 40%;
    border-radius: 999px 999px 18px 18px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::before {
    top: 58px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::after {
    top: 16px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait {
    left: 30%;
    width: 40%;
    border-radius: 999px 999px 18px 18px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero--editorial h1 {
    font-size: clamp(3.25rem, 14.5vw, 4.7rem);
    line-height: .94;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero {
    padding-block: 66px 60px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero h1 {
    font-size: clamp(3.2rem, 14.5vw, 4.7rem);
    line-height: .94;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section-heading h2 {
    font-size: clamp(2.7rem, 12.5vw, 3.8rem);
    line-height: .96;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__proof {
    gap: 8px 12px;
    padding-block: 11px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .polaroid img,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .feature-card img,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .contact-art,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .about-art,
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .service-photo-band img {
    border-radius: 999px 999px 20px 20px;
  }
}

/* Keep the single-photo carousel above the earlier collage rules in the cascade. */
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::before,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art::after,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__portrait {
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] body {
  max-width: 100%;
  overflow-x: hidden;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] {
  max-width: 100%;
  overflow-x: hidden;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-hero::before {
  content: none;
  display: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .page-hero,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .section {
  box-shadow: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .marquee {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden !important;
  clip-path: inset(0);
  contain: layout paint;
  isolation: isolate;
  transform: translateZ(0);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .marquee__track {
  display: flex;
  width: max-content;
  min-width: max-content;
  flex-wrap: nowrap;
  animation: lavender-marquee 64s linear infinite;
  will-change: transform;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .marquee__group {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .marquee__group span {
  display: block;
  flex: 0 0 auto;
}

@keyframes lavender-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-service-card,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-process-step,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-fact-card {
  border: 1px solid color-mix(in srgb, var(--navy) 20%, transparent);
  border-radius: 18px;
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-service-copy h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-service-card h3,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-process-step h3,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-fact-card h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -.025em;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-know-section {
  background: var(--blue);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-service-card,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-process-step:nth-child(2),
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-fact-card:nth-child(2) {
  background: #fff;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-process-step:nth-child(1),
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-process-step:nth-child(3),
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-fact-card:nth-child(1),
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .home-fact-card:nth-child(3) {
  background: color-mix(in srgb, var(--blue-mid) 48%, #fff);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-section {
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--blue) 58%, #fff) 54%, #fff 100%);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-heading h2,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-step h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -.035em;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-heading h2 {
  font-weight: 500;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-heading h2 em {
  font-weight: 400;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-visual__main,
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-visual__inset {
  border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
  box-shadow: 0 20px 54px rgba(40, 78, 104, .14);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-visual__note {
  border: 1px solid var(--navy);
  background: var(--blue-mid);
  box-shadow: 5px 5px 0 var(--blue);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-step > span {
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--navy);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-ritual-cta {
  border: 1px solid color-mix(in srgb, var(--navy) 22%, transparent);
  background: #fff;
  box-shadow: var(--vibe-shadow);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-profile-grid {
  counter-reset: none;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-profile-grid .feature-card::before {
  content: attr(data-profile);
}

@media (max-width: 940px) {
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .editorial-hero__art {
    width: 100%;
    min-height: 0;
  }
}

/* Give the glow-up gallery more presence on wide desktop screens. */
html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .container {
  width: min(calc(100% - 96px), 1520px);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .photo-grid {
  gap: clamp(28px, 3.2vw, 48px);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .polaroid {
  border-radius: 24px;
  padding: clamp(14px, 1.2vw, 20px) clamp(14px, 1.2vw, 20px) clamp(20px, 1.8vw, 28px);
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .polaroid img {
  border-radius: 999px 999px 28px 28px;
}

html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .polaroid figcaption {
  padding-top: clamp(15px, 1.4vw, 22px);
  font-size: clamp(.92rem, 1vw, 1.14rem);
}

@media (max-width: 940px) {
  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section {
    overflow: hidden;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .container {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    padding-inline: 16px;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .photo-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    margin-inline: 0;
    justify-items: stretch;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .photo-grid > .polaroid {
    grid-column: auto;
    box-sizing: border-box;
    width: auto;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    justify-self: stretch;
    transform: none;
  }

  html[data-theme="playful"][data-vibe="lavender-bathhouse"] .spa-moments-section .polaroid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}
