:root{
  --navy:#2C3C4B;
  --cream:#FCF3EE;
  --charcoal:#34302D;
  --rose:#BA9CA4;

  --cream-deep:#F5EBE4;
  --hairline:rgba(44,60,75,0.16);

  --display:"Playfair Display",Georgia,serif;
  --body:"PT Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  --radius:20px;
  --radius-sm:12px;
  --gutter:20px;
  --maxw:520px;
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;}

/* visible to screen readers only */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  border:0;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

/* ============ TYPE ROLES ============
   Playfair: logo (Regular) + ONE large display line per section (Bold) + italic eyebrow.
   PT Sans: everything else, INCLUDING all subheadings.
   Playfair never appears below display size — Cyrillic goes heavy and wide.
====================================== */
.display{
  font-family:var(--display);
  font-weight:700;
  font-size:34px;
  line-height:1.14;
  letter-spacing:-0.01em;
  color:var(--navy);
  margin:0;
  text-wrap:balance;
}
.eyebrow{
  font-family:var(--display);
  font-style:italic;
  font-weight:400;
  font-size:17px;
  color:var(--rose);
  margin:0 0 10px;
}
h3,h4{
  font-family:var(--body);
  font-weight:700;
  color:var(--navy);
  margin:0;
}
p{margin:0 0 14px;}

/* ============ HEADER ============ */
header{
  position:sticky;
  top:0;
  z-index:60;
  background:var(--cream);
  border-bottom:1px solid var(--hairline);
}
.bar{
  max-width:var(--maxw);
  margin:0 auto;
  padding:12px var(--gutter);
  display:grid;
  /* The side columns share whatever the logo doesn't need, so the logo stays
     centred no matter how wide the language switcher gets. It was 44px fixed,
     sized for two languages; the third one was clipped off a phone screen. */
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}
.icon-btn{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background:none;border:0;padding:0;cursor:pointer;color:var(--navy);
  border-radius:50%;
}
.icon-btn:focus-visible{outline:2px solid var(--rose);outline-offset:2px;}

/* horizontal lockup: mark and wordmark on one line, everywhere */
.logo{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
}
.logo-mark{
  width:34px;height:34px;
  border-radius:50%;
  background:var(--navy);
  color:var(--cream);
  font-family:var(--display);
  font-weight:400;
  font-size:19px;
  line-height:34px;
  text-align:center;
}
.logo-word{
  font-family:var(--display);
  font-weight:400;
  font-size:11px;
  letter-spacing:0.26em;
  text-indent:0.26em;
  color:var(--navy);
  text-transform:uppercase;
}

/* language switcher */
.lang{
  justify-self:end;
  display:flex;gap:2px;
  background:var(--cream-deep);
  border-radius:999px;
  padding:3px;
}
.lang a{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-decoration:none;
  color:var(--navy);
  padding:4px 7px;
  border-radius:999px;
  opacity:.55;
}
.lang a[aria-current="true"]{background:var(--cream);opacity:1;}

/* ============ MENU OVERLAY ============ */
.drawer{
  position:fixed;inset:0;
  background:var(--cream);
  color:var(--navy);
  z-index:100;
  display:none;
  overflow-y:auto;
  overscroll-behavior:contain;
  /* inset:0 alone resolves against a viewport that stops matching the visible
     area as Safari's toolbar collapses, so the page behind showed through in a
     strip at the bottom — it read as content that wouldn't scroll. dvh follows
     the toolbar in browsers that support it; vh is the fallback for those that
     don't. Neither was enough for every in-app browser though (Telegram's
     included), which is what --vh (set in app.js from visualViewport.height,
     the API built for exactly this) corrects — falls back to 1vh, i.e. 100vh,
     until that script runs. */
  height:100vh;
  height:100dvh;
  height:calc(var(--vh, 1vh) * 100);
}
.drawer[data-open="true"]{display:block;}
.drawer-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 var(--gutter) calc(48px + env(safe-area-inset-bottom));
  min-height:100%;
  display:flex;
  flex-direction:column;
}

/* top bar mirrors the site header so the logo doesn't jump on open */
.drawer-top{
  display:grid;
  grid-template-columns:1fr 44px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid var(--hairline);
  margin-bottom:26px;
}
.drawer-top .logo{justify-content:flex-start;}

/* close sits in a hairline circle */
#menu-close{
  border:1px solid var(--hairline);
  border-radius:50%;
  width:40px;height:40px;
  justify-self:end;
  transition:border-color .18s ease;
}
#menu-close:hover{border-color:var(--navy);}
#menu-close svg{width:15px;height:15px;}

/* Nav is PT Sans, not Playfair: the brand book reserves Playfair for one
   display line + the italic eyebrow, because its Cyrillic goes heavy and
   wide at mid sizes — which is exactly where the UA/RU menus will sit. */
.drawer nav{display:flex;flex-direction:column;}
.drawer nav a{
  font-family:var(--body);
  font-size:22px;
  font-weight:700;
  text-decoration:none;
  padding:15px 0;
  border-bottom:1px solid var(--hairline);
}
.drawer nav a:focus-visible{outline:2px solid var(--rose);outline-offset:3px;}

/* gift-voucher badge — a circle, echoing the navy circle of the S mark.
   Cream fill + rose hairline + navy label: the brand's "promotional" style.
   Rose is never a fill here; a solid rose disc was already rejected once. */
.gift{
  /* The search box above used to space this off the menu; it is gone, so
     the gap is stated here instead of being a side effect. */
  margin-top:34px;
  align-self:flex-start;
  width:154px;height:154px;
  border-radius:50%;
  border:1px solid var(--rose);
  background:var(--cream);
  color:var(--navy);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-align:center;
  text-decoration:none;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  line-height:1.45;
  transition:border-color .18s ease;
}
.gift:hover{border-color:var(--navy);}
.gift:focus-visible{outline:2px solid var(--rose);outline-offset:4px;}
.gift .heart{font-size:13px;line-height:1;opacity:.75;}

/* language switcher lives at the foot of the menu too — a trilingual site
   needs it findable, not only tucked in the header */
.drawer-lang{
  display:flex;
  gap:8px;
  margin-top:auto;
  padding-top:36px;
}
.drawer-lang a{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-decoration:none;
  color:var(--navy);
  border:1px solid var(--hairline);
  border-radius:999px;
  padding:8px 15px;
  opacity:.6;
}
.drawer-lang a[aria-current="true"]{opacity:1;border-color:var(--navy);}

/* ============ HERO ============ */
.hero{position:relative;}
.hero-media{
  position:relative;
  aspect-ratio:3/4;
  background:var(--cream-deep);
  overflow:hidden;
}
.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-media::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(44,60,75,0.10) 0%,rgba(44,60,75,0.06) 38%,rgba(44,60,75,0.62) 100%);
}
.hero-copy{
  position:absolute;
  left:0;right:0;bottom:0;
  z-index:2;
  padding:0 var(--gutter) 26px;
  max-width:var(--maxw);
  margin:0 auto;
}
.hero-copy .display{color:var(--cream);font-size:36px;}
.hero-sub{
  color:var(--cream);
  font-size:15px;
  opacity:.92;
  margin:12px 0 20px;
  max-width:30ch;
}
.hero-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
}
.hero-links a{
  color:var(--cream);
  text-decoration:none;
  border-bottom:1px solid rgba(252,243,238,0.5);
  padding-bottom:2px;
}
.hero-links span{color:rgba(252,243,238,0.45);}

/* ============ SECTION RHYTHM ============ */
section{padding:52px 0;}
.section-head{margin-bottom:26px;}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--body);
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  padding:15px 26px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  min-height:50px;
  transition:opacity .18s ease;
}
.btn:active{opacity:.85;}
.btn:focus-visible{outline:2px solid var(--rose);outline-offset:3px;}
.btn-primary{background:var(--navy);color:var(--cream);}
.btn-secondary{background:var(--cream);color:var(--navy);border-color:var(--navy);}
/* WhatsApp is the one rose button — navy label, because cream on rose is 2.51 and fails */
.btn-whatsapp{background:var(--rose);color:var(--navy);border-color:var(--rose);}

/* Inactive until the consent box is ticked. Muted rather than merely
   faded, so it reads as "not yet" instead of "broken". */
.btn:disabled,
.btn[disabled]{
  background:rgba(44,60,75,0.16);
  color:rgba(44,60,75,0.52);
  border-color:transparent;
  cursor:not-allowed;
}
.btn:disabled:active,
.btn[disabled]:active{opacity:1;}

.btn-block{display:flex;width:100%;}

/* ============ SERVICES ============ */
.services{background:var(--cream-deep);}
.cards{display:flex;flex-direction:column;gap:16px;}
.card{
  background:var(--cream);
  border-radius:var(--radius);
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  display:block;
}
.card-media{
  aspect-ratio:4/3;
  background:var(--cream-deep);
  overflow:hidden;
}
.card-media img{width:100%;height:100%;object-fit:cover;}
.card-body{padding:20px 22px 24px;}
.card-body h3{font-size:19px;margin-bottom:7px;}
.card-body p{font-size:14.5px;margin-bottom:14px;color:var(--charcoal);opacity:.85;}
.card-meta{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding-top:14px;
  border-top:1px solid var(--hairline);
}
.price{
  font-family:var(--display);
  font-weight:700;
  font-size:21px;
  color:var(--navy);
}
.price small{
  font-family:var(--body);
  font-weight:400;
  font-size:12.5px;
  color:var(--charcoal);
  opacity:.7;
  margin-left:3px;
}
.card-link{font-size:14px;font-weight:700;color:var(--navy);}

/* rose as a hairline. The one exception is .tag-toggle's "on" state below,
   which fills rose under a navy label — same pairing as .btn-whatsapp, where
   the contrast was already checked. Never put cream on rose. */
.tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color:var(--navy);
  border:1px solid var(--rose);
  border-radius:999px;
  padding:5px 11px;
  margin-bottom:12px;
}

/* Discount switch: on = discounted prices shown and selectable, off = normal. */
.tag-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-top:18px;
}
.tag-row .tag{margin-bottom:0;}
.tag-toggle{
  font-family:var(--body);
  background:none;
  cursor:pointer;
  transition:background-color .16s ease;
}
.tag-toggle[aria-pressed="true"]{background:var(--rose);border-color:var(--rose);}
.tag-toggle:focus-visible{outline:2px solid var(--navy);outline-offset:2px;}
.tag-hint{font-size:12px;line-height:1.35;opacity:.65;}

/* ============ SPECIALISTS ============ */
.people{display:flex;flex-direction:column;gap:26px;}
.person-media{
  aspect-ratio:4/5;           /* portrait crop — the team shots are standing figures */
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--cream-deep);
  margin-bottom:16px;
}
.person-media img{width:100%;height:100%;object-fit:cover;}
.person h3{font-size:19px;margin-bottom:3px;}
.person .role{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--rose);
  margin:0 0 10px;
}
.person p{font-size:14.5px;opacity:.85;margin:0;}

/* ============ ABOUT / PRICES ============ */
.about{background:var(--navy);color:var(--cream);}
.about .display{color:var(--cream);}
.about .eyebrow{color:var(--rose);}
.about p{font-size:15.5px;opacity:.9;}
/* ---- about: swipeable strip of the studio ----------------------------
   Same peek-past-the-edge affordance as the related-treatments slider,
   so swiping is already a learned gesture by the time you reach it.
--------------------------------------------------------------------- */
.about-track{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  margin:0 calc(-1 * var(--gutter)) 10px;
  padding:0 var(--gutter) 4px;
  scroll-padding-left:var(--gutter);
}
.about-track::-webkit-scrollbar{display:none;}
.about-slide{
  flex:0 0 82%;
  scroll-snap-align:start;
  aspect-ratio:4/5;
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(252,243,238,0.08);
}
.about-slide img{width:100%;height:100%;object-fit:cover;}
/* zero-width markers the arrows watch via IntersectionObserver — no
   scroll-snap-align, so the browser's snap logic skips straight past them */
.about-sentinel{flex:0 0 1px;width:1px;}
/* One arrow per edge, each reflecting whether there's actually more strip in
   that direction — not a one-time nudge. pointer-events:none so neither ever
   intercepts a swipe; JS toggles at-start/at-end via IntersectionObserver on
   sentinels at each end of the track (see about-sentinel above) rather than
   scrollLeft math — iOS Safari can coalesce or drop scroll events during
   momentum scrolling, which left arrows stuck invisible after one swipe.
   No backdrop-filter: transitioning opacity and backdrop-filter together on
   the same element is a known iOS Safari freeze — the element stops
   repainting mid-transition and never recovers. */
.about-carousel{position:relative;}
.about-arrow{
  position:absolute;
  top:calc(50% - 22px);
  width:44px;height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(252,243,238,0.55);
  border:1px solid rgba(252,243,238,0.35);
  box-shadow:0 4px 14px rgba(0,0,0,0.18);
  color:var(--cream);
  pointer-events:none;
  opacity:1;
  transition:opacity .3s ease;
  will-change:opacity;
}
.about-arrow-left{left:10px;}
.about-arrow-right{right:10px;}
.about-carousel.at-start .about-arrow-left{opacity:0;}
.about-carousel.at-end .about-arrow-right{opacity:0;}

@media (prefers-reduced-motion:reduce){
  .about-arrow{transition:none;}
}

.about .about-swipe-hint{
  font-size:9px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  opacity:.35;
  margin:0 0 16px;
}
.facts{
  list-style:none;
  padding:0;
  margin:24px 0 28px;
  border-top:1px solid rgba(252,243,238,0.2);
}
.facts li{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  padding:13px 0;
  border-bottom:1px solid rgba(252,243,238,0.2);
  font-size:14.5px;
}
.facts span:first-child{opacity:.72;}
.facts span:last-child{font-weight:700;text-align:right;}
.about .btn-secondary{background:transparent;color:var(--cream);border-color:var(--cream);}
.about-actions{display:flex;flex-direction:column;gap:11px;}

/* ============ BOOKING FORM ============ */
.booking{background:var(--cream-deep);}
.form{
  background:var(--cream);
  border-radius:var(--radius);
  padding:26px 22px;
}
.field{margin-bottom:13px;}
.field label{
  display:block;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:6px;
}
.field input,.field select{
  width:100%;
  font-family:var(--body);
  font-size:16px; /* 16px prevents iOS zoom-on-focus */
  color:var(--charcoal);
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  padding:14px 15px;
  min-height:50px;
  appearance:none;
}
.field select{
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%232C3C4B' stroke-width='1.6' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:40px;
}
.phone-row{display:flex;gap:8px;}
.phone-row .phone-prefix{
  /* Wide enough for the longest option, not for the shortest: at 92 px there
     were 56 px of room inside, while "UA +380" needs 59 and "MA +212" needs 61,
     so both lost their last digit. */
  flex:0 0 104px;
  width:104px;
  padding:14px 22px 14px 12px;
  background-position:right 7px center;
}
.phone-row input[type="tel"]{flex:1 1 auto;min-width:0;}
.field input:focus,.field select:focus{
  outline:none;
  border-color:var(--rose);
  box-shadow:0 0 0 3px rgba(186,156,164,0.25);
}
.consent{
  display:flex;
  gap:11px;
  align-items:flex-start;
  margin:18px 0 20px;
  font-size:12.5px;
  line-height:1.5;
  opacity:.85;
}
/* display:flex above beats the browser's own [hidden] rule, so hiding the
   first-session row (pack-only carts) needs saying explicitly. */
.consent[hidden]{display:none;}
.consent input{
  width:20px;height:20px;
  margin:1px 0 0;
  flex:0 0 auto;
  accent-color:var(--navy);
}
.form-note{
  font-size:12.5px;
  text-align:center;
  opacity:.7;
  margin:14px 0 0;
}
.divider{
  display:flex;
  align-items:center;
  gap:14px;
  margin:24px 0;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  opacity:.55;
}
.divider::before,.divider::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--hairline);
}

/* ============ FOOTER ============ */
footer{
  background:var(--navy);
  color:var(--cream);
  padding:44px 0 34px;
}
.footer-logo{justify-content:flex-start;margin-bottom:24px;}
.footer-logo .logo-mark{background:var(--cream);color:var(--navy);}
.footer-logo .logo-word{color:var(--cream);}
.footer-block{margin-bottom:24px;font-size:14.5px;}
.footer-block h4{
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--rose);
  margin-bottom:9px;
}
.footer-block a{color:var(--cream);text-decoration:none;border-bottom:1px solid rgba(252,243,238,0.3);}
.footer-block p{margin:0 0 4px;opacity:.88;}
.legal{
  border-top:1px solid rgba(252,243,238,0.2);
  padding-top:18px;
  margin-top:8px;
  font-size:12px;
  opacity:.6;
}

/* ============ STICKY WHATSAPP CTA ============ */
.sticky-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:70;
  padding:10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg,rgba(252,243,238,0) 0%,var(--cream) 34%);
  pointer-events:none;
}
.sticky-cta .btn{
  max-width:var(--maxw);
  margin:0 auto;
  pointer-events:auto;
  box-shadow:0 6px 22px rgba(44,60,75,0.22);
}
/* Hidden once the booking form is on screen — otherwise it sits on top of
   the form's own submit button and reads as two competing CTAs. */
.sticky-cta[hidden]{display:none;}
body{padding-bottom:82px;}

/* ============ EMPTY IMAGE SLOTS ============
   Placeholder styling so missing photos read as intentional slots,
   not broken images. Remove once real photos are dropped in.
================================================= */
.slot{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--cream-deep);
}
.slot::after{
  content:attr(data-slot);
  font-family:var(--body);
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--navy);
  opacity:.42;
  text-align:center;
  padding:0 18px;
  line-height:1.7;
}
.hero-media.slot{background:var(--navy);}
.hero-media.slot::after{color:var(--cream);opacity:.4;}

@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;}
}

/* ============ WIDER SCREENS ============
   Mobile is the primary target; these keep it composed on tablet/desktop
   without redesigning the layout.
================================================= */
@media (min-width:768px){
  :root{--maxw:660px;--gutter:32px;}
  .display{font-size:42px;}
  .hero-copy .display{font-size:46px;}
  .hero-media{aspect-ratio:4/3;}
  .cards{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
  .people{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
  .about-actions{flex-direction:row;}
  .about-actions .btn{flex:1;}
}

/* ==========================================================================
   SERVICE PAGES
   Structure follows the Royal Clinic reference: title → lead → book CTA →
   accordions (description / indications / contraindications / prices) →
   full price list → FAQ → related treatments.
   Accordions use native <details>, so the content stays in the DOM and
   indexable — collapsed text still counts for search and AI answers.
   ========================================================================== */

.breadcrumb{
  padding:18px 0 0;
  font-size:14px;
}
.breadcrumb a{
  color:var(--navy);
  text-decoration:none;
  border-bottom:1px solid var(--hairline);
  padding-bottom:2px;
}
.breadcrumb a:hover{border-bottom-color:var(--navy);}

.page-head{padding:22px 0 34px;}
.page-head .display{font-size:34px;margin-bottom:16px;}
.lead{
  font-size:17px;
  line-height:1.62;
  color:var(--charcoal);
  margin:0 0 24px;
}
.page-head .btn{margin-bottom:4px;}

.page-media{
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--cream-deep);
  border-radius:var(--radius);
  margin-bottom:8px;
}
.page-media img{width:100%;height:100%;object-fit:cover;}

/* ---- accordions ---- */
.acc{border-top:1px solid var(--hairline);}
.acc details{border-bottom:1px solid var(--hairline);}
.acc summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:19px 0;
  cursor:pointer;
  font-family:var(--body);
  font-size:17px;
  font-weight:700;
  color:var(--navy);
  list-style:none;
}
.acc summary::-webkit-details-marker{display:none;}
.acc summary:focus-visible{outline:2px solid var(--rose);outline-offset:3px;}
.acc .plus{
  flex:0 0 auto;
  width:30px;height:30px;
  border:1px solid var(--hairline);
  border-radius:50%;
  position:relative;
  transition:border-color .18s ease;
}
.acc summary:hover .plus{border-color:var(--navy);}
.acc .plus::before,.acc .plus::after{
  content:"";
  position:absolute;
  top:50%;left:50%;
  background:var(--navy);
  transform:translate(-50%,-50%);
}
.acc .plus::before{width:11px;height:1.4px;}
.acc .plus::after{width:1.4px;height:11px;transition:opacity .18s ease;}
.acc details[open] .plus::after{opacity:0;}
.acc .acc-body{padding:0 0 22px;}
.acc .acc-body p{font-size:15px;margin:0 0 12px;}
.acc .acc-body p:last-child{margin-bottom:0;}
.acc .acc-body ul{margin:0;padding-left:20px;}
.acc .acc-body li{font-size:15px;margin-bottom:8px;}

/* ---- price rows inside an accordion ---- */
.rows{list-style:none;padding:0;margin:0;}
.rows li{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  padding:11px 0;
  border-bottom:1px solid var(--hairline);
  font-size:15px;
}
.rows li:last-child{border-bottom:0;}
.rows .amount{
  font-weight:700;
  color:var(--navy);
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}
.rows .amount .was{
  font-weight:400;
  opacity:.55;
  text-decoration:line-through;
  margin-right:7px;
  font-size:0.85em;
}
.rows .amount .now{color:var(--rose);}
.rows .note{
  display:block;
  font-size:12.5px;
  opacity:.7;
  margin-top:2px;
}

/* ---- selectable price rows (precios) ---- */
.rows li:has(.row-add){padding:0;}
.row-add{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:13px 0;
  background:none;
  border:0;
  font:inherit;
  color:inherit;
  text-align:left;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.row-add .row-label{flex:1 1 auto;min-width:0;}
.row-add .amount{margin-left:auto;}
.row-add:focus-visible{outline:2px solid var(--rose);outline-offset:2px;border-radius:var(--radius-sm);}
.row-tick{
  position:relative;
  flex:0 0 auto;
  width:22px;height:22px;
  border:1.5px solid var(--hairline);
  border-radius:50%;
  transition:background-color .15s ease,border-color .15s ease;
}
.row-tick::before,.row-tick::after{
  content:"";
  position:absolute;
  left:50%;top:50%;
  background:var(--navy);
  opacity:.5;
  transform:translate(-50%,-50%);
}
.row-tick::before{width:10px;height:1.5px;}
.row-tick::after{width:1.5px;height:10px;}
.row-add[aria-pressed="true"] .row-tick{background:var(--navy);border-color:var(--navy);}
.row-add[aria-pressed="true"] .row-tick::before,
.row-add[aria-pressed="true"] .row-tick::after{
  width:11px;height:1.5px;
  background:var(--cream);
  opacity:1;
}
.row-add[aria-pressed="true"] .row-tick::before{transform:translate(-50%,-50%) rotate(45deg);}
.row-add[aria-pressed="true"] .row-tick::after{transform:translate(-50%,-50%) rotate(-45deg);}

/* ---- sticky cart bar ---- */
.cart-bar{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:75;
  padding:10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg,rgba(252,243,238,0) 0%,var(--cream) 34%);
}
.cart-bar[hidden]{display:none;}
.cart-bar-inner{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  max-width:var(--maxw);
  margin:0 auto;
  padding:9px 9px 9px 20px;
  background:var(--navy);
  color:var(--cream);
  border-radius:999px;
  box-shadow:0 6px 22px rgba(44,60,75,0.22);
  transition:border-radius .15s ease;
}
.cart-bar.has-suggestion .cart-bar-inner,
.cart-bar.has-peek .cart-bar-inner{border-radius:22px;}

/* Only the price page's bar opens; the gift bar keeps its plain <div> and is
   untouched by these rules. */
button.cart-bar-info{
  background:none;
  border:0;
  padding:0;
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}

/* The handle belongs to the list it opens, not to the total line underneath:
   the arrow is now at the top of the bar, where the thing it reveals appears. */
.cart-peek-handle{
  flex:1 1 100%;
  order:-3;
  display:flex;align-items:center;justify-content:center;
  min-height:26px;padding:0 0 6px;
  background:none;border:0;color:inherit;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.cart-peek-chevron{
  width:9px;height:9px;
  border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:rotate(-135deg);
  opacity:.6;
  transition:transform .18s ease, opacity .18s ease;
}
.cart-peek-handle[aria-expanded="true"] .cart-peek-chevron{transform:rotate(45deg);}
.cart-peek-handle:hover .cart-peek-chevron{opacity:1;}
.cart-bar-info{display:block;}

.cart-peek{
  flex:1 1 100%;
  order:-2;
  list-style:none;
  margin:0 0 2px;
  padding:0 0 9px;
  border-bottom:1px solid rgba(252,243,238,0.18);
  max-height:38vh;
  overflow-y:auto;
}
.cart-peek[hidden]{display:none;}
.cart-peek li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 0;
  font-size:13px;
  line-height:1.3;
}
.cart-peek-name{flex:1 1 auto;min-width:0;}
.cart-peek-price{flex:0 0 auto;font-variant-numeric:tabular-nums;}
/* the shared × is navy, which would vanish against the navy bar */
.cart-peek .row-remove::before,
.cart-peek .row-remove::after{background:var(--cream);opacity:.8;}
.pack-suggestion{
  flex:1 1 100%;
  /* below the total, not above it: this is a footnote about the price, and a
     footnote that sits over the number it annotates competes with it */
  order:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-bottom:9px;
  margin-bottom:2px;
  border-top:1px solid rgba(252,243,238,0.18);
  border-bottom:0;
  padding:9px 0 0;
  margin:2px 0 0;
  font-size:11.5px;
  line-height:1.4;
  opacity:.8;
}
.pack-suggestion[hidden]{display:none;}
.pack-suggestion span{flex:1 1 auto;min-width:0;}
.pack-suggestion-btn{
  flex:0 0 auto;
  padding:6px 12px;
  border-radius:999px;
  background:var(--rose);
  color:var(--navy);
  border:0;
  font:inherit;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.cart-bar-info{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  min-width:0;
  line-height:1.25;
}
.cart-bar-count{font-size:12px;opacity:.75;}
.cart-bar-total{font-size:17px;font-weight:700;font-variant-numeric:tabular-nums;}
.cart-bar .btn{
  flex:0 0 auto;
  min-height:44px;
  padding:12px 22px;
  background:var(--cream);
  color:var(--navy);
}
/* the cart bar replaces the generic CTA rather than stacking on top of it */
body.has-cart .sticky-cta{display:none;}

/* ---- legal pages ----
   The draft markers are loud on purpose: an unfinished privacy policy that
   looks finished is worse than an obviously unfinished one. */
.draft-notice{
  border:2px solid var(--rose);
  border-radius:var(--radius-sm);
  padding:16px 18px;
  margin:18px 0 6px;
  background:var(--cream-deep);
}
.draft-notice p{font-size:13.5px;line-height:1.55;margin:0 0 9px;}
.draft-notice p:last-child{margin-bottom:0;}
.todo{
  display:inline;
  background:var(--rose);
  color:var(--navy);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  padding:2px 7px;
  border-radius:4px;
}
.proposed{
  display:inline;
  border:1px solid var(--navy);
  color:var(--navy);
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:1px 6px;
  border-radius:4px;
  white-space:nowrap;
}
.legal-flag{
  border-left:3px solid var(--rose);
  padding:2px 0 2px 16px;
  margin:18px 0;
}
.legal-flag p{font-size:14.5px;line-height:1.6;margin:0 0 10px;}
.legal-flag p:last-child{margin-bottom:0;}
.legal-body h2{
  font-size:19px;
  color:var(--navy);
  margin:32px 0 12px;
}
.legal-body h2:first-child{margin-top:0;}
.legal-body p{font-size:15px;line-height:1.65;margin:0 0 12px;}
.legal-list{
  list-style:none;
  padding:0;
  margin:0 0 12px;
}
.legal-list li{
  position:relative;
  padding:0 0 10px 16px;
  font-size:15px;
  line-height:1.6;
}
.legal-list li::before{
  content:"";
  position:absolute;
  left:0;top:9px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--rose);
}
.legal-body b{color:var(--navy);}
.legal-hint{font-size:13px;opacity:.7;}
.legal-body code{
  font-size:13px;
  background:var(--cream-deep);
  padding:1px 5px;
  border-radius:4px;
}

/* ---- cookie consent ---- */
.consent-banner{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:120;                      /* above the drawer's backdrop siblings */
  padding:16px var(--gutter) calc(16px + env(safe-area-inset-bottom));
  background:var(--cream);
  border-top:1px solid var(--rose);
  box-shadow:0 -8px 26px rgba(44,60,75,0.10);
}
.consent-text{
  max-width:var(--maxw);
  margin:0 auto 12px;
  font-size:13px;
  line-height:1.5;
  color:var(--charcoal);
}
.consent-actions{
  display:flex;
  gap:10px;
  max-width:var(--maxw);
  margin:0 auto;
}
.consent-actions .btn{
  flex:1 1 0;
  min-height:44px;
  padding:12px 18px;
  font-size:14px;
}
/* keep the bottom bars reachable while the banner is up */
body.consent-open .cart-bar,
body.consent-open .sticky-cta{bottom:var(--consent-h,0px);}

/* ---- checkout ---- */
.cart-list li{gap:12px;}
.row-remove{
  position:relative;
  flex:0 0 auto;
  width:26px;height:26px;
  padding:0;
  background:none;
  border:0;
  border-radius:50%;
  cursor:pointer;
}
.row-remove::before,.row-remove::after{
  content:"";
  position:absolute;
  left:50%;top:50%;
  width:11px;height:1.5px;
  background:var(--navy);
  opacity:.5;
}
.row-remove::before{transform:translate(-50%,-50%) rotate(45deg);}
.row-remove::after{transform:translate(-50%,-50%) rotate(-45deg);}
.row-remove:hover::before,.row-remove:hover::after{opacity:1;}
.row-remove:focus-visible{outline:2px solid var(--rose);outline-offset:2px;}

.cart-total-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  margin:18px 0 4px;
  padding-top:14px;
  border-top:1px solid var(--navy);
  font-size:15px;
}
.cart-total{
  font-size:22px;
  font-weight:700;
  color:var(--navy);
  font-variant-numeric:tabular-nums;
}
.empty-note{font-size:15px;opacity:.8;margin:0 0 18px;}
/* Checkout drops straight into the selection — the full section rhythm left a
   dead gap between the lead and the first service. */
.page-head-tight{padding-bottom:16px;}
.page-head-tight .lead{margin-bottom:0;}
#checkout,#cart-empty{padding-top:8px;}
.pick-hint{
  display:flex;
  align-items:center;
  gap:9px;
  margin:14px 0 0;
  font-size:13.5px;
  line-height:1.45;
  opacity:.75;
}
.pick-hint::before{
  content:"";
  flex:0 0 auto;
  width:16px;height:16px;
  border:1.5px solid var(--rose);
  border-radius:50%;
}
.optional{font-weight:400;text-transform:none;letter-spacing:0;opacity:.6;}

.field textarea{
  width:100%;
  font-family:var(--body);
  font-size:16px;
  color:var(--charcoal);
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  padding:14px 15px;
  resize:vertical;
}
.field textarea:focus{
  outline:none;
  border-color:var(--rose);
  box-shadow:0 0 0 3px rgba(186,156,164,0.25);
}

/* .steps itself is defined once, with the bono regalo block below. Only the
   sub-line and the trailing gap are particular to the thank-you page. */
#gracias .steps{margin-bottom:22px;}
.steps .note{display:block;font-size:13px;opacity:.7;margin-top:3px;}

.page-actions{
  display:flex;
  flex-direction:column;
  gap:11px;
  padding:26px 0 0;
}

/* ---- FAQ ---- */
.faq{background:var(--cream-deep);}
.faq .acc{border-top:0;}
.faq details{border-bottom:1px solid var(--hairline);}
.faq details:first-child{border-top:1px solid var(--hairline);}
.faq summary{font-size:15.5px;}
/* homepage FAQ sits between reviews (cream-deep) and booking (cream-deep),
   so it takes the lighter ground to keep the section rhythm reading */
.faq--light{background:var(--cream);}

/* ---- reviews ----
   cream-deep section, cream cards — same figure/ground move as .services.
   Horizontal swipe track on phones (same peek-past-the-edge affordance as
   .related-track and .about-track), 3-up grid from tablet. */
.reviews{background:var(--cream-deep);}
.review-list{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  margin:0 calc(-1 * var(--gutter));
  padding:0 var(--gutter) 4px;
  scroll-padding-left:var(--gutter);
}
.review-list::-webkit-scrollbar{display:none;}
.review{
  flex:0 0 86%;
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  margin:0;
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  padding:20px;
}
.review > p{
  font-size:15px;
  line-height:1.62;
  margin:0 0 15px;
}
.review-by{margin-top:auto;}
.reviews-hint{
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  opacity:.55;
  margin:14px 0 0;
}
@media (prefers-reduced-motion:reduce){
  .review-list{scroll-behavior:auto;}
}
@media (min-width:768px){
  .review-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    overflow:visible;
    margin:0;
    padding:0;
  }
  .review{flex:none;}
  .reviews-hint{display:none;}
}
.review-stars{
  font-size:13px;
  letter-spacing:0.18em;
  color:var(--rose);
  margin:0 0 10px;
}
.review-by{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.review-by cite{
  font-style:normal;
  font-weight:700;
  font-size:14.5px;
  color:var(--navy);
}
.review-with{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.07em;
  text-transform:uppercase;
  color:var(--rose);
}
.review-date{font-size:12.5px;opacity:.6;}
.reviews-more{margin-top:20px;}

/* ---- related treatments: swipeable slider --------------------------------
   The next card deliberately peeks past the right edge — that overhang is
   what tells a thumb it can swipe.
------------------------------------------------------------------------- */

.related-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  /* bleed to the screen edges so the peek reads as "there is more" */
  margin:0 calc(-1 * var(--gutter));
  padding:0 var(--gutter) 4px;
  scroll-padding-left:var(--gutter);
}
.related-track::-webkit-scrollbar{display:none;}

.related-card{
  flex:0 0 78%;
  scroll-snap-align:start;
  display:block;
  text-decoration:none;
  color:inherit;
}
.related-media{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  border-radius:var(--radius);
  background:var(--cream-deep);
}
.related-media img{width:100%;height:100%;object-fit:cover;}
.related-card h3{font-size:18px;margin:13px 0 0;}

@media (prefers-reduced-motion:reduce){
  .related-track{scroll-behavior:auto;}
}

@media (min-width:768px){
  .page-head .display{font-size:42px;}
  .page-actions{flex-direction:row;}
  .page-actions .btn{flex:1;}
  .related-track{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    overflow:visible;
    margin:0;
    padding:0;
  }
  .related-card{flex:none;}
  }

/* ==========================================================================
   PRICE LIST PAGE
   ========================================================================== */

.vat-note{
  font-size:13px;
  color:var(--charcoal);
  opacity:.7;
  margin:12px 0 0;
}
/* under the price rows, line it up with the right-aligned amounts */
.acc .acc-body .vat-note{text-align:right;}

/* sticky in-page jump bar — four treatments is too many to scroll blindly */
.price-jump{
  position:sticky;
  top:63px;
  z-index:50;
  display:flex;
  gap:8px;
  overflow-x:auto;
  scrollbar-width:none;
  padding-top:6px;
  padding-bottom:14px;
  background:var(--cream);
}
.price-jump::-webkit-scrollbar{display:none;}
.price-jump a{
  flex:0 0 auto;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  color:var(--navy);
  border:1px solid var(--hairline);
  border-radius:999px;
  padding:9px 15px;
  white-space:nowrap;
}
.price-jump a:hover{border-color:var(--navy);}
.price-jump a:focus-visible{outline:2px solid var(--rose);outline-offset:2px;}

.price-section{
  padding:38px 0 44px;
  scroll-margin-top:120px;
}
.price-section.alt{background:var(--cream-deep);}
.price-section .display{font-size:28px;}
.price-section .rows{margin-bottom:18px;}
.price-section .btn{margin-top:20px;}
.price-lead{font-size:15px;margin:20px 0 10px;}

.pdf-download{
  padding:34px 0 48px;
  border-top:1px solid var(--hairline);
}
.pdf-download .vat-note{margin:0 0 16px;}

/* ==========================================================================
   ACTIVE SERVICE CARD
   The card nearest the middle of the screen scales up to full size; the rest
   rest slightly pulled back. Scroll-driven, so the emphasis travels with you.
   ========================================================================== */

.card{
  position:relative;
  transform:scale(.93);            /* resting state: pulled back */
  transform-origin:center center;
  transition:transform .55s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.card.is-active{
  transform:scale(1) translateY(-2px);   /* the active card comes forward */
}

@media (prefers-reduced-motion:reduce){
  .card{transition:none;transform:none;}
  .card.is-active{transform:none;}
}

/* ==========================================================================
   BONO REGALO — live gift-card preview + builder
   The card is navy (structure colour, not the rose accent) so it can carry
   cream text at 10.35; rose appears only as a hairline and the sessions line.
   ========================================================================== */

.gift-preview-wrap{
  background:var(--cream-deep);
  padding:30px 0 32px;
}
.gift-hint{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--charcoal);
  opacity:.55;
  margin:0 0 12px;
}

.gift-card{
  background:var(--navy);
  color:var(--cream);
  border-radius:var(--radius);
  padding:7px;
  transition:transform .4s cubic-bezier(.22,.61,.36,1);
}
.gift-card.is-changing{transform:scale(.985);}
.gift-card-inner{
  border:1px solid rgba(186,156,164,.55);   /* rose hairline */
  border-radius:calc(var(--radius) - 6px);
  padding:20px 20px 16px;
}
.gift-card-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
}
.gift-card .logo-mark{
  background:var(--cream);
  color:var(--navy);
  width:30px;height:30px;
  font-size:17px;line-height:30px;
  flex:0 0 auto;
}
.gift-card-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  opacity:.75;
}
.gift-card-occasion{
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--rose);
  margin:0 0 6px;
}
.gift-card-treatment{
  font-size:29px;
  line-height:1.1;
  color:var(--cream);
  margin:0 0 4px;
}
.gift-card-sessions{
  font-size:15px;
  opacity:.8;
  margin:0 0 18px;
}
.gift-card-message{
  font-size:15px;
  line-height:1.55;
  min-height:2.6em;
  margin:0 0 20px;
  padding-top:16px;
  border-top:1px solid rgba(252,243,238,0.18);
}
.gift-card-foot{
  display:flex;
  gap:26px;
  font-size:14px;
}
.gift-card-foot small{
  display:block;
  font-size:10.5px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  opacity:.6;
  margin-bottom:2px;
}
.gift-card-foot b{font-weight:700;}

/* ---- builder ---- */
.gift-builder{padding-top:38px;}
.gift-field{
  border:0;
  padding:0;
  margin:0 0 24px;
}
.gift-field legend,
.gift-field label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:10px;
  padding:0;
}
.chips{display:flex;flex-wrap:wrap;gap:8px;}
.chip{
  font-family:var(--body);
  font-size:14px;
  font-weight:700;
  color:var(--navy);
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:999px;
  padding:11px 17px;
  min-height:44px;
  cursor:pointer;
  transition:background-color .18s ease, border-color .18s ease, color .18s ease;
}
.chip:hover{border-color:var(--navy);}
.chip:focus-visible{outline:2px solid var(--rose);outline-offset:2px;}
.chip.is-on{
  background:var(--navy);
  color:var(--cream);
  border-color:var(--navy);
}
.gift-field input,
.gift-field textarea{
  width:100%;
  font-family:var(--body);
  font-size:16px;                 /* 16px stops iOS zooming the page on focus */
  color:var(--charcoal);
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  padding:13px 14px;
  min-height:50px;
  resize:vertical;
}
.gift-field input:focus,
.gift-field textarea:focus{
  outline:none;
  border-color:var(--navy);
}
.gift-note{
  font-size:13px;
  color:var(--charcoal);
  opacity:.7;
  margin:9px 0 0;
}
.gift-note-center{text-align:center;}

.gift-total{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding:18px 0;
  margin-bottom:16px;
  border-top:1px solid var(--rose);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color:var(--navy);
}

/* ---- how it works ---- */
.steps{
  list-style:none;
  counter-reset:step;
  padding:0;
  margin:0;
}
.steps li{
  counter-increment:step;
  position:relative;
  padding:0 0 20px 44px;
  font-size:15px;
}
.steps li::before{
  content:counter(step);
  position:absolute;
  left:0;top:-2px;
  width:30px;height:30px;
  border:1px solid var(--rose);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;
  color:var(--navy);
}
.steps b{display:block;color:var(--navy);}

@media (prefers-reduced-motion:reduce){
  .gift-card{transition:none;}
}

.gift-layout{position:relative;}
.gift-checkout{padding-top:8px;}
/* preview and buy are different decisions — back-to-back they read as one control */
.gift-checkout .btn + .btn{margin-top:16px;}

/* The card scrolls away with the page, so the running total follows you
   instead — and doubles as the way back up to the card. */
.gift-bar .cart-bar-count{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gift-card{scroll-margin-top:84px;}

/* signals the card is live rather than a static illustration */
.gift-hint{display:flex;align-items:center;gap:8px;}
.live-dot{
  flex:0 0 auto;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--rose);
  animation:live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse{
  0%,100%{opacity:1;}
  50%{opacity:.3;}
}
.gift-preview-note{
  font-size:13px;
  line-height:1.45;
  opacity:.7;
  margin:14px 0 0;
}
@media (prefers-reduced-motion:reduce){
  .live-dot{animation:none;}
}

/* ==========================================================================
   CONTACT PAGE
   Opens with the room itself — the strongest reassurance a first-time
   visitor gets is seeing where they're actually going.
   ========================================================================== */

.contact-hero{
  aspect-ratio:5/4;
  overflow:hidden;
  background:var(--cream-deep);
}
.contact-hero img{width:100%;height:100%;object-fit:cover;}

.contact-head{padding-top:30px;}
.contact-actions{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-top:6px;
}

.contact-info{background:var(--cream-deep);}
.contact-info .wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
}
.info-block h3{font-size:16px;margin:0 0 8px;}
.info-block p{font-size:15px;margin:0 0 6px;}
.info-block p:last-child{margin-bottom:0;}
.info-block a{color:var(--navy);}

.contact-invite{padding:52px 0;}
.contact-invite .display{font-size:26px;margin-bottom:14px;}
.contact-invite p{font-size:15.5px;max-width:60ch;}

@media (min-width:600px){
  .contact-info .wrap{grid-template-columns:1fr 1fr;gap:32px;}
  /* an odd number of blocks leaves the last one alone in its row with a gap
     beside it — let that one span instead. :nth-child(odd) keeps it correct
     if a fourth block is ever added. */
  .contact-info .info-block:nth-child(odd):last-child{grid-column:1 / -1;}
  .contact-actions{flex-direction:row;}
  .contact-actions .btn{flex:1;}
}
@media (min-width:768px){
  .contact-hero{aspect-ratio:16/7;}
}

/* ============ BOOKING WIDGET ============
   Speaks the same language as the site's other forms: cream ground, hairline
   borders, uppercase labels. Every button sets its own colour — left alone,
   iOS paints button text link-blue, which is the one colour this site does
   not own. */
.bk{display:flex;flex-direction:column;gap:24px;}
.bk[aria-busy="true"]{opacity:.5;pointer-events:none;}

.bk-mock{
  margin:0 0 18px;padding:10px 14px;
  border-radius:var(--radius-sm);
  background:rgba(186,156,164,.18);
  color:var(--charcoal);
  font-size:13px;line-height:1.45;
}

/* a step reads exactly like a labelled field: label above, answer below */
.bk-step{
  padding:0;margin:0;
  /* when booking.js scrolls the active step into view, clear the sticky
     header (63px) plus a little air, so the label is not tucked under it */
  scroll-margin-top:79px;
}
.bk-step-head{display:flex;align-items:baseline;gap:7px;}
.bk-step-n,.bk-step-t{
  font-size:12px;font-weight:700;
  letter-spacing:0.06em;text-transform:uppercase;
  color:var(--navy);
}
.bk-step-n{opacity:.45;}
.bk-change{
  margin-left:auto;border:0;background:none;padding:2px;
  font-family:var(--body);font-size:12px;font-weight:700;
  letter-spacing:0.04em;text-transform:uppercase;
  color:var(--navy);opacity:.6;cursor:pointer;
  text-decoration:underline;text-underline-offset:3px;
}
.bk-change:hover{opacity:1;}
.bk-step-v{
  margin:7px 0 0;
  font-size:16px;line-height:1.4;color:var(--charcoal);
}

/* options carry the same shape as an input: same ground, same border, same radius */
.bk-list{display:flex;flex-direction:column;gap:8px;margin-top:9px;}

/* Arrival, not a switch. 340 ms on a strong ease-out, with the cascade set
   per item in booking.js — long enough to read as movement, short enough that
   the list is usable before it has finished. */
@keyframes bk-in{
  from{opacity:0;transform:translateY(9px);}
  to{opacity:1;transform:none;}
}
.bk-opt,.bk-time{
  opacity:0;
  animation:bk-in .34s cubic-bezier(.23,1,.32,1) forwards;
}
.bk-opt{
  display:flex;flex-direction:column;gap:3px;
  width:100%;min-height:52px;padding:12px 15px;
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  text-align:left;cursor:pointer;
  font-family:var(--body);color:var(--charcoal);
  transition:border-color .15s ease, transform .15s ease;
}
.bk-opt:active{transform:scale(.995);}
.bk-opt-t{font-size:15.5px;font-weight:700;color:var(--navy);}
.bk-opt-m{font-size:13px;color:var(--charcoal);opacity:.68;}
@media (hover:hover) and (pointer:fine){
  .bk-opt:hover{border-color:var(--navy);}
}

.bk-days{
  display:flex;gap:8px;margin-top:9px;
  overflow-x:auto;padding-bottom:6px;
  scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;
}
.bk-day{
  flex:0 0 auto;scroll-snap-align:start;
  width:54px;min-height:62px;padding:9px 0;
  display:flex;flex-direction:column;align-items:center;gap:2px;
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  cursor:pointer;font-family:var(--body);color:var(--navy);
}
.bk-day-w{font-size:11px;letter-spacing:.06em;text-transform:uppercase;opacity:.55;}
.bk-day-n{font-family:var(--display);font-size:20px;line-height:1.1;}
.bk-day.is-off{opacity:.28;cursor:default;}

.bk-times{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(80px,1fr));
  gap:8px;margin-top:9px;
}
.bk-time{
  min-height:48px;
  background:var(--cream);
  border:1px solid var(--hairline);
  border-radius:var(--radius-sm);
  cursor:pointer;color:var(--navy);
  font-family:var(--body);font-size:15.5px;font-weight:700;
  transition:border-color .15s ease, transform .15s ease;
}
.bk-time:active{transform:scale(.97);}
@media (hover:hover) and (pointer:fine){
  .bk-time:hover,.bk-day:not(.is-off):hover{border-color:var(--navy);}
}

.bk-more{
  margin-top:10px;border:0;background:none;padding:12px 0;min-height:44px;
  font-family:var(--body);font-size:14px;color:var(--navy);
  text-decoration:underline;text-underline-offset:3px;cursor:pointer;
}
.bk-empty{margin:9px 0 0;font-size:14.5px;line-height:1.5;color:var(--charcoal);opacity:.8;}
.bk-note{margin:6px 0 0;font-size:12.5px;color:var(--charcoal);opacity:.65;}
.bk-error{
  margin:14px 0 0;padding:11px 13px;
  border-radius:var(--radius-sm);
  background:rgba(186,156,164,.22);
  color:var(--charcoal);
  font-size:14px;line-height:1.45;
}
.bk-form{margin-top:10px;}

.bk-done-t{margin:0 0 8px;font-family:var(--display);font-size:26px;color:var(--navy);}
.bk-done-l{margin:0 0 20px;font-size:15px;line-height:1.55;color:var(--charcoal);opacity:.85;}
.bk-done-d{display:grid;grid-template-columns:auto 1fr;gap:8px 18px;margin:0;}
.bk-done-d dt{
  font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--navy);opacity:.55;align-self:center;
}
.bk-done-d dd{margin:0;font-size:15.5px;color:var(--charcoal);}

@media (prefers-reduced-motion:reduce){
  .bk-opt,.bk-time{transition:none;animation:none;opacity:1;}
  .bk-opt:active,.bk-time:active{transform:none;}
}

/* confirmation page */
/* This page ends where the footer begins, so it needs its own breathing room
   at the foot — every other page has a section's padding doing that job. */
#cita-confirmada{padding-bottom:56px;}
.cc-notes{margin:26px 0 30px;}
.cc-notes p{margin:0 0 12px;font-size:15px;line-height:1.6;color:var(--charcoal);}
.cc-notes p:last-child{margin-bottom:0;}
#cita-confirmada .bk-done-d{margin-top:4px;}

.acc-lead{margin:18px 0 8px;font-size:14px;}
.acc-lead strong{font-weight:700;}

/* the 3 + 1 offer: one studio-wide rule, stated once, not sold as a product */
.offer-note{
  margin:18px 0 6px;padding:14px 16px;
  border:1px solid var(--hairline);border-radius:var(--radius-sm);
  background:rgba(186,156,164,.14);
}
.offer-note p{margin:0;font-size:14.5px;line-height:1.55;color:var(--charcoal);}

.acc-note{margin:14px 0 0;padding:10px 12px;border-radius:var(--radius-sm);background:rgba(186,156,164,.14);font-size:13.5px;line-height:1.5;}

/* course toggle: the 3 + 1 offer as a choice the visitor makes, not a price we
   quietly apply for them */
/* display:flex beats the hidden attribute, so say it explicitly: with a 3 + 1
   row already in the cart there is nothing to apply the offer to, and offering
   it anyway reads as if the pack were not a pack. */
.cart-course[hidden]{display:none;}
.cart-course{
  flex:1 1 100%;
  order:-1;
  display:flex;align-items:center;gap:9px;
  padding:0 0 9px;margin:0 0 2px;
  border:0;border-bottom:1px solid rgba(252,243,238,0.18);
  background:none;color:inherit;
  font-family:var(--body);font-size:13px;text-align:left;
  cursor:pointer;-webkit-tap-highlight-color:transparent;
}
.cart-course-box{
  flex:0 0 auto;width:17px;height:17px;
  border:1.5px solid currentColor;border-radius:5px;
  opacity:.6;position:relative;
  transition:opacity .15s ease, background-color .15s ease;
}
.cart-course[aria-pressed="true"] .cart-course-box{
  opacity:1;background:var(--cream);
}
.cart-course[aria-pressed="true"] .cart-course-box::after{
  content:"";position:absolute;left:5px;top:1px;
  width:4px;height:9px;
  border-right:2px solid var(--navy);border-bottom:2px solid var(--navy);
  transform:rotate(45deg);
}
