/* ============================================
   ZK Site — shared stylesheet (ZK pages)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--alabaster); color: var(--black); font-family: var(--font-body); overflow-x: hidden; }
h1, h2, h3, h4, p, ul, ol, dl, dt, dd, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: normal; font-weight: 600; }

:root { --shell-max: 1280px; --shell-pad: 64px; }
@media (max-width: 900px) { :root { --shell-pad: 24px; } }
.shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 var(--shell-pad); }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black); }
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--black); }

/* Section heads (reusable) */
.sect__head { margin-bottom: 48px; max-width: 800px; }
.sect__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 14px 0 18px; }
.sect__h em { font-weight: 600; }
.sect__lede { font-size: 17px; line-height: 1.65; color: var(--black-80); max-width: 56ch; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(246,245,241,0.94); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(0,0,0,0.10); }
.site-header__inner { padding-block: 16px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__word { font-family: var(--font-display); font-size: 26px; font-weight: 300; letter-spacing: -0.02em; }
.brand__mono { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; color: var(--black-60); margin-top: 4px; }
.nav { display: flex; gap: 20px; margin-inline-start: auto; align-items: center; flex-wrap: nowrap; }
.nav a { font-family: var(--font-body); font-weight: 500; font-size: 16px; letter-spacing: 0.01em; color: var(--black); padding: 6px 0; border-bottom: 1.5px solid transparent; transition: border-color 200ms var(--ease); white-space: nowrap; }
.nav a:hover, .nav a.is-active { border-bottom-color: var(--black); }
.nav-eb { padding: 0 !important; border-bottom: 0 !important; display: inline-flex; align-items: center; }
.nav-eb img { height: 22px; width: auto; display: block; transition: opacity 200ms var(--ease); }
.nav-eb:hover img { opacity: 0.6; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--alabaster); border: 0; border-radius: 9999px; padding: 11px 22px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 200ms var(--ease); }
.header-cta:hover { background: #333; }

/* Brand wordmark in headers — never underlined */
.brand, .eb-brand { border-bottom: 0 !important; }

/* ===== NAV SUBMENUS ===== */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { display: inline-block; font-family: var(--font-mono); font-size: 9px; opacity: 0.5; transform: translateY(1px); transition: transform 200ms var(--ease), opacity 200ms var(--ease); }
.has-submenu:hover .nav-caret, .has-submenu:focus-within .nav-caret { opacity: 1; transform: translateY(3px); }

.nav .submenu, .eb-nav .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  margin-top: 8px;
  background: var(--alabaster);
  border: 1.5px solid var(--black);
  padding: 6px 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  z-index: 100;
}
/* invisible hover bridge so dropdown stays open when crossing the gap */
.has-submenu::after { content: ''; position: absolute; top: 100%; inset-inline-start: 0; inset-inline-end: -20px; height: 12px; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: flex; }

.nav .submenu a, .eb-nav .submenu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--black);
  padding: 11px 20px;
  border-bottom: 0 !important;
  white-space: nowrap;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav .submenu a:hover { background: var(--black); color: var(--alabaster); }
.nav .submenu a.is-active { background: var(--black-12); }
.eb-nav .submenu a:hover { background: var(--imperial); color: var(--alabaster); }
.eb-nav .submenu a.is-active { background: var(--black-12); color: var(--imperial); }

/* ===== MOBILE NAV (hamburger drawer) ===== */
.nav-toggle {
  display: none;
  background: transparent; border: 1.5px solid var(--black);
  width: 44px; height: 44px; border-radius: 9999px;
  align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  margin-inline-start: auto;
  transition: background 200ms var(--ease);
}
.nav-toggle:hover { background: var(--black-12); }
.nav-toggle__bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after,
.nav-toggle__bars i {
  content: ''; position: absolute; inset-inline-start: 0; right: 0;
  height: 1.5px; background: var(--black); border-radius: 1px;
  transition: transform 250ms var(--ease), opacity 200ms var(--ease), top 250ms var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars i { top: 5px; display: block; width: 100%; }
.nav-toggle__bars::after { top: 10px; }
.nav-open .nav-toggle__bars::before { top: 5px; transform: rotate(45deg); }
.nav-open .nav-toggle__bars::after  { top: 5px; transform: rotate(-45deg); }
.nav-open .nav-toggle__bars i { opacity: 0; }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 55; opacity: 0; pointer-events: none;
  transition: opacity 250ms var(--ease);
}
.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .site-header__inner .header-cta { display: none; }

  .nav {
    position: fixed; top: 0; inset-inline-end: 0;
    width: min(85vw, 360px); height: 100vh; height: 100dvh;
    background: var(--alabaster);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 80px 28px 32px;
    margin: 0; z-index: 70;
    border-inline-start: 1px solid rgba(0,0,0,0.10);
    box-shadow: -8px 0 32px rgba(0,0,0,0.08);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 320ms cubic-bezier(.4,0,.2,1);
  }
  /* RTL: drawer slides in from the start (right) */
  [dir="rtl"] .nav { transform: translateX(100%); }
  .nav-open .nav { transform: translateX(0); }

  .nav > a, .nav .nav-item > a {
    display: block; padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    font-size: 18px; letter-spacing: 0.01em;
  }
  .nav .nav-caret { display: none; }
  .nav-item { display: block; }
  .nav-item .submenu, .eb-nav .submenu {
    position: static; display: flex !important; flex-direction: column;
    background: transparent; border: 0; box-shadow: none;
    padding: 6px 0 12px; margin: 0 0 0 16px;
    min-width: 0;
  }
  .nav .submenu a, .eb-nav .submenu a {
    padding: 10px 12px; font-size: 15px; letter-spacing: 0.01em;
    border-bottom: 0 !important; border-radius: 6px;
    color: var(--black-80);
  }
  .nav-eb { padding: 16px 0 !important; }
  .nav-eb img { height: 20px; }

  /* Mobile-only CTA inside drawer */
  .nav__drawer-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 24px; padding: 14px 22px;
    background: var(--black); color: var(--alabaster);
    border-radius: 9999px; text-decoration: none;
    font-family: var(--font-mono); font-weight: 600;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    border-bottom: 0 !important;
  }
}

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: var(--alabaster); border: 1.5px solid var(--black); border-radius: 9999px; padding: 16px 30px; font-family: var(--font-body); font-weight: 500; font-size: 16px; letter-spacing: 0.01em; transition: all 200ms var(--ease); }
.btn-primary:hover { background: #333; border-color: #333; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--black); border: 1.5px solid var(--black); border-radius: 9999px; padding: 16px 30px; font-family: var(--font-body); font-weight: 500; font-size: 16px; letter-spacing: 0.01em; transition: all 200ms var(--ease); }
.btn-secondary:hover { background: var(--black); color: var(--alabaster); }

/* ===== HERO ===== */
.hero { padding: 120px 0 80px; border-bottom: 1.5px solid var(--black); }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 80px; max-width: 1100px; }
.hero__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(64px, 10vw, 160px); line-height: 0.9; letter-spacing: -0.03em; margin: 32px 0 0; max-width: 14ch; text-wrap: balance; }
.hero__title em { font-weight: 600; }
.hero__lede { font-family: var(--font-display); font-weight: 300; font-size: clamp(22px, 1.8vw, 28px); line-height: 1.42; color: var(--black-80); max-width: 42ch; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.2); text-wrap: pretty; }
.hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.hero__quote { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.2); display: grid; grid-template-columns: 1fr max-content; gap: 32px; align-items: end; max-width: 880px; }
.hero__quote-text { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--black-80); }
.hero__quote-text::before, .hero__quote-text::after { content: "״"; }
.hero__quote-attr { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); white-space: nowrap; }
@media (max-width: 700px) { .hero__quote { grid-template-columns: 1fr; gap: 12px; } }

/* ===== STATS BAND ===== */
.stats { padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,0.16); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: end; }
.stats__cell { display: flex; flex-direction: column; gap: 4px; padding-inline-end: 24px; border-inline-end: 1px solid rgba(0,0,0,0.12); }
.stats__cell:last-child { border-inline-end: 0; }
.stats__num { font-family: var(--font-display); font-weight: 300; font-size: 64px; line-height: 0.9; letter-spacing: -0.03em; color: var(--black); }
.stats__num em { font-weight: 400; }
.stats__label { font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); line-height: 1.4; margin-top: 8px; }
@media (max-width: 700px) { .stats__inner { grid-template-columns: 1fr 1fr; gap: 24px; } .stats__cell { border-inline-end: 0; border-bottom: 1px dashed rgba(0,0,0,0.18); padding-bottom: 16px; } .stats__cell:nth-last-child(-n+2) { border-bottom: 0; } }

/* ===== APPROACH ===== */
.approach { padding: 120px 0; border-bottom: 1.5px solid var(--black); }
.approach__inner { max-width: 1000px; }
.approach__rule { width: 80px; height: 4px; background: var(--black); margin: 24px 0 40px; }
.approach__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(56px, 8.5vw, 140px); line-height: 0.92; letter-spacing: -0.03em; margin: 24px 0 32px; }
.approach__h em { font-weight: 600; }
.approach__body { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.2); }
.approach__pull { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(22px, 1.7vw, 26px); line-height: 1.35; color: var(--black); max-width: 28ch; }
.approach__body p { font-size: 17px; line-height: 1.7; color: var(--black-80); max-width: 56ch; margin-bottom: 16px; }
@media (max-width: 900px) { .approach__body { grid-template-columns: 1fr; gap: 24px; } }

/* ===== VERTICALS (3 cards on home) ===== */
.verticals { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.verticals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1.5px solid var(--black); border-inline-start: 1.5px solid var(--black); }
.vertical { padding: 40px 32px; border-inline-end: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black); display: flex; flex-direction: column; gap: 14px; background: var(--alabaster); transition: background 200ms var(--ease); text-decoration: none; }
.vertical:hover { background: var(--bg-elevated); }
.vertical__num { font-family: var(--font-display); font-weight: 300; font-size: 80px; line-height: 0.85; letter-spacing: -0.04em; color: var(--black); }
.vertical__tag { font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); }
.vertical__h { font-family: var(--font-display); font-weight: 300; font-size: 38px; line-height: 1; letter-spacing: -0.015em; }
.vertical__h em { font-weight: 600; }
.vertical__p { font-size: 15px; line-height: 1.65; color: var(--black-80); max-width: 40ch; }
.vertical__list { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px dashed rgba(0,0,0,0.2); }
.vertical__list li { font-size: 13px; line-height: 1.5; color: var(--black-80); }
.vertical__list strong { font-weight: 600; color: var(--black); }
.vertical__cta { display: inline-flex; align-items: center; gap: 10px; color: var(--black); border-bottom: 1.5px solid var(--black); padding-bottom: 4px; align-self: flex-start; margin-top: 12px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.vertical--eb { background: #1a1a1a; color: var(--alabaster); }
.vertical--eb:hover { background: #DD3823; }
.vertical--eb .vertical__num,
.vertical--eb .vertical__h { color: var(--alabaster); }
.vertical--eb .vertical__tag { color: rgba(255,255,255,0.6); }
.vertical--eb .vertical__h em { color: #FF7A6A; font-style: italic; font-weight: 400; }
.vertical--eb:hover .vertical__h em { color: var(--alabaster); }
.vertical--eb .vertical__p,
.vertical--eb .vertical__list li { color: rgba(255,255,255,0.85); }
.vertical--eb .vertical__list strong { color: var(--alabaster); }
.vertical--eb .vertical__list { border-top-color: rgba(255,255,255,0.2); }
.vertical--eb .vertical__cta { color: var(--alabaster); border-bottom-color: var(--alabaster); }
@media (max-width: 900px) { .verticals__grid { grid-template-columns: 1fr; } }

/* ===== INTRO / About on home ===== */
.intro { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.intro__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: start; }
.intro__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 6vw, 96px); line-height: 0.95; letter-spacing: -0.025em; }
.intro__h em { font-weight: 600; }
.intro__lead { font-family: var(--font-display); font-weight: 300; font-size: 22px; line-height: 1.35; max-width: 32ch; margin-bottom: 28px; padding-top: 16px; border-top: 1.5px solid var(--black); }
.intro__body p { font-size: 17px; line-height: 1.7; color: var(--black-80); max-width: 56ch; margin-bottom: 18px; }
.intro__link { color: inherit; border-bottom: 1.5px solid currentColor; padding-bottom: 4px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
@media (max-width: 900px) { .intro__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== IMAGE SLOTS — author-placed, user-fillable ===== */
.intro__portrait {
  width: 100%; height: auto; aspect-ratio: 4/5; display: block;
  background: var(--bg-elevated);
  margin-top: 32px;
}
.hero__photo {
  width: 100%; height: auto; aspect-ratio: 3/4; display: block;
  background: var(--bg-elevated);
}
.page-hero__photo {
  width: 100%; height: auto; aspect-ratio: 4/5; display: block;
  background: var(--bg-elevated);
  border: 1.5px solid var(--black);
}
.voice__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: block; flex-shrink: 0;
  background: var(--bg-elevated);
}
.story__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  display: block; flex-shrink: 0;
  background: var(--bg-elevated);
}

/* Page-hero with photo — 2-column layout */
.page-hero--with-photo .shell {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(240px, 320px);
  gap: 56px; align-items: end;
}
.page-hero--with-photo .page-hero__body {
  display: flex; flex-direction: column; min-width: 0;
}
@media (max-width: 1000px) {
  .page-hero--with-photo .shell {
    grid-template-columns: 1fr; gap: 32px;
  }
  .page-hero--with-photo .page-hero__photo { max-width: 320px; }
}

/* Image-slot is a custom element — make sure it inherits sensibly */
image-slot { display: block; }

/* ===== VOICES ===== */
.voices { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.voices__head { margin-bottom: 48px; }
.voices__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 14px 0 0; }
.voices__h em { font-weight: 600; }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black); }
.voice { padding: 32px 28px; border-inline-end: 1px solid rgba(0,0,0,0.16); display: flex; flex-direction: column; gap: 14px; }
.voice:last-child { border-inline-end: 0; }
.voice__quote { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.35; flex: 1; color: var(--black); }
.voice__quote::before, .voice__quote::after { content: "״"; }
.voice__attr { padding-top: 14px; border-top: 1px dashed rgba(0,0,0,0.2); display: flex; flex-direction: column; gap: 4px; }
.voice__name { font-family: var(--font-display); font-size: 18px; line-height: 1; letter-spacing: -0.005em; }
.voice__role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); }
.voices__cta { display: inline-flex; margin-top: 24px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black); border-bottom: 1.5px solid var(--black); padding-bottom: 4px; }
@media (max-width: 900px) { .voices__grid { grid-template-columns: 1fr; } .voice { border-inline-end: 0; border-bottom: 1px dashed rgba(0,0,0,0.2); } .voice:last-child { border-bottom: 0; } }

/* ===== BOOK CTA strip ===== */
.book-cta { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.book-cta__inner { display: grid; grid-template-columns: 1fr max-content; gap: 64px; align-items: end; }
.book-cta__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 14px 0 18px; max-width: 16ch; }
.book-cta__h em { font-weight: 600; }
.book-cta__p { font-size: 17px; line-height: 1.65; color: var(--black-80); max-width: 50ch; }
.book-cta__actions { display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 900px) { .book-cta__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================
   BOOKING widget — calendar + slots
   ============================================ */
.booking { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.booking__head { max-width: 760px; margin-bottom: 40px; }
.booking__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin: 14px 0 14px; }
.booking__h em { font-weight: 600; }
.booking__lede { font-size: 17px; line-height: 1.6; color: var(--black-80); max-width: 48ch; }
.booking__widget { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; border: 1.5px solid var(--black); background: var(--alabaster); }
.booking__sidebar { padding: 32px; border-inline-end: 1.5px solid var(--black); display: flex; flex-direction: column; gap: 20px; }
.booking__service-select { display: grid; gap: 8px; margin-top: 4px; }
.booking__service-select label { padding: 12px 16px; border: 1.5px solid var(--black); border-radius: 9999px; cursor: pointer; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; transition: all 200ms var(--ease); }
.booking__service-select label:hover { background: rgba(0,0,0,0.04); }
.booking__service-select label.is-on { background: var(--black); color: var(--alabaster); }
.booking__service-select input { position: absolute; opacity: 0; pointer-events: none; }
.booking__svc-info { padding-top: 20px; border-top: 1px dashed rgba(0,0,0,0.22); display: flex; flex-direction: column; gap: 16px; }
.svc-info__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.16); }
.svc-info__name { font-family: var(--font-display); font-weight: 300; font-size: 26px; line-height: 1; letter-spacing: -0.015em; }
.svc-info__price { font-family: var(--font-mono); font-weight: 600; font-size: 13px; letter-spacing: 0.05em; color: var(--black); }
.svc-info__tagline { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.35; color: var(--black-80); }

/* Transformation block — the "what changes" sales hook */
.svc-info__transform {
  margin-top: 8px;
  padding: 16px 18px;
  background: var(--black);
  color: var(--alabaster);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-info__transform-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,245,241,0.7);
}
.svc-info__transform-body {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--alabaster);
}

/* Outcomes list — concrete take-aways */
.svc-info__outcomes {
  padding-top: 12px;
}
.svc-info__outcomes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.svc-info__outcomes li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--black);
}
.svc-info__outcomes li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
}
.svc-info__meta { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; border-top: 1px dashed rgba(0,0,0,0.18); }
.svc-info__meta > div { display: grid; grid-template-columns: 60px 1fr; gap: 12px; align-items: baseline; }
.svc-info__meta dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); }
.svc-info__meta dd { font-size: 13px; line-height: 1.5; color: var(--black); }
.svc-info__list-h { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); margin-bottom: 8px; }
.svc-info__list { padding-top: 8px; border-top: 1px dashed rgba(0,0,0,0.18); }
.svc-info__list ul { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--black); line-height: 1.5; }
.booking__meta { padding-top: 18px; border-top: 1px dashed rgba(0,0,0,0.2); font-size: 13px; color: var(--black-80); }
.booking__meta-h { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); margin-bottom: 8px; }
.booking__meta ul { display: flex; flex-direction: column; gap: 4px; }
.booking__main { padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.booking__step { display: flex; flex-direction: column; gap: 14px; }
.booking__step-h { display: flex; align-items: baseline; gap: 10px; }
.booking__step-num { font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: 0.22em; color: var(--black); }
.booking__step-title { font-family: var(--font-display); font-weight: 300; font-size: 22px; line-height: 1; letter-spacing: -0.005em; }
.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; border-top: 1px solid rgba(0,0,0,0.16); border-inline-start: 1px solid rgba(0,0,0,0.16); }
.calendar__hdr { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black-60); padding: 8px 4px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.16); border-inline-end: 1px solid rgba(0,0,0,0.16); }
.calendar__day { aspect-ratio: 1.4 / 1; border-bottom: 1px solid rgba(0,0,0,0.16); border-inline-end: 1px solid rgba(0,0,0,0.16); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; cursor: pointer; transition: background 150ms var(--ease); position: relative; }
.calendar__day:hover { background: rgba(0,0,0,0.05); }
.calendar__day.is-off { color: var(--black-40); cursor: default; }
.calendar__day.is-off:hover { background: transparent; }
.calendar__day.has-slots { color: var(--black); font-weight: 600; }
.calendar__day.has-slots::after { content: "•"; position: absolute; bottom: 4px; color: var(--black); font-size: 16px; line-height: 1; }
.calendar__day.is-selected { background: var(--black); color: var(--alabaster); }
.calendar__day.is-selected::after { color: var(--alabaster); }

/* Calendar — month switcher header */
.calendar__month-hdr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 4px 12px; gap: 8px;
}
.calendar__month-label {
  font-family: var(--font-display); font-weight: 300;
  font-size: 22px; line-height: 1; letter-spacing: -0.01em;
}
.calendar__nav {
  background: transparent; border: 1.5px solid var(--black);
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; cursor: pointer;
  border-radius: 9999px; color: var(--black);
  transition: all 200ms var(--ease);
}
.calendar__nav:hover { background: var(--black); color: var(--alabaster); }
.calendar__nav:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar__nav:disabled:hover { background: transparent; color: var(--black); }

/* Day states — show density of bookings via dot count */
.calendar__day { position: relative; }
.calendar__day .day__num { display: block; }
.calendar__day .day__slots {
  position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2px; pointer-events: none;
}
.calendar__day .day__slots i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--black);
}
.calendar__day .day__slots i.is-taken {
  background: transparent; border: 1px solid var(--black);
  width: 4px; height: 4px;
}
/* Fully booked */
.calendar__day.is-full { color: var(--black-40); cursor: not-allowed; text-decoration: line-through; }
.calendar__day.is-full:hover { background: transparent; }
.calendar__day.is-full .day__slots i { background: transparent; border: 1px solid var(--black-40); }
.calendar__day.is-selected .day__slots i { background: var(--alabaster); }
.calendar__day.is-selected .day__slots i.is-taken { background: transparent; border-color: var(--alabaster); }
/* Replace has-slots after content */
.calendar__day.has-slots::after { content: none; }

/* Calendar legend */
.calendar__legend {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--black-60);
}
.calendar__legend > span {
  display: inline-flex; align-items: center; gap: 6px;
}
.calendar__legend i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--black);
  display: inline-block;
}
.calendar__legend i.taken { background: transparent; border: 1px solid var(--black); }
.calendar__legend i.full { background: var(--black-40); }

.booking__slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.booking__slot { padding: 10px 8px; border: 1.5px solid var(--black); background: var(--alabaster); cursor: pointer; font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.05em; transition: all 200ms var(--ease); }
.booking__slot:hover:not(:disabled) { background: rgba(0,0,0,0.06); }
.booking__slot.is-on { background: var(--black); color: var(--alabaster); }
.booking__slot.is-taken, .booking__slot:disabled {
  color: var(--black-40); border-color: var(--black-12);
  text-decoration: line-through; cursor: not-allowed; background: transparent;
}
.booking__slot:disabled:hover { background: transparent; }

/* FAQ teaser block on Home */
.faq-teaser { padding: 80px 0; border-bottom: 1.5px solid var(--black); background: var(--bg-elevated); }
.faq-teaser__inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.faq-teaser__h {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 56px); line-height: 1; letter-spacing: -0.02em;
  margin-top: 16px;
}
.faq-teaser__h em { font-weight: 600; }
.faq-teaser__lede {
  font-size: 16px; line-height: 1.6; color: var(--black-80);
  max-width: 48ch; margin-top: 16px;
}
.faq-teaser__cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 14px 24px;
  background: var(--black); color: var(--alabaster);
  border-radius: 9999px;
  font-family: var(--font-mono); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 200ms var(--ease);
}
.faq-teaser__cta:hover { background: #333; }
.faq-teaser__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--black);
}
.faq-teaser__item {
  padding: 20px 0; border-bottom: 1px solid var(--black-12);
  display: grid; grid-template-columns: 40px 1fr;
  gap: 20px; align-items: baseline;
}
.faq-teaser__num {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 10px; letter-spacing: 0.22em; color: var(--black-60);
}
.faq-teaser__q {
  font-family: var(--font-display); font-weight: 300;
  font-size: 22px; line-height: 1.25; letter-spacing: -0.005em;
  color: var(--black);
}
@media (max-width: 900px) {
  .faq-teaser__inner { grid-template-columns: 1fr; gap: 32px; }
}
.booking__submit { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.16); flex-wrap: wrap; }
.booking__confirm { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--black-80); }
.booking__confirm strong { color: var(--black); font-style: normal; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; }
.booking__alt { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black-60); }
.booking__alt a { color: var(--black); border-bottom: 1.5px solid var(--black); padding-bottom: 2px; }
@media (max-width: 900px) { .booking__widget { grid-template-columns: 1fr; } .booking__sidebar { border-inline-end: 0; border-bottom: 1.5px solid var(--black); } .booking__slots { grid-template-columns: repeat(3, 1fr); } }
.site-footer { background: var(--black); color: var(--alabaster); padding: 64px 0 80px; }
.site-footer__inner { display: grid; grid-template-columns: max-content 1fr max-content; gap: 56px; align-items: end; }
.footer-word { font-family: var(--font-display); font-size: 36px; font-weight: 300; line-height: 1; }
.footer-caption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: rgba(246,245,241,0.65); text-transform: uppercase; margin-top: 6px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: center; }
.footer-nav a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--alabaster); border-bottom: 1.5px solid rgba(246,245,241,0.4); padding-bottom: 4px; transition: border-color 200ms var(--ease); }
.footer-nav a:hover { border-bottom-color: var(--alabaster); }
.footer-copy { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: rgba(246,245,241,0.55); }
@media (max-width: 900px) { .site-footer__inner { grid-template-columns: 1fr; gap: 32px; } }

/* Sticky mobile bar */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--alabaster); border-top: 1.5px solid var(--black); padding: 10px 16px; display: none; grid-template-columns: 1fr 1fr; gap: 10px; }
.sticky-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 12px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 9999px; }
.sticky-bar__primary { background: var(--black); color: var(--alabaster); border: 1.5px solid var(--black); }
.sticky-bar__wa { background: var(--alabaster); color: var(--black); border: 1.5px solid var(--black); }
@media (max-width: 700px) { .sticky-bar { display: grid; } body { padding-bottom: 80px; } }

/* ============================================
   PRODUCT-PAGE patterns (shared across 1:1, group, EB pages)
   ============================================ */

.page-hero { padding: 96px 0 64px; border-bottom: 1.5px solid var(--black); }
.page-hero__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 7vw, 96px); line-height: 0.95; letter-spacing: -0.025em; margin: 24px 0 24px; max-width: 14ch; }
.page-hero__title em { font-weight: 600; }
.page-hero__lede { font-family: var(--font-display); font-weight: 300; font-size: clamp(20px, 1.6vw, 24px); line-height: 1.42; color: var(--black-80); max-width: 56ch; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.2); }
.page-hero__meta { display: grid; grid-template-columns: repeat(3, max-content); gap: 32px 56px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.2); }
.page-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.page-hero__meta-num { font-family: var(--font-display); font-weight: 300; font-size: 44px; line-height: 1; letter-spacing: -0.02em; }
.page-hero__meta-num em { font-weight: 600; }
.page-hero__meta-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); }
.page-hero__cta { margin-top: 36px; display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 700px) { .page-hero__meta { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* Two-product split */
.products-split { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.products-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black); border-inline-start: 1.5px solid var(--black); }
.product-card { padding: 40px 36px; border-inline-end: 1.5px solid var(--black); display: flex; flex-direction: column; gap: 16px; background: var(--alabaster); transition: background 200ms var(--ease); }
.product-card:hover { background: var(--bg-elevated); }
.product-card__tag { font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--black-60); }
.product-card__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.product-card__h em { font-weight: 600; }
.product-card__one { font-family: var(--font-display); font-style: italic; font-size: 20px; line-height: 1.35; color: var(--black-80); max-width: 32ch; }
.product-card__rows { display: grid; gap: 8px; padding-top: 16px; border-top: 1px dashed rgba(0,0,0,0.2); }
.product-card__row { display: grid; grid-template-columns: 100px 1fr; gap: 12px; padding: 6px 0; font-size: 14px; }
.product-card__row dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black-60); }
.product-card__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding: 14px 24px; background: var(--black); color: var(--alabaster); border-radius: 9999px; font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; align-self: flex-start; transition: background 200ms var(--ease); }
.product-card__cta:hover { background: #333; }
@media (max-width: 900px) { .products-split__grid { grid-template-columns: 1fr; } .product-card { border-inline-end: 0; border-bottom: 1.5px solid var(--black); } .product-card:last-child { border-bottom: 0; } }

/* What's included list (used on individual product pages) */
.includes { padding: 96px 0; border-bottom: 1.5px solid var(--black); }
.includes__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: start; }
.includes__h { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em; margin-top: 14px; max-width: 12ch; }
.includes__h em { font-weight: 600; }
.includes__list { display: flex; flex-direction: column; gap: 28px; }
.includes__item { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding-bottom: 24px; border-bottom: 1px dashed rgba(0,0,0,0.2); align-items: start; }
.includes__num { font-family: var(--font-display); font-weight: 300; font-size: 48px; line-height: 0.85; letter-spacing: -0.03em; }
.includes__title { font-family: var(--font-display); font-weight: 300; font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 6px; }
.includes__copy { font-size: 16px; line-height: 1.65; color: var(--black-80); max-width: 56ch; }
@media (max-width: 900px) { .includes__grid { grid-template-columns: 1fr; gap: 32px; } }
