/* =========================================================================
   Masáže Veronika Peřinová — shared styles (v3, multi-page)
   "Gold & Sand" design system. Mobile-first. One stylesheet for all pages.
   ========================================================================= */

:root {
  --sand-bg:    #F6EDDC;  /* page background */
  --sand-card:  #FCF7EC;  /* cards, panels */
  --gold:       #B98A3B;  /* accent: borders, icons, ornaments, button bg */
  --gold-soft:  #DCC392;  /* borders, dividers, decorative ornaments */
  --ink:        #2E2317;  /* headings + body text (AA on sand) */
  --ink-soft:   #6B573D;  /* secondary text + small labels (AA on sand) */
  --cocoa:      #4A3423;  /* featured chocolate-ritual band */
  --cream:      #F6EDDC;  /* text on --cocoa */
  --white:      #FFFFFF;
  --whatsapp:   #25D366;
  --messenger:  #0084FF;

  --shadow-sm: 0 1px 3px rgba(46, 35, 23, 0.06), 0 2px 8px rgba(46, 35, 23, 0.05);
  --shadow-md: 0 6px 20px rgba(46, 35, 23, 0.10);
  --shadow-lg: 0 14px 40px rgba(46, 35, 23, 0.16);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --header-h: 66px;
  --maxw: 1160px;
  --measure: 68ch;   /* narrow reading column */

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---- Reset / base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;    /* 17px */
  line-height: 1.68;
  color: var(--ink);
  background-color: var(--sand-bg);
  background-image:
    radial-gradient(1200px 700px at 82% -8%, rgba(220, 195, 146, 0.28), transparent 60%),
    radial-gradient(900px 600px at 5% 12%, rgba(220, 195, 146, 0.16), transparent 55%);
  background-attachment: fixed;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--ink); text-underline-offset: 3px; }
h1, h2, h3, h4 {
  font-family: var(--serif); color: var(--ink); font-weight: 600;
  line-height: 1.18; margin: 0 0 0.4em; letter-spacing: 0.2px;
}
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--gold); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-pill); z-index: 200; transition: top 0.2s ease; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border: 0; border-radius: var(--radius-pill);
  font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; color: var(--white);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease; box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-wa { background: var(--whatsapp); color: var(--white); }
.btn-wa:hover { filter: brightness(1.04); }
.btn-messenger { background: var(--messenger); color: var(--white); }
.btn-messenger:hover { filter: brightness(1.06); }

/* ---- Header / navigation ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(252, 247, 236, 0.88);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--gold-soft);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); min-width: 0; flex: 1 1 auto; }
/* the lotus sits low in its box (water arcs at the base), so a small nudge lands
   the base arc on the wordmark's baseline rather than on its bounding box */
.brand .brand-mark { width: 36px; height: 36px; flex: 0 0 auto; transform: translateY(-15%); transition: opacity .18s ease; }
.brand .brand-name { transition: opacity .18s ease; }
.brand:hover .brand-mark, .brand:hover .brand-name { opacity: 0.85; }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.05rem; line-height: 1.05;
  color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.nav { display: none; align-items: center; gap: 2px; }
.nav a {
  display: inline-block; padding: 8px 12px; color: var(--ink); text-decoration: none;
  font-weight: 500; font-size: 0.95rem; border-radius: var(--radius-pill);
  transition: background-color 0.15s ease; position: relative;
}
.nav a:hover { background: rgba(185, 138, 59, 0.14); color: var(--ink); }
.nav a[aria-current="page"] { font-weight: 700; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.wa-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--whatsapp); color: var(--white);
  font-weight: 700; font-size: 0.92rem; padding: 9px 16px; min-height: 44px; border-radius: var(--radius-pill);
  text-decoration: none; box-shadow: var(--shadow-sm); transition: transform 0.15s ease, filter 0.2s ease;
}
.wa-pill:hover { transform: translateY(-2px); filter: brightness(1.04); }
.wa-pill svg { width: 18px; height: 18px; }
.wa-pill .wa-pill-label { display: none; }

.hamburger {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  background: var(--sand-card); border: 1.5px solid var(--gold-soft); border-radius: 12px; cursor: pointer; color: var(--ink);
}
.hamburger svg { width: 24px; height: 24px; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-open { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--sand-card);
  border-bottom: 1px solid var(--gold-soft); box-shadow: var(--shadow-md); z-index: 99;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; padding: 8px 16px 18px; }
.mobile-nav a {
  display: block; padding: 14px 12px; color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 1.08rem; border-bottom: 1px solid rgba(220, 195, 146, 0.5);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a[aria-current="page"] { color: var(--gold); border-left: 3px solid var(--gold); padding-left: 12px; }

/* ---- Sections & dividers ---------------------------------------------- */
/* also covers skip-link targets that are not sections (#service-grid, #kura-obsah) */
section, #service-grid, #kura-obsah { scroll-margin-top: calc(var(--header-h) + 14px); }
.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-title { font-size: clamp(1.9rem, 5vw, 2.7rem); margin: 0; }
.section-subtitle { color: var(--ink-soft); max-width: 640px; margin: 14px auto 0; font-size: 1.05rem; }
.ornament { display: flex; align-items: center; justify-content: center; margin-top: 16px; color: var(--gold); }
.ornament svg { width: 150px; height: 22px; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}

/* ---- Photo-slot system ------------------------------------------------ */
.photo-slot { position: relative; width: 100%; margin: 0; border-radius: 14px; overflow: hidden; background: var(--sand-card); }
.ratio-32  { aspect-ratio: 3 / 2; }
.ratio-43  { aspect-ratio: 4 / 3; }
.ratio-169 { aspect-ratio: 16 / 9; }
.ratio-11  { aspect-ratio: 1 / 1; }
.ratio-45  { aspect-ratio: 4 / 5; }
.ratio-34  { aspect-ratio: 3 / 4; }
/* img overlays the ornamental placeholder; onerror="this.remove()" reveals the ornament if a file is missing */
.photo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.slot-empty { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold-soft); border-radius: 14px; }
.slot-empty::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--gold-soft); border-radius: 9px; pointer-events: none; }
.slot-empty svg { width: 58px; height: 58px; color: var(--gold-soft); position: relative; }

/* ---- Hero (homepage) -------------------------------------------------- */
.hero { position: relative; padding: 54px 0 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.hero-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(2.4rem, 8vw, 4.1rem); line-height: 1.05; margin: 0 0 12px; }
/* Alignment is inherited from .hero-inner — centred on mobile, left on desktop. */
.hero-sub { color: var(--ink-soft); font-weight: 500; font-size: clamp(1rem, 3.4vw, 1.18rem); letter-spacing: 0.3px; margin: 0 0 26px; }
.hero-sub-1, .hero-sub-2 { display: block; }
/* Place name must never break — nbsp in markup + nowrap here, with a one-step
   size reduction on narrow screens as insurance against a wider fallback font. */
.hero-sub-2 { white-space: nowrap; }
@media (max-width: 400px) { .hero-sub-2 { font-size: 0.95em; } }
.hero-quote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 4.4vw, 1.7rem); line-height: 1.42; color: var(--ink);
  max-width: 620px; margin: 0 auto 30px; padding: 0 6px;
}
.hero-photo { max-width: 460px; margin: 0 auto; width: 100%; }

/* booking notice badge (hero + page-hero + kontakt) */
.booking-notice {
  display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left;
  max-width: 560px; margin: 0 auto 28px; background: var(--sand-card);
  border: 1.5px solid var(--gold); border-radius: var(--radius-md); padding: 16px 22px; box-shadow: var(--shadow-sm);
}
.booking-notice .bn-icon {
  flex: 0 0 auto; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: rgba(185, 138, 59, 0.14); border-radius: 50%; color: var(--gold);
}
.booking-notice .bn-icon svg { width: 22px; height: 22px; }
.booking-notice p { margin: 0; font-weight: 700; font-size: 1.02rem; color: var(--ink); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-ctas .btn { flex: 1 1 240px; max-width: 320px; }

/* ---- Page hero-lite (subpages) ---------------------------------------- */
.page-hero { padding: 46px 0 8px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.2rem); margin: 0 0 12px; }
.page-hero .page-intro { color: var(--ink-soft); max-width: var(--measure); margin: 0 auto 24px; font-size: 1.08rem; }
.page-hero .booking-notice { margin-bottom: 20px; }
.page-hero .page-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.page-hero .page-cta .btn { flex: 0 1 auto; }
.masaze-photo { max-width: 620px; margin: 30px auto 0; }

/* ---- Process list (homepage) ------------------------------------------ */
.process-list { list-style: none; display: grid; gap: 18px; max-width: 860px; margin: 0 auto; }
.process-item {
  display: flex; gap: 16px; align-items: flex-start; background: var(--sand-card);
  border: 1px solid var(--gold-soft); border-radius: var(--radius-md); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.process-item .flower { flex: 0 0 auto; width: 30px; height: 30px; color: var(--gold); margin-top: 2px; }
.process-item p { margin: 0; max-width: var(--measure); }

/* ---- Category cards (homepage) ---------------------------------------- */
.category-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.category-card {
  display: flex; flex-direction: column; background: var(--sand-card); border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md); padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.category-title { font-size: 1.6rem; margin: 0 0 8px; }
.category-desc { color: var(--ink-soft); margin: 0 0 16px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.chip {
  display: inline-block; background: var(--sand-bg); border: 1px solid var(--gold-soft);
  border-radius: var(--radius-pill); padding: 5px 13px; font-size: 0.86rem; font-weight: 500; color: var(--ink);
}
.category-btn { align-self: flex-start; margin-top: auto; }

/* ---- Ritual teaser strip (homepage) ----------------------------------- */
.ritual-teaser { background: var(--cocoa); color: var(--cream); }
.ritual-teaser .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 20px;
  padding-top: 26px; padding-bottom: 26px; text-align: center;
}
.ritual-teaser p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream); }
.ritual-teaser a {
  color: var(--cocoa); background: var(--gold-soft); font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; padding: 9px 18px; border-radius: var(--radius-pill); white-space: nowrap;
}
.ritual-teaser a:hover { filter: brightness(1.05); }

/* ---- Services grid + cards -------------------------------------------- */
.services-bg { background: linear-gradient(180deg, rgba(220,195,146,0.10), transparent 40%); }
/* align-items: start — an expanded card must not stretch its row siblings.
   Uneven collapsed heights are expected here; do not re-add equal-height hacks. */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
.service-card {
  display: flex; flex-direction: column; background: var(--sand-card); border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md); padding: 0; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card .photo-slot { border-radius: 0; }
.service-card .slot-empty, .service-card .slot-empty::before { border-radius: 0; }
.service-body { display: flex; flex-direction: column; padding: 26px 24px; }
.service-name { font-size: 1.5rem; margin: 0 0 10px; }

.badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(185, 138, 59, 0.13); color: var(--ink); border: 1px solid var(--gold-soft);
  border-radius: var(--radius-pill); padding: 6px 14px; font-weight: 700; font-size: 0.9rem; margin-bottom: 14px;
}
.badge svg { width: 15px; height: 15px; color: var(--gold); flex: 0 0 auto; }
.service-short { color: var(--ink-soft); margin: 0 0 18px; }

.service-details { margin-top: auto; border-top: 1px solid rgba(220, 195, 146, 0.6); padding-top: 8px; }
.service-details > summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  cursor: pointer; padding: 10px 2px; font-weight: 700; color: var(--ink); font-size: 0.98rem; min-height: 44px;
}
.service-details > summary::-webkit-details-marker { display: none; }
.service-details > summary .chev { width: 20px; height: 20px; color: var(--gold); transition: transform 0.2s ease; flex: 0 0 auto; }
.service-details[open] > summary .chev { transform: rotate(180deg); }

.details-body { padding: 6px 2px 4px; }
.details-body > p { color: var(--ink); max-width: var(--measure); }
.details-body > p:last-child { margin-bottom: 0; }

.detail-label {
  font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink-soft); margin: 18px 0 8px;
}
.service-areas {
  color: var(--ink); font-weight: 500; background: rgba(220,195,146,0.16);
  border-left: 3px solid var(--gold-soft); border-radius: 6px; padding: 8px 12px; margin: 4px 0;
}
.list-note { color: var(--ink-soft); max-width: var(--measure); }

/* variant tier menu */
.variants { margin: 6px 0 2px; }
.variant { padding: 14px 0; }
.variant + .variant { border-top: 1px solid var(--gold-soft); }
.variant:first-child { padding-top: 6px; }
.variant-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 14px; }
.variant-label { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.variant-price { color: var(--ink); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.info-list { list-style: none; display: grid; gap: 6px; margin-top: 10px; }
.info-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: 0.98rem; }
.info-list li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); margin-top: 9px; }

.benefit-list { list-style: none; display: grid; gap: 8px; margin-bottom: 4px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); }
.benefit-list li svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--gold); margin-top: 4px; }

.steps-list { list-style: none; counter-reset: step; display: grid; gap: 12px; }
.steps-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.steps-list li::before {
  counter-increment: step; content: counter(step); flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(185, 138, 59, 0.15); color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.05rem; margin-top: 1px;
}

.detail-link { margin-top: 16px; }
.detail-link a { color: var(--ink-soft); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold-soft); }
.detail-link a:hover { text-decoration-color: var(--gold); }

/* contraindications + cautions boxes (info panels) */
.care-box { margin-top: 18px; border-radius: var(--radius-sm); padding: 16px 18px; }
.contra-box { background: rgba(220, 195, 146, 0.14); border: 1.5px dashed var(--gold); }
.caution-box { background: rgba(185, 138, 59, 0.08); border: 1.5px solid var(--gold-soft); }
.care-box .care-title { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin: 0 0 10px; }
.care-list { list-style: none; display: grid; gap: 7px; }
.care-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 0.98rem; }
.care-list li::before { content: "–"; color: var(--gold); font-weight: 700; flex: 0 0 auto; }
.care-outro { margin: 10px 0 0; color: var(--ink-soft); font-size: 0.98rem; }

.service-note { margin-top: 16px; font-style: italic; color: var(--ink-soft); font-family: var(--serif); font-size: 1.12rem; }

.health-notice {
  display: flex; align-items: flex-start; gap: 10px; justify-content: center; text-align: center;
  max-width: 720px; margin: 40px auto 0; color: var(--ink-soft); font-size: 0.98rem;
}
.health-notice svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }

/* calm legal/health disclaimer panel — reuses the soft caution-box component */
.disclaimer-panel { max-width: 720px; margin: 18px auto 0; }
.disclaimer-panel .disclaimer-text { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---- Čokoládový rituál — featured band (pece page) -------------------- */
.ritual-band { background: var(--cocoa); color: var(--cream); padding: 76px 0; }
.ritual-inner { max-width: 820px; margin: 0 auto; }
.ritual-head { text-align: center; }
.ritual-band .eyebrow { color: var(--gold-soft); }
.ritual-title { color: var(--cream); font-size: clamp(2rem, 6vw, 3rem); margin: 0 0 6px; }
.ritual-badge {
  display: inline-block; margin-top: 12px; vertical-align: middle;
  background: rgba(246, 237, 220, 0.10); border: 1px solid var(--gold-soft); color: var(--cream);
  font-family: var(--sans); font-weight: 700; font-size: 0.92rem; padding: 5px 15px;
  border-radius: var(--radius-pill); white-space: nowrap; letter-spacing: 0.3px;
}
.ritual-intro { text-align: center; max-width: var(--measure); margin: 18px auto 0; }
.ritual-intro .ritual-lead { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cream); }
.ritual-intro p { color: rgba(246, 237, 220, 0.9); }
.ritual-photo { max-width: 900px; margin: 30px auto; }
/* square ritual photo beside the text on desktop; stacks photo-first on mobile */
.ritual-split { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; max-width: 900px; margin: 30px auto 0; }
.ritual-split .ritual-photo { max-width: 480px; margin: 0 auto; width: 100%; }
.ritual-split .ritual-split-text > .ritual-block { max-width: none; margin: 0 0 26px; }
.ritual-split .ritual-split-text > .ritual-block:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .ritual-split { grid-template-columns: minmax(0, 40fr) minmax(0, 60fr); gap: 34px; }
  .ritual-split .ritual-photo { margin: 0; }
}
.ritual-band .photo-slot { background: rgba(246, 237, 220, 0.05); }
.ritual-band .slot-empty, .ritual-band .slot-empty::before { border-color: var(--gold-soft); }
.ritual-band .slot-empty svg { color: var(--gold-soft); opacity: 0.7; }
.ritual-block { max-width: 640px; margin: 30px auto 0; }
.ritual-band .detail-label { color: var(--gold-soft); }
.ritual-band .steps-list li { color: var(--cream); }
.ritual-band .steps-list li::before { background: rgba(220, 195, 146, 0.16); color: var(--gold-soft); }
.ritual-band .benefit-list li { color: var(--cream); }
.ritual-band .benefit-list li svg { color: var(--gold-soft); }
.ritual-band .service-note { color: rgba(246, 237, 220, 0.85); }
.ritual-band .contra-box { background: rgba(246, 237, 220, 0.06); border-color: var(--gold-soft); }
.ritual-band .variant + .variant { border-top-color: var(--gold-soft); }
.ritual-band .variant-label, .ritual-band .variant-price { color: var(--cream); }
.ritual-band .info-list li { color: rgba(246, 237, 220, 0.9); }
.ritual-band .care-box .care-title { color: var(--cream); }
.ritual-band .care-list li { color: rgba(246, 237, 220, 0.85); }
.ritual-band .care-list li::before { color: var(--gold-soft); }
.ingredient-cards { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 640px; margin: 24px auto 0; }
.ingredient { background: rgba(246, 237, 220, 0.05); border: 1px solid var(--gold-soft); border-radius: var(--radius-sm); padding: 20px 22px; }
.ingredient h4 { color: var(--gold-soft); font-size: 1.35rem; margin: 0 0 8px; }
.ingredient p { margin: 0; color: rgba(246, 237, 220, 0.9); }
.ritual-cta { text-align: center; margin-top: 34px; }

/* ---- Result photo inside an expanded service card (optional) ---------- */
.result-figure { margin: 8px auto 0; max-width: 420px; }
.result-figure .photo-slot { border-radius: var(--radius-sm); }
.result-figure figcaption { text-align: center; margin-top: 8px; color: var(--ink-soft); font-size: 0.92rem; }

/* ---- Vouchers + loyalty (homepage) ------------------------------------ */
.voucher-wrap { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.voucher-card {
  position: relative; background: var(--sand-card);
  background-image: radial-gradient(120% 100% at 20% 0%, rgba(220,195,146,0.28), transparent 55%);
  border: 1px solid var(--gold-soft); border-radius: 14px; padding: 30px 30px 26px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.voucher-card::before { content: ""; position: absolute; inset: 10px; border: 1px solid var(--gold-soft); border-radius: 8px; pointer-events: none; }
.voucher-head { display: flex; align-items: center; gap: 12px; position: relative; }
.voucher-head .voucher-mark { width: 26px; height: 26px; flex: 0 0 auto; }
.voucher-head .vh-name { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; color: var(--ink); line-height: 1.1; }
.voucher-body { position: relative; text-align: center; padding: 20px 6px 10px; }
.voucher-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.1rem, 8vw, 2.9rem); color: var(--ink); letter-spacing: 0.5px; margin: 0; line-height: 1.05; }
.voucher-sub { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 1.25rem; margin-top: 6px; }
.voucher-flourish { display: flex; justify-content: center; margin: 12px 0 6px; color: var(--gold); }
.voucher-flourish svg { width: 120px; height: 34px; }
.voucher-foot { position: relative; border-top: 1px solid var(--gold-soft); margin-top: 12px; padding-top: 14px; text-align: center; color: var(--ink-soft); font-size: 0.92rem; letter-spacing: 0.4px; }
.voucher-copy p { color: var(--ink-soft); max-width: var(--measure); }
.voucher-copy .btn { margin-top: 8px; }

.loyalty {
  margin-top: 40px; background: var(--sand-card); border: 1px solid var(--gold-soft); border-radius: var(--radius-md);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: grid; gap: 18px; grid-template-columns: 1fr; align-items: center;
}
.loyalty-badge { display: flex; align-items: center; gap: 16px; }
.loyalty-stamp {
  flex: 0 0 auto; width: 88px; height: 88px; border-radius: 50%; border: 2px dashed var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  color: var(--gold); background: rgba(185,138,59,0.06);
}
.loyalty-stamp .ls-num { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; line-height: 1; }
.loyalty-stamp .ls-off { font-weight: 700; font-size: 1.1rem; }
.loyalty h3 { margin: 0 0 4px; font-size: 1.5rem; }
.loyalty .loyalty-lead { margin: 0; font-weight: 700; color: var(--ink); }
.loyalty ul { list-style: none; display: grid; gap: 8px; }
.loyalty ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); }
.loyalty ul li::before { content: "•"; color: var(--gold); font-weight: 700; }

/* ---- Practical info (homepage) ---------------------------------------- */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.info-card { background: var(--sand-card); border: 1px solid var(--gold-soft); border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.info-card .ic-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.info-card .ic-icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(185,138,59,0.13); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.info-card .ic-icon svg { width: 22px; height: 22px; }
.info-card h3 { margin: 0; font-size: 1.4rem; }
.info-card ul { list-style: none; display: grid; gap: 10px; }
.info-card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); }
.info-card ul li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); margin-top: 9px; }

.respect-notice {
  margin: 26px auto 0; max-width: 780px; text-align: center; background: var(--sand-card);
  border: 1.5px solid var(--gold-soft); border-radius: var(--radius-md); padding: 24px 26px; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.respect-notice .rn-flower { color: var(--gold); margin-bottom: 10px; display: inline-flex; }
.respect-notice .rn-flower svg { width: 30px; height: 30px; }
.respect-notice p { margin: 0; line-height: 1.6; }

/* ---- Contact + map (homepage) ----------------------------------------- */
.contact-bg { background: linear-gradient(180deg, transparent, rgba(220,195,146,0.12)); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.contact-details h3 { font-size: 1.7rem; margin-bottom: 6px; }
.contact-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--ink); }
.contact-line .cl-icon { flex: 0 0 auto; color: var(--gold); margin-top: 2px; }
.contact-line .cl-icon svg { width: 22px; height: 22px; }
.contact-line a { color: var(--ink); font-weight: 700; text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.contact-ctas .btn { flex: 1 1 200px; }
/* opening hours — reuses the ceník row/divider component */
.contact-hours { margin: 22px 0; }
.contact-hours h4 { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; margin: 0 0 4px; }
.contact-hours h4 svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }
.contact-hours .hours-note { margin: 10px 0 0; color: var(--ink-soft); font-size: 0.95rem; }

.contact-notice { background: rgba(185,138,59,0.10); border: 1.5px solid var(--gold); border-radius: var(--radius-sm); padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; }
.contact-notice svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.contact-notice p { margin: 0; font-weight: 600; color: var(--ink); }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gold-soft); box-shadow: var(--shadow-sm); background: var(--sand-card); min-height: 320px; position: relative; margin-top: 22px; }
.map-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 24px; cursor: pointer; width: 100%; border: 0;
  background: radial-gradient(400px 260px at 50% 40%, rgba(220,195,146,0.30), transparent 70%), var(--sand-card);
  font-family: var(--sans); color: var(--ink);
}
.map-placeholder .mp-pin { width: 54px; height: 54px; border-radius: 50%; background: rgba(185,138,59,0.16); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.map-placeholder .mp-pin svg { width: 28px; height: 28px; }
.map-placeholder .mp-addr { font-weight: 700; }
.map-placeholder .mp-hint { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--white); padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem; box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }
.mapy-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; padding: 10px 0; min-height: 44px; color: var(--ink-soft); font-weight: 700; text-decoration: none; }
.mapy-link:hover { text-decoration: underline; }
.mapy-link svg { width: 18px; height: 18px; color: var(--gold); }

/* ---- Booking band (bottom of every subpage) --------------------------- */
.booking-band { background: var(--sand-card); border-top: 1px solid var(--gold-soft); border-bottom: 1px solid var(--gold-soft); }
.booking-band .container { padding-top: 44px; padding-bottom: 44px; text-align: center; }
.booking-band h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin: 0 0 10px; }
.booking-band p { max-width: var(--measure); margin: 0 auto 22px; color: var(--ink-soft); }
.booking-band .bb-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.booking-band .bb-ctas .btn { flex: 0 1 260px; }

/* ---- Lymfatická kúra — prose page ------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose > p { max-width: var(--measure); }
.lymfa-section { padding: 40px 0; }
.lymfa-section h2 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); text-align: center; }
.lymfa-section .ornament { margin-bottom: 26px; }
/* Intro: portrait photo beside the text from 768 px up, stacked below it. */
.lymfa-intro { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
.lymfa-photo { max-width: 400px; margin: 0 auto 8px; }
@media (min-width: 900px) {
  .lymfa-intro { grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: 40px; }
  .lymfa-photo { margin: 0; }
}
.lifestyle-list { list-style: none; display: grid; gap: 14px; max-width: 720px; margin: 0 auto; }
.lifestyle-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); background: var(--sand-card); border: 1px solid var(--gold-soft); border-radius: var(--radius-sm); padding: 14px 18px; }
.lifestyle-list li svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--gold); margin-top: 3px; }
.lifestyle-list li strong { color: var(--ink); }
.trust-panel {
  max-width: 720px; margin: 24px auto 0; background: rgba(185, 138, 59, 0.08); border: 1.5px solid var(--gold-soft);
  border-radius: var(--radius-sm); padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start;
}
.trust-panel svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.trust-panel p { margin: 0; color: var(--ink); font-weight: 600; }
.lymfa-cta { text-align: center; }

/* ---- Ceník (homepage) — menu rows, not a table ------------------------ */
.cenik { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 900px; margin: 0 auto; }
.price-block { background: var(--sand-card); border: 1px solid var(--gold-soft); border-radius: var(--radius-md); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.price-block-title { font-size: 1.4rem; margin: 0 0 8px; }
.price-list { list-style: none; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(220, 195, 146, 0.55); }
.price-row:last-child { border-bottom: 0; }
.price-label { color: var(--ink); font-weight: 600; }
.price-right { display: flex; align-items: baseline; gap: 14px; white-space: nowrap; }
.price-meta { color: var(--ink-soft); font-size: 0.95rem; }
.price-val { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cenik-note { max-width: 900px; margin: 24px auto 0; text-align: center; color: var(--ink-soft); font-size: 0.98rem; }
@media (min-width: 780px) { .cenik { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ---- Havajská masáž Lomi Lomi — spotlight (masaze page) ---------------- */
.lomi-spotlight {
  background: var(--sand-card); border: 1px solid var(--gold-soft); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); padding: 34px 26px; max-width: 960px; margin: 0 auto 42px;
}
.lomi-head { text-align: center; }
.lomi-title { font-size: clamp(1.9rem, 5.4vw, 2.8rem); margin: 4px 0 8px; }
.lomi-tagline {
  font-family: var(--sans); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  font-size: 0.82rem; color: var(--gold); margin: 0 0 14px;
}
.lomi-short { color: var(--ink-soft); max-width: var(--measure); margin: 0 auto; font-size: 1.08rem; }
.lomi-photo { max-width: 460px; margin: 26px auto; }
.lomi-body { max-width: var(--measure); margin: 0 auto; }
.lomi-body > p { color: var(--ink); }
.lomi-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3.6vw, 1.6rem); color: var(--ink);
  text-align: center; max-width: 640px; margin: 30px auto 0; border: 0; padding: 0;
}
.lomi-orn { display: block; color: var(--gold); margin-bottom: 8px; }
.lomi-orn svg { width: 88px; height: 16px; }
.lomi-cta { text-align: center; margin-top: 26px; }

/* ---- Prostředí studia — gallery (homepage) ---------------------------- */
/* ---- Recenze ----------------------------------------------------------
   Quiet by design — this section must not out-shout the ceník or the CTAs. */
.section-sub { color: var(--ink-soft); font-size: 0.95rem; margin: 6px 0 0; }
/* align-items: start — a long review must not stretch its row siblings. */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; max-width: 1080px; margin: 0 auto; }
@media (min-width: 768px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
.review-card {
  background: var(--sand-card); border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 10px; color: var(--gold); }
.review-stars svg { width: 14px; height: 14px; flex: 0 0 auto; }
.review-text { color: var(--ink); margin: 0 0 12px; }
.review-name { color: var(--ink-soft); font-size: 0.88rem; margin: 0; }
.reviews-more { text-align: center; margin: 28px 0 0; }
.reviews-more a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 6px;
  color: var(--ink); font-weight: 700;
  text-decoration: underline; text-decoration-color: var(--gold-soft);
}
.reviews-more a:hover { text-decoration-color: var(--gold); }

.studio-lead { text-align: center; color: var(--ink-soft); max-width: var(--measure); margin: 0 auto 30px; }
.studio-gallery { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 980px; margin: 0 auto; }
.studio-gallery .photo-slot { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
@media (min-width: 760px) { .studio-gallery { grid-template-columns: 1fr 1fr 1fr; } }

/* ---- Footer ----------------------------------------------------------- */
/* ---- Social links (Kontakt + footer) ----------------------------------
   Deliberately NOT in brand colours: WhatsApp and Messenger stay the only
   colour-branded buttons so the booking CTAs keep their visual priority. */
.social-follow { margin: 22px 0; }
.social-follow .detail-label { margin-top: 0; }
.social-row { display: flex; gap: 12px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: 0 0 auto;
  border: 1px solid var(--gold-soft); border-radius: 50%;
  background: transparent; color: var(--gold); text-decoration: none;
  transition: color .18s ease, border-color .18s ease;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { color: var(--ink); border-color: var(--gold); }
/* the global focus ring sets border-radius: 6px — keep these round */
.social-btn:focus-visible { color: var(--ink); border-color: var(--gold); border-radius: 50%; }

.foot-social { display: flex; justify-content: center; gap: 10px; margin: 0 0 12px; }
.foot-social .social-btn { width: 38px; height: 38px; color: var(--gold-soft); font-weight: 400; text-decoration: none; }
.foot-social .social-btn svg { width: 18px; height: 18px; }
.foot-social .social-btn:hover,
.foot-social .social-btn:focus-visible { color: var(--ink); border-color: var(--gold); }

.site-footer { border-top: 1px solid var(--gold-soft); background: rgba(252, 247, 236, 0.6); padding: 30px 0; text-align: center; color: var(--ink-soft); font-size: 0.95rem; }
.site-footer .foot-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 8px; }
.site-footer .foot-brand .foot-mark { width: 26px; height: 26px; flex: 0 0 auto; }
.site-footer .foot-legal,
.site-footer .foot-hours { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; margin-bottom: 10px; }
.site-footer a { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold-soft); }
.site-footer a:hover { text-decoration-color: var(--gold); }
/* keep the floating WhatsApp button clear of the footer links on narrow screens */
@media (max-width: 599px) { .site-footer { padding-bottom: 96px; } }

/* ---- Floating WhatsApp button ----------------------------------------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42); z-index: 90;
  transform: translateY(24px) scale(0.7); opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.fab.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.fab:hover { filter: brightness(1.05); transform: translateY(-2px) scale(1.03); }
.fab svg { width: 32px; height: 32px; }

/* ---- Responsive ------------------------------------------------------- */
@media (min-width: 600px) {
  .wa-pill .wa-pill-label { display: inline; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-grid .info-card:last-of-type { grid-column: 1 / -1; }
  .ingredient-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 760px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr 1fr; }
  .loyalty { grid-template-columns: auto 1fr; }
}
@media (min-width: 1000px) {
  :root { --header-h: 74px; }
  .brand-name { font-size: 1.18rem; }
  .nav { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-inner { text-align: left; margin: 0; }
  .hero-quote { margin-left: 0; margin-right: 0; }
  .hero-ctas { justify-content: flex-start; }
  .booking-notice { margin-left: 0; }
  .voucher-wrap { grid-template-columns: 1.05fr 0.95fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 84px 0; }
  .hero { padding: 72px 0 80px; }
}
@media (min-width: 1080px) { .service-grid { grid-template-columns: 1fr 1fr 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
}

/* =========================================================================
   MOBILE PATTERNS — A carousel · B deck · C accordion · D clamp
   The DOM hooks exist on every viewport; everything below ≥768px is a
   no-op so the desktop layout is untouched. Real behaviour starts at 767px.
   ========================================================================= */

/* --- desktop no-ops: the injected controls stay invisible/inert --------- */
.m-acc-btn {
  display: block; width: 100%; margin: 0; padding: 0; border: 0; background: none;
  font: inherit; color: inherit; letter-spacing: inherit; text-align: inherit;
  cursor: default; -webkit-appearance: none; appearance: none;
}
.m-acc-chevron,
.m-dots,
.m-deck-ui,
.m-clamp-btn { display: none; }

@media (max-width: 767px) {
  /* ---- Pattern A — swipe carousel ------------------------------------ */
  .m-carousel {
    display: flex; gap: 14px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;           /* never trap vertical page scroll */
    scrollbar-width: none;
    margin: 0 -20px; padding: 4px 20px 6px;   /* bleed to the screen edges */
    max-width: none;
  }
  .m-carousel::-webkit-scrollbar { display: none; }
  .m-carousel > .m-carousel-item {
    flex: 0 0 86%;                            /* next item peeks ~14% */
    scroll-snap-align: center;
    min-width: 0;
  }
  .m-dots { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
  .m-dot {
    width: 44px; height: 44px; padding: 0; border: 0; background: none;
    cursor: pointer; position: relative;
  }
  .m-dot::after {
    content: ""; position: absolute; inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--gold-soft); transition: background-color .2s ease, transform .2s ease;
  }
  .m-dot.is-active::after { background: var(--gold); transform: translate(-50%, -50%) scale(1.25); }

  /* ---- Pattern B — stacked deck -------------------------------------- */
  .m-deck { display: block; position: relative; aspect-ratio: 3 / 4; margin-bottom: 34px; cursor: pointer; }
  .m-deck > .photo-slot {
    position: absolute; inset: 0; margin: 0;
    /* bottom origin: scaling keeps the lower edge put, so translateY makes each
       back card peek a clean 12px / 24px below the front one */
    transform-origin: bottom center;
    transform: translateY(calc(var(--d, 0) * 12px)) scale(calc(1 - var(--d, 0) * 0.04));
    z-index: calc(10 - var(--d, 0));
    opacity: calc(1 - var(--d, 0) * 0.15);
    transition: transform .35s ease, opacity .35s ease;
    box-shadow: var(--shadow-md);
  }
  .m-deck-ui { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
  .m-deck-next {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid var(--gold-soft); background: var(--sand-card); color: var(--gold);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .m-deck-next svg { width: 22px; height: 22px; }
  .m-deck-count { color: var(--ink-soft); font-weight: 700; font-size: 0.95rem; font-variant-numeric: tabular-nums; }

  /* ---- Pattern C — accordion ----------------------------------------- */
  .m-acc-head { margin-bottom: 0; }
  .m-acc-btn {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    min-height: 48px; padding: 6px 0; cursor: pointer; text-align: left;
  }
  .m-acc-chevron { display: flex; color: var(--gold); flex: 0 0 auto; transition: transform .2s ease; }
  .m-acc-chevron svg { width: 20px; height: 20px; }
  .m-acc-btn[aria-expanded="true"] .m-acc-chevron { transform: rotate(180deg); }
  .m-acc-panel { display: none; }
  .m-acc-panel.is-open { display: block; }

  /* ---- Pattern D — read-more clamp ----------------------------------- */
  .m-clamp {
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
    overflow: hidden;
  }
  .m-clamp.is-open { display: block; -webkit-line-clamp: none; overflow: visible; }
  .m-clamp-btn {
    display: inline-flex; align-items: center; min-height: 44px; margin-top: 4px;
    padding: 0; border: 0; background: none; cursor: pointer;
    color: var(--ink-soft); font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
    text-decoration: underline; text-decoration-color: var(--gold-soft); text-underline-offset: 3px;
  }

  /* ---- Section tightening (index) ------------------------------------- */
  .brand .brand-mark { width: 30px; height: 30px; }
  .hero { padding: 30px 0 34px; }
  .hero-grid { gap: 22px; }
  .hero-photo { max-height: 42vh; }
  .hero-photo.ratio-45 { aspect-ratio: auto; height: 42vh; }
  .hero-quote { margin-bottom: 22px; }
  .booking-notice { margin-bottom: 20px; padding: 14px 18px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 calc(50% - 5px); max-width: none; padding: 12px 14px; font-size: 0.94rem; }
  .hero-ctas .btn:last-child { flex: 1 1 100%; }      /* 2 + 1 */

  .section { padding: 44px 0; }
  .section-head { margin-bottom: 26px; }
  .process-item { padding: 18px 18px; }
  .category-card { padding: 22px 20px; }
  .price-block { padding: 18px 20px; }
  .cenik { gap: 16px; }
  .voucher-card { transform: scale(0.7); transform-origin: top center; margin-bottom: -28%; }
  .voucher-wrap { gap: 16px; }
  .loyalty { margin-top: 20px; padding: 20px 20px; }
  .info-card { padding: 18px 20px; }
  .info-grid { gap: 14px; }
  .map-wrap { min-height: 180px; }
  .map-wrap iframe { height: 180px; }
  .studio-lead { margin-bottom: 22px; }

  /* ---- Subpages ------------------------------------------------------- */
  .page-hero { padding: 28px 0 6px; }
  .masaze-photo { max-height: 28vh; margin-top: 20px; }
  .masaze-photo.ratio-32 { aspect-ratio: auto; height: 28vh; }
  .lymfa-photo { order: -1; max-width: 240px; margin: 4px auto 16px; }
  .page-hero h1 { margin-bottom: 8px; }
  .page-hero .page-intro { margin-bottom: 16px; }
  .booking-band .container { padding-top: 30px; padding-bottom: 30px; }
  .booking-band p { margin-bottom: 16px; }
  .site-footer { padding: 22px 0 96px; }
  .foot-brand { margin-bottom: 4px; }
  .ritual-intro { margin-top: 12px; }
  .ritual-block { margin-top: 20px; }
  .ingredient { padding: 16px 18px; }
  .respect-notice { padding: 18px 20px; margin-top: 18px; }
  .disclaimer-panel { margin-top: 14px; }
  .page-hero .page-cta .btn { flex: 1 1 100%; }

  /* service cards stay a vertical list — only compacted */
  .service-body { padding: 15px 16px; }
  .service-name { font-size: 1.32rem; margin-bottom: 6px; }
  .service-card .badge { margin-bottom: 10px; padding: 4px 12px; }
  .service-short { margin-bottom: 10px; }
  .service-grid { gap: 14px; }
  .lomi-title { margin-bottom: 4px; }
  .lomi-short { font-size: 1rem; }
  .lomi-photo { margin: 18px auto; }
  .lomi-quote { margin-top: 20px; }
  .health-notice { margin-top: 26px; }
  .service-card:not(:has(details[open])) .service-short {
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
  }
  .service-details > summary { min-height: 52px; padding: 12px 2px; }

  .lomi-spotlight { padding: 24px 18px; margin-bottom: 30px; }
  .ritual-band { padding: 44px 0; }
  .ritual-split { gap: 20px; margin-top: 22px; }
  .lymfa-section { padding: 26px 0; }

  /* keep the FAB clear of deck controls and carousel dots */
  .m-deck-ui, .m-dots { position: relative; z-index: 91; }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .m-carousel { scroll-behavior: auto; }
  .m-deck > .photo-slot { transition: none; }
  .m-acc-chevron { transition: none; }
}
