:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-soft: #f4f1ed;
  --ink: #141414;
  --muted: #5c5c5c;
  --rose: #e8765e;
  --rose-dark: #c9614a;
  --rose-light: #fdeee9;
  --line: #e5e2dd;
  --success: #2d7a54;
  --shadow: 0 16px 40px rgba(20, 20, 20, 0.08);
  --shadow-soft: 0 4px 16px rgba(20, 20, 20, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --serif: "Plus Jakarta Sans", system-ui, sans-serif;
  --sans: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --focus: 0 0 0 3px rgba(232, 118, 94, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 56px 0; }
.section-sm { padding: 40px 0; }
.section-title { font-family: var(--sans); font-size: clamp(1.65rem, 5vw, 2.75rem); line-height: 1.15; margin: 0 0 14px; font-weight: 800; letter-spacing: -.02em; }
.section-title .accent, .accent { color: var(--rose-dark); }
.section-intro { max-width: 680px; color: var(--muted); margin: 0 0 34px; font-size: 1.04rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--rose-dark); font-weight: 700; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 700;
  transition: .2s ease;
  min-height: 48px;
}
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-dark); }
.btn-secondary { border-color: var(--rose); color: var(--rose-dark); background: transparent; }
.btn-secondary:hover { background: var(--rose-light); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: .9; }
.btn-block { width: 100%; }
.btn-small { min-height: 40px; padding: 9px 17px; font-size: .92rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #faf9f7;
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 56px;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: min(128px, 44vw);
  }

  .logo img {
    height: 36px;
    max-width: min(128px, 44vw);
    margin: 0 auto;
    object-position: center center;
  }

  .menu-btn {
    position: relative;
    z-index: 1;
  }
}

.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { width: auto; max-width: min(240px, 58vw); flex-shrink: 0; }
.logo img { height: 52px; width: auto; max-width: min(260px, 62vw); display: block; object-fit: contain; object-position: left center; }

/* Mobile nav — slide-out drawer */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  flex-shrink: 0;
}
.menu-btn__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
body.nav-open .menu-btn__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-btn__bar:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, .45);
  z-index: 300;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 400;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(28, 25, 23, .12);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.nav-drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 28px;
  overflow-y: auto;
}
.nav--mobile a {
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #3b3531;
  border-radius: 12px;
}
.nav--mobile a:hover,
.nav--mobile a.active {
  color: var(--rose-dark);
  background: var(--surface-soft);
}
.nav-drawer__cta { margin-top: 12px; }
body.nav-open { overflow: hidden; }

.nav--desktop { display: none; }

.hero { min-height: 690px; position: relative; overflow: hidden; background: #fff; }
.hero-track { position: relative; min-height: 690px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: stretch; }
.hero-copy { padding: 105px 7vw 90px max(24px, calc((100vw - var(--container))/2)); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(105deg, #fff 68%, rgba(255,255,255,.55)); z-index: 2; }
.hero-copy h1 { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98; font-weight: 500; margin: 14px 0 25px; letter-spacing: -.035em; }
.hero-copy p { color: var(--muted); max-width: 530px; font-size: 1.08rem; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image { min-height: 690px; background-size: cover; background-position: center; }
.hero-image.nails { background-image: linear-gradient(90deg, rgba(255,255,255,.1), transparent), url('/images/shownails.png'); }
.hero-image.lash { background-image: linear-gradient(90deg, rgba(255,255,255,.1), transparent), url('/images/eyewhite.png'); }
.hero-image.hair { background-image: linear-gradient(90deg, rgba(255,255,255,.1), transparent), url('/images/hairwhite2.png'); }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: rgba(28,25,23,.28); }
.hero-dot.active { background: var(--rose-dark); transform: scale(1.25); }

.trust-bar { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { text-align: center; padding: 27px 22px; position: relative; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 30%; bottom: 30%; width: 1px; background: var(--line); }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.trust-item span { color: var(--muted); font-size: .9rem; }

.cards-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.session-card, .service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.session-card:hover, .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-image { aspect-ratio: 1.28 / 1; object-fit: cover; width: 100%; }
.card-body { padding: 24px; }
.pill { display: inline-flex; border: 1px solid var(--line); background: #fffaf8; border-radius: 999px; padding: 5px 10px; font-size: .77rem; color: #4c423e; }
.card-title { font-family: var(--serif); font-size: 1.42rem; font-weight: 500; line-height: 1.2; margin: 16px 0 10px; }
.card-copy { color: var(--muted); margin: 0 0 18px; min-height: 50px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin: 18px 0; font-size: .92rem; }
.price { color: #6e554c; }
.rating { letter-spacing: .05em; white-space: nowrap; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
.step { background: #fff; border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); }
.step-number { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-soft); color: var(--rose-dark); font-family: var(--serif); font-size: 1.45rem; }
.step h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin: 20px 0 8px; }
.step p { color: var(--muted); margin: 0; }

.quote-band { background: linear-gradient(110deg, #f0dfd8, #fbf7f4); text-align: center; padding: 72px 20px; }
.quote-band blockquote { margin: 0 auto; max-width: 850px; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.25; font-weight: 400; }
.quote-band cite { display: block; font-family: var(--sans); font-size: .92rem; color: var(--muted); margin-top: 18px; font-style: normal; }

.page-hero { background: linear-gradient(125deg,#fff,#f4e8e2); padding: 76px 0 62px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.7rem,5vw,4.8rem); margin: 10px 0 18px; font-weight: 500; line-height: 1; }
.page-hero p { max-width: 710px; color: var(--muted); font-size: 1.06rem; }

.filter-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin: -28px auto 42px; position: relative; z-index: 2; box-shadow: var(--shadow-soft); }
.filter-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 16px; align-items: end; }
.form-group { display: grid; gap: 8px; }
.form-group label { font-weight: 600; font-size: .9rem; }
.required-mark { color: var(--rose-dark); font-weight: 800; }
.input, select, textarea { width: 100%; border: 1px solid #dcd3ce; border-radius: 12px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; }
.input:focus, select:focus, textarea:focus { border-color: var(--rose-dark); box-shadow: var(--focus); outline: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 500;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; }

.container--narrow { max-width: 920px; }
.results-count { color: var(--muted); margin: 0 0 20px; }
.empty-state { display:none; padding: 45px; text-align:center; background:#fff; border:1px solid var(--line); border-radius:var(--radius); color:var(--muted); }

.detail-hero { padding: 56px 0; background: #fff; }
.detail-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.detail-media { display: flex; flex-direction: column; gap: 18px; }
.detail-image { border-radius: 28px; width: 100%; aspect-ratio: 1.12 / .82; object-fit: cover; box-shadow: var(--shadow); }
.detail-cities {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf8;
}
.detail-cities__label {
  display: block;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.detail-cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-cities__list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0ddd8;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.2;
}
.detail-copy h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.8rem,5vw,4.6rem); line-height: 1.02; margin: 12px 0 18px; }
.detail-copy .lead { color: var(--muted); font-size: 1.08rem; }
.detail-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 26px 0; }
.fact { border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: #fffaf8; }
.fact small { display: block; color: var(--muted); }
.fact strong { font-size: .98rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; }
.prose h2 { font-family: var(--serif); font-size: 2rem; font-weight: 500; margin: 0 0 15px; }
.prose h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-top: 28px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; align-self: start; position: sticky; top: 110px; }
.info-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin: 0 0 16px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; color: var(--muted); }
.check-list li::before { content: "✓"; color: var(--success); font-weight: 800; }
.review-list { display: grid; gap: 16px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; }
.review-head { display: flex; justify-content: space-between; gap: 18px; }
.review p { color: var(--muted); margin-bottom: 0; }
.review__photo {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin: 14px 0;
  border: 1px solid var(--line);
}
.review-form-wrap { max-width: 640px; }
.review-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.review-form__intro p { margin: 0; color: var(--ink); font-size: 1.02rem; }
.review-form .help-text { margin: 8px 0 0; font-size: .88rem; color: var(--muted); }
.review-stars { border: 0; margin: 0; padding: 0; }
.review-stars__input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}
.review-stars__star {
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #ddd5cf;
  transition: color .15s ease, transform .15s ease;
}
.review-stars__star input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.review-stars__star.is-active,
.review-stars__star:hover,
.review-stars__star:hover ~ .review-stars__star {
  color: #d4a017;
}
.review-thanks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px;
}
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); }

.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.booking-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 32px; }
.booking-details-grid {
  display: grid;
  gap: 18px;
}
.booking-form .form-group--address,
.booking-form .form-group--notes {
  margin-top: 18px;
}
.booking-form__actions {
  margin-top: 28px;
  padding-top: 4px;
}
.booking-form .two-col { gap: 18px 16px; }
.time-24 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.time-24 select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #dcd3ce;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  outline: none;
}
.time-24 select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, .16);
}
.time-24__sep {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}
.time-24__hint {
  margin: -6px 0 10px;
  color: var(--muted);
  font-size: .86rem;
}
.time-24__preview {
  margin: 10px 0 0;
  color: var(--rose-dark);
  font-size: 1.08rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.form-section + .form-section { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 28px; }
.form-section h2 { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; margin: 0 0 18px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: sticky; top: 110px; }
.booking-summary img { width: 100%; aspect-ratio: 1.45/1; object-fit: cover; }
.summary-body { padding: 24px; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 12px 0; }
.summary-row:last-of-type { border-bottom: 0; }
.summary-total { font-weight: 800; font-size: 1.1rem; }
.booking-wizard__locked-label {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-choice-lock {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--rose);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff8f6, #fff);
}
.booking-choice-lock__image {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-soft);
}
.booking-choice-lock__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.booking-choice-lock__name {
  font-size: 1.05rem;
  line-height: 1.25;
}
.booking-choice-lock__meta {
  color: var(--rose-dark);
  font-size: .9rem;
  font-weight: 600;
}
.booking-wizard__change {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
}
.booking-wizard__change:hover { color: var(--ink); }
.booking-wizard__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.booking-wizard__section-head h2 {
  margin: 0;
}
.booking-wizard__all-treatments {
  flex-shrink: 0;
  white-space: nowrap;
}
.booking-wizard__picker [data-booking-continue] { margin-top: 18px; }
.notice { border-radius: 12px; padding: 13px 15px; background: #f3f8f5; color: #315c46; display: none; margin-top: 18px; }

.split-section { display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.split-image { border-radius:28px; width:100%; aspect-ratio:1.1/1; object-fit:cover; box-shadow:var(--shadow); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.value-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.value-card h3 { font-family:var(--serif); font-size:1.35rem; font-weight:500; margin:0 0 8px; }
.value-card p { color:var(--muted); margin:0; }

.cta-panel { background: var(--ink); color: #fff; border-radius: 30px; padding: 55px; display: flex; justify-content: space-between; align-items: center; gap: 34px; }
.cta-panel h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.4rem); font-weight: 500; line-height: 1.05; margin: 0 0 10px; }
.cta-panel p { color: #cfc6c1; margin: 0; }

.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer-logo { height: 52px; width: auto; max-width: 260px; margin-bottom: 18px; object-fit: contain; }
.footer-col h4 { margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); margin: 8px 0; }
.footer-company { line-height: 1.55; margin: 0 0 10px; color: var(--muted); }
.footer-company strong { color: var(--ink); }
.footer-col--company a { color: var(--ink); font-weight: 600; }
.company-details { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.company-details h3 { font-size: 1.1rem; margin: 0 0 10px; }
.legal-prose .lead { font-size: 1.05rem; color: var(--ink); margin-bottom: 18px; }
.booking-legal-note {
  font-size: .82rem;
  line-height: 1.55;
  margin: 16px 0 0;
  color: var(--muted);
}
.booking-form__actions .booking-legal-note {
  margin-bottom: 4px;
  text-align: center;
}
.booking-summary .booking-legal-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.booking-summary__hint {
  font-size: .86rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.booking-legal-note a { color: var(--rose-dark); text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 38px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .88rem; }

.mobile-book-bar {
  display: none;
}

@media (max-width: 980px) {
  .mobile-book-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 90;
    inset: auto 0 0 0;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom, 0px));
    background: rgba(251, 249, 247, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 24px rgba(31, 42, 55, .08);
  }

  .mobile-book-bar .mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(480px, 100%);
    min-height: 56px;
    padding: 16px 28px;
    font-size: 1.05rem;
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(232, 118, 94, .28), 0 6px 18px rgba(31, 42, 55, .12);
    text-align: center;
    white-space: nowrap;
  }

  body.has-mobile-book {
    padding-bottom: 96px;
  }
}

@media (min-width: 981px) {
  .mobile-book-bar {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .hero, .hero-track, .hero-grid { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto 360px; }
  .hero-copy { padding: 70px 24px 45px; }
  .hero-copy h1 { font-size: clamp(3rem,10vw,5rem); }
  .hero-image { min-height: 360px; }
  .cards-grid, .steps, .values-grid { grid-template-columns: repeat(2,1fr); }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid, .content-grid, .booking-layout, .split-section { grid-template-columns: 1fr; }
  .info-card, .booking-summary { position: static; }
  .booking-layout { gap: 24px; }
  .booking-form { padding: 22px 18px 28px; }
  .booking-summary { margin-top: 4px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
}

@media (max-width: 680px) {
  .hero, .hero-track, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-rows: auto 240px; }
  .hero-copy { padding: 32px 0 24px; }
  .hero-copy h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); line-height: 1.12; }
  .hero-copy p { font-size: .95rem; }
  .hero-image { min-height: 240px; }
  .filter-panel { margin-top: -18px; }
  .detail-facts { grid-template-columns: 1fr; }
  .detail-hero { padding-top: 32px; }
  .detail-grid { gap: 30px; }
}

.service-feed-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-feed { position: relative; }
.service-feed__viewport {
  overflow: hidden;
  width: 100%;
}
.service-feed__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.service-feed__track::-webkit-scrollbar { display: none; }
.service-feed-card {
  flex: none;
  width: min(320px, calc(100vw - 48px));
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.service-feed-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 10px;
}
.service-feed-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .82rem;
  font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
}
.service-feed-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-feed-card__meta { display: grid; gap: 2px; min-width: 0; }
.service-feed-card__meta strong { font-size: .95rem; line-height: 1.2; }
.service-feed-card__meta span { color: var(--muted); font-size: .82rem; }
.service-feed-card__caption {
  margin: 0;
  padding: 0 16px 12px;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.5;
}
.service-feed-card__media { aspect-ratio: 1 / 1; background: var(--surface-soft); }
.service-feed-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-feed__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}
.service-feed__nav--prev { left: -10px; }
.service-feed__nav--next { right: -10px; }
.service-feed__track.is-infinite {
  scroll-snap-type: x mandatory;
}
.service-feed__nav:disabled { opacity: .35; cursor: not-allowed; }

@media (max-width: 767px) {
  .service-feed__nav { display: none; }
  .service-feed__track {
    gap: 12px;
    scroll-padding-inline: 16px;
    padding-inline: 16px;
  }
  .service-feed-card {
    width: calc(100vw - 64px);
    max-width: none;
  }
}

@media (min-width: 768px) {
  .service-feed-card { width: min(42vw, 340px); }
}

@media (min-width: 981px) {
  .service-feed__track { gap: 22px; padding-inline: 8px; }
  .service-feed-card { width: 320px; }
  .service-feed__nav--prev { left: -18px; }
  .service-feed__nav--next { right: -18px; }
}

.cookie-banner { position:fixed; bottom:12px; left:12px; right:12px; background:#fff; border:1px solid var(--line); border-radius:18px; padding:16px 18px; box-shadow:var(--shadow); display:flex; justify-content:space-between; gap:16px; align-items:center; z-index:120; }
.cookie-banner.hidden { display:none; }
.cookie-actions { display:flex; gap:10px; flex-wrap:wrap; }
.alert { border-radius:12px; padding:14px 16px; margin-bottom:16px; }
.alert.success { background:#edf7ef; color:#315c46; }
.alert.error { background:#fdeeee; color:#8a3b3b; }
.empty-state.is-visible { display:block; }

/* Homepage hero — split image | widget */
.home-hero {
  padding: 16px 0 28px;
}
.home-hero__frame {
  position: relative;
}
.home-hero__banner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
}
.home-hero__media {
  position: relative;
  min-height: clamp(380px, 52vh, 480px);
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.home-hero__carousel {
  position: absolute;
  inset: 0;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 8, 6, 0.06) 0%,
    rgba(12, 8, 6, 0.18) 38%,
    rgba(12, 8, 6, 0.58) 72%,
    rgba(12, 8, 6, 0.82) 100%
  );
}
.home-hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 20px 72px;
}
.home-hero__copy-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 100%;
}
.home-hero__title-block {
  min-width: 0;
}
.home-hero__divider {
  display: none;
}
.home-hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-height: 100%;
  padding: 22px 20px 20px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: none;
}
.home-hero__widget-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 16px 0 0;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.home-hero__widget-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.home-hero__widget-trust i {
  color: var(--rose);
  font-size: .95rem;
  width: 1.15rem;
  text-align: center;
  flex-shrink: 0;
}
.home-hero__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(12, 8, 6, 0.48);
  backdrop-filter: blur(6px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f4a898;
  max-width: calc(100% - 56px);
}
.home-hero__copy h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 8vw, 2.75rem);
  line-height: 1.02;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.04em;
  color: #fff;
}
.home-hero__copy h1 .accent {
  color: #f4a898;
}
.home-hero__lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
  max-width: 22rem;
}
.home-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.home-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}
.home-hero__trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .78rem;
}
.home-hero__trust-icon--star {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.home-hero__trust-icon--bolt,
.home-hero__trust-icon--home {
  background: rgba(232, 118, 94, 0.95);
  color: #fff;
}
.home-hero__reviews-bar {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.home-hero__reviews-bar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .78rem;
  background: var(--surface-soft);
  color: var(--rose-dark);
}
.home-hero__dots {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.home-hero__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.home-hero__dot.is-active {
  width: 24px;
  background: #fff;
}
.hero-visual-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-visual-slide--nails {
  background-position: 52% 58%;
}
.hero-visual-slide--wimpers {
  background-position: 58% 42%;
  background-size: 115%;
}
.hero-visual-slide--hair {
  background-position: 55% 40%;
}
.hero-visual-slide--center {
  background-position: center center;
}
.hero-visual-slide.active {
  opacity: 1;
  z-index: 1;
}
.book-flow {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 0;
}
.book-flow.book-flow--hero {
  gap: 16px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex: 1 1 auto;
  width: 100%;
}
.book-flow__step { display: grid; gap: 10px; }
.book-flow__step--categories { gap: 12px; }
.book-flow__label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-flow__input,
.book-flow__select {
  width: 100%;
  border: 1px solid #d8d4cf;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  padding: 14px 14px;
  font-size: 1rem;
  min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.book-flow__input:focus,
.book-flow__select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: var(--focus);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.book-flow--hero .category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.category-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(31, 42, 55, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.category-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .24s ease, filter .2s ease;
}
.book-flow--hero .category-card img {
  transform: scale(1.14);
  transform-origin: center center;
}
.category-card--all {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #fff8f6, #ffe7e2);
}
.category-card--all img {
  object-fit: contain;
  padding: 22%;
  background: linear-gradient(145deg, #fff8f6, #ffe7e2);
}
.category-card__icon {
  display: grid;
  place-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: transparent;
  color: var(--rose);
}
.category-card--all .category-card__icon {
  aspect-ratio: auto;
  padding: 16% 16% 4%;
}
.category-card__label {
  display: block;
  padding: 0 8px 14px;
  text-align: center;
  font-size: clamp(.78rem, 2.2vw, .92rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.category-card__icon svg {
  width: clamp(2.1rem, 6vw, 2.75rem);
  height: clamp(2.1rem, 6vw, 2.75rem);
  transition: transform .24s ease;
}
.book-flow--hero .category-card--all img {
  padding: 14%;
  transform: none;
}
.category-card:hover:not(.is-disabled):not([aria-pressed="true"]) {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(31, 42, 55, .12);
}
.category-card:hover:not(.is-disabled):not([aria-pressed="true"]) img {
  transform: scale(1.02);
}
.book-flow--hero .category-card:hover:not(.is-disabled):not([aria-pressed="true"]) img {
  transform: scale(1.18);
}
.book-flow--hero .category-card--all:hover:not(.is-disabled):not([aria-pressed="true"]) img,
.book-flow--hero .category-card--all:hover:not(.is-disabled):not([aria-pressed="true"]) .category-card__icon svg {
  transform: scale(1.04);
}
.book-flow--hero .category-card[aria-pressed="true"] img {
  transform: scale(1.14);
}
.category-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 118, 94, .24);
}
.category-card[aria-pressed="true"] {
  border-color: var(--rose);
  box-shadow: 0 10px 24px rgba(232, 118, 94, .22);
}
.category-card[aria-pressed="true"] img {
  filter: saturate(1.06);
}
.category-card__check {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  box-shadow: 0 6px 14px rgba(232, 118, 94, .35);
  opacity: 0;
  transform: scale(.65);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.category-card[aria-pressed="true"] .category-card__check {
  opacity: 1;
  transform: scale(1);
}
.category-card.is-disabled {
  opacity: .38;
  cursor: not-allowed;
  filter: grayscale(.25);
}
@media (max-width: 680px) {
  .category-grid {
    gap: 8px;
  }
  .category-card {
    border-radius: 12px;
  }
  .category-card__check {
    width: 24px;
    height: 24px;
    top: 6px;
    right: 6px;
  }
  .category-card__check svg {
    width: 18px;
    height: 18px;
  }
}
.book-flow__submit {
  font-size: 1rem;
  gap: 10px;
  margin-top: 2px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(232, 118, 94, .22);
}
.book-flow__submit:hover { box-shadow: 0 10px 24px rgba(232, 118, 94, .28); }

.service-picker__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.service-picker__option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.service-picker__option:hover {
  border-color: rgba(232, 118, 94, .35);
  background: #fffaf8;
}
.service-picker__option.is-selected {
  border-color: var(--rose);
  background: var(--rose-light);
  box-shadow: 0 0 0 1px rgba(232, 118, 94, .18);
}
.service-picker__option:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.service-picker__option-name {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.3;
}
.service-picker__option-price {
  font-weight: 800;
  font-size: .92rem;
  color: var(--rose-dark);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 118, 94, .1);
}
.service-picker__option.is-selected .service-picker__option-price {
  background: #fff;
  color: var(--rose-dark);
}
.service-picker--compact .service-picker__list {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}
.service-picker--compact .service-picker__option {
  padding: 11px 12px;
}
.service-picker--compact .service-picker__option-name {
  font-size: .86rem;
}
.service-picker--compact .service-picker__option-price {
  font-size: .8rem;
  padding: 3px 8px;
}
.book-flow__status {
  margin: 0;
  font-size: .86rem;
  min-height: 1.2em;
}
.book-flow__status.is-error { color: #b04444; }
.book-flow__status.is-success { color: var(--success); }
.book-flow--hero .book-flow__status.is-success { color: #2d7a54; }

.partner-teaser {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.partner-teaser h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 800; }
.partner-teaser p { margin: 0 0 16px; color: var(--muted); font-size: .92rem; }

.partner-lead-grid { display: grid; gap: 24px; }
.partner-lead-benefits h2 { margin: 0 0 14px; font-size: 1.35rem; font-weight: 800; }

.partner-check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.partner-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.45;
}
.partner-check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 5px;
  background: var(--rose-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 5 8.7 9.5 3.8' stroke='%23c9614a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
  border: 1px solid rgba(232, 118, 94, .28);
}

.partner-lead-form {
  display: grid;
  gap: 14px;
  border-radius: 6px;
}
.partner-lead-form .input,
.partner-lead-form select,
.partner-lead-form textarea {
  border-radius: 6px !important;
  padding: 12px 14px;
  border-color: #d8d0cb;
}
.partner-lead-form .btn {
  border-radius: 6px;
  min-height: 50px;
}

.partner-lead-form .partner-specialty-field {
  border: 1px solid #d8d0cb;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #fff;
}
.partner-lead-form .partner-specialty-field__label {
  display: block;
  padding: 12px 14px 10px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: #faf8f7;
}

.chip-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-checks--stack {
  display: grid;
  gap: 0;
  width: 100%;
}
.chip-check { cursor: pointer; position: relative; }
.chip-checks--stack .chip-check { display: block; width: 100%; }
.chip-check input { position: absolute; opacity: 0; pointer-events: none; }
.chip-check span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  background: #fff;
}

.partner-lead-form .chip-checks--stack .chip-check span {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: background .15s ease, color .15s ease;
}
.partner-lead-form .chip-checks--stack .chip-check:last-child span {
  border-bottom: 0;
}
.partner-lead-form .chip-checks--stack .chip-check span::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #cfc5bf;
  background: #fff;
  flex-shrink: 0;
}
.partner-lead-form .chip-checks--stack .chip-check input:checked + span {
  background: #fff7f4;
  color: var(--rose-dark);
}
.partner-lead-form .chip-checks--stack .chip-check input:checked + span::after {
  border-color: rgba(232, 118, 94, .45);
  background: var(--rose-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 5 8.7 9.5 3.8' stroke='%23c9614a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.partner-intake-guide__grid {
  display: grid;
  gap: 18px;
}

.partner-intake-guide__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
}

.partner-intake-guide__card--accent {
  border-color: rgba(232, 118, 94, .25);
  background: linear-gradient(180deg, #fffaf8 0%, #fff 100%);
}

.partner-intake-guide__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 12px;
}

.partner-intake-guide__card h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
}

.partner-intake-guide__card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.partner-intake-guide__card p:last-child {
  margin-bottom: 0;
}

.partner-intake-steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.partner-intake-example {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(232, 118, 94, .08);
  color: var(--ink) !important;
}

.partner-intake-form .form-group.partner-specialty-field {
  gap: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.partner-intake-form .partner-specialty-field__label {
  display: block;
  padding: 0 0 10px;
  margin: 0;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  border: 0;
  background: transparent;
}

.partner-intake-form .partner-specialty-field .chip-checks--stack {
  gap: 0;
  border: 1px solid #d8d0cb;
  border-radius: 6px;
  overflow: hidden;
}

.partner-intake-form .partner-specialty-field .chip-check {
  margin: 0;
}

.partner-intake-form .chip-checks--stack .chip-check span {
  min-height: 42px;
  padding: 0 14px;
  line-height: 1.25;
}

.partner-intake-section > .form-group + .form-group {
  margin-top: 16px;
}

.partner-intake-form {
  margin-top: 8px;
}

.partner-intake-form.booking-form {
  box-shadow: var(--shadow-soft);
}

.partner-intake-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 28px 0 0;
  margin: 0;
  box-shadow: none;
  border-top: 1px solid var(--line);
}

.partner-intake-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.partner-intake-section h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.partner-intake-section--submit {
  background: transparent;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.partner-intake-form .form-grid--2 {
  display: grid;
  gap: 16px;
}

.partner-intake-services__group {
  margin-top: 14px;
}

.partner-intake-services__group h3 {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--rose-dark);
}

.partner-intake-agree {
  align-items: flex-start;
  margin-bottom: 18px;
  line-height: 1.55;
}

.partner-intake-blocked {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(176, 68, 68, .35);
  background: rgba(176, 68, 68, .1);
  color: #7a2e2e;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.5;
}

.partner-intake-blocked[hidden] {
  display: none !important;
}

.partner-intake-blocked p {
  margin: 0;
}

.partner-intake-form.is-home-service-pending .partner-intake-section[data-intake-after-gate],
.partner-intake-form.is-home-service-blocked .partner-intake-section[data-intake-after-gate] {
  display: none;
}

.partner-custom-services__list {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.partner-custom-services__row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.partner-custom-services__row .input {
  flex: 1;
}

.partner-custom-services__remove {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.partner-custom-services__remove:hover {
  color: var(--rose-dark);
  border-color: rgba(232, 118, 94, .35);
}

@media (min-width: 981px) {
  .partner-intake-guide__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-intake-form .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.chip-check input:checked + span {
  background: var(--rose-light);
  border-color: var(--rose);
  color: var(--rose-dark);
}
.form-footnote { margin: 12px 0 0; font-size: .82rem; text-align: center; }
.page-hero--compact { padding-bottom: 0; }

/* Partner info / presentation page */
.partner-info-hero {
  background: linear-gradient(125deg, #fff 0%, #f4e8e2 100%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 48px;
}
.partner-info-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.partner-info-hero__copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.02;
  margin: 10px 0 16px;
}
.partner-info-hero__lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
  margin: 0 0 22px;
}
.partner-info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.partner-info-hero__note {
  margin: 14px 0 0;
  font-size: .88rem;
}
.partner-info-hero__media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.partner-info-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
}

.partner-info-stats {
  padding-top: 36px;
  padding-bottom: 36px;
}
.partner-info-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.partner-info-stats__grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.partner-info-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 1.05rem;
}
.partner-info-stat__icon--img {
  background: var(--rose-light);
}
.partner-info-stat__icon--img img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(28%) saturate(1200%) hue-rotate(334deg) brightness(95%) contrast(92%);
}
.partner-info-stats__grid strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.partner-info-stats__grid span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.section-head--center { text-align: center; }

.partner-info-flow__head,
.section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.partner-info-flow__head .section-title,
.section-head--center .section-title {
  margin-bottom: 12px;
}
.partner-info-flow__head .section-intro,
.section-head--center .section-intro {
  margin-bottom: 0;
  max-width: 560px;
}

.section-intro--center {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.partner-info-flow {
  padding-top: 48px;
  padding-bottom: 48px;
}

.partner-info-steps {
  display: grid;
  gap: 48px;
  margin-top: 8px;
}
.partner-info-step {
  display: grid;
  gap: 24px;
  align-items: center;
}
.partner-info-step + .partner-info-step {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.partner-info-step__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.partner-info-step__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center top;
}
.partner-info-step__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.partner-info-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
}
.partner-info-step__body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}
.partner-info-step__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
}

.partner-info-roles {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.partner-info-role {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.partner-info-role--accent {
  border-color: rgba(232, 118, 94, .28);
  background: linear-gradient(180deg, #fffaf8 0%, #fff 100%);
}
.partner-info-role h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-info-role h3 i {
  color: var(--rose-dark);
}

.partner-info-faq .faq { margin-top: 20px; }

.partner-info-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
.btn-white-outline {
  border-color: rgba(255, 255, 255, .45) !important;
  color: #fff !important;
  background: transparent !important;
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, .1) !important;
}

@media (min-width: 768px) {
  .partner-info-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-info-roles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 981px) {
  .partner-info-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .partner-info-hero__copy {
    order: 1;
  }
  .partner-info-hero__media {
    order: 2;
  }
  .partner-info-hero__media img {
    min-height: 360px;
    aspect-ratio: 4 / 3;
    object-position: center 18%;
  }
  .partner-info-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .partner-info-step {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .partner-info-step__media img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    object-position: center 22%;
  }
  .partner-info-step--reverse .partner-info-step__media {
    order: 2;
  }
  .partner-info-step--reverse .partner-info-step__body {
    order: 1;
  }
}

@media (max-width: 980px) {
  .partner-info-hero {
    padding: 24px 0 32px;
  }
  .partner-info-hero__grid {
    gap: 22px;
  }
  .partner-info-hero__copy h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .partner-info-hero__lead {
    font-size: .98rem;
    margin-bottom: 0;
  }
  .partner-info-hero__actions {
    display: none;
  }
  .partner-info-hero__note {
    margin-top: 10px;
  }
  .partner-info-hero__media {
    border-radius: 20px;
  }
  .partner-info-hero__media img {
    min-height: clamp(220px, 52vw, 300px);
    max-height: 340px;
    aspect-ratio: 5 / 4;
    object-position: center top;
  }
  .partner-info-step--reverse .partner-info-step__media,
  .partner-info-step--reverse .partner-info-step__body {
    order: unset;
  }
  .partner-info-step__media img {
    min-height: clamp(180px, 44vw, 240px);
    max-height: 260px;
    aspect-ratio: 16 / 11;
    object-position: center top;
  }
  .partner-info-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-info-cta__actions .btn-primary {
    display: none;
  }
  body.partner-info-page.has-mobile-book {
    padding-bottom: 96px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    padding: 0 0 24px;
  }
  .home-hero__frame.container {
    width: 100%;
    max-width: none;
  }
  .home-hero__banner {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
  .home-hero__media {
    border-radius: 0;
    min-height: clamp(340px, 56vh, 420px);
  }
  .home-hero__copy {
    padding: 20px 18px 40px;
  }
  body.home-page .home-hero__copy {
    padding-top: 20px;
  }
  .home-hero__trust-item--reviews {
    display: none;
  }
  .home-hero__reviews-bar {
    display: flex;
  }
  .home-hero__aside {
    border-top: 0;
    padding: 20px 16px 18px;
  }
}

@media (min-width: 768px) {
  .home-hero { padding: 20px 0 32px; }
  .home-hero__media { min-height: clamp(420px, 50vh, 520px); }
  .home-hero__copy {
    padding: 32px 28px 76px;
  }
  .home-hero__copy-bottom {
    grid-template-columns: minmax(0, auto) 1px minmax(0, 1fr);
    gap: 0 22px;
    align-items: center;
    max-width: min(100%, 640px);
  }
  .home-hero__divider {
    display: block;
    width: 1px;
    align-self: stretch;
    min-height: clamp(120px, 18vh, 168px);
    background: rgba(255, 255, 255, 0.72);
  }
  .home-hero__copy h1 {
    font-size: clamp(2.35rem, 3.2vw, 3.35rem);
  }
  .home-hero__lead {
    font-size: .95rem;
    max-width: 16.5rem;
    align-self: center;
  }
  .home-hero__dots { left: 28px; bottom: 22px; }
  .home-hero__aside { padding: 24px; }
  .partner-lead-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

@media (min-width: 981px) {
  .home-hero { padding: 20px 0 36px; }
  .home-hero__banner {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 400px);
    border-radius: 28px;
    min-height: clamp(520px, 58vh, 620px);
  }
  .home-hero__media {
    min-height: clamp(520px, 58vh, 620px);
    border-radius: 28px 0 0 28px;
  }
  .home-hero__copy {
    justify-content: space-between;
  }
  .home-hero__copy-bottom {
    grid-template-columns: minmax(0, auto) 1px minmax(0, 1fr);
    gap: 0 28px;
    align-items: center;
    max-width: min(100%, 720px);
  }
  .home-hero__divider {
    display: block;
    min-height: clamp(132px, 20vh, 180px);
  }
  .home-hero__copy h1 {
    font-size: clamp(2.5rem, 2.9vw, 3.55rem);
    margin-bottom: 0;
  }
  .home-hero__lead {
    font-size: 1rem;
    max-width: 17rem;
    line-height: 1.6;
  }
  .home-hero__trust {
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .home-hero__trust li {
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    background: rgba(12, 8, 6, 0.42);
    backdrop-filter: blur(4px);
  }
  .home-hero__aside {
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 28px 28px 0;
    box-shadow: none;
  }
  .home-hero__dots {
    left: 36px;
    bottom: 24px;
  }
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}
.section-head__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--rose-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.section-head__link:hover {
  color: var(--rose);
}
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.treatment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.treatment-card__image { display: block; aspect-ratio: 1.15/1; overflow: hidden; }
.treatment-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.treatment-card:hover .treatment-card__image img { transform: scale(1.03); }
.treatment-card__body { padding: 18px; }
.treatment-card__title {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.25;
}
.treatment-card__rating {
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.treatment-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 14px;
}
.treatment-card__price { color: var(--rose-dark); font-weight: 700; }
.rating-stars { display: inline-flex; gap: 2px; color: #d4a017; font-size: .72rem; }
.rating-star--empty { opacity: .25; }

.benefits-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.benefit-item {
  text-align: center;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--rose-dark);
  font-size: 1.1rem;
}
.benefit-item strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }
.benefit-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.steps--home { margin-top: 10px; }
.home-steps__cta { text-align: center; margin-top: 36px; }

.review-score-card {
  text-align: left;
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.review-score-card strong { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--rose-dark); }
.review-score-card span { display: block; font-size: .82rem; color: var(--muted); }
.review-score-card p { margin: 6px 0 0; font-size: .78rem; color: var(--muted); }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__stars { color: #d4a017; font-size: .82rem; }
.review-card blockquote { margin: 0; color: var(--ink); font-size: .96rem; line-height: 1.55; flex: 1; }
.review-card footer { display: grid; gap: 3px; font-size: .82rem; color: var(--muted); }
.review-card footer strong { color: var(--ink); font-size: .9rem; }
.review-card__service { font-style: italic; }
.review-card__verified { color: var(--success); font-weight: 600; margin-top: 4px; }
.review-card__verified i { margin-right: 4px; }
.home-reviews__more { text-align: center; margin-top: 28px; }

.home-coverage { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-coverage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.city-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.city-list li { display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: .95rem; }
.city-list i { color: var(--success); font-size: .82rem; }
.link-arrow { font-weight: 600; color: var(--rose-dark); display: inline-flex; align-items: center; gap: 8px; }
.link-arrow:hover { text-decoration: underline; }
.postcode-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.postcode-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin: 0 0 8px; }
.postcode-card p { color: var(--muted); margin: 0 0 18px; font-size: .92rem; }
.postcode-form { display: flex; flex-direction: column; gap: 10px; }
.postcode-form .input { flex: 1; }
.postcode-result {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: .9rem;
}
.postcode-result.is-success { background: #edf7ef; color: #315c46; }
.postcode-result.is-error { background: #fdeeee; color: #8a3b3b; }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.faq--home details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq--home summary { cursor: pointer; font-weight: 600; list-style: none; padding-right: 24px; position: relative; }
.faq--home summary::-webkit-details-marker { display: none; }
.faq--home summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--rose-dark);
  font-size: 1.2rem;
}
.faq--home details[open] summary::after { content: "−"; }
.faq--home p { color: var(--muted); margin: 10px 0 0; font-size: .92rem; }
.home-faq__more { text-align: center; margin-top: 28px; }

.home-cta-banner {
  background: linear-gradient(120deg, var(--rose), #d8a090);
  padding: 40px 0;
}
.home-cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.home-cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.home-cta-banner p { margin: 0; color: rgba(255,255,255,.88); }
.btn-white {
  background: #fff;
  color: var(--rose-dark);
  border: 0;
  font-weight: 700;
  white-space: nowrap;
}
.btn-white:hover { background: #fffaf8; transform: translateY(-1px); }

@media (min-width: 681px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .benefits-row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .city-list { grid-template-columns: 1fr 1fr; }
  .postcode-form { flex-direction: row; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

@media (min-width: 981px) {
  .menu-btn,
  .nav-drawer,
  .nav-overlay { display: none !important; }

  .header-inner { min-height: 80px; gap: 30px; }
  .logo { width: 255px; max-width: 48vw; }

  .nav--desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }
  .nav--desktop a { font-size: .95rem; color: #3b3531; white-space: nowrap; }
  .nav--desktop a:hover,
  .nav--desktop a.active { color: var(--rose-dark); }
  .nav--desktop .nav-cta { color: #fff; }

  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }
  .section-sm { padding: 54px 0; }
  .section-title { font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1.08; margin-bottom: 18px; }

  .home-hero__copy h1 { font-size: clamp(2.5rem, 3vw, 3.65rem); }
  .booking-widget {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 22px;
  }
  .booking-widget__submit {
    width: auto;
    min-width: 0;
    padding: 13px 18px;
    font-size: .9rem;
    white-space: nowrap;
  }
  .section-head { flex-direction: row; align-items: flex-end; margin-bottom: 34px; }
  .section-head--center,
  .partner-info-flow__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .treatment-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .benefits-row { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .review-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .review-score-card { text-align: right; width: auto; }
  .home-coverage__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 0 40px; }
  .home-cta-banner { padding: 56px 0; }
  .home-cta-banner__inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 28px; }

  .cards-grid, .steps, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-grid { grid-template-columns: 1fr 1fr 1fr auto; }
  .detail-grid, .content-grid { grid-template-columns: 1.08fr .92fr; }
  .booking-layout { grid-template-columns: 1fr 380px; }
  .split-section { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr)); }
  .info-card, .booking-summary { position: sticky; top: 110px; }
}

@media (max-width: 980px) {
  .booking-widget { grid-template-columns: 1fr; }
  .cards-grid, .steps, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid, .content-grid, .booking-layout, .split-section { grid-template-columns: 1fr; }
  .info-card, .booking-summary { position: static; }
  .booking-layout { gap: 24px; }
  .booking-form { padding: 22px 18px 28px; }
  .booking-summary { margin-top: 4px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 48px; }
  body.home-page .site-header .header-inner {
    padding-top: max(10px, env(safe-area-inset-top, 0px));
    padding-bottom: 10px;
  }
  .logo { max-width: min(116px, 42vw); }
  .logo img { height: 32px; max-width: min(116px, 42vw); }
  .cards-grid, .steps, .values-grid, .filter-grid, .two-col { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item::before { left: 25%; right: 25%; top: 0; bottom: auto; height: 1px; width: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-panel { padding: 36px 25px; flex-direction: column; align-items: flex-start; }
  .booking-form { padding: 22px; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}

/* Partner application form */
.partner-apply-form { max-width: 820px; margin: 0 auto; }
.partner-apply-hint { margin: 0 0 16px; font-size: .92rem; }
.partner-service-list { display: grid; gap: 20px; }
.partner-service-group h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 10px;
}
.partner-service-table-head {
  display: none;
}
.partner-service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(108px, 128px);
  gap: 10px 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.partner-service-row__name {
  font-weight: 500;
  line-height: 1.35;
  word-break: break-word;
}
.price-field {
  display: flex;
  align-items: center;
  min-width: 108px;
  border: 1px solid #dcd3ce;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.price-field:focus-within {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 3px rgba(205,162,147,.2);
}
.price-field__currency {
  padding: 0 0 0 12px;
  color: var(--muted);
  font-size: .92rem;
  flex-shrink: 0;
}
.price-field .partner-price-input {
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 0;
  border-radius: 0;
  padding: 10px 12px 10px 6px;
  box-shadow: none;
}
.price-field .partner-price-input:focus {
  box-shadow: none;
}
.price-field--block { width: 100%; min-width: 0; }
.partner-service-row .price-field .partner-price-input:disabled {
  background: #f5f0ed;
  color: var(--muted);
}
.partner-custom-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.partner-custom-head h2 { margin: 0; }
.partner-custom-list { display: grid; gap: 14px; }
.partner-custom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf8;
  position: relative;
}
.partner-custom-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
}
.partner-commission-note {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  text-align: center;
}
.partner-commission-note__title {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}
.partner-commission-note p {
  margin: 10px auto 0;
  max-width: 34em;
  text-wrap: pretty;
}
.partner-commission-note p strong {
  display: inline;
  color: var(--ink);
}
.partner-service-row:not(.is-selected) .partner-price-input {
  background: #f5f0ed;
  color: var(--muted);
  pointer-events: none;
}
.partner-service-row.is-selected .partner-price-input {
  background: #fff;
  color: var(--ink);
  pointer-events: auto;
}
.partner-price-input:disabled,
.partner-price-input[readonly] {
  background: #f5f0ed;
  color: var(--muted);
  cursor: not-allowed;
}
.partner-apply-form > .btn-block[type="submit"] {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

@media (min-width: 681px) {
  .partner-service-table-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(108px, 128px);
    gap: 10px 12px;
    padding: 0 0 6px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
  }
  .partner-service-row {
    grid-template-columns: auto minmax(0, 1fr) minmax(120px, 140px);
  }
  .price-field { min-width: 120px; }
  .partner-custom-row {
    grid-template-columns: 1.4fr 1fr 140px auto;
    align-items: end;
    padding-right: 52px;
  }
  .partner-custom-remove { top: auto; bottom: 16px; right: 12px; }
}

@media (max-width: 680px) {
  .partner-commission-note {
    margin-bottom: 16px;
    padding: 20px 16px;
  }
  .partner-commission-note + h2 {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .partner-apply-hint {
    margin-bottom: 14px;
  }
  .partner-service-row {
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: start;
    padding: 14px 0;
  }
  .partner-service-row input[type="checkbox"] {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 18px;
    height: 18px;
    margin: 0;
  }
  .partner-service-row__name {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .partner-service-row .price-field {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    width: 100%;
    max-width: 128px;
  }
  .partner-custom-head {
    flex-direction: column;
    align-items: stretch;
  }
  .partner-custom-head .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Salon-site aanvraag pagina */
.salon-site-request-page .salon-request-hero {
  overflow: hidden;
}

.salon-site-request-page .salon-request-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  padding-bottom: 48px;
}

.salon-site-request-page .salon-request-hero__copy {
  order: 1;
}

.salon-site-request-page .salon-request-hero__media {
  order: 2;
  margin: 0;
}

.salon-site-request-page .salon-request-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.salon-site-request-page .salon-request-hero__copy h1 {
  max-width: none;
}

.salon-site-request-page .salon-request-hero__copy p {
  max-width: 34rem;
}

.salon-site-request-page .salon-request-hero__demo {
  margin-top: 14px;
  font-size: 0.95rem;
}

.salon-site-request-page .salon-request-hero__demo a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 860px) {
  .salon-site-request-page .salon-request-hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 28px;
  }

  .salon-site-request-page .salon-request-hero__media {
    order: -1;
  }

  .salon-site-request-page .salon-request-hero__copy h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
}

.salon-request-intro {
  display: grid;
  gap: 36px;
}

.salon-request-intro__copy h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
}

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

.salon-request-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.salon-request-benefits li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--success);
  font-weight: 800;
  line-height: 1.5;
}

.salon-request-benefits li span {
  flex: 1 1 auto;
  min-width: 0;
}

.salon-request-benefits strong {
  color: var(--ink);
  font-weight: 700;
}

.salon-request-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.salon-request-package {
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.salon-request-package.is-selected,
.salon-request-package:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(184, 125, 118, 0.12);
}

.salon-request-package h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.salon-request-package > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1 1 auto;
}

.salon-request-package__price strong {
  font-size: 1.2rem;
}

.salon-request-package__price span,
.salon-request-package__monthly {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.salon-request-package__monthly {
  margin-top: 4px;
  margin-bottom: 14px;
}

.salon-request-package__demo {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.82rem;
  min-height: 38px;
  padding: 0 14px;
  margin-top: auto;
}

.salon-request-form-section {
  background: var(--bg-soft);
}

.salon-request-form-wrap {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.salon-request-form-intro {
  margin-bottom: 24px;
}

.salon-request-form-intro h2 {
  margin: 0 0 8px;
}

.salon-request-form-intro p {
  margin: 0;
  color: var(--muted);
}

.salon-request-hosting-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(184, 125, 118, 0.08);
  border: 1px solid rgba(184, 125, 118, 0.22);
}

.salon-request-hosting-note p {
  margin: 0 0 8px;
  color: var(--ink, #1a1a1a);
  font-size: 0.9rem;
}

.salon-request-hosting-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.salon-request-hosting-note li + li {
  margin-top: 4px;
}

.salon-request-hosting-note a {
  color: var(--accent);
  font-weight: 600;
}

.salon-request-fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.salon-request-fieldset legend {
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.salon-request-package-options {
  display: grid;
  gap: 10px;
}

.salon-request-package-option {
  display: block;
  cursor: pointer;
}

.salon-request-package-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.salon-request-package-option__box {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.salon-request-package-option input:checked + .salon-request-package-option__box,
.salon-request-package-option:hover .salon-request-package-option__box {
  border-color: var(--accent);
  background: rgba(184, 125, 118, 0.06);
}

.salon-request-package-option__title {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.salon-request-package-option__price {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.salon-request-total {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.salon-request-total__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.salon-request-total__note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.salon-request-slug-input {
  display: flex;
  align-items: stretch;
}

.salon-request-slug-input .input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.salon-request-slug-input .input-suffix {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.salon-request-slug-hint {
  margin: 8px 0 0;
  font-size: 0.85rem;
}

.salon-request-slug-hint.is-ok {
  color: #166534;
}

.salon-request-slug-hint.is-error {
  color: #991b1b;
}

.salon-request-slug-hint.is-checking {
  color: var(--muted);
}

.salon-request-form .input--error {
  border-color: #dc2626;
}

.salon-request-form .input--ok {
  border-color: #16a34a;
}

.salon-request-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .salon-request-benefits {
    grid-template-columns: 1fr;
  }

  .salon-request-packages {
    grid-template-columns: 1fr;
  }
}
