/* By Shiva Beauty Clinic — design tokens + base styles */

:root {
  /* — Surfaces — */
  /* By Shiva: warm cream + sand, matching the printed menu + gold "SH" mark. */
  --bone: #F7F1E7;
  --bone-2: #EFE6D5;
  --paper: #FCFAF4;
  --cream: #F1E8D7;

  /* — Ink + text — */
  /* Espresso brown instead of aubergine-ink — warm, high-contrast on cream. */
  --ink: #2A2118;
  --ink-2: #4A3C2B;
  --muted: #8A7B63;

  /* — Lines — */
  --line: #E0D3BC;
  --line-soft: #ECE2CE;

  /* — Brand accents — */
  /* By Shiva look = cream surfaces + ESPRESSO immersive panels + CHAMPAGNE
   * GOLD accents & CTAs (mirrors the printed menu: gold on cream, dark text).
   * We keep --aubergine as the "dark brand surface" (now espresso, not purple)
   * so every existing dark panel stays legible with its cream text; gold lives
   * in --gold / --rose-deep and the gold primary-button override at the foot of
   * this file. See CLAUDE.md colour-remap table. */
  --aubergine: #2A2118;
  /* espresso — dark brand surface / primary-dark */
  --aubergine-2: #3A2C1E;
  /* warmer espresso — hover / primary-deep */
  --espresso: #2A2118;
  /* explicit alias for dark panels */

  /* Soft blush + rose-gold accents (the printed menu's pink touches). */
  --rose: #E7C8BE;
  --rose-deep: #C99A6B;
  --blush: #F6E7DF;

  /* Champagne gold — hairlines, numerals, eyebrow labels + primary CTAs. */
  --gold: #C9A35E;
  --gold-deep: #A6823C;
  --bronze: #9C7E45;

  --green: #4E6B4A;
  --red: #9A3B3B;

  /* — Type — */
  /* Inter feels cleaner + more luxurious than Outfit at body sizes. We keep
   * Cormorant Garamond for editorial display + JetBrains Mono for labels. */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

.h-serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.h-mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 232, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__inner {
  width: 100%;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--aubergine);
  display: grid;
  place-items: center;
  color: var(--bone);
  font-size: 13px;
  font-family: var(--serif);
}

.nav__menu {
  display: contents;
}

.nav__links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  white-space: nowrap;
}

.nav__links a {
  color: var(--ink-2);
  transition: color .2s;
}

.nav__links a:hover {
  color: var(--aubergine);
}

.nav__spacer {
  flex: 1;
}

.nav__phone {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__phone::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
}

.nav__account {
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__account:hover {
  color: var(--aubergine);
}

.nav .btn--primary {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}

.nav__toggle:hover {
  border-color: var(--aubergine);
}

.nav__toggle-bar {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}

.nav.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s;
}

.btn--primary {
  background: var(--aubergine);
  color: var(--bone);
}

.btn--primary:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--light {
  background: var(--bone);
  color: var(--ink);
}

.btn--light:hover {
  background: white;
}

.btn--block {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

.btn[disabled] {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
}

.btn .arrow {
  transition: transform .2s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ───────── Hero ───────── */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 40px 56px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
  /* text starts at the top of the column, no longer
                         pulled down to the image's baseline */
}

.hero__eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero__eyebrow .dot {
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

.hero__lead {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0 0 28px;
  line-height: 1.55;
}

.hero__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero__meta div .num {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero__meta div .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero__media {
  position: relative;
  aspect-ratio: 5/6;
}

.hero__media .frame {
  position: absolute;
  inset: 0;
  border-radius: 0 0 280px 280px / 0 0 180px 180px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, #d9c2b8 0 8px, #cdb6ac 8px 16px);
}

.hero__media .frame::after {
  content: "PRODUCT/EDITORIAL — primary hero portrait";
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(42, 28, 40, 0.55);
  white-space: nowrap;
}

.hero__media .stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.2;
  border: 1px solid var(--line);
  transform: rotate(8deg);
}

.hero__media .stamp span {
  display: block;
  font-style: italic;
}

.hero__media .badge {
  position: absolute;
  left: -12px;
  bottom: 80px;
  background: var(--aubergine);
  color: var(--bone);
  padding: 18px 22px;
  border-radius: 6px;
  font-size: 12px;
  max-width: 200px;
  line-height: 1.4;
}

/* ───────── Section ───────── */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 40px;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 32px;
}

.section__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 10px 0 0;
  max-width: 700px;
}

.section__head p {
  color: var(--ink-2);
  max-width: 360px;
  font-size: 14px;
  line-height: 1.55;
}

/* Service categories */
.cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 28px 22px 24px;
  border-radius: 8px;
  position: relative;
  transition: background .25s, border-color .25s, transform .2s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  cursor: pointer;
}

.cat:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cat:hover .cat__num,
.cat:hover .cat__tag {
  color: rgba(244, 239, 232, 0.6);
}

.cat__num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.cat__viz {
  flex: 1;
  margin: 16px -6px 14px;
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, var(--bone-2) 0 6px, var(--bone) 6px 12px);
  min-height: 80px;
  position: relative;
  overflow: hidden;
}

.cat:hover .cat__viz {
  background: repeating-linear-gradient(135deg, #3a2a37 0 6px, #2a1c28 6px 12px);
}

.cat--has-img .cat__viz {
  background: var(--bone-2);
}

.cat:hover.cat--has-img .cat__viz {
  background: var(--bone-2);
}

.cat__viz img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.cats--zoom .cat:hover .cat__viz img {
  transform: scale(1.06);
}

.cat__name {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
  margin-bottom: 4px;
}

.cat__tag {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* Featured treatments */
.feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat__card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat__img {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(90deg, #e5d7c9 0 6px, #d9c8b6 6px 12px);
  border-radius: 6px;
  position: relative;
}

.feat__img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(42, 28, 40, 0.6);
}

.feat__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.feat__title {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
}

.feat__price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--rose-deep);
  font-weight: 500;
}

.feat__desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}

.feat__meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.feat__meta .pill {
  background: var(--bone);
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.feat__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.feat__cta button {
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feat__cta button:hover {
  color: var(--rose-deep);
}

/* How it works */
.howsec {
  background: var(--aubergine);
  color: var(--bone);
  margin: 64px 0;
}

.howsec .section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.howsec h2,
.howsec .section__head p {
  color: var(--bone);
}

.how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: hbn 0;
}

.how__step {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 232, 0.2);
}

.how__step .n {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(244, 239, 232, 0.5);
  letter-spacing: 0.16em;
}

.how__step .t {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  margin: 10px 0 8px;
}

.how__step .d {
  font-size: 13px;
  color: rgba(244, 239, 232, 0.7);
  line-height: 1.55;
}

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team__avatar {
  aspect-ratio: 3/4;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, #ddc9bd 0 8px, #d0bbac 8px 16px);
  position: relative;
}

.team__avatar::after {
  content: attr(data-name);
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(42, 28, 40, 0.55);
}

.team__name {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.team__role {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Vouchers */
.voucher-band {
  background: linear-gradient(135deg, #efe1d8 0%, #e6d2c5 100%);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.voucher-card {
  aspect-ratio: 16/10;
  border-radius: 10px;
  background: linear-gradient(135deg, #3d2438 0%, #5a3550 100%);
  color: var(--bone);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px -20px rgba(61, 36, 56, 0.45);
  position: relative;
  overflow: hidden;
}

.voucher-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(200, 155, 146, 0.25);
  filter: blur(20px);
}

.voucher-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.voucher-card .brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.05em;
}

.voucher-card .amt {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  position: relative;
}

.voucher-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.7;
  position: relative;
}

.voucher-card .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.85;
  position: relative;
}

/* Location */
.loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.loc__info {
  padding: 8px 0;
}

.loc__info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 24px;
  margin: 24px 0 0;
}

.loc__info dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 2px;
}

.loc__info dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.loc__map {
  border-radius: 10px;
  background:
    radial-gradient(circle at 40% 50%, #c8a89a 0 8px, transparent 9px),
    repeating-linear-gradient(45deg, var(--bone-2) 0 22px, var(--paper) 22px 44px);
  min-height: 360px;
  position: relative;
  border: 1px solid var(--line-soft);
}

.loc__map::after {
  content: "MAP — 1353 High Road, Whetstone, London N20 9HR";
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* Footer */
footer.foot {
  background: var(--ink);
  color: var(--bone);
  padding: 72px 40px 28px;
}

.foot__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.foot__big {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  margin: 0 0 32px;
  font-weight: 400;
  text-wrap: balance;
}

.foot__big em {
  color: var(--rose);
  font-style: italic;
}

.foot__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 56px;
}

.foot__cta-book {
  background: var(--rose);
  color: var(--ink);
}

.foot__cta-call {
  color: var(--bone);
  border-color: rgba(244, 239, 232, 0.25);
}

.foot__cta-call:hover {
  background: rgba(244, 239, 232, 0.06);
  border-color: rgba(244, 239, 232, 0.45);
}

.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 44px 0 40px;
  border-top: 1px solid rgba(244, 239, 232, 0.12);
}

.foot__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.45);
  margin: 0 0 20px;
}

.foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.foot__col ul a {
  color: rgba(244, 239, 232, 0.78);
  text-decoration: none;
  transition: color .15s ease;
}

.foot__col ul a:hover {
  color: var(--rose);
}

.foot__about {
  color: rgba(244, 239, 232, 0.6);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
  margin: 0;
}

/* Contact column: tighter gap so the wrapped address feels like one
   block, not three loose items. */
.foot__col ul.foot__contact {
  gap: 6px;
}

.foot__contact li:first-child a {
  line-height: 1.45;
  display: inline-block;
}

.foot__legal {
  padding: 22px 0 0;
  border-top: 1px solid rgba(244, 239, 232, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(244, 239, 232, 0.42);
}

/* ───────── Booking Modal ───────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 28, 40, 0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}

/* Portal version starts hidden — opener flips data-state="open". */
.hbn-modal-backdrop[data-state="closed"] {
  display: none;
}

/* Lock body scroll while the modal is open. */
html.hbn-modal-open,
body.hbn-modal-open {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.modal {
  background: var(--paper);
  border-radius: 14px;
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 320px 1fr;
  /* No fixed height — when the widget is dropped on a page it should flow
   * with the rest of the layout instead of becoming an internally-scrolled
   * panel. The animation/box-shadow stays for when this is used as a true
   * overlay modal (.modal-backdrop wraps it). */
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(42, 28, 40, 0.18);
  margin: 0 auto 64px;
  /* breathing room below so the panel never collides with the next section
   * or page footer when used inline. */
}

.hbn-bookintro+.modal {
  margin-top: 0;
}

.hbn-booking-inline-wrap {
  padding-bottom: 32px;
}

.modal-backdrop .modal {
  height: min(92vh, 820px);
  box-shadow: 0 40px 100px -20px rgba(42, 28, 40, 0.5);
  animation: slideUp .25s ease;
}

.modal__side {
  background: var(--aubergine);
  color: var(--bone);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.modal__side .brand {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal__side .brand .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.modal__side h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.5);
  margin: 0 0 20px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(244, 239, 232, 0.55);
  transition: color .2s;
  border-bottom: 1px solid rgba(244, 239, 232, 0.08);
}

.steps li:last-child {
  border-bottom: none;
}

.steps li .marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 232, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  background: transparent;
  color: rgba(244, 239, 232, 0.55);
}

.steps li.is-current {
  color: var(--bone);
}

.steps li.is-current .marker {
  background: var(--rose);
  color: var(--ink);
  border-color: var(--rose);
}

.steps li.is-done {
  color: rgba(244, 239, 232, 0.85);
}

.steps li.is-done .marker {
  background: rgba(244, 239, 232, 0.92);
  color: var(--aubergine);
  border-color: transparent;
}

.steps li .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244, 239, 232, 0.4);
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
}

.modal__side .summary {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 232, 0.15);
  font-size: 13px;
}

.modal__side .summary .row {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.modal__side .summary .row .k {
  color: rgba(244, 239, 232, 0.55);
}

.modal__side .summary .total {
  font-family: var(--serif);
  font-size: 32px;
  margin-top: 14px;
}

.modal {
  position: relative;
}

.modal__side .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(244, 239, 232, 0.1);
  border: none;
  color: var(--bone);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 6;
}

.modal__side .close:hover {
  background: rgba(244, 239, 232, 0.2);
}

.modal__main {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}

/* In overlay mode we cap the body height + add scroll; inline it just flows. */
.modal-backdrop .modal__main {
  overflow: hidden;
}

.modal-backdrop .modal__body {
  flex: 1;
  overflow-y: auto;
}

.modal__body {
  padding: 32px 40px 24px;
}

.modal__head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.modal__head .eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--rose-deep);
  text-transform: uppercase;
}

.modal__head h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 8px 0 6px;
  line-height: 1.1;
  color: var(--ink);
}

.modal__head p {
  color: var(--ink-2);
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  max-width: 560px;
}

.modal__foot {
  padding: 16px 40px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Only make the action bar sticky when the modal is in an overlay with
 * a constrained height (otherwise the sticky bar fights the page scroll
 * and overlaps the page footer on the /book/ page). */
.modal-backdrop .modal__foot {
  position: sticky;
  bottom: 0;
}

.modal__foot .back {
  background: none;
  border: none;
  color: var(--ink-2);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.modal__foot .back:hover {
  color: var(--ink);
}

.modal__foot .back[disabled] {
  opacity: .3;
  cursor: default;
}

/* Step content */
.tabs-wrap {
  position: relative;
}

/* Scroll cues for the category row — only shown when the row overflows
 * (mobile with many categories); JS adds .is-scrollable / .is-scrolled. */
.tabs-track {
  display: none;
}

.tabs-hint {
  display: none;
}

@keyframes hbn-tabhint {

  0%,
  100% {
    transform: translateX(0);
    opacity: .5;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tabs-hint {
    animation: none;
  }
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--bone);
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
  transition: background .15s, color .15s, border-color .15s;
}

.tab.is-active {
  background: var(--aubergine);
  color: var(--bone);
  border-color: var(--aubergine);
}

.tab:hover:not(.is-active) {
  border-color: var(--rose-deep);
  color: var(--ink);
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--bone);
  align-items: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}

.svc:hover {
  border-color: var(--rose-deep);
  background: var(--paper);
  transform: translateX(2px);
}

.svc.is-selected {
  background: var(--aubergine);
  color: var(--bone);
  border-color: var(--aubergine);
  transform: none;
}

.svc.is-selected .svc__meta,
.svc.is-selected .svc__desc {
  color: rgba(244, 239, 232, 0.7);
}

.svc__name {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc__name .pop {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--ink);
}

.svc.is-selected .svc__name .pop {
  background: var(--rose);
  color: var(--ink);
}

.svc__desc {
  color: var(--ink-2);
  font-size: 12px;
  margin: 4px 0 0;
  line-height: 1.5;
}

.svc__meta {
  color: var(--muted);
  font-size: 11px;
  margin-top: 6px;
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

.svc__right {
  text-align: right;
}

.svc__price {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.svc__dur {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.12em;
}

.svc.is-selected .svc__dur {
  color: rgba(244, 239, 232, 0.55);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.staff {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--bone);
  align-items: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}

.staff:hover {
  border-color: var(--rose-deep);
  background: var(--paper);
  transform: translateX(2px);
}

.staff.is-selected {
  background: var(--aubergine);
  color: var(--bone);
  border-color: var(--aubergine);
  transform: none;
}

.staff.is-selected .staff__role {
  color: rgba(244, 239, 232, 0.65);
}

.staff__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--aubergine);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 17px;
}

.staff.is-selected .staff__avatar {
  background: var(--rose);
  color: var(--ink);
}

.staff__name {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.1;
}

.staff__role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.staff__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.staff.is-selected .staff__check {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--ink);
}

/* Calendar */
.cal {
  background: var(--bone);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px;
}

.cal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cal__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.cal__nav {
  display: flex;
  gap: 6px;
}

.cal__nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.cal__nav button:hover {
  border-color: var(--rose-deep);
  background: var(--paper);
}

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal__dow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}

.cal__day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: background .15s, border-color .15s, color .15s;
}

@media (hover: hover) {
  .cal__day:hover:not(.is-disabled):not(.is-other):not(.is-selected) {
    border-color: var(--rose-deep);
    background: var(--paper);
  }
}

.cal__day.is-other {
  color: var(--line);
  cursor: default;
  pointer-events: none;
}

.cal__day.is-disabled {
  color: var(--line);
  cursor: not-allowed;
  opacity: .55;
}

.cal__day.is-today {
  font-weight: 600;
  color: var(--rose-deep);
}

.cal__day.is-today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-deep);
}

.cal__day.is-selected {
  background: var(--aubergine);
  color: var(--bone);
  border-color: var(--aubergine);
  font-weight: 600;
}

.cal__day.is-selected.is-today {
  color: var(--bone);
}

.cal__day.is-selected.is-today::after {
  background: var(--rose);
}

.cal__day.has-slots::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-deep);
}

.cal__day.is-selected.has-slots::before {
  background: var(--rose);
}

/* Slots */
.slot {
  padding: 11px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--bone);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.slot:hover {
  border-color: var(--rose-deep);
  background: var(--paper);
}

.slot.is-selected {
  background: var(--aubergine);
  color: var(--bone);
  border-color: var(--aubergine);
  font-weight: 500;
}

/* Slot grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.slot-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin: 16px 0 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ───────── Loaders / skeletons ─────────
 * Used by the booking flow while services/staff/slots/dates are being
 * fetched. Skeletons mimic the final layout so there is no jump when
 * real content arrives.
 */
@keyframes hbn-skel-shimmer {
  0% {
    background-position: -320px 0;
  }

  100% {
    background-position: 320px 0;
  }
}

@keyframes hbn-spin {
  to {
    transform: rotate(360deg);
  }
}

.hbn-skel {
  display: block;
  background-color: var(--line-soft);
  background-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  background-size: 240px 100%;
  background-repeat: no-repeat;
  animation: hbn-skel-shimmer 1.3s linear infinite;
  border-radius: 6px;
  pointer-events: none;
}

.hbn-skel--circle {
  border-radius: 50%;
}

.svc.hbn-skel-card,
.staff.hbn-skel-card {
  pointer-events: none;
  cursor: default;
}

.hbn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: hbn-spin 0.7s linear infinite;
  vertical-align: -2px;
  margin-right: 8px;
}

@media (prefers-reduced-motion: reduce) {

  .hbn-skel,
  .hbn-spinner {
    animation: none;
  }
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  border: 1px solid var(--line);
  background: var(--bone);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-2);
}

.consent input {
  margin-top: 3px;
}

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(200, 155, 146, 0.18);
  border: 1px solid rgba(200, 155, 146, 0.4);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 16px;
}

.notice .ico {
  font-size: 16px;
}

/* Review */
.review {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.review__summary {
  background: var(--bone);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--line-soft);
}

.review__summary h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.review__line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 14px;
}

.review__line:last-of-type {
  border-bottom: none;
}

.review__line .k {
  color: var(--muted);
}

.review__line .v {
  font-weight: 500;
  text-align: right;
}

.review__total {
  background: var(--ink);
  color: var(--bone);
  border-radius: 10px;
  padding: 24px;
}

.review__total .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(244, 239, 232, 0.55);
  text-transform: uppercase;
}

.review__total .v {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  margin: 6px 0 14px;
}

.review__total .vat {
  font-size: 12px;
  color: rgba(244, 239, 232, 0.55);
}

.review__deposit {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 239, 232, 0.18);
}

.review__deposit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.review__deposit-row+.review__deposit-row {
  margin-top: 8px;
}

.review__deposit-row .lbl {
  font-size: 13px;
  color: rgba(244, 239, 232, 0.75);
}

.review__deposit-row .amt {
  font-variant-numeric: tabular-nums;
}

.review__deposit-row--now .lbl {
  color: var(--bone);
  font-weight: 500;
}

.review__deposit-row--now .amt {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
}

.review__deposit-row--bal .lbl,
.review__deposit-row--bal .amt {
  font-size: 13px;
  color: rgba(244, 239, 232, 0.6);
}

.pay-method {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(244, 239, 232, 0.08);
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(244, 239, 232, 0.9);
}

.pay-method .pill {
  background: var(--bone);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
}

/* Confirmation */
.confirm {
  text-align: center;
  padding: 24px 0;
}

.confirm__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bone);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 36px;
}

.confirm h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0 0 12px;
}

.confirm .ref {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.confirm__card {
  background: var(--bone);
  border-radius: 12px;
  padding: 24px;
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: left;
  border: 1px solid var(--line-soft);
}

.confirm__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.confirm__next {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}

/* Floating book button */
.fab-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 30;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--aubergine);
  color: var(--bone);
  border: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 16px 40px -10px rgba(61, 36, 56, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fab-book:hover {
  background: var(--ink);
}

/* Small */
.divider {
  height: 1px;
  background: var(--line-soft);
  margin: 32px 0;
}

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bone-2);
  color: var(--ink-2);
}

/* ───────── Full treatment menu ───────── */
.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.menu-group {
  break-inside: avoid;
}

.menu-group__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 4px;
}

.menu-group__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  line-height: 1.05;
}

.menu-group__count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
  cursor: pointer;
  align-items: center;
  transition: background .15s, padding .15s;
}

.menu-item:hover {
  background: var(--paper);
  padding-left: 12px;
  padding-right: 12px;
}

.menu-item:hover .menu-item__book {
  opacity: 1;
  transform: translateX(0);
}

.menu-item__name {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  gap: 8px;
  align-items: center;
}

.pop-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--ink);
}

.menu-item__desc {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 3px;
  max-width: 460px;
  line-height: 1.45;
}

.menu-item__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.menu-item__price {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}

.menu-item__book {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--rose-deep);
  padding: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .2s;
  font-family: var(--sans);
}

/* Hide scrollbars subtly */
.modal__body::-webkit-scrollbar {
  width: 6px;
}

.modal__body::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

/* ============================================================================
 * MOBILE — tablet + phone breakpoints.
 *
 * Two breakpoints: 980px (tablet+phone) for major layout flips, and 600px
 * for the densest stack-everything view on small phones.
 * ============================================================================ */

@media (max-width: 980px) {

  /* ───────── Nav ───────── */
  .nav__inner {
    padding: 14px 20px;
    gap: 12px;
  }

  .nav__logo {
    font-size: 18px;
    margin-right: auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav .btn--primary {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Mobile slide-down panel. */
  .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 239, 232, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
    padding: 8px 20px 20px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s, transform .2s, visibility .2s;
  }

  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    gap: 0;
    font-size: 16px;
    width: 100%;
    white-space: normal;
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--serif);
    font-size: 18px;
  }

  .nav__spacer {
    display: none;
  }

  .nav__phone {
    display: flex;
    font-size: 14px;
    padding: 16px 0 4px;
  }

  .nav__account {
    display: inline-block;
    font-size: 14px;
    padding: 8px 0;
  }

  /* ───────── Hero ───────── */
  .hero {
    grid-template-columns: 1fr;
    padding: 24px 20px 40px;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(32px, 7vw, 44px);
    margin-bottom: 16px;
  }

  .hero__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero__cta .btn {
    padding: 11px 18px;
    font-size: 13px;
  }

  .hero__meta {
    gap: 16px;
    margin-top: 24px;
    padding-top: 16px;
    flex-wrap: wrap;
  }

  .hero__meta div {
    flex: 1 1 30%;
  }

  .hero__meta div .num {
    font-size: 20px;
  }

  .hero__meta div .lbl {
    font-size: 10px;
  }

  .hero__media {
    aspect-ratio: 4/3;
    max-height: 50vh;
  }

  .hero__media .stamp {
    width: 78px;
    height: 78px;
    font-size: 11px;
    top: 14px;
    right: 14px;
  }

  .hero__media .badge {
    font-size: 11px;
    padding: 12px 14px;
    max-width: 180px;
    left: -6px;
    bottom: 50px;
  }

  .hero__media .frame::after {
    font-size: 8px;
    bottom: 14px;
  }

  /* ───────── Section ───────── */
  .section {
    padding: 48px 20px;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }

  .section__head p {
    max-width: 100%;
  }

  /* ───────── Categories ───────── */
  /* !important overrides Elementor's per-post cached `.cats` rule, which is unscoped by viewport. */
  .cats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .cat {
    padding: 20px 16px 18px;
    min-height: 220px;
  }

  .cat__name {
    font-size: 18px;
  }

  /* ───────── Featured cards ───────── */
  .feat {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .feat__card {
    padding: 18px;
  }

  .feat__title {
    font-size: 19px;
  }

  .feat__price {
    font-size: 18px;
  }

  /* ───────── How it works ───────── */
  .how {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .how__step .t {
    font-size: 19px;
  }

  /* ───────── Team ───────── */
  .team {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* ───────── Vouchers band ───────── */
  .voucher-band {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .voucher-card {
    aspect-ratio: 8/5;
    padding: 22px;
  }

  .voucher-card .amt {
    font-size: 36px;
  }

  /* ───────── Location ───────── */
  .loc {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .loc__info dl {
    grid-template-columns: 90px 1fr;
    gap: 8px 16px;
  }

  .loc__map {
    min-height: 240px;
  }

  /* ───────── Full menu ───────── */
  .menu-groups {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-item {
    gap: 14px;
    padding: 12px 0;
  }

  .menu-item:hover {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .menu-item__name {
    font-size: 15px;
  }

  .menu-item__price {
    font-size: 17px;
  }

  .menu-item__desc {
    font-size: 11px;
  }

  /* ───────── Footer ───────── */
  footer.foot {
    padding: 48px 20px 24px;
  }

  .foot__big {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 24px;
  }

  .foot__cta {
    margin-bottom: 36px;
  }

  .foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 32px 0;
  }

  .foot__legal {
    flex-direction: column;
    gap: 8px;
  }

  /* ───────── Floating book FAB ───────── */
  .fab-book {
    bottom: 16px;
    right: 16px;
    padding: 13px 18px;
    font-size: 13px;
  }

  /* ============================================================
   * BOOKING — mobile (scoped to booking widget + modal only)
   * Repurposes the sidebar as a sticky progress strip so users keep
   * step context on phones, and pins the action footer above the
   * iOS home indicator.
   * ============================================================ */

  /* Intro block above the inline /book/ panel */
  .hbn-bookintro {
    padding: 24px 20px 0 !important;
  }

  .hbn-bookintro>div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .hbn-bookintro h1 {
    font-size: clamp(24px, 6vw, 36px) !important;
  }

  .hbn-bookintro p {
    font-size: 13px !important;
  }

  /* Modal panel: single column, edge-to-edge */
  .modal {
    grid-template-columns: 1fr;
    border-radius: 10px;
    margin: 0 12px 24px;
    max-width: none;
    width: auto;
  }

  /* Inline booking widget has min-height: 680px inline — drop it on mobile */
  #hbn-booking-inline {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Popup variant: ALWAYS full screen on mobile, regardless of how short
   * or tall the current step's content is. The backdrop stretches its
   * single child; the modal switches from grid to flex column so the
   * progress strip / body / footer claim their slots predictably:
   *   sidebar  → auto (intrinsic strip height)
   *   body     → 1 1 0 (fills, scrolls)
   *   footer   → auto (pinned at the bottom by the flex flow)
   */
  .modal-backdrop {
    padding: 0;
    place-items: stretch;
  }

  .modal-backdrop .modal {
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    max-width: none !important;
    width: 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    min-height: 0;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .modal-backdrop .modal__side {
    flex: 0 0 auto;
  }

  .modal-backdrop .modal__main {
    flex: 1 1 0;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .modal-backdrop .modal__body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-backdrop .modal__foot {
    flex: 0 0 auto;
  }

  .modal__main {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  /* Sidebar → slim sticky progress strip */
  .modal__side {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid rgba(244, 239, 232, 0.12);
  }

  .modal__side .brand,
  .modal__side h3,
  .modal__side .summary {
    display: none;
  }

  /* Keep the close button only when running as a popup */
  .modal__side .close {
    display: none;
  }

  .modal-backdrop .modal__side .close {
    display: grid;
    position: static;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    order: 2;
  }

  /* Steps → horizontal dot progress with connector lines */
  .steps {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 0;
    align-items: center;
    margin: 0;
    min-width: 0;
  }

  .steps li {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0;
    border-bottom: none;
    gap: 0;
    min-width: 0;
  }

  .steps li>span:not(.marker) {
    display: none;
  }

  .steps li .marker {
    width: 22px;
    height: 22px;
    font-size: 9px;
    flex-shrink: 0;
  }

  .steps li::after {
    content: '';
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: rgba(244, 239, 232, 0.18);
    margin: 0 4px;
    transition: background .2s;
  }

  .steps li:last-child {
    flex: 0 0 auto;
  }

  .steps li:last-child::after {
    display: none;
  }

  .steps li.is-done::after {
    background: var(--rose);
  }

  /* Body: room for content; sticky footer adds its own padding */
  .modal__body {
    padding: 22px 18px 20px;
  }

  .modal__head {
    margin-bottom: 20px;
  }

  .modal__head h2 {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .modal__head p {
    font-size: 13px;
  }

  /* Sticky action footer with iOS safe-area inset */
  .modal__foot {
    position: sticky;
    bottom: 0;
    z-index: 4;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    gap: 12px;
    background: var(--paper);
    box-shadow: 0 -8px 24px -14px rgba(42, 28, 40, 0.22);
    border-top: 1px solid var(--line-soft);
  }

  .modal__foot .btn--primary {
    padding: 13px 18px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    min-height: 46px;
  }

  .modal__foot .back {
    font-size: 13px;
    padding: 8px;
    min-height: 44px;
  }

  /* Service rows */
  .svc {
    padding: 14px;
    gap: 12px;
    min-height: 64px;
  }

  .svc__name {
    font-size: 15px;
  }

  .svc__price {
    font-size: 17px;
  }

  .svc__dur {
    font-size: 9px;
  }

  .svc__desc {
    font-size: 12px;
  }

  /* Staff: stack */
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .staff {
    padding: 12px 14px;
    gap: 12px;
    min-height: 60px;
  }

  .staff__avatar {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  /* Calendar */
  .cal {
    padding: 14px;
  }

  .cal__title {
    font-size: 16px;
  }

  .cal__day {
    font-size: 13px;
  }

  .cal__nav button {
    width: 32px;
    height: 32px;
  }

  /* Slots — fixed 3 columns for predictable, finger-friendly tap targets */
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
  }

  .slot {
    padding: 13px 6px;
    font-size: 13px;
    min-height: 44px;
  }

  /* Review: stack */
  .review {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review__total .v {
    font-size: 34px;
  }

  /* Form: stack inputs; 16px font-size prevents iOS auto-zoom on focus */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .field input,
  .field textarea {
    padding: 13px;
    font-size: 16px;
    min-height: 46px;
  }

  .field textarea {
    min-height: 88px;
  }

  .consent {
    font-size: 12px;
  }

  /* Tabs: single horizontal scrolling row with a scroll-progress track */
  .tabs-wrap {
    margin: 0 -18px 14px;
  }

  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 9px 14px;
    font-size: 13px;
  }

  /* Progress track: slim rail + thumb that mirrors scroll position */
  .tabs-wrap.is-scrollable .tabs-track {
    display: block;
    position: relative;
    height: 3px;
    margin: 12px 18px 0;
    border-radius: 999px;
    background: var(--line-soft);
    overflow: hidden;
  }

  .tabs-track__bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    border-radius: 999px;
    background: var(--aubergine);
    will-change: transform, width;
    transition: width .2s ease;
  }

  /* "More categories →" cue: pulsing chevron at the right edge of the row,
   * retired on the first real scroll (.is-scrolled). Aligned to the row,
   * sitting above the progress track (bottom: 15px = track gap + height). */
  .tabs-wrap.is-scrollable:not(.is-scrolled) .tabs-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 4px;
    top: 0;
    bottom: 15px;
    width: 34px;
    z-index: 3;
    pointer-events: none;
    animation: hbn-tabhint 1.3s ease-in-out infinite;
  }

  .tabs-hint::after {
    /* paper fade so the chevron reads over tabs */
    content: "";
    position: absolute;
    inset: 0 -4px 0 0;
    z-index: -1;
    background: linear-gradient(to left, var(--paper) 35%, rgba(252, 248, 241, 0));
  }

  .tabs-hint>i {
    display: block;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--aubergine);
    border-right: 2px solid var(--aubergine);
    border-radius: 1px;
    transform: rotate(45deg);
  }

  /* ============================================================
   * NEW WIDGETS — mobile rules
   * ============================================================ */

  /* Philosophy cards: 3 → 1 column on mobile */
  .hbn-phil__cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Differentiators: 4 → 2 on tablet */
  .hbn-diffs__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Testimonials: 3 → 1 column */
  .hbn-tgrid {
    grid-template-columns: 1fr !important;
  }

  /* Category intro: 2 → 1 column */
  .hbn-cat-intro>div,
  .hbn-cat-intro [class*="grid"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Stats: 4 → 2 column */
  .hbn-stats__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .hbn-stat__num {
    font-size: 32px !important;
  }

  /* Press strip: tighter spacing */
  .hbn-press {
    padding: 24px 20px !important;
  }

  .hbn-press>div {
    gap: 16px !important;
  }

  .hbn-press__item {
    font-size: 15px !important;
  }

  /* FAQ items */
  .hbn-faq__item summary {
    font-size: 16px !important;
  }
}

@media (max-width: 600px) {

  /* Smallest phones — collapse everything to a single column */
  .cats {
    grid-template-columns: 1fr !important;
  }

  .how {
    grid-template-columns: 1fr;
  }

  .team {
    grid-template-columns: 1fr;
  }

  .foot__grid {
    grid-template-columns: 1fr;
  }

  .hbn-diffs__grid {
    grid-template-columns: 1fr !important;
  }

  .hbn-stats__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* ───────── Header ─────────
   * Tighten spacing so logo + "Book now" + hamburger fit on one row without
   * the nav overflowing the viewport (the cause of sideways page scroll +
   * the hamburger being pushed off-screen). The brand text can ellipsis as a
   * last resort on very narrow phones so the row can never overflow. */
  .nav__inner {
    padding: 12px 14px;
    gap: 8px;
  }

  .nav__logo {
    font-size: 16px;
    gap: 8px;
    min-width: 0;
  }

  .nav__logo .mark {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .nav__logo>span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav .btn--primary {
    padding: 9px 13px;
    font-size: 12px;
  }

  .nav__toggle {
    width: 38px;
    height: 38px;
  }

  /* Hero CTAs: two equal-width buttons side by side */
  .hero__cta {
    flex-wrap: nowrap;
    gap: 10px;
    align-items: stretch;
  }

  .hero__cta .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    padding: 11px 12px;
    gap: 6px;
  }

  /* Tighter hero */
  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero__media {
    aspect-ratio: 4/3;
  }

  .hero__media .stamp {
    width: 64px;
    height: 64px;
    font-size: 10px;
  }

  /* Tighter section padding */
  .section {
    padding: 36px 16px;
  }

  /* FAB stays compact on small phones */
  .fab-book {
    padding: 11px 14px;
    font-size: 12px;
    bottom: 12px;
    right: 12px;
  }

  /* ───────── BOOKING — small phones ───────── */
  .modal {
    margin: 0 8px 20px;
  }

  .modal__side {
    padding: 10px 12px;
  }

  .modal__body {
    padding: 18px 14px 18px;
  }

  .modal__foot {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  /* Calendar: tighter cells on narrow viewports */
  .cal {
    padding: 12px;
  }

  .cal__day {
    font-size: 12px;
  }

  .cal__dow {
    font-size: 9px;
    padding: 4px 0;
  }

  /* Slot grid: tighter padding, still 3 cols for thumb reach */
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .slot {
    padding: 11px 4px;
    font-size: 12px;
  }

  /* Service / staff slightly tighter */
  .svc {
    padding: 12px;
  }

  .svc__name {
    font-size: 14px;
  }

  .svc__price {
    font-size: 16px;
  }

  .staff {
    padding: 10px 12px;
  }

  /* Progress markers shrink to keep the strip uncluttered with 6 dots */
  .steps li .marker {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .steps li::after {
    margin: 0 3px;
  }
}

/* ═════════════════════════════════════════════════════════════════════════
   Single service page (modular section widgets)
   ═════════════════════════════════════════════════════════════════════════ */

.hbn-svc {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px 96px;
  color: var(--ink);
}

/* — Breadcrumb — */
.hbn-svc__crumbs {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 28px;
  letter-spacing: 0.02em;
}

.hbn-svc__crumbs a {
  color: var(--muted);
  transition: color .15s;
}

.hbn-svc__crumbs a:hover {
  color: var(--aubergine);
}

.hbn-svc__crumbs span[aria-hidden] {
  opacity: .4;
}

.hbn-svc__crumbs-here {
  color: var(--ink);
}

/* — Hero (image left, sticky book card right) — */
.hbn-svc__hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

.hbn-svc__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bone-2);
  box-shadow: 0 20px 40px -28px rgba(31, 19, 32, 0.32);
}

/* Specificity must beat Elementor's `.elementor img { height:auto }` (0,1,1),
   which loads after theme.css and would otherwise collapse the image to its
   intrinsic height and leave a cream gap below it. */
.hbn-svc .hbn-svc__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hbn-svc__media-fallback {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, var(--bone-2) 0 10px, var(--cream) 10px 20px);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.hbn-svc__media-fallback span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(42, 28, 40, 0.55);
}

.hbn-svc__media-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bone);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

/* — Sticky book card column — */
.hbn-svc__sidecol {
  position: sticky;
  top: 96px;
}

.hbn-svc__bookcard {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hbn-svc__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rose-deep);
  text-transform: uppercase;
}

.hbn-svc__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: -4px 0 0;
  color: var(--ink);
}

.hbn-svc__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.hbn-svc__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.hbn-svc__stat {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 18px;
  position: relative;
}

.hbn-svc__stat:first-child {
  padding-left: 0;
}

.hbn-svc__stat:last-child {
  padding-right: 0;
}

.hbn-svc__stat+.hbn-svc__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line-soft);
}

.hbn-svc__stat-num {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}

.hbn-svc__stat-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hbn-svc__cta {
  font-size: 15px;
}

.hbn-svc__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}

.hbn-svc__trust li {
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
}

.hbn-svc__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 60%, var(--bone) 0 2px, transparent 2.5px),
    var(--green);
}

.hbn-svc__trust strong {
  color: var(--ink);
  font-weight: 600;
}

/* — Shared section heading — */
.hbn-svc__expect-head {
  margin-bottom: 32px;
  max-width: 720px;
}

.hbn-svc__expect-head .h-mono {
  display: block;
  margin-bottom: 8px;
}

.hbn-svc__expect-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

/* — What to expect — */
.hbn-svc__expect {
  margin-bottom: 80px;
  padding: 56px 40px;
  background: var(--aubergine);
  color: var(--bone);
  border-radius: 18px;
}

.hbn-svc__expect .hbn-svc__expect-head h2 {
  color: var(--bone);
}

.hbn-svc__expect .hbn-svc__expect-head .h-mono {
  color: var(--rose);
}

.hbn-svc__expect-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hbn-svc__expect-steps>li {
  display: flex;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 232, 0.18);
}

.hbn-svc__step-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--rose);
  flex-shrink: 0;
  padding-top: 2px;
}

.hbn-svc__expect-steps h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 4px;
  color: var(--bone);
}

.hbn-svc__step-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.6);
  display: block;
  margin-bottom: 10px;
}

.hbn-svc__expect-steps p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 239, 232, 0.85);
  margin: 0;
}

/* — Description (prose) — */
.hbn-svc__body {
  max-width: 760px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}

.hbn-svc__body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  color: var(--ink);
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
}

.hbn-svc__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 12px;
}

.hbn-svc__body p {
  margin: 0 0 18px;
}

.hbn-svc__body ul,
.hbn-svc__body ol {
  padding-left: 22px;
  margin: 0 0 22px;
}

.hbn-svc__body li {
  margin-bottom: 8px;
}

.hbn-svc__body strong {
  color: var(--ink);
  font-weight: 600;
}

.hbn-svc__body a {
  color: var(--rose-deep);
  border-bottom: 1px solid currentColor;
  transition: color .15s;
}

.hbn-svc__body a:hover {
  color: var(--ink);
}

.hbn-svc__body blockquote {
  border-left: 2px solid var(--rose);
  margin: 24px 0;
  padding: 4px 0 4px 22px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

/* — Body content: special classes from service-content.php — */
.hbn-svc__body .hbn-service__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}

.hbn-svc__body .hbn-service__glance {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--rose);
  border-radius: 10px;
  padding: 22px 28px 26px;
  margin: 32px 0 40px;
}

.hbn-svc__body .hbn-service__glance h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 14px;
  font-weight: 500;
}

.hbn-svc__body .hbn-service__glance dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 28px;
  row-gap: 10px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.4;
}

.hbn-svc__body .hbn-service__glance dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
}

.hbn-svc__body .hbn-service__glance dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.hbn-svc__body .hbn-service__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.hbn-svc__body .hbn-service__bullets>li {
  position: relative;
  padding: 0 0 0 30px;
  line-height: 1.65;
  margin: 0;
}

.hbn-svc__body .hbn-service__bullets>li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
}

.hbn-svc__body .hbn-service__steps {
  list-style: none;
  counter-reset: hbn-step;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 16px;
}

.hbn-svc__body .hbn-service__steps>li {
  counter-increment: hbn-step;
  position: relative;
  padding: 16px 18px 16px 60px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  line-height: 1.6;
  margin: 0;
}

.hbn-svc__body .hbn-service__steps>li::before {
  content: counter(hbn-step, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--rose-deep);
  font-weight: 600;
}

.hbn-svc__body .hbn-service__steps>li strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 4px;
}

.hbn-svc__body .hbn-service__timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
  position: relative;
}

.hbn-svc__body .hbn-service__timeline>li {
  position: relative;
  padding: 0 0 0 28px;
  line-height: 1.65;
  margin: 0;
}

.hbn-svc__body .hbn-service__timeline>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--rose-deep);
}

.hbn-svc__body .hbn-service__timeline>li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  bottom: -14px;
  width: 2px;
  background: var(--line-soft);
}

.hbn-svc__body .hbn-service__timeline>li:last-child::after {
  display: none;
}

.hbn-svc__body .hbn-service__timeline>li strong {
  display: inline-block;
  min-width: 0;
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}

.hbn-svc__body .hbn-service__aftercare {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.hbn-svc__body .hbn-service__aftercare>li {
  position: relative;
  padding: 10px 14px 10px 40px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  line-height: 1.55;
  margin: 0;
}

.hbn-svc__body .hbn-service__aftercare>li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 6px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.hbn-svc__body .hbn-service__aftercare>li strong {
  color: var(--ink);
  font-weight: 600;
}

.hbn-service__related {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hbn-service__related a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  transition: border-color .15s, transform .15s;
}

.hbn-service__related a:hover {
  border-color: var(--aubergine);
  transform: translateY(-1px);
}

.hbn-service__related strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.hbn-service__related span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* — FAQ — */
.hbn-svc__faq {
  max-width: 840px;
  margin: 0 auto 80px;
}

.hbn-svc__faq-list {
  border-top: 1px solid var(--line-soft);
}

.hbn-svc__faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.hbn-svc__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: color .15s;
}

.hbn-svc__faq-item summary::-webkit-details-marker {
  display: none;
}

.hbn-svc__faq-q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
}

.hbn-svc__faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bone-2);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--mono);
  transition: transform .2s ease, background .2s ease;
  margin-top: 2px;
}

.hbn-svc__faq-item[open] .hbn-svc__faq-icon {
  transform: rotate(45deg);
  background: var(--aubergine);
  color: var(--bone);
}

.hbn-svc__faq-item:hover .hbn-svc__faq-q {
  color: var(--aubergine);
}

.hbn-svc__faq-a {
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
}

.hbn-svc__faq-a p:last-child {
  margin-bottom: 0;
}

/* — Related services grid — */
.hbn-svc__related {
  margin-bottom: 80px;
}

.hbn-svc__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.hbn-svc__related-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.hbn-svc__related-card:hover {
  border-color: var(--aubergine);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -22px rgba(31, 19, 32, 0.4);
}

.hbn-svc__related-img {
  aspect-ratio: 4/3;
  background-color: var(--bone-2);
  background-size: cover;
  background-position: center;
  background-image: repeating-linear-gradient(90deg, var(--bone-2) 0 6px, var(--cream) 6px 12px);
}

.hbn-svc__related-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hbn-svc__related-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.15;
  margin: 4px 0 6px;
  color: var(--ink);
}

.hbn-svc__related-meta {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* — Final CTA — */
.hbn-svc__finalcta {
  background: var(--bone-2);
  border-radius: 18px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hbn-svc__finalcta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  margin: 0 0 6px;
}

.hbn-svc__finalcta p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  max-width: 480px;
}

/* — Tablet — */
@media (max-width: 1024px) {
  .hbn-svc {
    padding: 18px 28px 72px;
  }

  .hbn-svc__hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  .hbn-svc__media {
    aspect-ratio: 1/1;
    max-height: 540px;
  }

  .hbn-svc__sidecol {
    position: static;
  }

  .hbn-svc__expect-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hbn-svc__expect {
    padding: 40px 28px;
  }
}

/* — Mobile — */
@media (max-width: 640px) {
  .hbn-svc {
    padding: 14px 16px 64px;
  }

  .hbn-svc__crumbs {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hbn-svc__crumbs-here {
    display: none;
  }

  /* avoid wrap */
  .hbn-svc__bookcard {
    padding: 22px;
    gap: 14px;
  }

  .hbn-svc__title {
    font-size: 30px;
  }

  .hbn-svc__stats {
    padding: 16px 0;
  }

  .hbn-svc__stat {
    padding: 0 14px;
  }

  .hbn-svc__stat-num {
    font-size: 24px;
  }

  .hbn-svc__expect {
    padding: 32px 20px;
    border-radius: 14px;
  }

  .hbn-svc__expect-steps h3 {
    font-size: 19px;
  }

  .hbn-svc__body {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .hbn-svc__body h2 {
    margin-top: 40px;
  }

  .hbn-svc__finalcta {
    padding: 28px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hbn-svc__finalcta .btn {
    width: 100%;
    justify-content: center;
  }

  .hbn-svc__body .hbn-service__glance {
    padding: 18px 18px 20px;
  }

  .hbn-svc__body .hbn-service__glance dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hbn-svc__body .hbn-service__glance dt {
    margin-bottom: 2px;
  }

  .hbn-svc__body .hbn-service__steps>li {
    padding: 14px 14px 14px 52px;
  }

  .hbn-svc__body .hbn-service__steps>li::before {
    left: 14px;
    top: 14px;
  }
}

/* ============================================================================
 * BY SHIVA — champagne-gold primary CTAs + gold accents
 * Dark immersive panels stay espresso (--aubergine); gold is the accent + CTA,
 * matching the printed menu (gold on cream, dark text). See CLAUDE.md.
 * ==========================================================================*/
.btn--primary {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border: 1px solid var(--gold) !important;
}

.btn--primary:hover {
  background: var(--gold-deep) !important;
  color: var(--paper) !important;
  border-color: var(--gold-deep) !important;
  transform: translateY(-1px);
}

.fab-book {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.fab-book:hover {
  background: var(--gold-deep) !important;
  color: var(--paper) !important;
}

/* Gold hairline accents under section eyebrows / dividers that used the old
 * accent. Eyebrow labels + numerals already use --gold via the design tokens. */
.h-mono {
  color: var(--gold-deep);
}

/* ============================================================================
 * BY SHIVA — constrain the custom wordmark logo image so the header never
 * overflows (the theme's mobile nav CSS only sized the text-logo fallback).
 * ==========================================================================*/
.nav__logo-img {
  height: 46px;
  width: auto;
  max-width: 55vw;
  display: block
}

.nav__logo {
  flex-shrink: 0;
  min-width: 0
}

@media (max-width:980px) {
  .nav__logo-img {
    height: 38px
  }
}

@media (max-width:600px) {
  .nav__logo-img {
    height: 58px
  }
}

@media (max-width:380px) {
  .nav__logo-img {
    height: 27px
  }

  .nav .btn--primary {
    padding: 8px 11px;
    font-size: 11px
  }
}