:root {
  color-scheme: light;
  --bg: #fbf8f5;
  --card: #fff;
  --text: #171717;
  --muted: #6b625d;
  --accent: #d12c4a;
  --accent-hover: #b9213d;
  --accent-soft: #f9e9ed;
  --border: #eae1dc;
  --whatsapp: #187b46;
  --container: 1180px;
  --header: 68px;
  --shadow: 0 16px 44px rgba(47, 33, 28, .08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.sheet-open,
body.privacy-open { overflow: hidden; }

/* Reserved only where the dock actually renders (see the 767px block); on wider
   viewports .sticky-booking stays display:none and the padding would be a gap. */

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #7a1730;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #171717;
  color: #fff;
}
.skip-link:focus { transform: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.narrow { max-width: 860px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid rgba(234, 225, 220, .9);
  background: rgba(251, 248, 245, .94);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
}
.brand span { color: var(--accent); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}
.desktop-nav a,
.header-phone,
.language-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #433c38;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.desktop-nav a { min-width: 44px; justify-content: center; }
.desktop-nav a:hover,
.header-phone:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.language-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}
.menu-button,
.mobile-menu { display: none; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(209, 44, 74, .18);
}
.button--primary:hover { background: var(--accent-hover); }
.button--secondary {
  border-color: #cfc2bb;
  background: #fff;
  color: var(--text);
}
.button--secondary:hover { border-color: var(--accent); color: var(--accent); }
.button--whatsapp {
  border-color: #a7d0ba;
  background: #fff;
  color: #116139;
}
.button--whatsapp:hover { border-color: var(--whatsapp); background: #f2faf5; }
.button--small { min-height: 44px; padding: 10px 15px; border-radius: 12px; font-size: 14px; }
.button--full { width: 100%; }
.text-link { color: #941a34; font-weight: 750; text-underline-offset: 4px; }

.hero {
  padding: 44px 0 64px;
  border-bottom: 1px solid var(--border);
  /* Мягкое свечение по центру за портретом: воздух вокруг лица вместо плотного
     блока текста, прижатого к левому краю. */
  background:
    radial-gradient(ellipse 70% 46% at 50% 0%, rgba(249, 233, 237, .95), transparent 70%),
    var(--bg);
  text-align: center;
}
.hero-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-portrait { margin: 0 0 20px; }
.hero-portrait img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--accent), 0 14px 34px rgba(209, 44, 74, .22);
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #8a1f37;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1 em { color: var(--accent); font-style: normal; }
h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(50px, 4.25vw, 58px);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.hero-subtitle {
  max-width: 655px;
  margin: 22px 0 20px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.proof-row li { display: flex; }
.proof-row li > span,
.proof-row li > a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #3d3733;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
/* Inline links keep their text metrics but grow the hit area to 44px with
   symmetric padding cancelled by a negative margin, so layout is unchanged. */
.proof-rating,
.text-link,
.consent-choice a,
address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-block: -13px;
  padding-block: 13px;
}
.proof-rating { color: #71132a; text-underline-offset: 3px; }
.hero-price {
  margin: 24px 0 16px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 830;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.microcopy { max-width: 560px; margin: 16px auto 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.hero-whatsapp { min-height: 44px; display: inline-flex; align-items: center; margin-top: 2px; color: #176c43; font-size: 13px; font-weight: 750; text-underline-offset: 3px; }
.next-slot {
  margin: 7px 0 0;
  color: #413936;
  font-size: 13px;
}
.next-slot b { color: #7a1730; }

.section { padding: 112px 0; }
.section--tinted { border-block: 1px solid var(--border); background: #f6f0ec; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
h2 {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 44px);
  font-weight: 810;
  letter-spacing: -.035em;
  line-height: 1.09;
}
h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.section-lead { max-width: 680px; margin: 22px 0 28px; color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card,
.info-card,
.review-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 8px 26px rgba(47, 33, 28, .045);
}
.service-card { padding: 26px; }
.service-card--active { border-color: #d996a6; box-shadow: 0 0 0 3px rgba(209,44,74,.08); }
.service-card__top { min-height: 58px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.service-card__top strong { flex: 0 0 auto; color: #871931; font-size: 15px; }
.service-card > p { min-height: 82px; margin: 14px 0 18px; color: var(--muted); font-size: 16px; }
.service-card > .next-slot { min-height: 0; margin: -8px 0 14px; }
.service-card__detail {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
  text-underline-offset: 3px;
}
.zone-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.zone-summary h2 { font-size: clamp(32px, 3vw, 42px); }
.zone-summary > div:first-child > p:last-child { max-width: 680px; margin: 16px 0 0; color: var(--muted); }
.zone-summary__booking {
  min-width: 230px;
  display: grid;
  justify-items: stretch;
  gap: 4px;
  text-align: center;
}
.zone-summary__booking > strong { color: #861932; font-size: 30px; line-height: 1; }
.zone-summary__booking > span { margin-bottom: 10px; color: var(--muted); font-size: 14px; }
.other-zones { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.zone-link {
  min-width: 210px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
}
.zone-link:hover { border-color: var(--accent); }
.zone-link span { font-weight: 760; }
.zone-link strong { color: #861932; font-size: 13px; }

.expert-grid,
.studio-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}
.expert-grid > *,
.studio-grid > *,
.form-grid > *,
.studio-media,
.studio-media picture {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.studio-media picture { display: block; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.info-card { padding: 24px; }
.mini-grid .info-card { padding: 18px; }
.info-card h3 { margin-bottom: 10px; }
.info-card p { margin: 0; color: var(--muted); font-size: 16px; }
.studio-detail { position: relative; margin: 0; }
/* Снимок процедуры — вырезка с альфа-каналом. Тень и рамка сделали бы видимой
   прямоугольную границу файла, поэтому фигура стоит на мягком круге. */
.studio-detail::before {
  content: "";
  position: absolute;
  inset: 6% 4% 10%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--accent-soft), rgba(249,233,237,0) 70%);
}
.studio-detail img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.studio-detail figcaption {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
}
.three-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: #8d1831;
  font-size: 15px;
  font-weight: 850;
}
.section-action { margin-top: 34px; text-align: center; }

.rating-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}
.rating-header > div:first-child { display: flex; flex-direction: column; align-items: center; }
.rating-header > div:first-child strong { font-size: 44px; line-height: 1; }
.rating-header > div:first-child span { color: #8a1f37; font-size: 15px; letter-spacing: .07em; }
.rating-header h2 { font-size: clamp(28px, 3vw, 38px); }
.rating-header p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }
.rating-header img { border-radius: 15px; }
.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 40px) / 3));
  gap: 20px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
.review-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  scroll-snap-align: start;
}
.review-card__stars { color: #8a1f37; font-size: 14px; letter-spacing: .08em; }
.review-card__meta { min-height: 116px; display: flex; flex-direction: column; gap: 3px; margin-top: 12px; }
.review-card__meta strong { font-size: 17px; }
.review-service { color: #4b423d; font-size: 13px; font-weight: 700; }
.review-card time { color: var(--muted); font-size: 12px; }
.review-translation {
  width: fit-content;
  margin-top: 4px;
  padding: 3px 7px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: #77152c;
  font-size: 11px;
  font-weight: 750;
}
.review-text {
  min-height: 142px;
  margin: 14px 0 16px;
  white-space: pre-line;
  color: #3e3733;
  font-size: 15px;
}
.review-text--collapsible:not(.is-expanded) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
.review-toggle {
  min-height: 44px;
  align-self: flex-start;
  margin: -4px 0 12px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: #841830;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-source {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #4b423d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.review-source img { border-radius: 7px; }

.faq-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}
.faq-list details + details { border-top: 1px solid var(--border); }
.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-weight: 730;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 22px;
  color: var(--accent);
  font-size: 25px;
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -4px 0 0; padding: 0 22px 22px; color: var(--muted); font-size: 16px; }

address { margin: 24px 0; color: var(--muted); font-style: normal; }
address strong { color: var(--text); }
address a { color: #81162e; font-weight: 700; }
.studio-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}
.studio-media picture img { width: 100%; aspect-ratio: 16 / 9; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow); }
.map-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 44px;
  display: block;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #eee8e4;
  box-shadow: 0 8px 24px rgba(47, 33, 28, .08);
}
.map-image { width: 100%; aspect-ratio: 520 / 116; object-fit: contain; }
.map-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 11px;
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  color: #661328;
  font-size: 12px;
  font-weight: 780;
}

.section--lead { padding-block: 72px; border-block: 1px solid var(--border); background: #fff; scroll-margin-top: calc(var(--header) + 12px); }
.section--lead-final { background: var(--accent-soft); }
.section--reviews-early { padding-top: 82px; }
.form-grid { align-items: start; }
.form-grid--primary { grid-template-columns: minmax(420px, 1.12fr) minmax(0, .88fr); gap: clamp(34px, 5vw, 70px); }
.form-grid--primary .lead-form { grid-column: 1; grid-row: 1; }
.form-grid--primary .lead-intro { grid-column: 2; grid-row: 1; }
.lead-heading { max-width: 760px; margin-bottom: 30px; }
.lead-heading .section-lead { margin-bottom: 0; }
.lead-intro { position: sticky; top: calc(var(--header) + 28px); }
.assessment-benefits { display: grid; gap: 10px; margin: 24px 0 18px; }
.assessment-benefits .info-card { padding: 16px 18px; box-shadow: none; }
.assessment-benefits .info-card h3 { margin-bottom: 4px; font-size: 16px; }
.assessment-benefits .info-card p { font-size: 14px; }
.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.lead-form label,
.lead-form legend { color: #3b3430; font-size: 14px; font-weight: 700; }
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form select {
  width: 100%;
  min-height: 50px;
  display: block;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #d8ccc5;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}
.selected-service {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 14px;
  border: 1px solid #d8ccc5;
  border-radius: 12px;
  background: #fff;
}
.selected-service span { font-weight: 780; }
.selected-service strong { color: #81162e; font-size: 14px; }
.file-upload { display: grid; gap: 6px; }
.file-upload__control {
  min-height: 50px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 6px;
  border: 1px solid #d8ccc5;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.file-upload__button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 9px;
  background: #eee5e0;
  color: #3b3430;
}
.file-upload__name { overflow: hidden; color: var(--muted); font-size: 13px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.file-help { margin: -8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.file-help a { min-height: 44px; display: inline-flex; align-items: center; margin-block: -14px; padding-block: 14px; color: #176c43; font-weight: 750; }
.file-upload__after { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: -8px; }
.file-upload__after .file-help { margin: 0; }
.file-upload__clear { min-height: 44px; flex: 0 0 auto; border: 0; background: transparent; color: var(--accent); font: inherit; font-size: 13px; font-weight: 800; text-decoration: underline; cursor: pointer; }
.file-upload:focus-within .file-upload__control { outline: 3px solid #7a1730; outline-offset: 3px; }
.lead-form fieldset { display: flex; gap: 20px; margin: 0; padding: 0; border: 0; }
.lead-form legend { margin-bottom: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* The native box is 13px, so the label carries the 44px target for it. */
.choice { min-height: 44px; display: flex; align-items: center; gap: 9px; cursor: pointer; line-height: 1.45; }
.choice input { flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--accent); }
.consent-choice, .optional-choice { align-items: flex-start; padding-block: 11px; }
.consent-choice input, .optional-choice input { margin-top: 1px; }
.consent-choice a { color: #7b172d; text-underline-offset: 3px; }
.optional-choice { color: var(--muted) !important; font-size: 12px !important; font-weight: 500 !important; }
.turnstile-shell { display: none; gap: 8px; min-width: 0; }
.turnstile-shell[data-active="true"] { display: grid; }
.turnstile-shell [data-turnstile-widget] { min-height: 65px; max-width: 100%; overflow: hidden; }
.turnstile-status { min-height: 18px; margin: 0; color: #7b172d; font-size: 12px; line-height: 1.45; }
.form-status { min-height: 22px; margin: 0; scroll-margin-block: 96px; color: #7b172d; font-size: 14px; font-weight: 650; line-height: 1.5; text-align: center; }
.form-status:not(:empty) { padding: 12px 14px; border: 1px solid rgba(123, 23, 45, .28); border-radius: 12px; background: #fff5f7; }
.form-status--success:not(:empty) { color: #14532d; border-color: #86d5a1; background: #edf9f1; box-shadow: 0 8px 24px rgba(20, 83, 45, .10); }
.form-status--success:not(:empty)::before { content: "✓"; display: inline-grid; width: 22px; height: 22px; margin-right: 8px; place-items: center; border-radius: 50%; background: #198754; color: #fff; font-weight: 900; vertical-align: -2px; }
[data-pmu-lead-form][data-durable-lead-saved="true"] .button--primary:disabled { background: #198754; color: #fff; cursor: default; opacity: 1; }
.form-status--error:not(:empty) { color: #7b172d; border-color: rgba(123, 23, 45, .35); background: #fff1f3; }
.form-status:focus-visible { outline: 3px solid rgba(25, 135, 84, .28); outline-offset: 3px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }

.final-cta { padding-block: 72px; background: var(--accent-soft); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.final-cta h2 { max-width: 720px; font-size: clamp(32px, 3vw, 42px); }
.final-cta p { margin: 10px 0 0; color: var(--muted); }

.footer { padding: 56px 0 28px; background: #211d1b; color: #f8f2ee; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, .75fr));
  align-items: start;
  gap: 34px;
}
.brand--footer { color: #fff; }
.footer p { max-width: 420px; margin: 12px 0; color: #bfb3ad; font-size: 14px; }
.footer-map { width: min(100%, 360px); display: block; overflow: hidden; border: 1px solid #4a403b; border-radius: 12px; }
.footer-map img { width: 100%; }
.footer-column { display: grid; align-content: start; justify-items: start; gap: 6px; }
.footer-column h3 { margin-bottom: 8px; color: #fff; font-size: 16px; }
.footer-column a,
.footer-column button,
.footer-column span,
.footer-column strong { color: #d4c9c3; font-size: 13px; }
.footer-column a,
.footer-column button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-column button { padding: 0; border: 0; background: transparent; cursor: pointer; text-decoration: underline; }
.footer-column .button--footer { min-height: 46px; margin-bottom: 3px; padding: 9px 13px; color: #fff; font-size: 13px; }
.footer-company span,
.footer-company strong { min-height: auto; line-height: 1.7; }
.footer-company strong { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid #4a403b; color: #afa39d; font-size: 12px; }

.sticky-booking {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 64px;
  display: none;
  grid-template-columns: minmax(0, 1fr) 44px 44px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.97);
  box-shadow: 0 -10px 30px rgba(35, 25, 21, .12);
  transform: translateY(125%);
  transition: transform .2s ease;
}
.sticky-booking__price { display: flex; flex-direction: column; min-width: 0; }
.sticky-booking__price span { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.sticky-booking__price strong { font-size: 14px; }
.button--sticky { min-height: 48px; padding: 10px 12px; font-size: 14px; }
.sticky-icon { width: 44px; height: 44px; display: block; overflow: hidden; border-radius: 13px; }
.sticky-icon img { width: 44px; height: 44px; object-fit: cover; }
.sticky-icon--booking { display: grid; place-items: center; border: 1px solid var(--border); background: #f4eeea; color: #71132a; }
.sticky-icon--booking svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.sticky-booking.is-visible { transform: translateY(0); }

.sheet-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(23, 23, 23, .42);
  backdrop-filter: blur(3px);
}
.service-sheet {
  position: fixed;
  z-index: 71;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 620px;
  margin-inline: auto;
  padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background: #fff;
  box-shadow: 0 -20px 70px rgba(30, 20, 18, .24);
}
.sheet-handle { width: 46px; height: 5px; margin: 0 auto 18px; border-radius: 9px; background: #d9cec8; }
.sheet-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: #f4efec;
  color: #342e2b;
  cursor: pointer;
  font-size: 25px;
}
.service-sheet h2 { padding-right: 50px; font-size: 28px; }
.service-sheet > p { margin: 8px 0 18px; color: var(--muted); font-size: 15px; }
.sheet-options { display: grid; gap: 10px; }
.sheet-options a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: var(--text);
  text-decoration: none;
}
.sheet-options a:hover { border-color: var(--accent); background: var(--accent-soft); }
.sheet-options span { font-weight: 760; }
.sheet-options strong { color: #861932; font-size: 14px; }

.privacy-backdrop {
  position: fixed;
  z-index: 74;
  inset: 0;
  background: rgba(23, 23, 23, .56);
  backdrop-filter: blur(3px);
}
.privacy-modal {
  position: fixed;
  z-index: 75;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100% - 28px));
  max-height: min(82vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.3);
}
.privacy-modal__header,
.privacy-modal__footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; }
.privacy-modal__header { border-bottom: 1px solid var(--border); }
.privacy-modal__header h2 { font-size: 28px; }
.privacy-modal__header button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  background: #f2ebe7;
  cursor: pointer;
  font-size: 26px;
}
.privacy-modal__body { overflow-y: auto; padding: 22px; }
.privacy-modal__body section + section { margin-top: 18px; }
.privacy-modal__body h3 { margin-bottom: 5px; font-size: 16px; }
.privacy-modal__body p { margin: 0; color: var(--muted); font-size: 14px; }
.privacy-modal__footer { justify-content: flex-end; border-top: 1px solid var(--border); }

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px;
  border: 1px solid #4b433f;
  border-radius: 16px;
  background: #211d1b;
  color: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.cookie-banner p { margin: 2px 0 0; color: #d7cec9; font-size: 12px; line-height: 1.4; }
.cookie-banner > div:last-child { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.cookie-choice {
  min-width: 96px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #81756f;
  border-radius: 11px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
}
.cookie-choice--accept { border-color: var(--accent); background: var(--accent); }

[hidden] { display: none !important; }

@media (max-width: 980px) {
  .desktop-nav, .header-phone { display: none; }
  h1 { font-size: 46px; }
  .service-grid, .three-grid, .review-grid { gap: 14px; }
  .service-card, .info-card, .review-card { padding: 20px; }
  .mini-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  :root { --header: 56px; }
  body { font-size: 16px; line-height: 1.5; }
  body.sticky-active { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: var(--header); }
  .brand { font-size: 16px; }
  .header-actions { gap: 8px; }
  .header-actions > .button { display: none; }
  .language-link { display: none !important; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #f1eae6;
    cursor: pointer;
  }
  .menu-button span { width: 18px; height: 2px; display: block; border-radius: 3px; background: #2d2825; }
  .mobile-menu {
    position: absolute;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 14px 14px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 16px 32px rgba(32, 22, 18, .1);
  }
  .mobile-menu a { padding: 11px 7px; border-bottom: 1px solid #f1ebe7; font-weight: 700; text-decoration: none; }
  .hero { padding: 26px 0 38px; }
  .hero-portrait { margin-bottom: 14px; }
  .hero-portrait img { width: 98px; height: 98px; border-width: 3px; }
  .eyebrow { margin-bottom: 9px; font-size: 10px; letter-spacing: .11em; }
  h1 { font-size: clamp(31px, 8.6vw, 37px); line-height: 1.08; letter-spacing: -.036em; }
  .hero-subtitle { margin: 12px 0 0; font-size: 15.5px; line-height: 1.45; }
  .proof-row { gap: 6px; margin-top: 16px; }
  .proof-row li > span,
  .proof-row li > a { min-height: 30px; padding: 4px 11px; font-size: 12px; }
  .hero-price { margin: 16px 0 10px; font-size: 18px; line-height: 1.25; }
  .studio-detail { max-width: 400px; margin-inline: auto; }
  .hero-actions { display: grid; grid-template-columns: 1.16fr 1fr; gap: 8px; }
  .hero-actions .button { min-height: 52px; padding: 10px; font-size: 13px; }
  .microcopy { margin-top: 7px; font-size: 11px; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 26px; }
  h2 { font-size: 34px; line-height: 1.08; }
  h3 { font-size: 19px; }
  .section-lead { margin: 16px 0 22px; font-size: 16px; }
  .service-grid,
  .three-grid,
  .expert-grid,
  .studio-grid,
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .service-grid, .three-grid, .review-grid { gap: 14px; }
  .zone-summary { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 22px; }
  .zone-summary__booking { min-width: 0; justify-items: stretch; text-align: left; }
  .zone-summary__booking > strong { font-size: 28px; }
  .other-zones { align-items: stretch; flex-direction: column; }
  .zone-link { min-width: 0; }
  .service-card { padding: 20px; }
  .service-card__top { min-height: 0; }
  .service-card > p { min-height: 0; margin: 12px 0 16px; }
  .expert-grid, .studio-grid, .form-grid { gap: 30px; }
  .section--lead { padding-block: 48px; }
  .section--reviews-early { padding-top: 58px; }
  .lead-heading { margin-bottom: 22px; }
  .form-grid--primary .lead-form,
  .form-grid--primary .lead-intro { grid-column: auto; grid-row: auto; }
  .lead-intro { position: static; }
  .assessment-benefits { margin-top: 18px; }
  .studio-detail { order: -1; }
  .info-card p { font-size: 15px; }
  .rating-header { grid-template-columns: auto 1fr auto; gap: 12px; padding: 16px; }
  .rating-header > img { width: 44px; height: 44px; display: block; }
  .rating-header > div:first-child strong { font-size: 36px; }
  .rating-header h2 { font-size: 27px; }
  .review-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(280px, 86%);
    gap: 12px;
    margin-inline: 0;
    padding-inline: 2px;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card__meta { min-height: 112px; }
  .review-text { min-height: 0; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 19px; }
  .lead-form input,
  .lead-form select,
  .lead-form button { scroll-margin-bottom: 108px; }
  .lead-form fieldset { flex-wrap: wrap; }
  .footer { padding-bottom: calc(118px + env(safe-area-inset-bottom)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .footer-column { border-top: 1px solid #4a403b; padding-top: 20px; }
  .footer-map { width: min(100%, 520px); }
  .sticky-booking { display: grid; }
  .cookie-banner {
    right: 8px;
    /* Sits just above the viewport edge until the dock is actually on screen,
       otherwise a first-screen visitor sees the banner floating over a gap. */
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 11px;
  }
  body.sticky-active .cookie-banner { bottom: calc(76px + env(safe-area-inset-bottom)); }
  .cookie-banner > div:last-child { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-choice { width: 100%; }
  .privacy-modal { max-height: calc(100vh - 32px - env(safe-area-inset-bottom)); border-radius: 20px; }
  .privacy-modal__header,
  .privacy-modal__footer { padding: 14px 16px; }
  .privacy-modal__body { padding: 18px 16px; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .hero { padding-top: 24px; }
  .hero-subtitle { font-size: 15px; }
}

@media (max-width: 350px) {
  .sticky-booking { grid-template-columns: minmax(0, 1fr) 44px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
