/* ==========================================================================
   SBS Lashes - stylesheet
   Mobile first. Two themes, one accent, one corner radius system.

   RADIUS RULES (do not mix beyond these three):
     buttons, pills, chips ....... --r-pill (full round)
     cards, media, panels ........ --r-card (18px)
     form inputs ................. --r-input (12px)
   ========================================================================== */

:root {
  --paper:      #f6f5f7;
  --surface:    #ffffff;
  --tint:       #efedf1;
  --ink:        #17161a;
  --ink-soft:   #5c5963;
  --line:       rgba(23, 22, 26, .11);
  --line-firm:  rgba(23, 22, 26, .20);

  /* one accent, one hue, both themes */
  --accent:     #a63057;   /* fills. white text on this passes AA */
  --accent-dk:  #8b2547;   /* hover */
  --accent-ink: #a63057;   /* accent used as text or icon colour */
  --accent-soft: rgba(166, 48, 87, .075);
  --on-accent:  #ffffff;

  --r-pill:  999px;
  --r-card:  18px;
  --r-input: 12px;

  --wrap: 1160px;
  --gut:  20px;

  --shadow: 0 1px 2px rgba(23, 22, 26, .04), 0 12px 30px -12px rgba(23, 22, 26, .12);
  --ease: cubic-bezier(.16, 1, .3, 1);

  --f-disp: "Cabinet Grotesk", ui-sans-serif, system-ui, sans-serif;
  --f-body: "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:     #131217;
    --surface:   #1c1b21;
    --tint:      #191820;
    --ink:       #f1f0f3;
    --ink-soft:  #a8a5b0;
    --line:      rgba(255, 255, 255, .12);
    --line-firm: rgba(255, 255, 255, .22);
    --accent-ink: #f0a2b8;               /* lifted for contrast on dark */
    --accent-soft: rgba(240, 162, 184, .09);
    --shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 16px 40px -14px rgba(0, 0, 0, .6);
  }
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font: 400 clamp(1rem, .97rem + .18vw, 1.0625rem)/1.6 var(--f-body);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-font-smoothing: antialiased;
}
/* clears the sticky nav when a link jumps to a section */
[id] { scroll-margin-top: 84px; }
img, svg { display: block; max-width: 100%; height: auto; }
/* author display rules otherwise beat the hidden attribute */
[hidden] { display: none !important; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: fixed; top: -100px; left: 12px; z-index: 90;
  background: var(--accent); color: var(--on-accent);
  padding: 10px 16px; border-radius: var(--r-pill); text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* --- type ---------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--f-disp); font-weight: 800; letter-spacing: -.02em; line-height: 1.04; }
h1 { font-size: clamp(2.35rem, 1.55rem + 4.3vw, 3.6rem); text-wrap: balance; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.6vw, 2.85rem); }
h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }

.lede { color: var(--ink-soft); font-size: clamp(1.0625rem, 1rem + .4vw, 1.2rem); max-width: 46ch; }

.eyebrow {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent-ink); margin-bottom: 16px;
}

/* --- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 26px; border: 1px solid transparent;
  border-radius: var(--r-pill); background: none;
  font-family: var(--f-body); font-size: .975rem; font-weight: 700;
  white-space: nowrap; text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--sm { min-height: 42px; padding: 0 18px; font-size: .9rem; }

.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 6px 18px -8px rgba(166, 48, 87, .6); }
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn--primary:active { transform: scale(.98); }

.btn--ghost { border-color: var(--line-firm); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--ghost:active { transform: scale(.98); }

.btn--onpanel { background: var(--accent); color: var(--on-accent); }
.btn--onpanel:hover { background: var(--accent-dk); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) { .btn:hover, .btn:active { transform: none; } }

/* --- nav ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
@supports not (background: color-mix(in srgb, red 50%, blue)) { .nav { background: var(--paper); } }

.nav__in { display: flex; align-items: center; gap: 16px; height: 62px; }
@media (min-width: 900px) { .nav__in { height: 74px; } }

.brand { display: flex; flex-direction: column; text-decoration: none; margin-right: auto; line-height: 1; }
.brand__mark { font-family: var(--f-disp); font-weight: 800; font-size: 1.32rem; letter-spacing: .01em; }
.brand__sub { font-size: .625rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

.nav__links { display: none; gap: 30px; }
.nav__links a { font-size: .94rem; font-weight: 500; text-decoration: none; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__right { display: flex; align-items: center; gap: 8px; }
/* the sticky bottom bar already carries the CTA on phones, so one is enough */
@media (max-width: 899px) { .nav__cta { display: none; } }

.nav__burger {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--line-firm); border-radius: var(--r-pill);
  background: none; cursor: pointer; font-size: 1.25rem;
}
@media (min-width: 900px) { .nav__burger { display: none; } }

/* mobile drawer */
@media (max-width: 899px) {
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; inset: 62px 0 auto; z-index: 39;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 6px var(--gut) 14px; box-shadow: var(--shadow);
  }
  .nav__links.is-open a {
    padding: 15px 2px; border-bottom: 1px solid var(--line);
    font-size: 1.05rem; color: var(--ink);
  }
  .nav__links.is-open a:last-child { border-bottom: 0; }
}

/* --- hero ---------------------------------------------------------------- */
.hero { padding: 34px 0 8px; }
@media (min-width: 900px) { .hero { padding: 56px 0 24px; } }

.hero__in { display: grid; gap: 30px; }
@media (min-width: 900px) {
  .hero__in { grid-template-columns: 1.12fr .88fr; gap: 52px; align-items: center; }
}
.hero__copy h1 { margin-bottom: 20px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__cta .btn { flex: 1 1 auto; min-width: 168px; }
@media (min-width: 560px) { .hero__cta .btn { flex: 0 0 auto; } }

/* her portrait, circular, with a gold ring that echoes the gold in her logo */
.hero__media { display: flex; justify-content: center; }
.portrait {
  position: relative; margin: 0;
  width: 100%; max-width: 300px; aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;                                  /* the gold ring thickness */
  background: linear-gradient(150deg, #e7c86a 0%, #b8912f 38%, #f4e2a1 62%, #a9832a 100%);
  box-shadow: var(--shadow);
}
.portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  border-radius: 50%;
  border: 3px solid var(--surface);              /* thin gap between photo and ring */
}
@media (min-width: 900px) { .portrait { max-width: 380px; } }

/* --- trust strip --------------------------------------------------------- */
.strip { padding: 26px 0; }
.strip__in {
  display: grid; gap: 14px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px var(--gut);
}
@media (min-width: 760px) { .strip__in { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.strip__item { display: flex; align-items: center; gap: 11px; font-size: .93rem; color: var(--ink-soft); }
.strip__item i { font-size: 1.4rem; color: var(--accent-ink); flex: none; }

/* --- section shells ------------------------------------------------------ */
.section { padding: 56px 0; }
@media (min-width: 900px) { .section { padding: 96px 0; } }
.section--tint { background: var(--tint); }

.head { margin-bottom: 32px; max-width: 62ch; }
.head h2 { margin-bottom: 14px; }
.head__body { color: var(--ink-soft); max-width: 58ch; }
.head__solo { margin-bottom: 34px; }

/* --- services bento ------------------------------------------------------ */
/* every tile the same size, so every photo is the same size */
.bento { display: grid; gap: 12px; }
@media (min-width: 620px) { .bento { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (min-width: 980px) { .bento { grid-template-columns: repeat(3, 1fr); } }

.tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 22px;
  display: flex; flex-direction: column;
}
.tile__top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.tile h3 { letter-spacing: -.015em; }
.tile__price { font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem; color: var(--accent-ink); white-space: nowrap; }
.tile__time { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 7px; }
.tile__blurb { color: var(--ink-soft); font-size: .93rem; margin-top: 11px; }
.tile--tinted { background: var(--accent-soft); border-color: transparent; }

/* a photo of the real set sits at the bottom of the tile. The text area grows,
   so photos line up across a row even when descriptions differ in length. */
.tile--photo { padding: 0; overflow: hidden; }
.tile--photo .tile__text { padding: 22px; flex: 1 1 auto; }
.tile--photo .tile__pic { aspect-ratio: 4 / 3; overflow: hidden; }
.tile--photo .tile__pic img { width: 100%; height: 100%; object-fit: cover; }




/* per service, straight to its own times on the booking page */
.tile__book {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  margin-top: 18px; min-height: 42px; padding: 0 18px;
  border: 1px solid var(--accent); border-radius: var(--r-pill);
  background: var(--accent); color: var(--on-accent);
  font-size: .875rem; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.tile__book:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); }
.tile__book:active { transform: scale(.98); }
.tile__book i { font-size: 1rem; }
.tile__book--soft { background: none; color: var(--accent-ink); border-color: var(--line-firm); }
.tile__book--soft:hover { background: none; border-color: var(--accent-ink); }
@media (prefers-reduced-motion: reduce) { .tile__book:hover, .tile__book:active { transform: none; } }

.pricenote { color: var(--ink-soft); font-size: .9rem; margin-top: 18px; }

/* --- before / after ------------------------------------------------------ */
.gallery { display: grid; gap: 16px; }
@media (min-width: 900px) { .gallery { grid-template-columns: 1.3fr 1fr; gap: 18px; align-content: start; } }

.ba { margin: 0; }
.ba__frame {
  position: relative; overflow: hidden;
  border-radius: var(--r-card); background: var(--tint);
  aspect-ratio: 4 / 3; box-shadow: var(--shadow);
  touch-action: pan-y;
}
@media (min-width: 900px) {
  .gallery > .ba:first-child .ba__frame { aspect-ratio: 4 / 5; }
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__img--after { clip-path: inset(0 0 0 var(--pos, 50%)); }

/* functional comparison labels, not decoration */
.ba__tag {
  position: absolute; bottom: 12px; z-index: 3;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(18, 17, 21, .62); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  pointer-events: none;
}
.ba__tag--l { left: 12px; }
.ba__tag--r { right: 12px; }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); z-index: 4;
  width: 2px; margin-left: -1px; background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 0 1px rgba(18, 17, 21, .22); pointer-events: none;
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px; transform: translate(-50%, -50%);
  border-radius: var(--r-pill); background: #fff;
  box-shadow: 0 4px 14px rgba(18, 17, 21, .3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 256 256' fill='%2317161a'%3E%3Cpath d='M104 60v136a8 8 0 0 1-13.66 5.66l-64-64a8 8 0 0 1 0-11.32l64-64A8 8 0 0 1 104 60Zm125.66 66.34-64-64A8 8 0 0 0 152 68v136a8 8 0 0 0 13.66 5.66l64-64a8 8 0 0 0 0-11.32Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.ba__range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0; padding: 0;
  background: none; -webkit-appearance: none; appearance: none;
  cursor: ew-resize; touch-action: pan-y;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100vh; background: none; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 46px; height: 999px; border: 0; background: none; cursor: ew-resize; }
.ba__range::-moz-range-track { background: none; }
.ba figcaption { color: var(--ink-soft); font-size: .88rem; margin-top: 11px; }
.ba figcaption span { color: var(--accent-ink); font-weight: 600; }

/* --- training panel ------------------------------------------------------ */
.panel { background: var(--accent-soft); }
.panel__in { display: grid; gap: 32px; }
.panel__copy { max-width: 60ch; }
.panel__copy h2 { margin-bottom: 16px; }

.ticks { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; }
.ticks li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; font-size: .96rem; }
.ticks i { color: var(--accent-ink); font-size: 1.15rem; }

/* --- quotes -------------------------------------------------------------- */
.quotes { display: grid; gap: 30px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.quote { padding-top: 22px; border-top: 2px solid var(--accent-ink); }
@media (min-width: 860px) {
  .quote { padding: 22px 30px 0; border-top: 0; border-left: 1px solid var(--line); }
  .quote:first-child { padding-left: 0; border-left: 0; }
}
.quote p { font-family: var(--f-disp); font-weight: 700; font-size: 1.12rem; line-height: 1.35; letter-spacing: -.015em; }
.quote cite { display: block; margin-top: 16px; font-style: normal; font-size: .86rem; color: var(--ink-soft); }
.quote cite b { display: block; color: var(--ink); font-weight: 700; }

/* --- faq accordion ------------------------------------------------------- */
.faq { max-width: 780px; }
.acc { border-top: 1px solid var(--line-firm); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 0; cursor: pointer; list-style: none;
  font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "\002B"; flex: none; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: var(--r-pill);
  border: 1px solid var(--line-firm); font-family: var(--f-body); font-weight: 400; font-size: 1.15rem;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.acc details[open] summary::after { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.acc .acc__body { padding: 0 0 22px; color: var(--ink-soft); max-width: 62ch; }
@media (prefers-reduced-motion: reduce) { .acc summary::after { transition: none; } }

/* --- booking ------------------------------------------------------------- */
/* calendar on the left, the details people want while booking on the right */
.book { display: grid; gap: 36px; }
@media (min-width: 1000px) { .book { grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: start; } }

/* ── booking: on-brand CTA card (booking.js renders into #bookingWidget) ── */
.bookcta__inner {
  --bookcta-pad: clamp(24px, 1.4vw + 18px, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  padding: var(--bookcta-pad);
  display: flex; flex-direction: column; gap: 20px;
}
.bookcta__title { font-family: var(--f-disp); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); line-height: 1.08; }
.bookcta__lede { color: var(--ink-soft); max-width: 46ch; }
.bookcta__action { display: flex; flex-direction: column; gap: 10px; }
.bookcta__btn { width: 100%; justify-content: center; padding-block: 15px; font-size: 1.03rem;
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease); }
.bookcta__btn:hover { transform: translateY(-2px); }
.bookcta__fine { font-size: .82rem; color: var(--ink-soft); }
.bookcta__ico { font-size: 1.05em; margin-left: 8px; transition: transform .25s var(--ease); }
.bookcta__btn:hover .bookcta__ico { transform: translate(2px, -2px); }
@media (prefers-reduced-motion: reduce) { .bookcta__btn:hover .bookcta__ico { transform: none; } }
.bookcta__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
  padding-top: 18px; border-top: 1px solid var(--line); }
.bookcta__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--ink-soft); }
.bookcta__trust i { color: var(--accent-ink); font-size: 1.1rem; }
/* inline mode (providers that allow flat embedding).
   The provider's calendar is always a light panel and we cannot restyle inside
   it (cross-origin). So rather than let white butt straight into the dark card,
   it is presented as a deliberate floating panel: a thin white surround in the
   same colour as the calendar, rounded corners, and a soft shadow lifting it
   off the surface. The seam reads as design instead of an embedded widget. */
.bookcta__inline {
  background: #fff;
  border-radius: var(--r-card);
  padding: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bookcta__frame {
  width: 100%; height: 760px; border: 0; display: block;
  border-radius: calc(var(--r-card) - 6px);
}
/* phones: trim the card padding so the calendar keeps its width without having
   to break out of the card and lose its rounded corners */
@media (max-width: 640px) {
  .bookcta__inner { --bookcta-pad: 16px; }
  .bookcta__frame { height: 86vh; min-height: 620px; }
}

/* ── booking: full-screen modal ─────────────────────────────────────────── */
body.bk-lock { overflow: hidden; }
.bkmodal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 3vw, 40px); opacity: 0; transition: opacity .28s var(--ease); }
.bkmodal.is-open { opacity: 1; }
.bkmodal__backdrop { position: absolute; inset: 0; background: rgba(23, 22, 26, .55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.bkmodal__panel { position: relative; z-index: 1; display: flex; flex-direction: column;
  width: 100%; max-width: 640px; height: min(88vh, 920px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow); overflow: hidden;
  transform: translateY(14px) scale(.985); transition: transform .34s var(--ease); }
.bkmodal.is-open .bkmodal__panel { transform: none; }
.bkmodal__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 14px 13px 20px; border-bottom: 1px solid var(--line); }
.bkmodal__title { font-family: var(--f-disp); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }
.bkmodal__tools { display: flex; align-items: center; gap: 4px; }
.bkmodal__newtab { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 600;
  color: var(--accent-ink); text-decoration: none; padding: 8px 12px; border-radius: var(--r-pill);
  transition: background-color .2s var(--ease); }
.bkmodal__newtab:hover { background: var(--accent-soft); }
.bkmodal__close { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid var(--line); background: transparent; border-radius: var(--r-pill); cursor: pointer;
  font-size: 1.15rem; color: var(--ink); transition: border-color .2s var(--ease), background-color .2s var(--ease); }
.bkmodal__close:hover { border-color: var(--line-firm); background: var(--tint); }
.bkmodal__body { position: relative; flex: 1; background: var(--surface); }
.bkmodal__frame { width: 100%; height: 100%; border: 0; display: block; opacity: 0; transition: opacity .4s var(--ease); }
.bkmodal.is-loaded .bkmodal__frame { opacity: 1; }
.bkmodal__loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 24px; text-align: center; color: var(--ink-soft); font-size: .9rem; }
.bkmodal.is-loaded .bkmodal__loading { display: none; }
.bkmodal__spin { width: 30px; height: 30px; border-radius: 50%;
  border: 2.5px solid var(--line-firm); border-top-color: var(--accent-ink); animation: bkspin .8s linear infinite; }
@keyframes bkspin { to { transform: rotate(360deg); } }
.bkmodal__slowlink { opacity: 0; pointer-events: none; font-weight: 600; color: var(--accent-ink);
  text-decoration: underline; transition: opacity .3s var(--ease); }
.bkmodal.is-slow .bkmodal__slowlink { opacity: 1; pointer-events: auto; }
@media (max-width: 640px) {
  .bkmodal { padding: 0; }
  .bkmodal__panel { max-width: none; height: 100%; border: 0; border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bkmodal, .bkmodal__panel, .bkmodal__frame, .bookcta__btn { transition: none; }
  .bkmodal__panel { transform: none; }
  .bookcta__btn:hover { transform: none; }
  .bkmodal__spin { animation-duration: 1.5s; }
}

/* our own booking form + calendar */
.bk {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 22px;
}
@media (min-width: 620px) { .bk { padding: 28px; } }
.bk__step { margin-bottom: 26px; }
.bk__label { display: block; font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; margin-bottom: 13px; }

.bk__select, .bk__fields input, .bk__fields select, .bk__fields textarea {
  width: 100%; min-height: 50px; padding: 0 14px;
  border: 1px solid var(--line-firm); border-radius: var(--r-input);
  background: var(--paper); color: var(--ink); font-size: 1rem;
}
.bk__fields textarea { padding: 12px 14px; min-height: 0; resize: vertical; line-height: 1.5; }
.bk__select:focus-visible, .bk__fields :focus-visible { outline-offset: 1px; border-color: var(--accent-ink); }
[aria-invalid="true"] { border-color: var(--accent-ink) !important; }

/* month grid */
.bkcal { border: 1px solid var(--line); border-radius: var(--r-card); padding: 14px; background: var(--paper); }
.bkcal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bkcal__month { font-family: var(--f-disp); font-weight: 700; font-size: 1.02rem; }
.bkcal__nav {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line-firm); border-radius: var(--r-pill);
  background: none; cursor: pointer; font-size: 1.1rem; color: var(--ink);
}
.bkcal__nav:disabled { opacity: .32; cursor: default; }
.bkcal__nav:not(:disabled):hover { border-color: var(--ink); }
.bkcal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 4px; }
.bkcal__dow span { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.bkcal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bkcal__pad { aspect-ratio: 1; }
.bkcal__day {
  aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid transparent; border-radius: var(--r-input);
  background: var(--surface); color: var(--ink); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.bkcal__day:not(:disabled):hover { border-color: var(--accent-ink); }
.bkcal__day:disabled { background: none; color: var(--ink-soft); opacity: .4; cursor: default; }
.bkcal__day[aria-current="date"] { text-decoration: underline; }
.bkcal__day.is-sel { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* time slots */
.bk__times { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 9px; }
.bk__time {
  min-height: 46px; padding: 0 10px;
  border: 1px solid var(--line-firm); border-radius: var(--r-pill);
  background: var(--paper); color: var(--ink); font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.bk__time:hover { border-color: var(--accent-ink); }
.bk__time.is-sel { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.bk__none { color: var(--ink-soft); font-size: .93rem; }

/* details */
.bk__fields { display: grid; gap: 16px; }
@media (min-width: 560px) { .bk__fields { grid-template-columns: 1fr 1fr; } }
.bk__field { display: grid; gap: 7px; }
.bk__field--full { grid-column: 1 / -1; }
.bk__field label { font-size: .88rem; font-weight: 600; }
.bk__field label span { color: var(--ink-soft); font-weight: 400; }
.bk__hint { font-size: .8rem; color: var(--ink-soft); }
.bk__err { font-size: .85rem; color: var(--accent-ink); font-weight: 600; }
.bk__err--form { margin: 14px 0 0; }

.bk__summary {
  display: grid; gap: 3px; margin: 4px 0 20px; padding: 16px;
  border-radius: var(--r-input); background: var(--accent-soft);
}
.bk__summary strong { font-family: var(--f-disp); font-size: 1.05rem; }
.bk__summary span { font-size: .9rem; color: var(--ink-soft); }
.bk__copy { white-space: pre-wrap; font-size: .82rem; background: var(--surface); padding: 12px; border-radius: var(--r-input); border: 1px solid var(--line); margin-bottom: 10px; overflow-x: auto; }

/* visually hidden, still read aloud */
.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* honeypot: off-screen rather than display:none, which some bots skip */
.bk__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.bk__consent { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; margin: 0 0 16px; }
.bk__consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.bk__consent label { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
.bk__consent a { color: var(--accent-ink); font-weight: 600; }

.bk__submit { width: 100%; margin-top: 4px; }
.bk__submit:disabled { opacity: .5; cursor: default; box-shadow: none; }
.bk__fineprint { font-size: .8rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

.bk__done {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 40px 26px; text-align: center; display: grid; justify-items: center; gap: 12px;
}
.bk__done i { font-size: 3rem; color: var(--accent-ink); }
.bk__done p { color: var(--ink-soft); max-width: 42ch; }
.bk__done .btn { margin-top: 8px; }

.book__info { display: grid; gap: 0; }
.infoblock { padding: 22px 0; border-top: 1px solid var(--line); }
.infoblock:first-child { padding-top: 0; border-top: 0; }
.infoblock h3 { margin-bottom: 13px; }

.facts { list-style: none; padding: 0; display: grid; gap: 14px; }
.facts li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; font-size: .92rem; color: var(--ink-soft); }
.facts i { font-size: 1.2rem; color: var(--accent-ink); }

.card__note { font-size: .93rem; color: var(--ink-soft); }
.card__note + .card__note { margin-top: 9px; }

.addons { list-style: none; padding: 0; display: grid; gap: 16px; }
.addons li { display: grid; grid-template-columns: 1fr auto; gap: 3px 14px; }
.addons__name { font-weight: 700; font-size: .95rem; }
.addons__price { font-family: var(--f-disp); font-weight: 700; color: var(--accent-ink); }
.addons__note { grid-column: 1 / -1; font-size: .85rem; color: var(--ink-soft); }

.studio address { font-style: normal; color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }
.studio__note { display: block; margin-top: 9px; font-size: .88rem; }
.studio__map {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 4px;
  color: var(--accent-ink); font-size: .9rem; font-weight: 700; text-decoration: none;
}
.studio__map:hover span { text-decoration: underline; }
.studio__map i { font-size: 1.15rem; }

/* Zelle deposit. The code keeps a white bed in both themes so it stays scannable. */
.zelle { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.zelle__qr {
  width: 152px; height: 152px; flex: none; padding: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-input);
}
.zelle__side { flex: 1 1 170px; display: grid; gap: 11px; justify-items: start; }
.zelle__side .card__note strong { font-family: var(--f-disp); font-size: 1.05rem; color: var(--ink); }
.zelle__hint { display: block; margin-top: 6px; font-size: .82rem; }

/* her logo, on the plaque its own artwork provides */

/* --- footer -------------------------------------------------------------- */
.foot { border-top: 1px solid var(--line); padding-top: 50px; }
.foot__in { display: grid; gap: 34px; padding-bottom: 40px; }
@media (min-width: 760px) { .foot__in { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 30px; } }
.foot__logo { width: 148px; height: auto; }
.foot__brand p { color: var(--ink-soft); font-size: .9rem; margin-top: 14px; max-width: 30ch; }
.foot__social { display: flex; gap: 9px; margin-top: 20px; }
.foot__social a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 16px;
  border: 1px solid var(--line-firm); border-radius: var(--r-pill);
  font-size: .88rem; font-weight: 600; text-decoration: none;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.foot__social a:hover { border-color: var(--ink); }
.foot__social i { font-size: 1.05rem; color: var(--accent-ink); }

.foot__col h3 { margin-bottom: 16px; }
/* roomy enough to hit with a thumb */
.foot__col a { display: flex; align-items: center; min-height: 44px; font-size: .9rem; color: var(--ink-soft); text-decoration: none; }
@media (min-width: 760px) { .foot__col a { min-height: 0; padding: 7px 0; display: block; } }
.foot__col a:hover { color: var(--ink); }
.foot__hours { list-style: none; padding: 0; display: grid; gap: 7px; font-size: .9rem; color: var(--ink-soft); }
.foot__hours b { display: inline-block; min-width: 92px; color: var(--ink); font-weight: 600; }
.foot__area { font-size: .9rem; color: var(--ink-soft); margin-bottom: 12px; }
.foot__address { font-style: normal; font-size: .9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }

.foot__base {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding-block: 22px;
  font-size: .84rem; color: var(--ink-soft);
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.foot__base a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--accent-ink); font-weight: 700; text-decoration: none;
}

/* --- sticky mobile bar --------------------------------------------------- */
.bar {
  position: fixed; z-index: 45; left: 0; right: 0; bottom: 0;
  display: flex; gap: 9px; align-items: center;
  padding: 11px var(--gut) calc(11px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(0);
  transition: transform .35s var(--ease);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) { .bar { background: var(--paper); } }
.bar.is-hidden { transform: translateY(112%); }
.bar .btn { flex: 1 1 auto; }
.bar__side { display: flex; gap: 9px; }
.bar__side a {
  display: grid; place-items: center; width: 50px; height: 50px; flex: none;
  border: 1px solid var(--line-firm); border-radius: var(--r-pill);
  font-size: 1.3rem; color: var(--accent-ink); text-decoration: none;
}
@media (min-width: 900px) { .bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); } }
@media (prefers-reduced-motion: reduce) { .bar { transition: none; } }

/* --- scroll reveal ------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal--d1 { transition-delay: .08s; }
  .reveal--d2 { transition-delay: .16s; }
}

/* --- legal pages and 404 ------------------------------------------------- */
.legal { max-width: 68ch; }
.legal h1 { margin-bottom: 10px; }
.legal__updated { font-size: .85rem; color: var(--ink-soft); margin-bottom: 28px; }
.legal .lede { margin-bottom: 34px; }
.legal h2 {
  font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem);
  margin: 34px 0 12px; padding-top: 22px; border-top: 1px solid var(--line);
}
.legal p { margin-bottom: 14px; color: var(--ink-soft); }
.legal strong { color: var(--ink); }
.legal ul { margin: 0 0 16px 1.1rem; color: var(--ink-soft); display: grid; gap: 9px; }
.legal a { color: var(--accent-ink); font-weight: 600; }
.legal__back { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }

.notfound { display: grid; place-items: center; min-height: 70vh; text-align: center; }
.notfound__in { max-width: 52ch; }
.notfound .hero__cta { justify-content: center; margin-top: 30px; }
