/* ===================================================================
   Benito Brow Bar — Global Stylesheet
   Phase 1: tokens, typography, zero-shift reset, header, nav, sticky CTA
   Static build — vanilla CSS3, no framework. Mobile-first.
   =================================================================== */

/* ---- Design tokens (LOCKED — warm Japandi) ---- */
:root {
  --cream:        #F4F0EB; /* page background */
  --ink:          #2C2A29; /* body + headline text */
  --brand-orange: #F8911E; /* primary warm/script accent */
  --blush:        #E3C4BE; /* soft card / section tints */
  --clay:         #B5675C; /* CTA + hover only */

  /* derived / functional */
  --clay-dark:    #9C564C; /* legacy accent hover */
  --orange-dark:  #C96A1E; /* primary button hover (deeper orange) */
  --ink-gloss:    linear-gradient(158deg, #4c473f 0%, #35322e 34%, #2a2825 62%, #1f1d1c 100%); /* lush glossy charcoal */
  --ink-60:       rgba(44, 42, 41, 0.60);
  --ink-12:       rgba(44, 42, 41, 0.12);

  /* layout constants — drive zero-shift sizing */
  --header-h:     60px;    /* explicit, matches spec max-height */
  --footer-cta-h: 68px;    /* reserved space for sticky CTA */
  --maxw:         440px;   /* mobile-first content column */
  --radius-box:   24px;    /* generous curve on cards / boxes */
  --radius-btn:   14px;    /* squarer, lightly-rounded buttons */

  /* type */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  /* motion */
  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ---- Reset / zero-layout-shift baseline ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Kill ALL default top margins that could push content below the fold */
html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol, dl {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

a { color: inherit; text-decoration: none; }

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0.01em;
  /* Clear the fixed header (not dead space) + clear the floating buttons */
  padding-top: var(--header-h);
  padding-bottom: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Lock scroll when the nav overlay is open */
body.nav-open { overflow: hidden; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* High-tracking sans utility for eyebrow labels */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-60);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 30px;
}

/* ===================================================================
   HEADER — persistent, centred wordmark, left hamburger, max 60px
   =================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  max-height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  background: var(--ink-gloss);   /* glossy charcoal bar */
  border-bottom: 1px solid rgba(244, 240, 235, 0.12);
}
.site-header__left, .site-header__right { display: flex; align-items: center; gap: 16px; }

/* Desktop inline nav + header actions (hidden on mobile) */
.site-nav, .site-header__social, .site-header__book { display: none; }

/* Hamburger — left aligned, minimalist */
.nav-toggle {
  margin-left: -8px;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 1002; /* stays above overlay so it can also close */
}
.nav-toggle__bars {
  position: relative;
  width: 22px; height: 1.5px;
  background: var(--cream);          /* cream on the charcoal bar */
  transition: background 0.2s var(--ease);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), background 0.2s var(--ease);
}
.nav-toggle__bars::before { top: -6px; }  /* top line */
.nav-toggle__bars::after  { top: 6px; }   /* bottom line */

/* Hover — all three lines turn orange */
.nav-toggle:hover .nav-toggle__bars,
.nav-toggle:hover .nav-toggle__bars::before,
.nav-toggle:hover .nav-toggle__bars::after { background: var(--brand-orange); }

/* Open → X (middle line hides, top + bottom cross) */
body.nav-open .nav-toggle__bars,
body.nav-open .nav-toggle:hover .nav-toggle__bars { background: transparent; }
body.nav-open .nav-toggle__bars::before,
body.nav-open .nav-toggle__bars::after { background: var(--ink); }
body.nav-open .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

/* Wordmark — sits far right (home link). */
.wordmark {
  display: inline-flex; align-items: center;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.wordmark em { font-style: italic; color: var(--brand-orange); }
/* Logo SVG — the far-right home link, a touch larger */
.wordmark__img { height: 36px; width: auto; display: block; }

/* Desktop nav links */
.site-nav a {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream);
  transition: color 0.18s var(--ease);
}
.site-nav a:hover { color: var(--brand-orange); }
.site-header__social a { color: rgba(244, 240, 235, 0.75); display: flex; transition: color 0.18s var(--ease); }
.site-header__social a:hover { color: var(--brand-orange); }
.site-header__social svg { width: 18px; height: 18px; }
.site-header__book { padding: 10px 20px; font-size: 0.78rem; }

/* ===================================================================
   NAV OVERLAY — full-screen, z-index layered, resets on every toggle
   =================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  /* hidden default state — opacity + visibility so it fully resets */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.32s var(--ease),
              transform 0.32s var(--ease),
              visibility 0s linear 0.32s;
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.32s var(--ease),
              transform 0.32s var(--ease),
              visibility 0s linear 0s;
}

/* Feather watermark on the burger / drop-down screen */
.nav-overlay::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../img/bird5.webp") no-repeat right -14vw center / auto 118%;
  opacity: 0.16;
}
.nav-overlay__list {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-overlay__link {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  padding: 5px 0;
  transition: color 0.2s var(--ease);
}
.nav-overlay__link:hover,
.nav-overlay__link:focus-visible { color: var(--clay); }

.nav-overlay__footnote {
  margin-top: 36px;
  color: var(--ink-60);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ===================================================================
   STICKY FOOTER CTA — fixed bottom, anchored through all scrolling
   =================================================================== */
/* Floating round "Book now" button — identical to the contact button,
   pinned to the far RIGHT (contact sits far left). */
.cta-bar {
  position: fixed;
  right: 16px; left: auto;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 999; /* below the nav overlay (1001) so it hides when menu open */
}
.cta-bar .cta-bar__btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 0; padding: 0;
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.58rem; letter-spacing: 0.02em; line-height: 1.1;
  background: radial-gradient(circle at 35% 28%, #43403a, #2b2928 72%); color: var(--cream);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.08s var(--ease);
}
.cta-bar .cta-bar__btn:hover,
.cta-bar .cta-bar__btn:focus-visible { background: var(--brand-orange); color: var(--ink); }
.cta-bar .cta-bar__btn:active { background: var(--brand-orange); color: var(--ink); transform: scale(0.95); }
/* When the menu is open, drop the CTA out of the way */
body.nav-open .cta-bar { opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease); }

/* Auto-hide the floating buttons while scrolling down so they never
   cover content; they slide back in on scroll-up / at the top. */
.cta-bar, .contact { transition: opacity 0.28s var(--ease), transform 0.28s var(--ease); }
body.floats-hidden .cta-bar,
body.floats-hidden .contact,
body.at-footer .cta-bar,
body.at-footer .contact { opacity: 0; transform: translateY(24px); pointer-events: none; }

/* Contact anchor clears the fixed header + sticky bar when jumped to */
#contact { scroll-margin-top: 76px; scroll-margin-bottom: 84px; }

/* ===================================================================
   FLOATING CONTACT WIDGET (bottom-right, above the sticky Book bar)
   =================================================================== */
.contact {
  position: fixed;
  left: 16px; right: auto;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 1002; /* above header + floating book button */
}
body.nav-open .contact { opacity: 0; pointer-events: none; }

.contact__fab {
  width: 52px; height: 52px; border-radius: 50%;
  border: 0; background: radial-gradient(circle at 35% 28%, #43403a, #2b2928 72%); color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: background 0.2s var(--ease), transform 0.08s var(--ease);
}
.contact__fab:hover { background: var(--brand-orange); color: var(--ink); }
.contact__fab:active { transform: scale(0.95); }
.contact__fab svg { width: 24px; height: 24px; }

.contact__panel {
  position: absolute; left: 0; bottom: calc(100% + 12px);
  width: 300px; max-width: calc(100vw - 32px);
  background: #fff; border: 1px solid var(--ink-12); border-radius: 18px; overflow: hidden;
  box-shadow: 0 14px 44px rgba(0,0,0,0.22);
  transform: translateY(8px) scale(0.98); transform-origin: bottom left;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
}
.contact.is-open .contact__panel {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s;
}
.contact__head {
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; gap: 8px; padding: 14px 16px;
}
.contact__title { font-family: var(--font-head); font-size: 1.1rem; flex: 1; }
.contact__ico { background: none; border: 0; color: rgba(244,240,235,0.75); cursor: pointer; display: flex; padding: 4px; }
.contact__ico:hover { color: var(--brand-orange); }
.contact__ico svg { width: 18px; height: 18px; }
.contact__ico--x { margin-left: auto; }
.contact__body { padding: 12px; }
.contact__hint { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-60); padding: 6px 6px 10px; }
.contact__stores { max-height: 264px; overflow-y: auto; display: flex; flex-direction: column; }
.contact__store { text-align: left; background: none; border: 0; cursor: pointer; padding: 10px; border-radius: 10px; display: flex; flex-direction: column; }
.contact__store:hover { background: var(--blush); }
.contact__store-name { font-weight: 600; font-size: 0.95rem; transition: color 0.15s var(--ease); }
.contact__store:hover .contact__store-name { color: var(--brand-orange); }
.contact__store-host { font-size: 0.78rem; color: var(--ink-60); }
.contact__body--actions { display: flex; flex-direction: column; gap: 10px; }
.contact__action {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px;
  background: var(--blush); color: var(--ink); font-size: 0.92rem; font-weight: 500;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.contact__action:hover { background: var(--brand-orange); color: var(--ink); }
.contact__action svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* Global button — pebble shape (matches the outer boxes), outline at rest,
   fills solid orange ONLY on hover (desktop) or tap/active (mobile).
   Nothing is solid orange until it's interacted with. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  padding: 15px 26px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-btn);   /* squarer, lightly rounded */
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.08s var(--ease);
}
.btn:hover,
.btn:focus-visible,
.btn:active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--ink);
}
.btn:active { transform: translateY(1px); }

/* Primary + secondary: outline at rest (no solid orange until interacted). */
.btn--primary { background: transparent; border-color: var(--ink); color: var(--ink); }

/* Dark — the recommended/working booking route per store (filled charcoal). */
.btn--dark { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn--dark:hover,
.btn--dark:focus-visible,
.btn--dark:active { background: var(--brand-orange); border-color: var(--brand-orange); color: var(--ink); }

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

/* ---- Accessibility helpers ---- */
.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;
}
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Secondary button — inherits the global outline→orange pill.
   Quieter than primary (which is filled at rest). */
.btn--secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

/* Disabled / placeholder (holders, coming-soon links) */
.btn--disabled {
  background: var(--blush);
  border-color: transparent;
  color: var(--ink-60);
  cursor: default;
  pointer-events: none;
}
.btn--disabled:hover { background: var(--blush); color: var(--ink-60); }
.btn--secondary.btn--disabled {
  background: transparent;
  border-color: var(--ink-12);
}

/* ===================================================================
   BOOKING FUNNEL OVERLAY (the only way to book)
   =================================================================== */
body.bk-open { overflow: hidden; }

.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;             /* above header (1000) + nav (1001) */
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.bk-overlay[hidden] { display: none; }

.bk-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  height: 100%;
}

.bk-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
  padding-inline: 18px;
  border-bottom: 1px solid var(--ink-12);
  flex: 0 0 auto;
}
.bk-back, .bk-close {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink);
  padding: 6px;
}
.bk-back  { justify-self: start; font-size: 0.9rem; letter-spacing: 0.02em; }
.bk-close { justify-self: end; font-size: 1.6rem; line-height: 1; }
.bk-progress {
  justify-self: center; text-align: center;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-60);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 60vw;
}

.bk-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 26px 22px calc(26px + env(safe-area-inset-bottom, 0px));
}

.bk-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 6px;
}
.bk-title { font-size: 1.7rem; margin-bottom: 22px; }
.bk-host {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-60); margin: 18px 0 8px;
}

.bk-list { display: flex; flex-direction: column; gap: 10px; }

.bk-item {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-box);
  padding: 16px 18px;
  font-family: var(--font-head); font-size: 1.15rem;
  color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color 0.18s var(--ease), transform 0.06s var(--ease);
}
.bk-item:hover, .bk-item:focus-visible { border-color: var(--brand-orange); color: var(--brand-orange); }
.bk-item:hover .bk-chev, .bk-item:focus-visible .bk-chev { color: var(--brand-orange); }
.bk-item:active { transform: translateY(1px); }
.bk-chev { color: var(--ink-60); font-size: 1.4rem; line-height: 1; transition: color 0.18s var(--ease); }

.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-card {
  background: var(--blush);
  border: 0; border-radius: var(--radius-box);
  padding: 38px 16px;
  font-family: var(--font-head); font-size: 1.4rem; color: var(--ink);
  cursor: pointer;
  transition: transform 0.06s var(--ease), filter 0.18s var(--ease);
}
.bk-card:hover, .bk-card:focus-visible { filter: brightness(0.97); }
.bk-card:active { transform: translateY(1px); }

.bk-service {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; width: 100%; text-align: left;
  background: #fff; border: 1px solid var(--ink-12); border-radius: var(--radius-box);
  padding: 16px 18px; cursor: pointer;
  transition: border-color 0.18s var(--ease);
}
.bk-service:hover, .bk-service:focus-visible { border-color: var(--brand-orange); }
.bk-service:hover .bk-service__name, .bk-service:focus-visible .bk-service__name { color: var(--brand-orange); }
.bk-service:hover .bk-tick, .bk-service:focus-visible .bk-tick { border-color: var(--brand-orange); color: var(--brand-orange); }
.bk-service.is-on:hover .bk-tick, .bk-service.is-on:focus-visible .bk-tick { color: var(--ink); }
.bk-service__main { display: flex; flex-direction: column; gap: 3px; }
.bk-service__name { font-family: var(--font-head); font-size: 1.1rem; transition: color 0.18s var(--ease); }
.bk-service__desc { font-size: 0.85rem; color: var(--ink-60); line-height: 1.4; }
.bk-service__meta { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--clay); margin-top: 2px; }
.bk-service__price { font-family: var(--font-head); font-size: 1.25rem; flex: 0 0 auto; }

.bk-summary {
  background: #fff; border: 1px solid var(--ink-12); border-radius: var(--radius-box);
  padding: 20px; margin-bottom: 22px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink-60); font-size: 0.95rem;
}
.bk-summary__price { font-family: var(--font-head); font-size: 1.8rem; color: var(--ink); }
.bk-note { font-size: 0.8rem; color: var(--clay); margin-top: 6px; }

.bk-actions { display: flex; flex-direction: column; gap: 12px; }
.bk-holder { display: flex; flex-direction: column; gap: 8px; }
.bk-holder__note {
  text-align: center; font-family: var(--font-head); font-style: italic;
  color: var(--clay); font-size: 0.95rem;
}

/* ---- Build step: sub-line, filter chips, add toggles ---- */
.bk-sub { color: var(--ink-60); font-size: 0.9rem; margin: -12px 0 18px; }

.bk-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bk-chip {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--ink-12); background: transparent; color: var(--ink-60);
  cursor: pointer; transition: all 0.18s var(--ease);
}
.bk-chip:hover { border-color: var(--ink); color: var(--ink); }
.bk-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* add/remove tick on each service row */
.bk-tick {
  flex: 0 0 auto;
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink-12); color: var(--ink-60);
  font-size: 1.1rem; line-height: 1; margin-top: 2px;
  transition: all 0.18s var(--ease);
}
.bk-service.is-on { border-color: var(--brand-orange); }
.bk-service.is-on .bk-tick {
  background: var(--brand-orange); border-color: var(--brand-orange); color: var(--ink);
}
.bk-service.is-on .bk-service__name { color: var(--brand-orange); }

/* ---- Sticky basket bar (build step) ---- */
.bk-bar {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--ink-12);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.bk-bar__sum { flex: 1 1 auto; font-size: 0.85rem; color: var(--ink-60); }
.bk-bar__sum strong { color: var(--ink); font-weight: 600; }
.bk-bar__btn { flex: 0 0 auto; padding: 13px 22px; }
.bk-bar__btn:disabled { background: transparent; border-color: var(--ink-12); color: var(--ink-60); cursor: default; }
.bk-bar__btn:disabled:hover { background: transparent; border-color: var(--ink-12); color: var(--ink-60); }

/* ---- Review card (Your booking) ---- */
.bk-summary {
  background: #fff; border: 1px solid var(--ink-12); border-radius: var(--radius-box);
  padding: 20px; margin-bottom: 22px;
}
.bk-summary__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.bk-summary__store { font-size: 0.9rem; color: var(--ink-60); }
.bk-edit {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay);
}
.bk-edit:hover { color: var(--brand-orange); }

.bk-line {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--ink-12);
}
.bk-line__rm {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  border: 0; background: none; cursor: pointer;
  color: var(--ink-60); font-size: 1.1rem; line-height: 1;
}
.bk-line__rm:hover { color: var(--clay); }
.bk-line__name { flex: 1 1 auto; font-size: 0.98rem; }
.bk-line__dur { display: block; font-size: 0.72rem; color: var(--ink-60); letter-spacing: 0.02em; }
.bk-line__price { flex: 0 0 auto; font-family: var(--font-head); font-size: 1.05rem; }

.bk-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 16px;
}
.bk-total__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }
.bk-total__price { font-family: var(--font-head); font-size: 1.9rem; }

.bk-fineprint { font-size: 0.74rem; color: var(--ink-60); text-align: center; line-height: 1.4; }

/* ===================================================================
   PHASE 3 — PAGE LAYOUTS
   =================================================================== */

/* shared section rhythm */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 30px; }
.section { padding: 46px 0; }
/* Charcoal feature band (matches the footer / rest of the dark chrome) */
.section--tint { background: var(--ink); }
.section--tint .eyebrow { color: rgba(244,240,235,0.6); }
.section--tint .section__title { color: var(--cream); }
.section--tint .nails-line { color: rgba(244,240,235,0.75); }
.section--tint .nails-line button { color: var(--brand-orange); }
/* Editorial, left-aligned section headers with a confident display scale */
.section__head { text-align: left; margin-bottom: 30px; }
.section__title { font-size: clamp(2rem, 6vw, 3rem); line-height: 1.04; margin-top: 6px; }
.section__lead { color: var(--ink-60); font-size: 1rem; margin-top: 14px; max-width: 46ch; }

/* ---- Homepage hero — full-bleed image, text in front ---- */
.hero {
  position: relative;
  width: 100%;
  height: min(78vh, 620px);
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,42,41,0.62) 0%, rgba(44,42,41,0.28) 50%, rgba(44,42,41,0.5) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 0 22px clamp(64px, 13vh, 150px); text-align: center;
}
.hero__logo { width: min(62vw, 240px); height: auto; margin: 0 auto 14px; display: block; }
.hero__tag { font-family: var(--font-head); font-weight: 500; font-size: clamp(2rem, 7vw, 3.2rem); line-height: 1.1; color: var(--cream); }
.hero__since { margin-top: 16px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-orange); }

/* ---- Category cards [Brows] [Lashes] ---- */
.cat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cat-card {
  background: var(--cream);
  border: 1px solid var(--ink-12); border-radius: var(--radius-box);
  padding: 16px 16px; text-align: center; cursor: pointer;   /* same height as location rows */
  font-family: var(--font-head); font-size: 1.2rem; color: var(--ink);
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.06s var(--ease);
}
.section--tint .cat-card { background: #fff; }
.cat-card:hover, .cat-card:focus-visible { border-color: var(--brand-orange); color: var(--brand-orange); }
.cat-card:active { transform: translateY(1px); }
.nails-line { text-align: center; margin-top: 16px; font-size: 0.9rem; color: var(--ink-60); }
.nails-line button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--clay); text-decoration: underline; text-underline-offset: 3px;
}
.nails-line button:hover { color: var(--brand-orange); }

/* Nails — small, inactive version of the [Brows][Lashes] buttons; only "Reading" is a live link */
.nails-mini { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 12px; }
.cat-card--mini {
  display: inline-block; padding: 8px 34px; border-radius: var(--radius-box);
  border: 1px solid var(--ink-12); background: var(--cream);
  font-family: var(--font-head); font-size: 1rem; color: var(--ink-60);
  cursor: default; user-select: none;
}
.nails-mini__note { font-size: 0.82rem; color: var(--ink-60); }
.nails-mini__note button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--clay); text-decoration: underline; text-underline-offset: 3px;
}
.nails-mini__note button:hover { color: var(--brand-orange); }

/* ---- Homepage location quick-select (rendered by pages.js, .bk-item style) ---- */
.loc-grid { display: flex; flex-direction: column; gap: 10px; padding-inline: 14px; }
.text-link { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: var(--brand-orange); }

/* ---- Locations page — flat cards (location name, then host) ---- */
#locations-list { display: grid; gap: 16px; padding-inline: 14px; }
.loc-card {
  background: #fff; border: 1px solid var(--ink-12); border-radius: var(--radius-box);
  padding: 22px;
  scroll-margin-top: 78px; /* clears fixed header when jumped to via #id */
}
.loc-card__name { font-family: var(--font-head); font-size: 1.5rem; line-height: 1.05; }
.loc-card__host { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-orange); margin-top: 6px; }
.loc-card__meta { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.loc-card__meta li { display: flex; gap: 11px; font-size: 0.92rem; color: var(--ink-60); line-height: 1.45; }
.loc-card__meta svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; stroke: var(--ink-60); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.loc-card__meta a { color: var(--clay); }
.loc-card__meta a:hover { color: var(--brand-orange); }
/* address is a subtle map link — quieter than phone/email, but tappable */
.loc-card__addr { color: var(--ink-60) !important; text-decoration: none; }
.loc-card__addr:hover { color: var(--brand-orange) !important; text-decoration: underline; text-underline-offset: 2px; }
.loc-card__actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
.loc-card__actions .btn { font-size: 0.9rem; padding: 15px 16px; }
@media (min-width: 560px) {
  .loc-card__actions { grid-template-columns: 1fr 1fr; }
  .loc-card__actions > :only-child { grid-column: 1 / -1; }
}

/* ---- Our Work — before/after compare slider ---- */
.work-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
.work-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.work-item__cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-orange); margin-top: 16px; }
.work-item__title { font-family: var(--font-head); font-size: 1.3rem; margin-top: 4px; }
.work-item__caption { color: var(--ink-60); font-size: 0.92rem; margin-top: 6px; line-height: 1.5; }
.work-item__note { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); opacity: 0.75; margin-top: 10px; }
.work-note { text-align: center; color: var(--ink-60); font-size: 0.82rem; margin-top: 40px; max-width: 38ch; margin-inline: auto; line-height: 1.5; }

.compare {
  position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius-box); background: var(--blush);
  cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: pan-y;
  --pos: 50%;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.compare__before { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare__tag {
  position: absolute; top: 12px; z-index: 10; pointer-events: none;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.compare__tag--after { right: 12px; background: rgba(44,42,41,0.72); color: var(--cream); }
.compare__tag--before { left: 12px; background: rgba(244,240,235,0.88); color: var(--ink); }
.compare__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px;
  background: rgba(244,240,235,0.92); z-index: 20; pointer-events: none;
}
.compare__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 0.6rem; letter-spacing: -0.05em;
}

/* ---- Global footer (Contact embedded) ---- */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: 40px 22px 44px;
  margin-top: 8px;
}
.site-footer a { color: var(--cream); }
.footer__mark { font-family: var(--font-head); font-size: 1.6rem; }
.footer__mark em { font-style: italic; color: var(--brand-orange); }
.footer__logo { height: 30px; width: auto; display: block; }
.footer__tag { font-family: var(--font-head); font-style: italic; font-size: 0.95rem; color: rgba(244,240,235,0.7); margin-top: 4px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 16px; margin: 22px 0; font-size: 0.95rem; }
.footer__nav a { opacity: 0.85; }
.footer__nav a:hover { opacity: 1; color: var(--brand-orange); }
.footer__contact { font-size: 0.9rem; line-height: 1.7; color: rgba(244,240,235,0.8); }
.footer__contact a:hover { color: var(--brand-orange); }
.footer__social { display: flex; gap: 16px; margin: 22px 0 4px; }
.footer__social a { color: rgba(244,240,235,0.75); display: flex; transition: color 0.18s var(--ease); }
.footer__social a:hover { color: var(--brand-orange); }
.footer__social svg { width: 22px; height: 22px; }
.footer__since { margin-top: 16px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,240,235,0.55); }

/* ===================================================================
   Feather plumage watermark — soft depth behind content
   =================================================================== */
/* Oversize bird — bleeds off the page like a soft wallpaper motif */
.plumage {
  position: fixed; top: 50%; right: -24vw; transform: translateY(-50%);
  height: 152vh; width: auto; max-width: none;
  opacity: 0.13; z-index: -1;
  pointer-events: none; user-select: none;
}

/* ---- Slim footer (replaces the heavy multi-column footer) ---- */
.site-footer--slim { background: var(--ink-gloss); color: var(--cream); padding: 20px 0; margin-top: 0; }
.footer__slim { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.footer__copy { font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(244,240,235,0.55); }
.footer__legal { font-size: 0.72rem; color: rgba(244,240,235,0.7); }
.footer__legal:hover { color: var(--brand-orange); }
@media (min-width: 768px) { .footer__slim { flex-direction: row; justify-content: space-between; } }

/* ---- Social icons: thin halo so they read on the charcoal ---- */
.site-header__social a, .footer__social a, .site-nav__book {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(244,240,235,0.4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,240,235,0.85);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
  flex: 0 0 auto;
}
.site-header__social a:hover, .footer__social a:hover,
.site-nav__book:hover { color: var(--brand-orange); border-color: var(--brand-orange); }
.site-header__social svg, .footer__social svg, .site-nav__book svg { width: 16px; height: 16px; }

/* ---- Glossy header sheen (a faint reflective highlight streak) ---- */
.site-header { position: fixed; overflow: hidden; }
.site-header::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 34%);
}
.site-header > * { position: relative; z-index: 1; }

/* ---- Homepage: the bird sits a touch stronger ---- */
body.home .plumage { opacity: 0.16; }

/* ---- Subtle halo + slightly dynamic lift on cards ---- */
.bk-item, .loc-card, .cat-card, .bk-service, .bk-summary, .work-item {
  box-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 2px 10px rgba(44,42,41,0.05);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease),
              transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
}
.bk-item:hover, .loc-card:hover, .cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 10px 26px rgba(44,42,41,0.09);
}

/* ---- Social-proof strip just below the header ---- */
.proof-bar {
  background: var(--ink-gloss); color: rgba(244,240,235,0.82);
  text-align: center; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 18px; line-height: 1.7;
}
.proof-bar b { color: var(--brand-orange); font-weight: 600; }
.proof-bar i { font-style: normal; color: rgba(244,240,235,0.4); margin: 0 10px; }

/* ---- Client reviews (real Google reviews) — 3 across on all sizes ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.review-card {
  background: #fff; border: 1px solid var(--ink-12); border-radius: var(--radius-box); padding: 14px 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 2px 10px rgba(44,42,41,0.05);
}
.review-stars { color: #C6A24B; letter-spacing: 2px; font-size: 0.62rem; margin-bottom: 8px; }
.review-quote { font-family: var(--font-body); font-size: 0.72rem; line-height: 1.45; color: var(--ink); }
.review-author { margin-top: 10px; font-weight: 600; font-size: 0.74rem; }
.review-source { font-size: 0.52rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-60); margin-top: 2px; }
@media (min-width: 768px) {
  .reviews-grid { gap: 22px; }
  .review-card { padding: 24px; }
  .review-stars { letter-spacing: 4px; font-size: 0.85rem; margin-bottom: 12px; }
  .review-quote { font-size: 0.98rem; line-height: 1.6; }
  .review-author { margin-top: 16px; font-size: 0.92rem; }
  .review-source { font-size: 0.68rem; letter-spacing: 0.14em; }
}

/* ---- Subtle pulse on the floating Book button (mobile attention) ---- */
@keyframes bookPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(248,145,30,0.5); }
  50%      { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 12px rgba(248,145,30,0); }
}
.cta-bar .cta-bar__btn { animation: bookPulse 2.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .cta-bar .cta-bar__btn { animation: none; } }

/* ===================================================================
   Footer — multi-column (Visit / Find us / Connect)
   =================================================================== */
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.footer__blurb { color: rgba(244,240,235,0.62); font-size: 0.9rem; line-height: 1.6; max-width: 34ch; margin-top: 14px; }
.footer__h { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,240,235,0.5); margin-bottom: 14px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: rgba(244,240,235,0.8); font-size: 0.92rem; transition: color 0.18s var(--ease); }
.footer__col a:hover { color: var(--brand-orange); }
.footer__bottom {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(244,240,235,0.12);
  font-size: 0.72rem; letter-spacing: 0.02em; color: rgba(244,240,235,0.45);
}

/* ===================================================================
   Menu / Services page — editorial price list
   =================================================================== */
.menu-group { margin-bottom: 42px; }
.menu-group__title { font-size: clamp(1.7rem, 5vw, 2.3rem); margin-bottom: 4px; }
.menu-group__sub { color: var(--ink-60); font-size: 0.9rem; margin-bottom: 16px; }
.menu-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--ink-12); }
.menu-row__name { font-family: var(--font-head); font-size: 1.15rem; }
.menu-row__desc { color: var(--ink-60); font-size: 0.88rem; margin-top: 3px; max-width: 54ch; line-height: 1.5; }
.menu-row__meta { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--clay); margin-top: 4px; }
.menu-row__price { font-family: var(--font-head); font-size: 1.15rem; white-space: nowrap; }
.menu-note { color: var(--ink-60); font-size: 0.85rem; margin-top: 26px; }

/* ===================================================================
   Larger screens — keep the editorial column, never full-bleed text
   =================================================================== */
@media (min-width: 768px) {
  :root { --maxw: 640px; }
  .nav-overlay__link { font-size: 3rem; }
  /* Galleries go wider than the editorial column on desktop */
  .wrap--wide { max-width: 1080px; }
  #locations-list { grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .work-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .plumage { right: -14vw; height: 165vh; }
}

/* Desktop: inline nav + header actions, hamburger hidden */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; gap: 24px; align-items: center; }
  .site-header__social { display: flex; gap: 12px; }
  .site-header__book { display: inline-flex; }
}
