/* ============================================================
   SOVA Events — styles.css (BEM)
   ============================================================ */

:root {
  /* Pastel palette */
  --cream: #FBF6EC;
  --cream-2: #F6EFE0;
  --warm-white: #FFFAF0;
  --butter: #F6D785;
  --butter-soft: #FBE7B0;
  --peach: #F8B496;
  --peach-soft: #FBD3BE;
  --baby-blue: #B8DBE8;
  --baby-blue-soft: #DDEDF3;
  --lavender: #D4C5E8;
  --lavender-soft: #EAE0F4;
  --sage: #BCD2B4;
  --sage-soft: #DBE6D2;

  /* Accent */
  --plum: #A6457A;
  --plum-deep: #7B2F58;
  --plum-soft: #F2D6E3;

  /* Neutrals */
  --ink: #2B2A28;
  --ink-2: #4A4844;
  --ink-3: #7B7771;
  --line: #E9DFCD;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(43,42,40,0.05), 0 8px 20px rgba(43,42,40,0.04);
  --shadow-md: 0 6px 16px rgba(43,42,40,0.06), 0 24px 48px rgba(43,42,40,0.06);
  --shadow-lg: 0 14px 30px rgba(43,42,40,0.08), 0 40px 80px rgba(43,42,40,0.10);

  --serif: "DM Serif Display", "Recoleta", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --hand: "Fredoka", "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.01em; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-display em { font-style: italic; color: var(--plum); }

.h-section {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-section em { font-style: italic; color: var(--plum); }

.lede { font-size: 18px; color: var(--ink-2); max-width: 56ch; }

/* ---------- Eyebrows / chips ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--plum);
}

.eyebrow-script {
  font-family: var(--hand);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--plum);
  display: inline-block;
}

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  cursor: pointer;
}
.chip--active {
  background: var(--plum);
  color: #fff;
}

/* ---------- Buttons (bubble-style) ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
/* Bubble shine — white highlight on top of every button */
.btn::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 8%;
  width: 38%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0.1) 60%, transparent 80%);
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity .25s, transform .25s;
  z-index: -1;
}
.btn:hover::before { opacity: 1; transform: translateY(-1px); }

/* keep button content above the shine */
.btn > * { position: relative; z-index: 1; }

/* Plum CTA */
.btn--primary,
.btn--accent {
  background: radial-gradient(circle at 30% 25%, #c2588e, var(--plum) 55%, #97406e);
  color: #fff;
  box-shadow:
    inset 0 -4px 8px rgba(43,42,40,0.18),
    inset 0 2px 4px rgba(255,255,255,0.25),
    0 6px 0 0 var(--plum-deep),
    0 14px 30px rgba(166,69,122,0.28);
}
.btn--primary:hover,
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -4px 8px rgba(43,42,40,0.18),
    inset 0 3px 6px rgba(255,255,255,0.30),
    0 8px 0 0 var(--plum-deep),
    0 22px 44px rgba(166,69,122,0.34);
}
.btn--primary:active,
.btn--accent:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 -2px 4px rgba(43,42,40,0.15),
    0 2px 0 0 var(--plum-deep),
    0 6px 14px rgba(166,69,122,0.20);
}

/* Ghost — outlined bubble */
.btn--ghost {
  background: rgba(255,255,255,0.4);
  color: var(--plum);
  border: 1.5px solid var(--plum);
  box-shadow:
    inset 0 -2px 4px rgba(166,69,122,0.10),
    inset 0 2px 4px rgba(255,255,255,0.5),
    0 4px 14px rgba(166,69,122,0.10);
}
.btn--ghost::before {
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.15) 60%, transparent 80%);
}
.btn--ghost:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.18),
    inset 0 2px 4px rgba(255,255,255,0.25),
    0 6px 0 0 var(--plum-deep),
    0 16px 32px rgba(166,69,122,0.25);
}

/* Soft — white bubble */
.btn--soft {
  background: radial-gradient(circle at 30% 25%, #ffffff, #f6efe0 90%);
  color: var(--ink);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.06),
    inset 0 2px 4px rgba(255,255,255,0.7),
    0 6px 16px rgba(43,42,40,0.08),
    0 2px 4px rgba(43,42,40,0.04);
}
.btn--soft::before {
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.2) 60%, transparent 80%);
}
.btn--soft:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.06),
    inset 0 3px 5px rgba(255,255,255,0.9),
    0 12px 24px rgba(43,42,40,0.12),
    0 2px 4px rgba(43,42,40,0.04);
}

/* Green (Foundation) */
.btn--green {
  background: radial-gradient(circle at 30% 25%, #1AA38F, #0A7B6C 55%, #075C50);
  color: #fff;
  box-shadow:
    inset 0 -4px 8px rgba(43,42,40,0.18),
    inset 0 2px 4px rgba(255,255,255,0.25),
    0 5px 0 #075C50,
    0 14px 30px rgba(10,123,108,0.28);
}
.btn--green:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -4px 8px rgba(43,42,40,0.18),
    inset 0 3px 6px rgba(255,255,255,0.30),
    0 7px 0 #075C50,
    0 22px 44px rgba(10,123,108,0.34);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--plum);
  font-weight: 700;
  font-size: 14px;
  transition: gap .2s;
  margin-top: 16px;
}
.link-arrow:hover { gap: 12px; }
.link-arrow--butter { color: var(--butter); }

.round-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.round-btn::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  width: 42%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.15) 55%, transparent 80%);
  filter: blur(1.5px);
  pointer-events: none;
  z-index: -1;
}
.round-btn > * { position: relative; z-index: 1; }
.round-btn--ghost {
  background: radial-gradient(circle at 30% 25%, #ffffff, #f6efe0 90%);
  border: 1.5px solid var(--line);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.06),
    inset 0 2px 4px rgba(255,255,255,0.7),
    0 6px 16px rgba(43,42,40,0.08);
}
.round-btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.06),
    inset 0 3px 5px rgba(255,255,255,0.9),
    0 10px 20px rgba(43,42,40,0.12);
}
.round-btn--accent {
  background: radial-gradient(circle at 30% 25%, #c2588e, var(--plum) 55%, #97406e);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.18),
    inset 0 2px 4px rgba(255,255,255,0.25),
    0 4px 0 var(--plum-deep),
    0 8px 18px rgba(166,69,122,0.25);
}
.round-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.18),
    inset 0 3px 6px rgba(255,255,255,0.30),
    0 6px 0 var(--plum-deep),
    0 12px 24px rgba(166,69,122,0.32);
}
.round-btn--soft {
  width: 44px; height: 44px;
  background: radial-gradient(circle at 30% 25%, #ffffff, #f6efe0 90%);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.06),
    inset 0 2px 4px rgba(255,255,255,0.7),
    0 6px 16px rgba(43,42,40,0.08);
}
.round-btn--soft:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.06),
    inset 0 3px 5px rgba(255,255,255,0.9),
    0 10px 20px rgba(43,42,40,0.12);
}
.round-btn:disabled,
.round-btn.swiper-button-disabled { opacity: .35; cursor: default; pointer-events: none; }

/* ---------- Section head ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-head--center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.section-head__lede {
  margin-top: 14px;
}
.section-head__lede--center { margin-inline: auto; }
.section-head__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------- Animations ---------- */
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.bob { animation: bob 5s ease-in-out infinite; }

/* ---------- Per-section bubble layer ---------- */
.section, .gallery-page__head, .catalog-head, .service-head, .about-hero {
  position: relative;
}
.section-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-bubbles .bubble { position: absolute; opacity: 0.55; }
/* lift content above the bubble layer */
.section > .wrap, .gallery-page__head > .wrap, .catalog-head > .wrap, .service-head > .wrap, .about-hero > .wrap {
  position: relative;
  z-index: 1;
}

/* ---------- Decorative Bubbles ---------- */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(184,219,232,0.4) 40%, rgba(212,197,232,0.25));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset -4px -4px 10px rgba(166,69,122,0.08),
    0 4px 16px rgba(184,219,232,0.4);
  pointer-events: none;
  animation: bob 6s ease-in-out infinite;
}
.bubble--xs { width: 22px;  height: 22px; }
.bubble--sm { width: 36px;  height: 36px; }
.bubble--md { width: 56px;  height: 56px; }
.bubble--lg { width: 84px;  height: 84px; animation-duration: 7s; }
.bubble--xl { width: 120px; height: 120px; animation-duration: 8s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Image placeholders ---------- */
.imgph {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(43,42,40,0.04) 0 8px, transparent 8px 16px),
    var(--ph-bg, var(--peach-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  background: rgba(255,250,240,0.85);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(43,42,40,0.25);
  max-width: 80%;
  color: var(--ink-2);
  text-align: center;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 16px;
  z-index: 60;
  margin: 16px auto 0;
  width: calc(100% - 48px);
  max-width: 1280px;
}
.nav__inner {
  background: rgba(255,250,240,0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(43,42,40,0.08);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(43,42,40,0.06);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.nav__word {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
}
.nav__script {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--plum);
  margin-left: -2px;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.nav__link {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav__link:hover { background: var(--cream-2); color: var(--ink); }

.nav__cta {
  padding: 12px 22px;
  font-size: 14px;
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  background: rgba(255,250,240,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(43,42,40,0.08);
  border-radius: 22px;
  margin-top: 10px;
  padding: 14px 18px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav__mobile-link {
  padding: 10px 6px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(43,42,40,0.06);
}
.nav__mobile-link:last-child { border-bottom: none; }

@media (max-width: 880px) {
  .nav__links,
  .nav__cta { display: none; }
  /* logo | cart | menu — all in one row */
  .nav__inner { grid-template-columns: 1fr auto auto; gap: 14px; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }
  .nav__logo-img { height: 58px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 24px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}
.hero__blob--lavender {
  top: 80px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--lavender-soft), transparent 70%);
}
.hero__blob--peach {
  top: 200px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--peach-soft), transparent 70%);
}
.hero__blob--sage {
  bottom: -100px; left: 30%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--sage-soft), transparent 70%);
}

.hero__wrap {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero__title { margin-top: 22px; }
.hero__lede { margin-top: 22px; }
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero__avatars { display: flex; }
.hero__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-left: -10px;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatars--small .hero__avatar {
  width: 24px; height: 24px;
  border-width: 2px;
  margin-left: -8px;
}
.hero__avatars--small .hero__avatar:first-child { margin-left: 0; }
.hero__stars { display: flex; gap: 2px; }
.hero__trust-line {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
}

.hero__collage {
  position: relative;
  height: 660px;
}
.hero__back-blob {
  position: absolute;
  top: 30px; right: 0;
  width: 98%; height: 540px;
  border-radius: 50% 46% 52% 48% / 48% 52% 48% 52%;
  background: linear-gradient(160deg, #FBE7B0 0%, #F8B496 55%, #F2D6E3 100%);
  filter: blur(2px);
  box-shadow: var(--shadow-lg);
}
.hero__sun {
  position: absolute;
  top: 80px; right: 40px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255,250,240,0.95), rgba(246,215,133,0.55) 50%, rgba(248,180,150,0) 75%);
}
.hero__mascot {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  max-width: 92%;
  max-height: 600px;
  width: auto;
  object-fit: contain;
  z-index: 4;
  filter: drop-shadow(0 30px 40px rgba(43,42,40,0.18)) drop-shadow(0 8px 16px rgba(43,42,40,0.10));
}
.hero__bubble {
  z-index: 3;
}

.hero__chip {
  position: absolute;
  background: #fff;
  border-radius: 22px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
}
.hero__chip-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.10),
    inset 0 2px 4px rgba(255,255,255,0.55),
    0 4px 10px rgba(43,42,40,0.10);
}
.hero__chip-icon::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  width: 45%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.7), transparent 65%);
  filter: blur(1px);
  pointer-events: none;
}
.hero__chip-icon > svg {
  position: relative;
  z-index: 1;
}
.hero__chip-meta {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}
.hero__chip-title {
  font-size: 14px;
  font-weight: 700;
}
.hero__chip-rating {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--serif);
  line-height: 1;
}
.hero__chip-stat {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}
.hero__chip-stat span { color: var(--butter); }
.hero__chip-substat {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}
.hero__chip-text {
  font-size: 13px;
  font-weight: 700;
}
.hero__chip--tl { top: 60px; left: -10px; }
.hero__chip--mr { top: 32%; right: -8px; }
.hero__chip--br {
  bottom: 20px; right: -16px;
  background: var(--plum);
  color: #fff;
  border-radius: 24px;
  padding: 16px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero__chip--bl {
  bottom: 60px; left: 4px;
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
}

.hero__featured {
  margin-top: 90px;
  position: relative;
}
.hero__featured-eyebrow {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--plum);
  text-align: center;
  margin-bottom: 18px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
/* Swiper-driven marquee: continuous autoplay, no transition timing */
.marquee .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.marquee .swiper-slide.press-pill-slide {
  width: auto;
  display: flex;
  align-items: center;
}

.press-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 20px;
  padding: 14px 26px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: inset -6px -8px 14px rgba(255,255,255,0.35), inset 4px 4px 10px rgba(43,42,40,0.06), 0 8px 18px rgba(43,42,40,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}
.press-pill--butter { background: linear-gradient(135deg, #FBE7B0, #F6D785); color: var(--ink); transform: rotate(-2deg); }
.press-pill--peach { background: linear-gradient(135deg, #FBD3BE, #F8B496); color: var(--ink); transform: rotate(1.5deg); }
.press-pill--plum { background: linear-gradient(135deg, #F2D6E3, #A6457A); color: #fff; transform: rotate(-1deg); }
.press-pill--blue { background: linear-gradient(135deg, #DDEDF3, #B8DBE8); color: var(--ink); transform: rotate(2deg); }
.press-pill--lavender { background: linear-gradient(135deg, #EAE0F4, #D4C5E8); color: var(--ink); transform: rotate(-1.5deg); }
.press-pill--sage { background: linear-gradient(135deg, #DBE6D2, #BCD2B4); color: var(--ink); transform: rotate(1deg); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  /* Image (collage) first, text below */
  .hero__collage { order: -1; height: 480px; }
  .hero__text { order: 0; }
  /* Rounder, balanced orange blob (not stretched) */
  .hero__back-blob {
    width: 360px;
    height: 360px;
    top: 60px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 50%;
  }
  .hero__sun { width: 280px; height: 280px; left: 50%; right: auto; transform: translateX(-50%); }
  .hero__mascot { max-height: 440px; }
  .hero__chip--tl { top: 20px; left: -4px; padding: 10px 12px; }
  .hero__chip--mr { right: -4px; padding: 10px 12px; }
  .hero__chip--br { bottom: 0; right: -4px; padding: 12px 16px; }
  .hero__chip--br .hero__chip-stat { font-size: 22px; }
  .hero__chip--bl { bottom: 30px; left: 0; }
  .hero__wrap { padding-top: 24px; }
}

/* ============================================================
   SERVICES (always slider)
   ============================================================ */
.services__swiper {
  overflow: hidden;
  padding-bottom: 8px;
}
.services__swiper .swiper-slide { height: auto; }

.service-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card__visual {
  position: relative;
  height: 240px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.service-card__visual::before,
.service-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.service-card__visual::before {
  top: -40px; right: -40px;
  width: 180px; height: 180px;
}
.service-card__visual::after {
  bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.25);
}
.service-card__icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff, #f5f0e7 85%);
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 -6px 12px rgba(43,42,40,0.08),
    inset 0 4px 8px rgba(255,255,255,0.9),
    0 14px 36px rgba(43,42,40,0.14),
    0 4px 8px rgba(43,42,40,0.06);
}
.service-card__icon::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 20%;
  width: 42%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.9), transparent 65%);
  filter: blur(2px);
  pointer-events: none;
}
.service-card__icon > svg {
  position: relative;
  z-index: 1;
}
.service-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-card__photo { transform: scale(1.04); }
/* When a photo is used, hide the deco circles for cleaner look */
.service-card__visual:has(.service-card__photo)::before,
.service-card__visual:has(.service-card__photo)::after {
  display: none;
}
.service-card__body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}
.service-card__text {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.services__pagination {
  margin-top: 28px;
  position: relative !important;
  text-align: center;
}
.services__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================================
   ADDITIONAL SERVICES (always slider — same look as services)
   ============================================================ */
.additional__swiper {
  overflow: hidden;
  padding-bottom: 8px;
}
.additional__swiper .swiper-slide { height: auto; }

/* swiper pagination shared */
.swiper-pagination {
  margin-top: 28px;
  position: relative !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--line);
  opacity: 1;
  border-radius: 999px;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  width: 28px;
  background: var(--plum);
}

/* When mobile-slider grid is NOT yet initialized as Swiper (i.e. on desktop),
   make the .swiper-wrapper transparent to layout so the grid template applies
   to the actual cells (cards), not to the swiper-wrapper container. */
[data-mobile-slider]:not(.swiper) > .swiper-wrapper {
  display: contents;
}
[data-mobile-slider]:not(.swiper) > .swiper-pagination {
  display: none;
}

/* ============================================================
   WHY (benefit cards grid)
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: #fff;
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.benefit-card__badge {
  width: 60px; height: 60px;
  border-radius: 20px;
  display: grid; place-items: center;
  position: relative;
  overflow: visible;
  box-shadow:
    inset 0 -4px 8px rgba(43,42,40,0.10),
    inset 0 3px 6px rgba(255,255,255,0.55),
    inset 2px 0 4px rgba(255,255,255,0.35),
    0 8px 18px rgba(43,42,40,0.14),
    0 2px 4px rgba(43,42,40,0.06);
}
.benefit-card__badge::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  width: 50%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.15) 60%, transparent 80%);
  filter: blur(1.5px);
  pointer-events: none;
  z-index: 0;
}
.benefit-card__badge > svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(43,42,40,0.10));
}
.benefit-card__dot {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow:
    inset 0 -2px 3px rgba(43,42,40,0.15),
    inset 0 1px 2px rgba(255,255,255,0.5),
    0 2px 4px rgba(43,42,40,0.15);
  z-index: 2;
}
.benefit-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  margin-top: 18px;
}
.benefit-card__text {
  color: var(--ink-2);
  margin-top: 8px;
  font-size: 15px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ---- Hero card ---- */
.about-hero {
  padding: 24px 0 16px;
}
.about-hero__card {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,197,232,0.55), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(248,180,150,0.45), transparent 55%),
    var(--lavender-soft);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  padding: 56px 56px 56px;
  overflow: hidden;
  box-shadow:
    inset -10px -14px 30px rgba(255,255,255,0.5),
    inset 6px 8px 18px rgba(43,42,40,0.04),
    0 12px 30px rgba(43,42,40,0.06),
    0 30px 60px rgba(43,42,40,0.06);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero__eyebrow { display: inline-block; }
.about-hero__title {
  margin-top: 14px;
  font-size: clamp(40px, 5.4vw, 72px);
}
.about-hero__lede { margin-top: 18px; max-width: 52ch; }
.about-hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-hero__photo {
  position: relative;
  height: 100%;
  background: transparent;
  display: grid;
  place-items: center;
}
.about-hero__photo img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
}

@media (max-width: 880px) {
  .about-hero__card {
    padding: 0;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .about-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  /* Photo first, then text + buttons */
  .about-hero__photo {
    order: -1;
    overflow: hidden;
  }
  .about-hero__text { order: 0; }
  .about-hero__photo img {
    max-height: none;
    width: 112%;
    max-width: none;
    margin: 0 -6%;
  }
  /* Two CTAs side by side */
  .about-hero__ctas { flex-wrap: nowrap; gap: 10px; }
  .about-hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* ===== About hero — cinematic FULLSCREEN video background ===== */
.about-hero:has(.about-hero__card--video) {
  padding: 0;
  margin-top: -130px;           /* pull up beneath the floating sticky nav */
}
.about-hero:has(.about-hero__card--video) > .wrap {
  max-width: none;
  padding: 0;
  margin: 0;
}
.about-hero__card--video {
  background: #160d1c;
  min-height: 120vh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
}
.about-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(22,13,28,0.90) 0%, rgba(22,13,28,0.64) 40%, rgba(22,13,28,0.24) 72%, rgba(22,13,28,0.06) 100%),
    linear-gradient(180deg, rgba(22,13,28,0.30) 0%, rgba(22,13,28,0.05) 30%, rgba(22,13,28,0.50) 100%);
}
.about-hero__card--video .about-hero__grid {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 60px;     /* top padding clears the floating nav */
  z-index: 2;
}
.about-hero__card--video .about-hero__text { max-width: 640px; }
.about-hero__card--video .about-hero__eyebrow { color: #ffd9a8; }
.about-hero__card--video .about-hero__title { color: #fff; }
.about-hero__card--video .about-hero__title em { color: #f4b8db; }
.about-hero__card--video .about-hero__lede { color: rgba(255,255,255,0.88); }
.about-hero__card--video .bubble { opacity: 0.30; z-index: 1; }
.about-hero__card--video .btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.78);
}
.about-hero__card--video .btn--ghost:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 880px) {
  .about-hero:has(.about-hero__card--video) { margin-top: -120px; }
  .about-hero__card--video {
    min-height: 100vh;
    padding: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  .about-hero__card--video .about-hero__grid { padding: 120px 22px 60px; }
  .about-hero__card--video .about-hero__text { max-width: none; order: 0; }
}

/* ---- Our Story ---- */
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
.about-story__lede { margin-top: 18px; max-width: 56ch; }
.about-story__p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}
.about-story__photo {
  position: relative;
  border-radius: 32px;
  overflow: visible;
}
.about-story__photo img {
  width: 100%;
  border-radius: 32px;
  display: block;
  box-shadow: var(--shadow-md);
}
/* Portrait variant — pastel background card with centered figure */
.about-story__photo--portrait {
  background: radial-gradient(circle at 30% 25%, var(--lavender-soft), var(--peach-soft) 90%);
  border-radius: 32px;
  padding: 32px 32px 0;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 520px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
}
.about-story__photo--portrait img {
  width: auto;
  max-width: 100%;
  max-height: 560px;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 -8px 28px rgba(43,42,40,0.14));
  display: block;
  margin-bottom: 0;
}
.about-story__bubble { z-index: 2; }

@media (max-width: 880px) {
  .about-story__grid { grid-template-columns: 1fr; gap: 32px; }
  /* Portrait card hugs the photo instead of being a tall empty rectangle */
  .about-story__photo--portrait { min-height: 0; padding: 20px 20px 0; }
  .about-story__photo--portrait img { max-height: 460px; }
}

/* ---- "What We Create" grid ---- */
.create-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.create-card {
  position: relative;
  border-radius: 28px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset -8px -12px 24px rgba(255,255,255,0.45),
    inset 4px 6px 14px rgba(43,42,40,0.04),
    0 8px 24px rgba(43,42,40,0.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  color: var(--ink);
}
.create-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset -8px -12px 24px rgba(255,255,255,0.45),
    0 14px 32px rgba(43,42,40,0.10),
    0 28px 60px rgba(43,42,40,0.08);
}
.create-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 22px;
  width: 110px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1) 55%, transparent 75%);
  filter: blur(3px);
  pointer-events: none;
}
.create-card--peach    { background: var(--peach-soft); }
.create-card--blue     { background: var(--baby-blue-soft); }
.create-card--sage     { background: var(--sage-soft); }
.create-card--butter   { background: var(--butter-soft); }
.create-card--lavender { background: var(--lavender-soft); }
.create-card--plum     { background: var(--plum-soft); }

.create-card__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 25%, #fff, #f6efe0 90%);
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 -3px 6px rgba(43,42,40,0.08),
    inset 0 2px 4px rgba(255,255,255,0.7),
    0 6px 14px rgba(43,42,40,0.10);
}
.create-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  position: relative;
  z-index: 1;
}
.create-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .create-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .create-grid { grid-template-columns: 1fr; }
}

/* ---- "What We Create" carousel ---- */
.create-swiper {
  overflow: hidden;
  padding: 8px 4px;
  margin: 0 -4px;
}
.create-swiper__pagination { margin-top: 28px; position: relative !important; }

/* ============================================================
   BLOG — listing + post
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.blog-grid--small { gap: 20px; }

/* Blog list — tighter spacing between intro and cards */
.blog-page { padding-top: 24px; }
.blog-card[hidden] { display: none; }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-2);
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,250,240,0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--plum);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(43,42,40,0.10);
}

.blog-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-3);
}
.blog-card__title {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.blog-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}
.blog-card__body .link-arrow { margin-top: 4px; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card__media { aspect-ratio: 16 / 9; }
}

/* Single article ----------------------------------------- */
.blog-post__wrap { max-width: 1000px; }
.blog-post__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
  align-items: center;
}
.blog-post__tag {
  align-self: center;
  background: var(--plum-soft);
  color: var(--plum);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-post__title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.blog-post__meta {
  font-size: 14px;
  color: var(--ink-3);
  display: inline-flex;
  gap: 8px;
}
.blog-post__sep { opacity: 0.5; }

.blog-post__cover {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--cream-2);
}
.blog-post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.blog-post__body { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.blog-post__body p { margin: 0 0 18px; }
.blog-post__body h2 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  margin: 32px 0 14px;
}
.blog-post__body a { color: var(--plum); text-decoration: underline; }
.blog-post__body strong { color: var(--ink); }

.blog-post__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 24px;
  padding: 18px 22px;
  background: var(--cream-2);
  border-radius: 16px;
}
.blog-post__share-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-right: 4px;
}
.blog-post__share-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  text-decoration: none;
  border: 1px solid var(--line);
  transition: background .2s, transform .2s, color .2s;
}
.blog-post__share-btn:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}
.blog-post__share-btn.is-copied { background: var(--sage); color: #fff; }

.blog-post__back { margin-top: 24px; }

.blog-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.blog-post__nav-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s, background .25s, border-color .25s;
}
.blog-post__nav-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--plum);
}
.blog-post__nav-card--next { text-align: right; }
.blog-post__nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
}
.blog-post__nav-card--next .blog-post__nav-label { justify-content: flex-end; }
.blog-post__nav-title {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
}

@media (max-width: 600px) {
  /* Two compact buttons on the sides, no article titles */
  .blog-post__nav { grid-template-columns: auto auto; justify-content: space-between; }
  .blog-post__nav-title { display: none; }
  .blog-post__nav-card { padding: 14px 18px; }
  .blog-post__nav-card--next { text-align: right; }
  .blog-post__nav-card--next .blog-post__nav-label { justify-content: flex-end; }
}

.blog-related .blog-grid { margin-top: 28px; }

/* ============================================================
   CONTACT — BUBBLE PLATES
   ============================================================ */
.contact-bubbles-section { padding-top: 32px; }
@media (max-width: 900px) {
  /* 24px gap between the intro text and the contact cards */
  .contact-bubbles-section { padding-top: 24px; }
  .gallery-page__head { padding-bottom: 0; }
}
.contact-bubbles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.contact-bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 26px 30px;
  border-radius: 28px;
  text-decoration: none;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.85), rgba(255,255,255,0) 45%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.35), rgba(255,255,255,0) 55%),
    var(--peach-soft);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset -6px -8px 18px rgba(166,69,122,0.05),
    0 8px 24px rgba(43,42,40,0.06);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.contact-bubble::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.85), rgba(255,255,255,0.1) 60%, transparent);
  pointer-events: none;
}
.contact-bubble:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 16px 36px rgba(43,42,40,0.10);
}
.contact-bubble--peach    { background-color: var(--peach-soft); }
.contact-bubble--lavender { background-color: var(--lavender-soft); }
.contact-bubble--baby-blue{ background-color: var(--baby-blue-soft); }
.contact-bubble--sage     { background-color: var(--sage-soft); }

.contact-bubble__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 14px rgba(43,42,40,0.08), inset 0 1px 0 #fff;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.contact-bubble:hover .contact-bubble__icon {
  transform: rotate(-8deg) scale(1.06);
}
.contact-bubble__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-bubble__value {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  overflow-wrap: anywhere;   /* never clip long values like the email */
}
/* The email is longer than the phone/address — size it to fit the card */
.contact-bubble--lavender .contact-bubble__value {
  font-size: 18px;
  letter-spacing: -0.01em;
}
.contact-bubble__hint {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .contact-bubbles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .contact-bubbles { grid-template-columns: 1fr; }
}

/* ============================================================
   SOVA ECOSYSTEM (cards carousel — bubble style)
   ============================================================ */
.ecosystem { position: relative; }
.ecosystem__swiper { padding: 8px 4px; margin: 24px -4px 0; overflow: hidden; }

.eco-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  height: auto;
}
.ecosystem__swiper { height: auto !important; }
.ecosystem__swiper .swiper-wrapper { height: auto !important; align-items: stretch !important; }
.ecosystem__swiper .swiper-slide { height: auto !important; align-self: stretch; }
.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.eco-card__visual {
  position: relative;
  height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  margin: 14px 14px 0;
}
/* Pastel color variants — match site palette */
.eco-card--lavender   .eco-card__visual { background: var(--lavender-soft); }
.eco-card--sage       .eco-card__visual { background: var(--sage-soft); }
.eco-card--peach      .eco-card__visual { background: var(--peach-soft); }
.eco-card--baby-blue  .eco-card__visual { background: var(--baby-blue-soft); }
.eco-card--butter     .eco-card__visual { background: var(--butter-soft); }
.eco-card--plum       .eco-card__visual { background: var(--plum-soft); }

/* Photo variant — image fills the card visual (e.g. Foundation) */
.eco-card__visual:has(.eco-card__photo) { background: var(--sage-soft); }
.eco-card__visual:has(.eco-card__photo) .eco-card__bubble,
.eco-card__visual:has(.eco-card__photo) .eco-card__logo { display: none; }
.eco-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.eco-card__photo--kozak { object-position: center 56%; }
.eco-card__photo--camp { object-position: center 45%; }
.eco-card__photo--ents { object-position: center 30%; }
.eco-card:hover .eco-card__photo { transform: scale(1.05); }
.eco-card__visual:has(.eco-card__photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,24,0) 50%, rgba(20,16,24,.34) 100%);
  pointer-events: none;
}

/* Decorative bubbles inside card visual */
.eco-card__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.2) 60%, transparent);
  border: 1px solid rgba(255,255,255,0.6);
  pointer-events: none;
  animation: bob 6s ease-in-out infinite;
}
.eco-card__bubble--1 { top: -20px; right: -20px; width: 90px; height: 90px; animation-delay: 0s; }
.eco-card__bubble--2 { bottom: -30px; left: -10px; width: 70px; height: 70px; animation-delay: 1.2s; }
.eco-card__bubble--3 { top: 30%; left: 20%; width: 28px; height: 28px; animation-delay: 2.4s; }

.eco-card__logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.eco-card__logo svg { flex-shrink: 0; }
.eco-card__logo svg [fill="#fff"],
.eco-card__logo svg [stroke="#fff"] { /* SVGs use white — overridden via variant rules below */ }
.eco-card--lavender   .eco-card__logo,
.eco-card--sage       .eco-card__logo,
.eco-card--peach      .eco-card__logo,
.eco-card--baby-blue  .eco-card__logo,
.eco-card--butter     .eco-card__logo,
.eco-card--plum       .eco-card__logo { color: var(--plum); }

.eco-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.eco-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}
.eco-card__text {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.eco-card__body .link-arrow { margin-top: 14px; }

.ecosystem__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   FLOATING SOCIAL BUBBLES (WOW effect)
   ============================================================ */
.float-socials {
  position: relative;
  width: 100%;
  height: 540px;
  margin-top: 30px;
}

/* Ambient background bubbles */
.float-socials__bg {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(184,219,232,0.4) 50%, rgba(212,197,232,0.25));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset -4px -4px 10px rgba(166,69,122,0.06), 0 4px 16px rgba(184,219,232,0.4);
  pointer-events: none;
  animation: bubble-drift 14s ease-in-out infinite;
}
.float-socials__bg--1 { top: 12%; left: -4%;  width: 90px;  height: 90px;  animation-delay: 0s;   animation-duration: 14s; }
.float-socials__bg--2 { top: 36%; left: -1%;  width: 60px;  height: 60px;  animation-delay: 2s;   animation-duration: 12s; }
.float-socials__bg--3 { bottom: 8%; left: -3%; width: 110px; height: 110px; animation-delay: 1.2s; animation-duration: 16s; }
.float-socials__bg--4 { top: 14%; right: -3%; width: 100px; height: 100px; animation-delay: 3s;   animation-duration: 15s; }
.float-socials__bg--5 { bottom: 16%; right: -2%; width: 70px; height: 70px; animation-delay: 4s;   animation-duration: 11s; }

@keyframes bubble-drift {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(20px, -15px); }
  50%      { transform: translate(-10px, -30px); }
  75%      { transform: translate(-25px, 10px); }
}

/* Center owl mascot — plain image, no effects */
.float-socials__owl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.float-socials__owl-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* keep blend mode so the source's black background disappears against the page */
  mix-blend-mode: screen;
}

@media (max-width: 720px) {
  .float-socials__owl { width: 240px; height: 240px; }
}

/* Big social bubbles */
.social-bubble {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 140px;
  height: 140px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: float-bob var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transform-origin: center center;
  z-index: 2;
}
.social-bubble__inner {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum);
  border: 3px solid rgba(255,255,255,0.95);
  box-shadow:
    inset 0 -8px 18px rgba(0,0,0,0.18),
    inset 0 6px 14px rgba(255,255,255,0.45),
    0 16px 36px rgba(43,42,40,0.18),
    0 4px 0 rgba(43,42,40,0.06);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, filter .3s;
  overflow: hidden;
}
/* Glossy highlight */
.social-bubble__inner::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 14%;
  width: 50%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85), rgba(255,255,255,0) 70%);
  pointer-events: none;
  filter: blur(2px);
}
.social-bubble__inner svg {
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.social-bubble__label {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .25s;
}
.social-bubble:hover .social-bubble__inner {
  transform: rotate(0deg) scale(1.12);
  box-shadow:
    inset 0 -8px 18px rgba(0,0,0,0.20),
    inset 0 6px 14px rgba(255,255,255,0.55),
    0 24px 50px rgba(43,42,40,0.28);
  filter: brightness(1.08);
}
.social-bubble:hover .social-bubble__label { opacity: 1; }

/* Brand colors */
.social-bubble--ig    .social-bubble__inner { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%); }
.social-bubble--tt    .social-bubble__inner { background: radial-gradient(circle at 35% 30%, #69e9ff, #ff0050 60%, #000 100%); }
.social-bubble--fb    .social-bubble__inner { background: radial-gradient(circle at 30% 25%, #5a9eff, #1877F2 70%); }
.social-bubble--yt    .social-bubble__inner { background: radial-gradient(circle at 30% 25%, #ff5252, #FF0000 70%, #b80000); }
.social-bubble--mail  .social-bubble__inner { background: radial-gradient(circle at 30% 25%, #c2588e, var(--plum) 60%, var(--plum-deep)); }
.social-bubble--phone .social-bubble__inner { background: radial-gradient(circle at 30% 25%, #f6c66e, #f6a93b 70%); }

@keyframes float-bob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(8px, -14px) rotate(2deg); }
  50%      { transform: translate(-6px, -22px) rotate(-2deg); }
  75%      { transform: translate(-12px, -8px) rotate(1deg); }
}

@media (max-width: 900px) {
  .float-socials { height: 620px; }
  .social-bubble { width: 92px; height: 92px; }
  .social-bubble__inner { width: 72px; height: 72px; }
  .social-bubble__inner svg { width: 30px; height: 30px; }
  .social-bubble__label { margin-top: 8px; font-size: 11px; }
  /* Re-distribute on mobile (avoid overlap) */
  .social-bubble--ig    { left: 10%; top: 5%; }
  .social-bubble--tt    { left: 62%; top: 12%; }
  .social-bubble--fb    { left: 6%;  top: 40%; }
  .social-bubble--yt    { left: 64%; top: 44%; }
  .social-bubble--mail  { left: 14%; top: 72%; }
  .social-bubble--phone { left: 62%; top: 78%; }
}

/* ============================================================
   SOCIAL ORBIT (animated)
   ============================================================ */
.social-orbit-section { padding: 80px 0 100px; overflow: hidden; }
.orbit {
  position: relative;
  width: min(560px, 100%);
  height: 560px;
  margin: 30px auto 0;
}
.orbit__bubble {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(184,219,232,0.45) 50%, rgba(212,197,232,0.3));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset -4px -4px 10px rgba(166,69,122,0.06), 0 6px 18px rgba(43,42,40,0.06);
  pointer-events: none;
  animation: bob 6s ease-in-out infinite;
}
.orbit__bubble--lg { width: 100px; height: 100px; animation-duration: 7s; }
.orbit__bubble--md { width: 70px; height: 70px; }
.orbit__bubble--sm { width: 44px; height: 44px; animation-duration: 5s; }

.orbit__core {
  position: absolute;
  top: 50%; left: 50%;
  width: 160px; height: 160px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 28% 22%, #ffffff, #fbe9f0 70%);
  border: 2px solid rgba(166,69,122,0.18);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -10px 20px rgba(166,69,122,0.08),
    0 18px 40px rgba(166,69,122,0.18);
  display: grid;
  place-items: center;
  z-index: 3;
  animation: orbit-pulse 4s ease-in-out infinite;
}
@keyframes orbit-pulse {
  0%, 100% { box-shadow: inset 0 1px 0 #fff, inset 0 -10px 20px rgba(166,69,122,0.08), 0 18px 40px rgba(166,69,122,0.18); }
  50%      { box-shadow: inset 0 1px 0 #fff, inset 0 -10px 20px rgba(166,69,122,0.08), 0 22px 60px rgba(166,69,122,0.30); }
}
.orbit__owl { animation: bob 5s ease-in-out infinite; }

.orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit__ring--outer {
  width: 460px; height: 460px;
  border: 2px dashed rgba(166,69,122,0.22);
  animation: orbit-spin 22s linear infinite;
}
.orbit__ring--inner {
  width: 280px; height: 280px;
  border: 2px dashed rgba(166,69,122,0.16);
  animation: orbit-spin 16s linear infinite reverse;
}
@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit__planet {
  position: absolute;
  top: 50%; left: 50%;
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: var(--plum);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(166,69,122,0.30), inset 0 1px 0 rgba(255,255,255,0.35);
  transform-origin: center center;
  transform: rotate(var(--angle)) translate(230px) rotate(calc(-1 * var(--angle)));
  transition: transform .3s, box-shadow .3s;
}
.orbit__ring--outer .orbit__planet {
  transform: rotate(var(--angle)) translate(230px) rotate(calc(-1 * var(--angle)));
}
.orbit__ring--inner .orbit__planet--small {
  width: 50px; height: 50px;
  margin: -25px 0 0 -25px;
  background: var(--plum-deep);
  transform: rotate(var(--angle)) translate(140px) rotate(calc(-1 * var(--angle)));
}
.orbit__planet:hover {
  box-shadow: 0 16px 32px rgba(166,69,122,0.45), inset 0 1px 0 rgba(255,255,255,0.45);
}
.orbit__counter-spin {
  display: grid;
  place-items: center;
  animation: counter-spin 22s linear infinite;
}
.orbit__ring--inner .orbit__counter-spin { animation-duration: 16s; animation-direction: normal; }
.orbit__ring--outer .orbit__counter-spin { animation-direction: reverse; }
@keyframes counter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit__planet--ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #515bd4); }
.orbit__planet--fb { background: #1877F2; }
.orbit__planet--tt { background: #000; }
.orbit__planet--yt { background: #FF0000; }

@media (max-width: 720px) {
  .orbit { width: 360px; height: 360px; }
  .orbit__core { width: 120px; height: 120px; }
  .orbit__ring--outer { width: 320px; height: 320px; }
  .orbit__ring--inner { width: 200px; height: 200px; }
  .orbit__planet { width: 52px; height: 52px; margin: -26px 0 0 -26px; transform: rotate(var(--angle)) translate(160px) rotate(calc(-1 * var(--angle))); }
  .orbit__ring--inner .orbit__planet--small { width: 42px; height: 42px; margin: -21px 0 0 -21px; transform: rotate(var(--angle)) translate(100px) rotate(calc(-1 * var(--angle))); }
}

/* ============================================================
   CONTACT MAP
   ============================================================ */
.contact-map {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-map iframe { display: block; }
@media (max-width: 768px) {
  .contact-map iframe { height: 300px; }
}
.contact-map__pin {
  position: absolute;
  top: 24px;
  left: 24px;
  pointer-events: none;
}
.contact-map__pin-bubble {
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(43,42,40,0.18);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--ink-2);
  border-left: 4px solid var(--plum);
}
.contact-map__pin-bubble strong {
  color: var(--ink);
  font-size: 15px;
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer__socials--icons .footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.footer__socials--icons .footer__social:hover {
  background: var(--plum);
  transform: translateY(-3px);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info__card {
  border-radius: 22px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.contact-info__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-info__value {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
a.contact-info__value:hover { color: var(--plum); }
.contact-info__hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 36px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form__title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.contact-form__sub {
  margin: -6px 0 6px;
  font-size: 14px;
  color: var(--ink-2);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px var(--plum-soft);
}
.contact-form .is-invalid {
  border-color: #D14B4B;
  box-shadow: 0 0 0 3px rgba(209,75,75,0.18);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'><path d='M6 9 L12 15 L18 9' stroke='%232B2A28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.contact-form__actions .btn { gap: 8px; flex-shrink: 0; }
.contact-form__note {
  margin: 0;
  flex: 1;
  text-align: right;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}
@media (max-width: 600px) {
  /* On mobile the note sits under the button, left-aligned */
  .contact-form__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-form__note { flex: none; text-align: left; }
}
.contact-form__success {
  background: var(--sage-soft);
  color: #2C5A2A;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
}

@media (max-width: 960px) {
  .contact-page__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-form { padding: 26px 22px 22px; border-radius: 22px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__title { font-size: 24px; }
}

/* ============================================================
   CHARACTERS PAGE
   ============================================================ */
.character-card[hidden] { display: none; }

/* Taller visual area on character cards — bigger photo */
.character-card .service-card__visual { height: 460px; }
@media (max-width: 720px) {
  .character-card .service-card__visual { height: 320px; }
}
@media (max-width: 420px) {
  .character-card .service-card__visual { height: 280px; }
}

/* Two-line description clamp on character cards */
.character-card .service-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
}

/* Swiper gallery inside the character card's image area */
.character-card .service-card__visual { padding: 0; }
.character-card__gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.character-card__gallery .character-card__swiper,
.character-card__gallery .character-card__swiper > .swiper-wrapper,
.character-card__gallery .character-card__swiper > .swiper-wrapper > .swiper-slide { height: 100% !important; }
.character-card__gallery .swiper-slide { display: grid; place-items: center; background: var(--cream-2); overflow: hidden; }
.character-card__gallery img,
.character-card__gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
/* Before Swiper initializes, show only the first slide filled — prevents the
   "all slides shrunk side-by-side, then snap to one" zoom flash on load */
.character-card__swiper:not(.swiper-initialized) .swiper-wrapper { display: block; height: 100%; }
.character-card__swiper:not(.swiper-initialized) .swiper-slide { width: 100%; height: 100%; }
.character-card__swiper:not(.swiper-initialized) .swiper-slide + .swiper-slide { display: none; }
/* Play-button overlay on the video slide */
.character-card__gallery [data-video-slide] {
  position: relative;
  cursor: pointer;
}
.character-card__gallery [data-video-slide]::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(43, 42, 40, 0.7);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M8 5v14l11-7z'/></svg>");
  background-repeat: no-repeat;
  background-position: 56% center;
  background-size: 28px 28px;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 2;
}
.character-card__gallery [data-video-slide].is-playing::after {
  opacity: 0;
  transform: scale(0.6);
}
.character-card__gallery .swiper-button-next,
.character-card__gallery .swiper-button-prev {
  color: #fff;
  background: rgba(43,42,40,0.45);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: -15px;
  opacity: 0;
  transition: opacity .2s;
}
.character-card:hover .character-card__gallery .swiper-button-next,
.character-card:hover .character-card__gallery .swiper-button-prev { opacity: 1; }
.character-card__gallery .swiper-button-next::after,
.character-card__gallery .swiper-button-prev::after { font-size: 12px; font-weight: 700; }
.character-card__gallery .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.character-card__gallery .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--plum);
}
.character-card .catalog-card__tag,
.character-card .character-card__top { display: none; }

/* Top-right video-jump button — clicks switch the card swiper to the video slide */
.character-card__video-jump {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--plum, #A6457A);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.character-card__video-jump:hover {
  transform: scale(1.08);
  background: var(--plum, #A6457A);
  color: #fff;
}
.character-card__video-jump svg { margin-left: 1px; }
/* When both video-jump and TOP badge exist, push TOP below the button */
.character-card__video-jump ~ .character-card__top { top: 56px; }

.character-card .catalog-card__tag {
  background: rgba(255,255,255,0.94);
  color: var(--ink);
}
.character-card__tag--boy { color: #1F6FB2 !important; }
.character-card__tag--girl { color: #C2438C !important; }
.character-card__tag--winter { color: #2C7AA8 !important; background: rgba(255,250,240,0.94); }
.character-card__tag--all { color: #5C8F50 !important; background: rgba(255,250,240,0.94); }

/* TOP badge in the corner of a card */
.character-card__top {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #F8B496, #A6457A);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(166,69,122,0.30);
}
.character-card--top {
  position: relative;
}

.character-card__link {
  margin-top: 14px;
  align-self: flex-start;
}
.character-card__link svg { transition: transform .25s; }
.character-card__link:hover svg { transform: translateX(3px); }

/* Card actions row — "View more" + "Order" pill */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
/* When only the Order pill is present, keep it left-aligned */
.card-actions > .card-actions__order:only-child {
  margin-right: auto;
}
/* Standalone Order pill directly in a service-card body (additional services) */
.service-card__body > .service-card__order {
  margin-top: 16px;
  align-self: flex-start;
}
.card-actions__more {
  margin-top: 0;
  align-self: center;
  order: 2;
  margin-left: auto;
}
.card-actions__order { order: 1; }
.card-actions__order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--plum, #A6457A);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(166, 69, 122, .25);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  margin-top: 0;
  align-self: center;
}
.card-actions__order:hover {
  background: #8e3a68;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(166, 69, 122, .35);
}
.card-actions__order:active { transform: translateY(0); }
.card-actions__order svg { display: block; }
.card-actions__order span { line-height: 1; }

/* Swiper slides — wrapper sizes to content (no inflated 900px), but slides stretch to
   match each other so visible cards in the same row look uniform */
.swiper .swiper-wrapper {
  align-items: stretch !important;
  height: auto !important;
}
.swiper .swiper-slide {
  height: auto;
  display: flex;
}
.swiper .swiper-slide > .service-card,
.swiper .swiper-slide > .catalog-card,
.swiper .swiper-slide > .review-card,
.swiper .swiper-slide > .eco-card {
  width: 100%;
  height: auto;
  align-self: stretch;
}
/* Push the "Order service / Explore" link to the bottom of the card body */
.swiper .swiper-slide .service-card__body { display: flex; flex-direction: column; }
.swiper .swiper-slide .service-card__text { flex: 0 0 auto; }
.swiper .swiper-slide .service-card__body .link-arrow { margin-top: auto; padding-top: 12px; }

/* ---- Masonry-style gallery ---- */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.masonry-gallery__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.masonry-gallery__cell {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.masonry-gallery__cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.masonry-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.masonry-gallery__cell:hover img { transform: scale(1.04); }

.about-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 880px) {
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery__col:nth-child(2) { padding-top: 0; }
  .masonry-gallery__col:nth-child(3) { display: none; }
}
@media (max-width: 540px) {
  .masonry-gallery { grid-template-columns: 1fr; }
}

/* ---- Team grid ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-card__photo {
  height: 280px;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__name {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
  margin: 22px 22px 6px;
}
.team-card__role {
  margin: 0 22px 22px;
  font-size: 13px;
  color: var(--ink-2);
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---- Stats grid ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  position: relative;
  border-radius: 28px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset -8px -12px 24px rgba(255,255,255,0.45),
    inset 4px 6px 14px rgba(43,42,40,0.04),
    0 8px 24px rgba(43,42,40,0.06);
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 22px;
  width: 90px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.7), transparent 70%);
  filter: blur(3px);
  pointer-events: none;
  z-index: 2;
}
/* Animated rotating background — gives a subtle "wow" spin behind the number */
.stat-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  height: 220%;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      rgba(166,69,122,0.18) 0deg,
      transparent 40deg,
      transparent 90deg,
      rgba(255,255,255,0.55) 130deg,
      transparent 170deg,
      transparent 220deg,
      rgba(166,69,122,0.10) 260deg,
      transparent 300deg,
      rgba(255,255,255,0.40) 340deg,
      rgba(166,69,122,0.18) 360deg);
  transform: translate(-50%, -50%) rotate(0);
  animation: stat-spin 18s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  mix-blend-mode: soft-light;
}
.stat-card--peach    { background: var(--peach-soft); }
.stat-card--lavender { background: var(--lavender-soft); }
.stat-card--butter   { background: var(--butter-soft); }
.stat-card--sage     { background: var(--sage-soft); }
.stat-card--peach::after    { animation-duration: 18s; }
.stat-card--lavender::after { animation-duration: 22s; animation-direction: reverse; }
.stat-card--butter::after   { animation-duration: 20s; }
.stat-card--sage::after     { animation-duration: 24s; animation-direction: reverse; }

@keyframes stat-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.stat-card__num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.stat-card__num span { color: var(--plum); }
.stat-card__label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* About-page reviews use the global .reviews / .reviews__swiper styles */

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 64px 40px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 25% 30%, rgba(248,180,150,0.45), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(212,197,232,0.55), transparent 55%),
    var(--peach-soft);
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
  box-shadow:
    inset -10px -14px 30px rgba(255,255,255,0.5),
    inset 6px 8px 18px rgba(43,42,40,0.04),
    0 12px 30px rgba(43,42,40,0.06);
}
.cta-banner__title {
  margin-top: 16px;
  max-width: 18ch;
  margin-inline: auto;
}
.cta-banner__text {
  margin: 18px auto 0;
  max-width: 50ch;
}
.cta-banner__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-banner { padding: 48px 24px; border-radius: 28px; }
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: 32px 0 48px;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  margin-top: 24px;
}
.service-detail__photo {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 520px;
  height: 100%;
}
.service-detail__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.service-detail__tag {
  top: 18px;
  left: 18px;
}
.service-detail__title { margin: 0; }
.service-detail__price {
  margin-top: 22px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  box-shadow: inset -4px -6px 14px rgba(255,255,255,0.4), inset 2px 3px 8px rgba(43,42,40,0.04), 0 4px 12px rgba(43,42,40,0.05);
}
.service-detail__price strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.service-detail__price p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}

.service-detail__features-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 26px;
  margin-bottom: 14px;
}
.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail__feature {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--ink);
}
.service-detail__feature-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--plum-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 -2px 4px rgba(43,42,40,0.08),
    inset 0 2px 3px rgba(255,255,255,0.55),
    0 2px 6px rgba(43,42,40,0.06);
}
.service-detail__feature-icon::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 40%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.7), transparent 70%);
  filter: blur(1px);
  pointer-events: none;
}
.service-detail__feature-icon > svg {
  position: relative;
  z-index: 1;
}

/* ---- Design catalog (Face Painting etc.) ---- */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.design-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.design-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.design-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.design-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.design-card:hover .design-card__media img { transform: scale(1.05); }
.design-card__label {
  display: block;
  width: 100%;
  padding: 12px 14px 14px;
  text-align: center;
}
.design-card__name {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
}
/* Make sure the card's flex children stretch full width so the label can center */
.design-card { align-items: stretch; }
.design-grid__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.design-grid__more[hidden] { display: none; }

/* Desktop: the swiper-wrapper is transparent so cards lay out as grid items */
.design-grid:not(.swiper) > .swiper-wrapper { display: contents; }
/* Mobile: the catalog turns into a swipeable carousel */
.design-grid.swiper {
  display: block;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.design-grid.swiper > .swiper-wrapper { display: flex; }
.design-grid.swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
  flex-shrink: 0;
  min-width: 0;
}
/* Arrow controls below the carousel (mobile only) */
.design-catalog__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.design-catalog__nav[hidden] { display: none; }

/* Reviews: arrow controls below the carousel — mobile only (desktop uses the
   arrows in the section head). */
.reviews__nav-mobile { display: none; }
@media (max-width: 900px) {
  .reviews__nav-mobile {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }
  /* On pages with the mobile arrow bar (character/service), the dots are
     redundant — hide them and keep the arrows. */
  .wrap:has(.reviews__nav-mobile) .reviews__pagination { display: none; }
}

/* Lightbox */
.design-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 16, 22, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.design-lightbox[hidden] { display: none; }
.design-lightbox__img {
  max-width: min(90vw, 720px);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  background: #fff;
}
.design-lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.14);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s;
}
.design-lightbox__close:hover { background: rgba(255,255,255,0.28); }
.design-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.14);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s;
}
.design-lightbox__nav:hover { background: rgba(255,255,255,0.28); }
.design-lightbox__nav--prev { left: 20px; }
.design-lightbox__nav--next { right: 20px; }

@media (max-width: 560px) {
  .design-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .design-lightbox__nav { width: 40px; height: 40px; }
  .design-lightbox__nav--prev { left: 10px; }
  .design-lightbox__nav--next { right: 10px; }
}

.service-detail__ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .service-detail__ctas { flex-wrap: nowrap; gap: 10px; }
  .service-detail__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 13px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 880px) {
  .service-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  /* width-driven aspect ratio — no min-height (which would force width > viewport) */
  .service-detail__photo { min-height: 0; aspect-ratio: 4 / 3; height: auto; width: 100%; }
}

/* Character detail — photo height matches info column (text-driven) */
.character-detail .service-detail__grid {
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: stretch;
  gap: 56px;
}
.character-detail .service-detail__photo {
  position: relative;
  min-height: 0;
  height: 100%;
  max-width: 520px;
  overflow: hidden;
}
.character-detail .service-detail__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
@media (max-width: 900px) {
  .character-detail .service-detail__grid { grid-template-columns: 1fr; }
  .character-detail .service-detail__photo { max-width: none; aspect-ratio: 4 / 3; height: auto; }
  .character-detail .service-detail__photo img { position: static; }
}

/* Character hero — product-style gallery (main image + thumbnails) */
.service-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-width: 0;
}
.character-detail .service-detail__gallery { max-width: 520px; }
.service-detail__gallery .service-detail__photo {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
}
/* Thumbnail carousel: scroll strip flanked by nav arrows */
.service-detail__thumbs-wrap { display: block; }
.service-detail__thumbs-wrap[hidden] { display: none; }
.thumbs-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .2s, transform .2s, opacity .2s;
}
.thumbs-arrow { display: none !important; }
.service-detail__thumbs { width: 100%; overflow: hidden; padding: 2px; }
.service-detail__thumbs[hidden] { display: none; }
.service-detail__thumbs-pagination {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.service-detail__thumb {
  flex: 0 0 132px;
  width: 132px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-detail__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-detail__thumb:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-detail__thumb.is-active { border-color: var(--plum); }
@media (max-width: 900px) {
  .character-detail .service-detail__gallery { max-width: none; }
  .service-detail__gallery .service-detail__photo { flex: 0 0 auto; }
}

/* Hero photo as a Swiper (slides = gallery images) */
/* The photo gets its height from the surrounding flex column. A flex item's
   height isn't a "definite" basis for percentage-height children, so make the
   photo itself a flex container — its wrapper/slides then stretch to fill it. */
.service-detail__photo.swiper { width: 100%; min-width: 0; display: flex; }
.service-detail__photo > .swiper-wrapper { height: auto; align-items: stretch; min-width: 0; }
.service-detail__photo .swiper-slide { height: auto; overflow: hidden; position: relative; }
/* Make multi-image (swiper) service heroes fill the same consistent box as single-image ones */
.service-detail__photo.swiper > .swiper-wrapper,
.service-detail__photo.swiper > .swiper-wrapper > .swiper-slide { height: 100% !important; }
.character-detail .service-detail__photo .swiper-slide {
  background: var(--cream-2);
}
.character-detail .service-detail__photo .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.service-detail__tag { z-index: 3; }
.service-detail__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  display: none;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s;
}
.service-detail__arrow:hover { background: #fff; }
.service-detail__arrow:active { transform: translateY(-50%) scale(0.94); }
.service-detail__arrow--prev { left: 12px; }
.service-detail__arrow--next { right: 12px; }
.service-detail__arrow[hidden] { display: none !important; }
/* Desktop uses thumbnails to navigate; mobile uses on-photo arrows + swipe */
@media (max-width: 900px) {
  .service-detail__thumbs { display: block !important; }
  .service-detail__arrow { display: grid; }
}

/* ---- Video gallery — 9:16 Reels-style carousel ---- */
/* Sits right after the looks section — drop the top padding so the two
   blocks aren't separated by a double (240px) gap. */
.video-gallery { padding-top: 0; }
.video-gallery__reels {
  margin-top: 48px;
  overflow: hidden;
  padding: 18px 6px 26px;
}
@media (max-width: 768px) {
  .video-gallery__reels { margin-top: 8px; padding-top: 8px; }
  #characterVideoSection .section-head { margin-bottom: 8px; }
}
.video-gallery__reel { height: auto; }

/* ---- Double-bezel reel card (outer shell) ---- */
.video-gallery__reel-card {
  position: relative;
  padding: 7px;
  border-radius: 30px;
  background: linear-gradient(158deg, rgba(255,255,255,0.92), rgba(246,239,224,0.66));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 2px 6px rgba(43,42,40,0.05),
    0 22px 46px -24px rgba(43,42,40,0.18);
  outline: 1px solid rgba(166,69,122,0.10);
  outline-offset: -1px;
  /* scroll-reveal initial state */
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform .9s cubic-bezier(.22,.61,.18,1),
    opacity .9s cubic-bezier(.22,.61,.18,1),
    box-shadow .6s cubic-bezier(.32,.72,0,1);
}
.video-gallery__reel-card.is-revealed { opacity: 1; transform: translateY(0); }
.video-gallery__reel-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 6px rgba(43,42,40,0.05),
    0 38px 66px -28px rgba(43,42,40,0.26);
}

/* ---- Inner core (the actual video) ---- */
.video-gallery__reel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 23px;
  overflow: hidden;
  background: #1a1016;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 1px rgba(255,255,255,0.12);
  cursor: pointer;
}
.video-gallery__reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.22,.61,.18,1);
}
.video-gallery__reel-card:hover .video-gallery__reel-media video { transform: scale(1.06); }
.video-gallery__reel.is-playing .video-gallery__reel-media video { transform: none; }

/* ---- Cinematic scrim ---- */
.video-gallery__reel-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(26,16,22,0.10) 0%,
    rgba(26,16,22,0) 28%,
    rgba(26,16,22,0) 52%,
    rgba(26,16,22,0.52) 86%,
    rgba(26,16,22,0.80) 100%);
  transition: opacity .5s ease;
}

/* ---- Glass play button + pulsing ring ---- */
.video-gallery__reel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.55),
    0 12px 30px rgba(0,0,0,0.32);
  transition: transform .5s cubic-bezier(.32,.72,0,1), background .4s ease, opacity .4s ease;
}
.video-gallery__reel-play svg { margin-left: 3px; }
.video-gallery__reel-play-ring {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
  animation: reelPulse 2.8s cubic-bezier(.22,.61,.18,1) infinite;
}
@keyframes reelPulse {
  0%   { transform: scale(1);   opacity: .65; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.video-gallery__reel-card:hover .video-gallery__reel-play {
  transform: translate(-50%, -50%) scale(1.09);
  background: rgba(166,69,122,0.58);
}
.video-gallery__reel.is-playing .video-gallery__reel-play { opacity: 0; pointer-events: none; }

/* ---- Overlaid caption ---- */
.video-gallery__reel-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  pointer-events: none;
  transition: transform .6s cubic-bezier(.32,.72,0,1), opacity .4s ease;
}
.video-gallery__reel-card:hover .video-gallery__reel-info { transform: translateY(-3px); }
.video-gallery__reel-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
}
.video-gallery__reel-caption {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
@media (prefers-reduced-motion: reduce) {
  .video-gallery__reel-card { opacity: 1; transform: none; transition: none; }
  .video-gallery__reel-play-ring { animation: none; }
}
.video-gallery__reels .swiper-pagination,
.video-gallery__pagination { margin-top: 22px; }

/* (legacy two-column layout kept for any other pages) */
.video-gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  margin-top: 36px;
  align-items: start;
}
.video-gallery__rail { min-width: 0; }
.video-gallery__list {
  min-width: 0;
  max-height: 560px;
}
.video-gallery__list:not(.swiper) { overflow-y: auto; padding-right: 4px; }
.video-gallery__list:not(.swiper) > .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-gallery__pagination { display: none; }
.video-gallery__thumb {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.video-gallery__thumb-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.video-gallery__thumb-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-gallery__thumb-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43,42,40,0.30);
  transition: opacity .2s;
}
.video-gallery__thumb.is-active .video-gallery__thumb-media::after { opacity: 0; }
.video-gallery__thumb.is-active .video-gallery__thumb-media {
  outline: 2px solid var(--plum);
  outline-offset: 2px;
}
.video-gallery__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  z-index: 1;
}
.video-gallery__thumb:hover .video-gallery__thumb-media { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.video-gallery__thumb-caption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-gallery__thumb.is-active .video-gallery__thumb-caption { color: var(--ink); font-weight: 600; }
.video-gallery__player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #15110f;
  box-shadow: var(--shadow-md);
}
.video-gallery__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #15110f;
}
.video-gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 0;
  background: rgba(166,69,122,0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(166,69,122,0.4);
  transition: transform .2s, background .2s;
}
.video-gallery__play:hover { transform: translate(-50%, -50%) scale(1.06); }
.video-gallery__play[hidden] { display: none; }
.video-gallery__caption {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
@media (max-width: 900px) {
  .video-gallery__layout { grid-template-columns: 1fr; }
  .video-gallery__stage { order: -1; }
  .video-gallery__rail { order: 1; }
  .video-gallery__list { max-height: none; padding-right: 0; }
  .video-gallery__list.swiper { overflow: hidden; }
  .video-gallery__list.swiper > .swiper-wrapper { display: flex; flex-direction: row; }
  .video-gallery__list.swiper > .swiper-wrapper > .swiper-slide { height: auto; }
  .video-gallery__pagination { display: flex; }
}

/* Character detail — About text spans full width (no narrow column) */
.character-detail-page .service-about__text { max-width: none; }

/* Character looks / formats */
.character-looks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
/* Desktop: wrapper is transparent so cards become grid items */
.character-looks__grid:not(.swiper) > .swiper-wrapper { display: contents; }
.character-looks__pagination { display: none; }
@media (max-width: 900px) {
  .character-looks__grid.swiper {
    display: block;
    grid-template-columns: none;
    overflow: hidden;
    min-width: 0;
  }
  .character-looks__grid.swiper > .swiper-wrapper { display: flex; }
  .character-looks__grid.swiper > .swiper-wrapper > .swiper-slide { height: auto; }
  .character-looks__pagination { display: flex; }
}
.character-looks__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.character-looks__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.character-looks__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
}
.character-looks__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.character-looks__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--plum, #A6457A);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.character-looks__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.character-looks__title {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
/* Costumes & looks slider on the service page */
.service-looks__slider { margin-top: 36px; overflow: hidden; }
.service-looks__slider .swiper-slide { height: auto; display: flex; }
.service-looks__slider .character-looks__card { width: 100%; }
.service-looks__pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.character-looks__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}
.character-looks__text {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

@media (max-width: 560px) {
  .character-looks__grid { grid-template-columns: 1fr; gap: 18px; }
  .character-looks__body { padding: 18px 18px 20px; }
}

/* ---- About the service ---- */
.service-about__title {
  margin-bottom: 24px;
}
.service-about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-about__text p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ---- Service gallery slider ---- */
.service-gallery .section-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.service-gallery__sub {
  text-align: left;
  max-width: 320px;
  margin: 0;
}
.service-gallery__swiper {
  overflow: hidden;
  padding-bottom: 8px;
}
.service-gallery__swiper .swiper-slide { height: auto; }
.service-gallery__cell {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}
.service-gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.service-gallery__cell:hover img { transform: scale(1.04); }
.service-gallery__pagination { margin-top: 24px; position: relative !important; display: flex; justify-content: center; gap: 8px; }
/* Clearly visible dots on the cream gallery background */
.service-gallery__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(166, 69, 122, 0.30);
  opacity: 1;
}
.service-gallery__pagination .swiper-pagination-bullet-active {
  background: var(--plum);
}

/* ---- Related services ---- */
.service-related__swiper {
  overflow: hidden;
  padding: 8px 4px;
  margin: 0 -4px;
}
.service-related__swiper .swiper-slide { height: auto; }
.service-related__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page__head {
  padding: 32px 0 24px;
}
.gallery-page__intro {
  margin-top: 24px;
  max-width: 720px;
}
.gallery-page__title { margin-top: 6px; }
.gallery-page__lede { margin-top: 16px; max-width: 60ch; }

.gallery-page__filters {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.gallery-page__section { padding-top: 32px; }
@media (max-width: 768px) {
  .gallery-page__head { padding-bottom: 0; }
  .gallery-page__section { padding-top: 0; }
  .blog-page { padding-top: 0; margin-top: -24px; }
  .gallery-page__intro { margin-bottom: 0; }
  .contact-bubbles-section { padding-top: 24px; }
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.photo-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  cursor: pointer;
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.photo-card[hidden] { display: none; }

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.photo-card:hover img { transform: scale(1.06); }

.photo-card__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,250,240,0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(43,42,40,0.10);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.photo-card:hover .photo-card__caption {
  opacity: 1;
  transform: translateY(0);
}

.photo-grid__empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--ink-2);
  font-size: 16px;
}

@media (max-width: 1024px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .photo-card { border-radius: 18px; }
}

/* ----- Lightbox ----- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 64px;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,14,13,0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .22s ease;
}
.lightbox.is-open .lightbox__backdrop { opacity: 1; }

.lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: scale(0.96);
  opacity: 0;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), opacity .2s ease;
}
.lightbox.is-open .lightbox__figure { transform: scale(1); opacity: 1; }

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox__caption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
}
.lightbox__title {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lightbox__counter {
  opacity: 0.6;
  font-size: 13px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lightbox__nav { width: 38px; height: 38px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__img { max-height: calc(100vh - 130px); border-radius: 14px; }
}

/* CTA strip */
.gallery-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-cta__title { margin-top: 4px; }
.gallery-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .gallery-cta__actions { flex-wrap: nowrap; gap: 10px; }
  .gallery-cta__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.catalog-head {
  padding: 32px 0 8px;
}
.catalog-head__title {
  margin-top: 18px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  transition: color .2s;
}
.breadcrumbs__link:hover { color: var(--plum); }
.breadcrumbs__sep { opacity: 0.5; }
.breadcrumbs__current { color: var(--ink); }

.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 320px;
  max-width: 100%;
}
.catalog-search__icon {
  position: absolute;
  left: 18px;
  pointer-events: none;
}
.catalog-search__input {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 18px 12px 44px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border .2s, box-shadow .2s;
}
.catalog-search__input::placeholder { color: var(--ink-3); }
.catalog-search__input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(166,69,122,0.10);
}

.catalog {
  padding-top: 40px;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Desktop: swiper-wrapper is transparent so cards become grid items */
.catalog__grid:not(.swiper) > .swiper-wrapper { display: contents; }
.catalog__grid:not(.swiper) > .swiper-pagination { display: none; }
/* Mobile: catalog becomes a one-card Swiper */
.catalog__grid.swiper {
  display: block;
  grid-template-columns: none;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.catalog__grid.swiper > .swiper-wrapper { display: flex; }
.catalog__grid.swiper > .swiper-wrapper > .swiper-slide { width: 100%; min-width: 0; flex-shrink: 0; height: auto; }
.catalog__pagination,
.characters__pagination { display: none !important; }
.reviewscards-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.reviewscards-nav[hidden] { display: none; }
.catalog__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.catalog__nav[hidden] { display: none; }

.catalog-card {
  cursor: default;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, opacity .25s;
}
.catalog-card[hidden] { display: none; }
.catalog-card--filtered-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  position: absolute;
}

.catalog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,250,240,0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(43,42,40,0.10);
}

.catalog__empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--ink-2);
  font-size: 16px;
}

@media (max-width: 1100px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .catalog-controls { flex-direction: column; align-items: stretch; }
  .catalog-search { width: 100%; }
}
@media (max-width: 480px) {
  .catalog__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.about__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__tile {
  border-radius: 28px;
  padding: 26px 24px 28px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset -8px -12px 24px rgba(255,255,255,0.45),
    inset 4px 6px 14px rgba(43,42,40,0.04),
    0 8px 24px rgba(43,42,40,0.06),
    0 18px 40px rgba(43,42,40,0.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.about__tile:hover {
  transform: translateY(-6px);
  box-shadow:
    inset -8px -12px 24px rgba(255,255,255,0.45),
    inset 4px 6px 14px rgba(43,42,40,0.04),
    0 14px 32px rgba(43,42,40,0.10),
    0 28px 60px rgba(43,42,40,0.08);
}

/* Bubble shine — soft white highlight, top-left */
.about__tile::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 18px;
  width: 110px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1) 55%, transparent 75%);
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

/* Tiny decorative bubble — top-right */
.about__tile::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: inset -2px -2px 4px rgba(43,42,40,0.05);
  pointer-events: none;
  z-index: 0;
}

/* Translucent pastel fills */
.about__tile--lavender { background: var(--lavender-soft); }
.about__tile--sage     { background: var(--sage-soft); }
.about__tile--peach    { background: var(--peach-soft); }
.about__tile--blue     { background: var(--baby-blue-soft); }

.about__tile-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff, #f5f0e7 80%);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 -4px 8px rgba(43,42,40,0.08),
    inset 0 3px 6px rgba(255,255,255,0.9),
    0 10px 22px rgba(43,42,40,0.14),
    0 2px 4px rgba(43,42,40,0.06);
}
.about__tile-icon::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 18%;
  width: 45%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.2) 60%, transparent 80%);
  filter: blur(1.5px);
  pointer-events: none;
}
.about__tile-icon > svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(166,69,122,0.12));
}
.about__tile-label {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.about__title { margin-top: 4px; }
.about__text { margin-top: 18px; max-width: 60ch; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.about__stat-num {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
}
.about__stat-num span { color: var(--plum); }
.about__stat-label {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 8px;
  line-height: 1.4;
}

.about__cta {
  margin-top: 32px;
}

@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Text first, tiles slider after */
  .about__content { order: 1; }
  .about__tiles { order: 2; }
  /* Let the tiles container respect the grid column width so the Swiper
     track can be clipped instead of overflowing the viewport. */
  .about__tiles { min-width: 0; }
}
@media (max-width: 540px) {
  .about__stats { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   GALLERY (4×2 uniform grid)
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery__cell {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.gallery__cell:hover { transform: scale(1.02); }

.gallery__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.gallery__cell:hover .gallery__photo { transform: scale(1.06); }

.gallery__caption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,250,240,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery__cell:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__cta {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}

/* ============================================================
   FOUNDATION
   ============================================================ */
.foundation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  border-radius: 32px;
  align-items: start;
}
.foundation__cell {
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
}
.foundation__cell--tall { grid-column: span 1; }
.foundation__cell--wide {
  grid-column: 1 / -1;
  height: 260px;
}
/* Top 3 cells — show full image, no crop */
.foundation__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
/* Wide bottom banner — cropped to focus on hands only */
.foundation__cell--wide .foundation__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.foundation__img:hover { transform: scale(1.04); }
.foundation__eyebrow {
  color: #0A7B6C !important;
}
.foundation__lede {
  max-width: 80ch;
  flex: 1 1 100%;
  margin-top: 14px;
}
.foundation__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   REVIEWS — bubble-style cards
   ============================================================ */
.reviews { position: relative; overflow: hidden; }

/* ambient floating bubbles in the section bg */
.reviews::before,
.reviews::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(184,219,232,0.4) 45%, rgba(212,197,232,0.15));
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset -6px -8px 16px rgba(166,69,122,0.06), 0 8px 24px rgba(184,219,232,0.3);
  pointer-events: none;
  z-index: 0;
}
.reviews::before {
  width: 120px; height: 120px;
  top: 12%; right: 4%;
  animation: bob 7s ease-in-out infinite;
}
.reviews::after {
  width: 80px; height: 80px;
  bottom: 8%; left: 3%;
  animation: bob 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.reviews__swiper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 24px 4px;
  margin: -24px -4px;
}
.reviews__swiper .swiper-slide { height: auto; }

.review-card {
  position: relative;
  border-radius: 36px;
  padding: 32px 32px 28px;
  min-height: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset -6px -10px 22px rgba(255,255,255,0.45),
    inset 4px 6px 14px rgba(43,42,40,0.04),
    0 8px 24px rgba(43,42,40,0.06),
    0 18px 40px rgba(43,42,40,0.06);
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  overflow: hidden;
}

/* Bubble shine — soft white highlight, top-left */
.review-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 22px;
  width: 110px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1) 55%, transparent 75%);
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

/* Tiny decorative bubble — top-right */
.review-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: inset -2px -2px 4px rgba(43,42,40,0.05);
  pointer-events: none;
  z-index: 0;
}

.review-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow:
    inset -6px -10px 22px rgba(255,255,255,0.45),
    inset 4px 6px 14px rgba(43,42,40,0.04),
    0 14px 32px rgba(43,42,40,0.10),
    0 28px 60px rgba(43,42,40,0.08);
}
.swiper-slide:nth-child(2n) .review-card:hover {
  transform: translateY(-6px) rotate(0.6deg);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.review-card__quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  flex: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}
.review-card__author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  border: 3px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 14px rgba(43,42,40,0.10), inset -2px -3px 6px rgba(43,42,40,0.06);
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 15px;
}
.review-card__role {
  font-size: 13px;
  color: var(--ink-2);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--ink);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover .blog-card__photo { transform: scale(1.05); }
.blog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,250,240,0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(43,42,40,0.10);
}
.blog-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}
.blog-card__title {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 10px;
  line-height: 1.2;
  flex: 1;
}

/* ============================================================
   FAQ — VIOLET CARD style
   ============================================================ */
.faq {
  position: relative;
  overflow: hidden;
}
.faq__card {
  position: relative;
  border-radius: 44px;
  background: linear-gradient(135deg, #7C6BE8 0%, #6E5FE0 50%, #5C4FCE 100%);
  color: #fff;
  padding: 64px 56px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(94,79,206,0.30);
}
.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Left: kid photo + floating decorations ---- */
.faq__visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: end center;
}
.faq__kid {
  max-width: 100%;
  max-height: 540px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.22));
}
.faq__bg-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0.06) 50%, transparent 75%);
  z-index: 1;
}
.faq__deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  animation: bob 6s ease-in-out infinite;
}
.faq__deco--cake     { top: 22%; right: 0; animation-delay: .3s; }
.faq__deco--gamepad  { bottom: 18%; right: 12%; animation-delay: 1.5s; }
.faq__deco--rocket   { top: 4%; left: -20px; animation-delay: 2.4s; }
.faq__deco--star     { top: 12%; left: 30%; animation-delay: 1s; }
.faq__deco--squiggle { top: 50%; right: 22%; animation-delay: 2s; opacity: .8; }
.faq__deco--confetti { bottom: 10%; left: -10px; animation-delay: 1.8s; opacity: .8; }

/* ---- Right: title + accordion ---- */
.faq__title {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.faq__squiggle-line {
  display: block;
  margin: 14px 0 18px;
}
.faq__sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin: 0 0 32px;
  max-width: 38ch;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Override base .faq-item for violet style */
.faq--violet .faq-item {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.faq--violet .faq-item:last-child { border-bottom: none; }
.faq--violet .faq-item--open { box-shadow: none; }

.faq--violet .faq-item__q {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 22px 0;
}
.faq--violet .faq-item__plus {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  box-shadow: none;
  width: 32px; height: 32px;
}
.faq--violet .faq-item__plus::before {
  background: radial-gradient(ellipse, rgba(255,255,255,0.3), transparent 70%);
}
.faq--violet .faq-item--open .faq-item__plus {
  background: #fff;
  color: #6E5FE0;
  border-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.faq--violet .faq-item__a p {
  color: rgba(255,255,255,0.85);
  padding: 0 0 22px;
  margin: 0;
}

@media (max-width: 880px) {
  .faq__card { padding: 40px 24px; border-radius: 32px; }
  .faq__layout { grid-template-columns: 1fr; gap: 24px; }
  .faq__visual { min-height: 360px; }
  .faq__deco--gamepad,
  .faq__deco--star,
  .faq__deco--squiggle { display: none; }
}

/* ---- Legacy split layout (kept in case used elsewhere) ---- */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}
.faq__intro p { margin-top: 18px; }
.faq__contacts {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .faq__contacts { flex-wrap: nowrap; gap: 10px; }
  .faq__contacts .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 14px;
    white-space: nowrap;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item--open { box-shadow: var(--shadow-md); }
.faq-item__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  font-family: inherit;
  gap: 16px;
}
.faq-item__plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff, var(--cream-2) 90%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background .25s, transform .35s, color .2s, box-shadow .25s;
  color: var(--ink);
  box-shadow:
    inset 0 -2px 4px rgba(43,42,40,0.08),
    inset 0 2px 3px rgba(255,255,255,0.6),
    0 3px 8px rgba(43,42,40,0.08);
}
.faq-item__plus::before {
  content: "";
  position: absolute;
  top: 16%;
  left: 18%;
  width: 42%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.7), transparent 70%);
  filter: blur(1px);
  pointer-events: none;
  z-index: -1;
}
.faq-item__plus > * { position: relative; z-index: 1; }
.faq-item--open .faq-item__plus {
  background: radial-gradient(circle at 30% 25%, #c2588e, var(--plum) 55%, #97406e);
  color: #fff;
  transform: rotate(45deg);
  box-shadow:
    inset 0 -3px 5px rgba(43,42,40,0.18),
    inset 0 2px 4px rgba(255,255,255,0.25),
    0 4px 12px rgba(166,69,122,0.30);
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item--open .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-item__a > div { overflow: hidden; }
.faq-item__a p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--ink-2);
  max-width: 65ch;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking__card {
  background: #fff;
  border-radius: 40px;
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: stretch;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.booking__blob {
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--plum-soft);
  opacity: 0.6;
  filter: blur(40px);
  pointer-events: none;
}
.booking__intro {
  position: relative;
  display: flex;
  flex-direction: column;
}
.booking__intro .lede { margin-top: 16px; }
.booking__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking__list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}
.booking__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.booking__chat {
  margin-top: 28px;
}
.booking__chat-eyebrow {
  font-family: var(--hand);
  font-size: 24px;
  color: var(--plum);
}
.booking__chat-phone {
  margin-top: 6px;
  font-weight: 700;
  font-size: 22px;
  font-family: var(--serif);
}

.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border .2s, box-shadow .2s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(166,69,122,0.12);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.booking__submit {
  grid-column: 1 / -1;
  justify-content: center;
  padding: 18px;
}
.booking__legal {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--plum-deep);
  color: var(--cream);
  padding: 80px 0 32px;
  border-radius: 48px 48px 0 0;
  position: relative;
  overflow: hidden;
}
.footer a:hover { color: var(--butter); }

.footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.footer__cta-eyebrow {
  font-family: var(--hand);
  font-size: 28px;
  color: var(--butter);
}
.footer__cta-title {
  color: var(--cream);
  margin-top: 4px;
}
.footer__cta-title em { color: var(--butter) !important; }
.footer__cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer__phone {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(251,247,236,0.25);
}

.footer__divider {
  height: 1px;
  background: rgba(251,247,236,0.12);
  margin: 40px 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-img {
  height: 92px;
  width: auto;
  display: block;
}
@media (max-width: 880px) {
  .footer__logo-img { height: 72px; }
}
.footer__word {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.06em;
}
.footer__script {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--butter);
  margin-left: -2px;
}
.footer__about-text {
  margin-top: 14px;
  opacity: 0.7;
  max-width: 32ch;
  font-size: 14px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,247,236,0.3);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}
.footer__social:hover {
  background: var(--butter);
  color: var(--ink) !important;
  border-color: var(--butter);
}

.footer__col-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--butter);
}
.footer__col-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-list a {
  opacity: 0.85;
  font-size: 14px;
}
.footer__contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  opacity: 0.85;
}
.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: start;
}
.footer__contact a {
  display: inline-flex;
  gap: 10px;
  align-items: start;
  color: inherit;
  text-decoration: none;
  transition: color .2s, opacity .2s;
}
.footer__contact a:hover {
  color: #F6D785;
  opacity: 1;
}

.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,247,236,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  opacity: 0.6;
}
.footer__legal {
  display: flex;
  gap: 24px;
}

@media (max-width: 880px) {
  .footer__cta {
    grid-template-columns: 1fr;
  }
  .footer__cta-buttons { justify-content: flex-start; }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ============================================================
   MOBILE — turn grids into Swiper sliders
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .wrap { padding: 0 20px; }

  .section-head { align-items: flex-start; margin-bottom: 20px; }
  .section-head__nav { display: none; }

  /* When data-mobile-slider is initialized, .swiper class is added by JS,
     enabling slider mode. The wrappers below force flex layout. */
  [data-mobile-slider] {
    display: block;
    overflow: visible;
  }
  [data-mobile-slider].swiper {
    display: block;
    grid-template-columns: none;
    overflow: hidden;
    padding-bottom: 0;
  }
  [data-mobile-slider] {
    min-width: 0;
    max-width: 100%;
  }
  [data-mobile-slider] .swiper-wrapper {
    display: flex;
    align-items: stretch;
    min-width: 0;
  }
  [data-mobile-slider] .swiper-slide {
    height: auto;
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
  }
  /* Belt-and-suspenders: never let the About section scroll/overflow sideways */
  .about { overflow-x: hidden; }
  .about__grid { min-width: 0; }
  .about__grid > * { min-width: 0; }

  /* reset complex grids on mobile so slides flow as Swiper slides */
  .why__grid,
  .blog__grid,
  .about__tiles {
    grid-template-columns: none;
    grid-auto-flow: column;
  }

  /* Benefit cards: stack icon → title → text vertically on mobile */
  .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Stat cards: number on top, label below */
  .stat-card,
  .reviews-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .stat-card__num,
  .reviews-stat__num { display: block; }

  .gallery__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-rows: 240px;
  }
  .gallery__cell,
  .gallery__cell--w2,
  .gallery__cell--h2,
  .gallery__cell--w2-h2 {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  /* On mobile the gallery is a Swiper (display:block), so cells need an explicit
     height — every photo the same uniform size. */
  .gallery__grid.swiper .gallery__cell { height: 340px; }

  .foundation__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    border-radius: 0;
    overflow: visible;
  }
  .foundation__cell,
  .foundation__cell--tall,
  .foundation__cell--wide {
    grid-row: auto !important;
    grid-column: auto !important;
  }

  /* Section heads switch to centered/stacked */
  .section-head { flex-direction: column; gap: 20px; }
  .section-head--center { align-items: center; }

  /* Cards smaller paddings */
  .booking__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
    border-radius: 28px;
  }
  .booking__form { grid-template-columns: 1fr; }
  .field--full { grid-column: 1 / -1; }
  .field { grid-column: 1 / -1; }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer { padding: 56px 0 24px; border-radius: 32px 32px 0 0; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .hero { padding-bottom: 48px; }
  .hero__featured { margin-top: 56px; }

  /* Services slider — single full-width slide */
  .services__swiper .swiper-slide { width: 100%; }

  /* Reviews — single slide */
  .reviews__swiper .swiper-slide { width: 100%; }

  /* hide scrollbar overflow safety */
  .gallery__grid.swiper,
  .why__grid.swiper,
  .blog__grid.swiper,
  .foundation__grid.swiper,
  .about__tiles.swiper { overflow: hidden; padding-bottom: 0; }

  .swiper-pagination { margin-top: 20px; }
}

@media (max-width: 480px) {
  .h-display { font-size: clamp(36px, 9vw, 48px); }
  .h-section { font-size: clamp(28px, 7vw, 36px); }
  .booking__card { padding: 28px 20px; }
  .nav__inner { padding: 8px 8px 8px 18px; }
  .nav__word { font-size: 18px; }
  .nav__script { font-size: 18px; }
  .nav__logo-img { height: 50px; }

  /* Hero CTAs stay side by side, shrink to fit */
  .hero__ctas { flex-wrap: nowrap; gap: 10px; }
  .hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-page__summary-section { padding-top: 32px; }

.reviews-summary {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.3fr;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.reviews-summary__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.reviews-summary__avg {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.reviews-summary__num {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
}
.reviews-summary__stars { display: inline-flex; gap: 3px; }
.reviews-summary__total {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.reviews-bars { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.reviews-bars__row {
  display: grid;
  grid-template-columns: 16px 1fr 42px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-2);
}
.reviews-bars__label { font-weight: 700; color: var(--ink); text-align: center; }
.reviews-bars__track {
  height: 8px;
  background: var(--cream-2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.reviews-bars__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--plum), #c2588e);
  border-radius: 999px;
}
.reviews-bars__pct { text-align: right; font-weight: 600; color: var(--ink-3); font-size: 12px; }

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.reviews-stat {
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.reviews-stat__num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--plum-deep);
  line-height: 1;
}
.reviews-stat__label {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.reviews-page__list-section { padding-top: 56px; }

.reviews-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.reviews-list__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.review-card--more[hidden] { display: none; }

.review-card--row {
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.review-card--row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-card__head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}
.review-card__stars--inline { display: inline-flex; gap: 2px; }
.review-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.review-card__quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.review-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  border-top: 1px solid rgba(43,42,40,0.08);
  padding-top: 12px;
}

/* ===== Google Reviews block ===== */
/* Sits right after the summary section — drop the top padding so the two
   blocks aren't separated by a double (240px) gap. */
.google-reviews { padding-top: 0; }

.google-reviews__head {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(43,42,40,0.07);
  box-shadow: 0 1px 2px rgba(43,42,40,0.04), 0 18px 40px -28px rgba(43,42,40,0.18);
}
.google-reviews__brand { display: flex; align-items: center; gap: 14px; }
.google-reviews__g { flex-shrink: 0; }
.google-reviews__brand-title { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1.1; }
.google-reviews__brand-sub { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.google-reviews__rating { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.google-reviews__rating-num { font-family: var(--serif); font-size: 42px; color: var(--ink); line-height: 1; }
.google-reviews__rating-stars { display: flex; gap: 2px; }
.google-reviews__rating-count { font-size: 13px; color: var(--ink-3); display: block; margin-top: 5px; }
.google-reviews__cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid rgba(43,42,40,0.14);
  font-size: 14px; font-weight: 600; color: var(--ink);
  box-shadow: 0 1px 2px rgba(43,42,40,0.05);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.google-reviews__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(66,133,244,0.55); }

.google-reviews__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.google-reviews__grid:not(.swiper) > .swiper-wrapper { display: contents; }
.google-reviews__grid:not(.swiper) > .swiper-pagination { display: none; }
.google-reviews__grid.swiper { display: block; grid-template-columns: none; }

.g-review {
  background: #fff;
  border: 1px solid rgba(43,42,40,0.08);
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 1px 2px rgba(43,42,40,0.04);
  display: flex;
  flex-direction: column;
  gap: 13px;
  height: auto;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.g-review:hover { transform: translateY(-4px); box-shadow: 0 10px 24px -12px rgba(43,42,40,0.25); }
.g-review__top { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; }
.g-review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 18px;
}
.g-review__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.g-review__count { font-size: 12.5px; color: var(--ink-3); margin-top: 1px; }
.g-review__g { flex-shrink: 0; align-self: flex-start; }
.g-review__rating { display: flex; align-items: center; gap: 9px; }
.g-review__stars { display: flex; gap: 1px; }
.g-review__date { font-size: 12.5px; color: var(--ink-3); }
.g-review__text { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }

@media (max-width: 980px) {
  .google-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .google-reviews__head { gap: 18px; padding: 20px 22px; }
  .google-reviews__rating-num { font-size: 36px; }
}
@media (max-width: 768px) {
  .google-reviews__rating { margin-left: 0; }
  .google-reviews__cta { width: 100%; justify-content: center; }
}

@media (max-width: 1024px) {
  .reviews-summary {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .reviews-stats { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 22px;
  }
  .reviews-list { grid-template-columns: 1fr; }
  .reviews-summary__num { font-size: 52px; }
  .review-card__head { grid-template-columns: 40px 1fr; }
  .review-card__stars--inline { grid-column: 1 / -1; }
}

/* Catalog card actions: "View more" link on the left, cart icon on the right */
.catalog-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.catalog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--plum);
  cursor: pointer;
  text-decoration: none;
  transition: color .2s;
}
.catalog-card__link svg { transition: transform .2s; }
.catalog-card__link:hover { color: var(--plum-deep); }
.catalog-card__link:hover svg { transform: translateX(3px); }

.catalog-card__cart {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--plum-soft);
  border: 0;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s;
}
.catalog-card__cart:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}

/* ============================================================
   CART — nav button, badge, toast, popup, full page
   ============================================================ */

/* Nav cart trigger */
.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  margin-right: 8px;
  transition: background .2s, transform .2s;
}
.nav__cart:hover { background: #fff; transform: translateY(-2px); }
.nav__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(166,69,122,0.4);
}
.nav__cart-badge[hidden] { display: none; }

/* Toast */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 1200;
}
.cart-toast.is-in { opacity: 1; transform: translateX(-50%) translateY(0); }
.cart-toast--warn { background: #C2823A; }

/* Popup */
.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
}
.cart-popup[hidden] { display: none; }
.cart-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43,42,40,0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s;
}
.cart-popup.is-open .cart-popup__backdrop { opacity: 1; }
.cart-popup__panel {
  position: relative;
  width: min(420px, 100%);
  background: var(--cream);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(43,42,40,0.18);
  transform: translateX(20px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .25s;
}
.cart-popup.is-open .cart-popup__panel { transform: translateX(0); opacity: 1; }
.cart-popup__head {
  padding: 22px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart-popup__head h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0;
}
.cart-popup__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(43,42,40,0.06);
  border: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.cart-popup__close:hover { background: rgba(43,42,40,0.14); }
.cart-popup__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-popup__footer {
  padding: 16px 24px 22px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
}
.cart-popup__footer .btn { flex: 1; justify-content: center; }

/* Cart list (used in popup + page) */
.cart-group { margin-bottom: 18px; }
.cart-group__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.cart-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cart-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.cart-list__item:hover { border-color: var(--plum); }
.cart-list__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.cart-list__link:hover .cart-list__name { color: var(--plum); }
.cart-list__avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-list__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.cart-list__avatar-letter {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--plum);
  line-height: 1;
}
.cart-list__meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-list__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cart-list__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
.cart-list__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--plum-soft);
  padding: 2px 8px;
  border-radius: 999px;
}
.cart-list__count {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--cream-2);
  padding: 2px 8px;
  border-radius: 999px;
}
.cart-list__note {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}
.cart-list__remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.cart-list__remove:hover { background: var(--plum); color: #fff; border-color: var(--plum); }

/* Empty state */
.cart-empty {
  text-align: center;
  padding: 28px 12px;
  color: var(--ink-2);
}
.cart-empty__icon {
  margin: 0 auto 12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--plum);
}
.cart-empty p { margin: 0 0 16px; font-size: 14px; line-height: 1.5; }
.cart-empty__actions { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

/* Selected items as chips inside the form (when coming from cart) */
.cart-form-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.cart-form-chips__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cart-form-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(166,69,122,0.18);
  border-radius: 999px;
  padding: 6px 6px 6px 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cart-form-chip__name { padding: 0 4px 0 2px; }
.cart-form-chip__remove {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0;
  background: rgba(43,42,40,0.08);
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 2px;
  transition: background .2s, color .2s, transform .2s;
}
.cart-form-chip__remove:focus { outline: none; }
.cart-form-chip__remove:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 2px;
}
@media (hover: hover) {
  .cart-form-chip__remove:hover {
    background: var(--plum);
    color: #fff;
    transform: rotate(90deg);
  }
}
.cart-form-chip__tag {
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.cart-form-chip--service .cart-form-chip__tag { background: var(--peach-soft); color: var(--plum-deep); }
.cart-form-chips__edit {
  align-self: flex-end;
  color: var(--plum);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.cart-form-chips__edit:hover { text-decoration: underline; }

/* Cart page */
.cart-page__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-top: 0;
}
.cart-page__summary {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 22px 24px;
  height: max-content;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}
.cart-page__summary h3 {
  font-family: var(--serif);
  margin: 0 0 8px;
  font-size: 22px;
}
.cart-page__summary p { font-size: 14px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.6; }
.cart-page__summary .btn { width: 100%; justify-content: center; }
.cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
}
.cart-page__summary-row:first-of-type { border-top: 0; }
.cart-page__summary-row strong { color: var(--ink); }

.cart-page__main { display: flex; flex-direction: column; gap: 24px; min-width: 0; }

.cart-page__form-block {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}
.cart-page__form-head { margin-bottom: 18px; }
.cart-page__form-head .eyebrow-script { display: block; margin-bottom: 6px; }
.cart-page__form-title {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cart-page__form-lede { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.6; }

@media (max-width: 900px) {
  .cart-page__grid { grid-template-columns: 1fr; }
  .cart-page__summary { position: static; }
}

@media (max-width: 560px) {
  .cart-page__form-block { padding: 20px 18px; }
  .cart-page__form-title { font-size: 22px; }
}

@media (max-width: 560px) {
  .cart-popup__panel { width: 100%; }
}

/* ============================================================
   THANK YOU MODAL — playful confirmation popup
   ============================================================ */
.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.thanks-modal[hidden] { display: none; }
.thanks-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(166,69,122,0.45), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(248,180,150,0.45), transparent 55%),
    rgba(43,42,40,0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .25s ease;
}
.thanks-modal.is-open .thanks-modal__backdrop { opacity: 1; }

.thanks-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.85), transparent 45%),
    radial-gradient(circle at 80% 88%, rgba(242,214,227,0.7), transparent 50%),
    var(--cream);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 32px;
  padding: 64px 36px 36px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 30px 80px rgba(166,69,122,0.30);
  transform: translateY(20px) scale(0.92);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  overflow: hidden;
}
.thanks-modal.is-open .thanks-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.thanks-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(43,42,40,0.06);
  border: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.thanks-modal__close:hover { background: rgba(43,42,40,0.14); transform: rotate(90deg); }

/* Confetti pieces fall from top */
.thanks__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.thanks__confetti span {
  position: absolute;
  top: -20px;
  left: var(--x);
  width: 10px;
  height: 14px;
  background: var(--c);
  border-radius: 3px;
  animation: confetti-fall 2.6s ease-out var(--d) forwards;
  transform-origin: center;
}
.thanks__confetti span:nth-child(odd) { border-radius: 50%; width: 12px; height: 12px; }
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(560px) rotate(720deg); opacity: 0; }
}

/* Hero icon — heart bursting from bubbles */
.thanks__icon {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  animation: thanks-pop .55s cubic-bezier(.34,1.56,.64,1) .15s both;
}
.thanks__heart {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, #c2588e, var(--plum) 60%, var(--plum-deep));
  box-shadow:
    inset 0 -8px 18px rgba(0,0,0,0.18),
    inset 0 6px 14px rgba(255,255,255,0.4),
    0 14px 28px rgba(166,69,122,0.30);
  animation: thanks-heartbeat 1.4s ease-in-out infinite;
}
.thanks__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(184,219,232,0.4) 50%, rgba(212,197,232,0.25));
  border: 1px solid rgba(255,255,255,0.7);
  pointer-events: none;
  animation: thanks-bubble 3s ease-in-out infinite;
}
.thanks__bubble--1 { top: 6px; left: 8px; width: 28px; height: 28px; }
.thanks__bubble--2 { bottom: 12px; right: 4px; width: 36px; height: 36px; animation-delay: .8s; }
.thanks__bubble--3 { top: 30%; right: -6px; width: 22px; height: 22px; animation-delay: 1.6s; }

@keyframes thanks-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes thanks-heartbeat {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.08); }
  40%      { transform: scale(0.96); }
  60%      { transform: scale(1.06); }
}
@keyframes thanks-bubble {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50%      { transform: translate(-6px, -10px) scale(1.1); opacity: 1; }
}

.thanks__title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}
.thanks__title span { color: var(--plum); }
.thanks__lede {
  margin: 0 auto 22px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

.thanks__actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.thanks__signature {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .thanks-modal__dialog { padding: 56px 24px 28px; border-radius: 26px; }
  .thanks__title { font-size: 26px; }
  .thanks__icon { width: 110px; height: 110px; }
  .thanks__heart { width: 78px; height: 78px; }
  .thanks__heart svg { width: 50px; height: 50px; }
}

/* ============================================================
   LEAVE A REVIEW MODAL
   ============================================================ */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.review-modal[hidden] { display: none; }
.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43,42,40,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .2s ease;
}
.review-modal.is-open .review-modal__backdrop { opacity: 1; }

.review-modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--cream);
  border-radius: 24px;
  padding: 32px 36px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), opacity .2s ease;
}
.review-modal.is-open .review-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
/* Whisper-thin, overlay-style scrollbar — barely-there pill, plum on hover.
   NOTE: deliberately NOT using scrollbar-width/scrollbar-color — when those
   standard props are set, Chrome ignores ::-webkit-scrollbar-* (so the arrow
   buttons can't be removed). The webkit rules below give full control. */
.review-modal__dialog::-webkit-scrollbar { width: 10px; }
/* Hide the up/down arrow buttons at the ends of the scrollbar */
.review-modal__dialog::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
.review-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
  margin: 20px 0;
}
.review-modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(43,42,40,0.14);
  border-radius: 999px;
  border: 3.5px solid transparent;
  background-clip: content-box;
  transition: background .25s ease;
}
.review-modal__dialog:hover::-webkit-scrollbar-thumb {
  background: rgba(43,42,40,0.22);
  background-clip: content-box;
}
.review-modal__dialog::-webkit-scrollbar-thumb:hover {
  background: rgba(166,69,122,0.55);
  background-clip: content-box;
}

.review-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.review-modal__close:hover { background: var(--line); transform: rotate(90deg); }

.review-modal__head { padding-right: 56px; }
.review-modal__title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.review-modal__avg {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.review-modal__avg-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.review-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-form__field { display: flex; flex-direction: column; gap: 8px; }
.review-form__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.review-form input[type="text"],
.review-form select,
.review-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.review-form input[type="text"]:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px var(--plum-soft);
}
.review-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'><path d='M6 9 L12 15 L18 9' stroke='%232B2A28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.review-form__criteria {
  margin-top: 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.review-form__crit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(43,42,40,0.08);
}
.review-form__crit-row:last-child { border-bottom: 0; }
.review-form__crit-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.review-form__stars {
  display: inline-flex;
  gap: 2px;
}
.review-form__star {
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: #E4DAC7;
  line-height: 0;
  transition: transform .15s, color .15s;
}
.review-form__star:hover { transform: scale(1.15); }
.review-form__star.is-on { color: #F6B833; }

.review-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

@media (max-width: 560px) {
  .review-modal { padding: 12px; }
  .review-modal__dialog { padding: 26px 22px 22px; border-radius: 20px; }
  .review-modal__title { font-size: 24px; }
  .review-form__crit-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

