:root {
  --ink: #25221f;
  --charcoal: #4b4540;
  --taupe: #8e7b70;
  --rose: #c99f9d;
  --rose-dark: #9f7473;
  --shell: #fbf8f4;
  --ivory: #f4efe9;
  --paper: #fffdf9;
  --brass: #b48a58;
  --line: rgba(37, 34, 31, 0.18);
  --line-light: rgba(255, 253, 249, 0.25);
  --display: "Comfortaa", "Trebuchet MS", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --nav-height: 72px;
  --container: 1240px;
  --side: clamp(22px, 4.2vw, 64px);
  --section-pad: clamp(58px, 6vw, 78px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--shell);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--rose); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - (var(--side) * 2)));
  margin-inline: auto;
}
.nowrap { white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: color-mix(in srgb, var(--shell) 92%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(251, 248, 244, .96); }
.nav-shell {
  width: min(1340px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font: 600 17px/1 var(--display);
}
.brand-name { font: 600 13px/1.25 var(--display); letter-spacing: -.02em; }
.brand-name span { display: block; font-size: 10px; font-weight: 500; letter-spacing: .03em; margin-top: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: right .25s var(--ease);
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.nav-cta { justify-self: end; }
.menu-toggle, .mobile-menu { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--rose-dark); border-color: var(--rose-dark); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
.button-small { min-height: 40px; padding: 10px 20px; font-size: 10px; }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-light:hover { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.button-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.42); }
.button-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link-button { border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding-inline: 0; cursor: pointer; }

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--taupe);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-dark); }
.eyebrow-light { color: rgba(255,253,249,.68); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -.045em; line-height: 1.1; }
h1 { margin: 0; font-size: clamp(2.65rem, 4.2vw, 3.35rem); max-width: 720px; }
h1 span { color: var(--rose-dark); }
h2 { margin: 0; font-size: clamp(2rem, 3.1vw, 2.65rem); }
p { margin-top: 0; }

.section-fit { min-height: calc(100svh - var(--nav-height)); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(201,159,157,.10) 1px, transparent 1px) 0 0 / 95px 100%,
    var(--ivory);
  display: flex;
  flex-direction: column;
  padding-top: clamp(34px, 4vw, 52px);
}
.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(180,138,88,.35);
  border-radius: 50%;
  left: -180px;
  top: 170px;
}
.hero-linework { position: absolute; right: -40px; top: -40px; width: min(43vw, 590px); opacity: .3; pointer-events: none; }
.hero-linework svg { width: 100%; fill: none; stroke: var(--rose-dark); stroke-width: 1.2; }
.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .88fr);
  align-items: center;
  gap: clamp(54px, 7vw, 108px);
  min-height: 486px;
}
.hero-copy { padding: 24px 0 34px; }
.hero-intro { max-width: 610px; margin: 24px 0 25px; color: var(--charcoal); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-rating { margin-top: 25px; display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--taupe); }
.hero-rating strong { color: var(--ink); font-size: 14px; }
.rating-stars { display: inline-flex; gap: 2px; }
.rating-stars svg { width: 14px; height: 14px; fill: var(--brass); }
.hero-visual { position: relative; height: min(54vh, 475px); min-height: 390px; max-width: 535px; justify-self: end; width: 100%; }
.hero-image-mat {
  position: absolute;
  inset: 26px 34px 4px 58px;
  border-radius: 49% 49% 26px 26px / 31% 31% 18px 18px;
  background: var(--rose);
  transform: translate(19px, 13px);
}
.hero-image-frame {
  position: absolute;
  inset: 0 92px 0 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 49% 49% 26px 26px / 31% 31% 18px 18px;
  background: var(--paper);
}
.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: inherit;
  pointer-events: none;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 48%; }
.hero-detail-frame {
  position: absolute;
  width: 178px;
  right: 0;
  bottom: 36px;
  margin: 0;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--ink);
  transform: rotate(2.2deg);
}
.hero-detail-frame img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.hero-detail-frame figcaption { padding: 8px 4px 2px; font-size: 8px; line-height: 1.4; letter-spacing: .12em; text-transform: uppercase; }
.hero-side-note {
  position: absolute;
  right: -7px;
  top: 20px;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--taupe);
}
.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 94px;
  border-top: 1px solid var(--line);
}
.hero-facts > div { display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid var(--line); }
.hero-facts > div:last-child { border-right: 0; }
.hero-facts strong { font: 600 26px/1 var(--display); }
.hero-facts span { max-width: 112px; color: var(--taupe); font-size: 9px; font-weight: 600; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }

/* Services */
.services-section { display: flex; align-items: center; padding: var(--section-pad) 0; background: var(--paper); }
.services-grid { display: grid; grid-template-columns: .82fr 1.28fr .58fr; align-items: center; gap: clamp(34px, 4vw, 62px); }
.section-heading h2 { max-width: 410px; }
.section-heading > p:not(.eyebrow) { max-width: 420px; margin: 20px 0 25px; color: var(--charcoal); font-size: 14px; }
.service-index { border-top: 1px solid var(--ink); }
.service-row {
  min-height: 69px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.service-row:hover { background: var(--ivory); padding-inline: 10px; }
.service-num { font-size: 9px; color: var(--rose-dark); font-weight: 700; }
.service-name { min-width: 0; }
.service-name strong { display: block; font-family: var(--display); font-size: 14px; line-height: 1.3; letter-spacing: -.02em; }
.service-name span { display: block; margin-top: 3px; color: var(--taupe); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.service-price { white-space: nowrap; font-size: 10px; font-weight: 700; letter-spacing: .03em; }
.service-visual { position: relative; align-self: stretch; margin: 0; display: flex; flex-direction: column; justify-content: center; }
.service-visual-line { position: absolute; width: 78%; height: 78%; left: -20px; top: 5%; border: 1px solid var(--rose); transform: translate(-8px, 8px); }
.service-visual img { position: relative; width: 100%; max-height: 320px; object-fit: cover; border-radius: 90px 90px 8px 8px; border: 1px solid var(--ink); }
.service-visual p { position: relative; margin: 16px 0 0; font-size: 10px; line-height: 1.55; color: var(--taupe); }
.service-visual p span { color: var(--ink); font-weight: 700; }

/* About */
.about-section { display: flex; align-items: center; padding: var(--section-pad) 0; background: var(--ivory); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: minmax(370px, .88fr) minmax(0, 1fr); align-items: center; gap: clamp(70px, 9vw, 142px); }
.about-image-composition { position: relative; height: min(59vh, 500px); min-height: 430px; max-width: 500px; }
.about-arch-mat { position: absolute; inset: 18px 8px 6px 56px; background: var(--rose); border-radius: 50% 50% 10px 10px / 30% 30% 10px 10px; }
.about-arch { position: absolute; inset: 0 42px 38px 0; margin: 0; overflow: hidden; border: 1px solid var(--ink); border-radius: 50% 50% 10px 10px / 30% 30% 10px 10px; background: var(--paper); }
.about-arch img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.experience-seal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 126px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border: 7px solid var(--ivory);
}
.experience-seal strong { font: 600 29px/1 var(--display); }
.experience-seal span { margin-top: 6px; max-width: 70px; font-size: 8px; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
.about-copy { max-width: 570px; }
.about-copy > p:not(.eyebrow) { color: var(--charcoal); font-size: 14px; }
.about-copy h2 { margin-bottom: 22px; max-width: 550px; }
.care-rhythm { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); }
.care-rhythm > div { position: relative; z-index: 2; display: flex; flex-direction: column; padding-top: 12px; }
.care-rhythm span { color: var(--rose-dark); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.care-rhythm strong { margin-top: 5px; font: 600 13px/1.2 var(--display); }
.care-rhythm small { margin-top: 4px; color: var(--taupe); font-size: 8px; text-transform: uppercase; letter-spacing: .07em; }
.care-rhythm svg { position: absolute; inset: 4px 0 auto; width: 100%; height: 65px; fill: none; stroke: rgba(159,116,115,.38); stroke-width: 1.2; }

/* Results */
.results-section { display: flex; align-items: center; padding: 48px 0; background: var(--shell); }
.results-shell { display: grid; gap: 22px; }
.results-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.results-heading h2 { max-width: 700px; }
.results-heading > p { margin: 0; color: var(--charcoal); font-size: 13px; }
.results-grid { height: min(43vh, 350px); min-height: 315px; display: grid; grid-template-columns: 1.1fr 1.35fr .8fr .62fr; gap: 14px; }
.result { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--ink); background: var(--ivory); }
.result img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.result:hover img { transform: scale(1.035); }
.result figcaption { position: absolute; left: 10px; bottom: 10px; padding: 6px 9px; background: rgba(251,248,244,.9); font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.result-tall { border-radius: 100px 100px 6px 6px; }
.result-tall img { object-position: 50% 30%; }
.result-wide { margin-top: 45px; border-radius: 5px; }
.result-square { margin-bottom: 48px; border-radius: 5px; }
.result-product { margin-top: 85px; border-radius: 70px 70px 5px 5px; }
.results-action { display: flex; align-items: center; gap: 18px; }
.results-action span { color: var(--taupe); font-size: 10px; }

/* Specialist */
.specialist-section { display: flex; align-items: center; padding: var(--section-pad) 0; background: var(--paper); }
.specialist-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: clamp(70px, 10vw, 150px); }
.specialist-copy { max-width: 580px; }
.specialist-copy h2 { font-size: clamp(2.5rem, 4vw, 3.6rem); margin-bottom: 4px; }
.specialist-role { color: var(--rose-dark); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.specialist-copy > p:not(.eyebrow):not(.specialist-role) { color: var(--charcoal); font-size: 14px; max-width: 540px; }
.specialist-meta { display: flex; gap: 44px; margin: 28px 0; padding: 20px 0; border-block: 1px solid var(--line); }
.specialist-meta div { display: flex; align-items: center; gap: 10px; }
.specialist-meta strong { font: 600 22px/1 var(--display); }
.specialist-meta span { max-width: 75px; color: var(--taupe); font-size: 8px; line-height: 1.35; letter-spacing: .09em; text-transform: uppercase; }
.specialist-portrait-wrap { position: relative; width: min(100%, 450px); height: min(59vh, 500px); min-height: 420px; justify-self: end; }
.specialist-portrait-wrap::before { content: ""; position: absolute; inset: 18px -17px -14px 28px; border: 1px solid var(--rose-dark); border-radius: 49% 49% 5px 5px / 28% 28% 5px 5px; }
.portrait-fallback, .specialist-portrait { position: absolute; inset: 0 14px 0 0; width: calc(100% - 14px); height: 100%; border-radius: 49% 49% 5px 5px / 28% 28% 5px 5px; border: 1px solid var(--ink); }
.portrait-fallback { display: grid; place-items: center; background: linear-gradient(155deg, var(--rose), var(--ivory)); }
.portrait-fallback span { font: 600 8rem/1 var(--display); color: rgba(37,34,31,.68); }
.specialist-portrait { object-fit: cover; object-position: center top; background: transparent; }
.specialist-portrait.is-unavailable { display: none; }
.portrait-caption { position: absolute; right: -9px; top: 55px; margin: 0; writing-mode: vertical-rl; font-size: 7px; font-weight: 700; letter-spacing: .25em; }

/* Reviews */
.reviews-section { display: flex; align-items: center; padding: var(--section-pad) 0; background: var(--ivory); }
.reviews-shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 8vw, 120px); align-items: center; }
.reviews-summary h2 { max-width: 470px; }
.review-score { margin-top: 28px; display: grid; grid-template-columns: auto 1fr; gap: 5px 14px; align-items: center; }
.review-score > strong { grid-row: span 2; font: 600 46px/1 var(--display); }
.review-score > span:last-child { color: var(--taupe); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.review-list { border-top: 1px solid var(--ink); }
.review-card { display: grid; grid-template-columns: 35px minmax(0,1fr) auto; gap: 18px; align-items: start; padding: 23px 0; border-bottom: 1px solid var(--line); }
.review-quote { font: 600 28px/1 var(--display); color: var(--rose-dark); }
.review-card blockquote { margin: 0; font-family: var(--display); font-size: clamp(15px, 1.5vw, 19px); line-height: 1.55; letter-spacing: -.025em; }
.review-card footer { text-align: right; color: var(--taupe); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; white-space: nowrap; }
.review-card footer strong { display: block; color: var(--ink); font-size: 9px; margin-bottom: 4px; }

/* Visit */
.visit-section { display: flex; align-items: center; padding: 48px 0; background: var(--rose); }
.visit-panel {
  min-height: min(77vh, 590px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
  padding: clamp(45px, 6vw, 72px);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.visit-panel::before, .visit-panel::after { content: ""; position: absolute; border: 1px solid rgba(201,159,157,.35); border-radius: 50%; }
.visit-panel::before { width: 310px; height: 310px; left: -190px; bottom: -130px; }
.visit-panel::after { width: 420px; height: 420px; right: -250px; top: -240px; }
.visit-copy, .visit-details { position: relative; z-index: 2; }
.visit-copy h2 { max-width: 550px; }
.visit-copy > p:not(.eyebrow) { max-width: 540px; margin: 22px 0 26px; color: rgba(255,253,249,.7); font-size: 14px; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-address { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line-light); display: grid; gap: 4px; }
.visit-address span { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,253,249,.55); }
.visit-address a { width: max-content; font: 500 14px/1.5 var(--display); border-bottom: 1px solid rgba(255,255,255,.3); }
.visit-details { display: grid; grid-template-columns: 1fr .82fr; gap: 30px; }
.detail-label { margin-bottom: 16px; color: var(--rose); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; border-bottom: 1px solid var(--line-light); font-size: 10px; }
.hours-row span:last-child { color: rgba(255,253,249,.68); white-space: nowrap; }
.feature-list { display: grid; }
.feature-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line-light); color: rgba(255,253,249,.75); font-size: 9px; }
.feature-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--rose); flex: 0 0 auto; }

/* Footer */
.site-footer { padding: 56px 0 24px; background: var(--shell); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 60px; padding-bottom: 38px; }
.footer-brand { margin-bottom: 16px; }
.footer-grid > div:first-child > p { max-width: 330px; color: var(--taupe); font-size: 11px; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 11px; }
.footer-links a, .footer-contact a { width: max-content; font-size: 10px; font-weight: 600; letter-spacing: .04em; }
.footer-contact a:last-child { color: var(--rose-dark); border-bottom: 1px solid var(--rose-dark); }
.footer-bottom { padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--taupe); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

/* Modals */
.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(37,34,31,.68);
  backdrop-filter: blur(10px);
}
.modal::backdrop { background: rgba(37,34,31,.68); backdrop-filter: blur(10px); }
.modal-panel, .gallery-panel {
  width: min(1120px, calc(100% - 42px));
  height: calc(100% - 42px);
  margin: 21px auto;
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.modal-header {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 25px clamp(24px, 4vw, 52px);
  background: rgba(255,253,249,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.modal-header .eyebrow { margin-bottom: 7px; }
.modal-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.modal-close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--ink); color: white; }
.service-filters {
  position: sticky;
  top: 110px;
  z-index: 4;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px clamp(24px, 4vw, 52px);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}
.filter-button {
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-button.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.service-catalogue { padding: 28px clamp(24px, 4vw, 52px) 110px; }
.catalogue-group { margin-bottom: 38px; }
.catalogue-group h3 { margin: 0 0 12px; padding-bottom: 11px; border-bottom: 1px solid var(--ink); font-size: 18px; }
.catalogue-item { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 25px; align-items: center; min-height: 60px; border-bottom: 1px solid var(--line); }
.catalogue-item strong { font: 500 13px/1.4 var(--display); }
.catalogue-item span { color: var(--taupe); font-size: 9px; white-space: nowrap; }
.catalogue-item b { font-size: 10px; white-space: nowrap; }
.modal-booking-bar {
  position: sticky;
  bottom: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 15px clamp(24px, 4vw, 52px);
  background: var(--rose);
  border-top: 1px solid var(--ink);
}
.modal-booking-bar p { margin: 0; font: 500 13px/1.4 var(--display); }

.gallery-panel { display: flex; flex-direction: column; overflow: hidden; background: var(--ink); color: var(--paper); }
.gallery-header { position: relative; flex: 0 0 auto; background: var(--ink); border-bottom-color: rgba(255,255,255,.18); }
.gallery-header .eyebrow { color: var(--rose); }
.gallery-header .modal-close { color: var(--paper); border-color: rgba(255,255,255,.55); }
.gallery-header .modal-close:hover { background: var(--paper); color: var(--ink); }
.gallery-stage { min-height: 0; flex: 1; display: grid; grid-template-columns: 64px minmax(0,1fr) 64px; align-items: center; gap: 20px; padding: 20px 24px; }
.gallery-stage figure { height: 100%; min-height: 0; margin: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; justify-items: center; gap: 10px; }
.gallery-stage img { width: auto; max-width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.gallery-stage figcaption { color: rgba(255,255,255,.65); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.gallery-nav { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: transparent; color: white; cursor: pointer; }
.gallery-nav:hover { background: var(--paper); color: var(--ink); }
.gallery-thumbs { flex: 0 0 86px; display: flex; gap: 8px; padding: 10px 20px; overflow-x: auto; border-top: 1px solid rgba(255,255,255,.18); }
.gallery-thumb { flex: 0 0 66px; width: 66px; height: 66px; padding: 0; border: 1px solid transparent; background: transparent; opacity: .58; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { opacity: 1; border-color: var(--rose); }

.noscript-message { position: fixed; z-index: 999; left: 20px; bottom: 20px; padding: 12px 16px; background: var(--ink); color: white; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Medium desktop */
@media (max-width: 1120px) {
  :root { --side: 34px; }
  .desktop-nav { gap: 16px; }
  .services-grid { grid-template-columns: .78fr 1.25fr; }
  .service-visual { display: none; }
  .results-grid { grid-template-columns: 1.05fr 1.2fr .8fr; }
  .result-product { display: none; }
  .visit-details { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Tablet and mobile */
@media (max-width: 840px) {
  :root { --nav-height: 64px; --side: 22px; --section-pad: 58px; }
  .site-header { height: var(--nav-height); }
  .nav-shell { width: calc(100% - 30px); grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { justify-self: end; width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 24px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: var(--nav-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 22px 24px;
    background: var(--shell);
    border-bottom: 1px solid var(--ink);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { padding: 13px 0; border-bottom: 1px solid var(--line); font: 600 16px/1.2 var(--display); }
  .mobile-menu .button { margin-top: 18px; }
  .section-fit { min-height: auto; }

  .hero { padding-top: 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; min-height: 0; }
  .hero-copy { padding: 12px 0 0; }
  .hero-intro { margin-block: 20px; }
  .hero-visual { justify-self: center; height: 480px; max-width: 520px; }
  .hero-facts { margin-top: 42px; grid-template-columns: repeat(2,1fr); }
  .hero-facts > div { min-height: 75px; border-bottom: 1px solid var(--line); }
  .hero-facts > div:nth-child(2) { border-right: 0; }
  .hero-facts > div:nth-child(3), .hero-facts > div:nth-child(4) { border-bottom: 0; }

  .services-grid, .about-grid, .specialist-grid, .reviews-shell, .visit-panel { grid-template-columns: 1fr; }
  .services-grid { gap: 36px; }
  .service-visual { display: flex; max-width: 390px; height: 360px; justify-self: center; width: 100%; }
  .service-visual img { height: 280px; }
  .about-grid { gap: 55px; }
  .about-image-composition { width: min(100%, 480px); justify-self: center; }
  .about-copy { max-width: none; }
  .results-heading { grid-template-columns: 1fr; gap: 18px; }
  .results-heading > p { max-width: 560px; }
  .results-grid { height: 500px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.1fr .9fr; }
  .result-tall { grid-row: 1 / 3; }
  .result-wide, .result-square { margin: 0; }
  .result-product { display: none; }
  .specialist-grid { gap: 50px; }
  .specialist-portrait-wrap { justify-self: center; width: min(100%, 460px); }
  .reviews-shell { gap: 45px; }
  .visit-section { padding: 0; }
  .visit-panel { width: 100%; min-height: 0; padding: 58px var(--side); gap: 50px; }
  .visit-details { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(3, auto); justify-content: space-between; border-top: 1px solid var(--line); padding-top: 22px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.85rem, 8.5vw, 2.35rem); }
  .brand-name { font-size: 12px; }
  .hero { background-size: 70px 100%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { height: 390px; width: calc(100% - 4px); }
  .hero-image-frame { inset-right: 48px; }
  .hero-image-mat { inset-right: 12px; }
  .hero-detail-frame { width: 124px; bottom: 22px; }
  .hero-side-note { display: none; }
  .hero-facts { width: 100%; }
  .hero-facts > div { gap: 10px; padding: 0 9px; justify-content: flex-start; }
  .hero-facts strong { font-size: 21px; }
  .hero-facts span { font-size: 7px; }

  .services-section, .about-section, .results-section, .specialist-section, .reviews-section { padding-block: 54px; }
  .service-row { grid-template-columns: 26px minmax(0,1fr); padding-block: 11px; }
  .service-price { grid-column: 2; }
  .service-visual { height: 300px; }
  .service-visual img { height: 235px; }
  .about-image-composition { min-height: 350px; height: 390px; }
  .experience-seal { width: 105px; }
  .care-rhythm { grid-template-columns: 1fr; gap: 0; }
  .care-rhythm > div { padding: 10px 0 10px 42px; border-bottom: 1px solid var(--line); }
  .care-rhythm span { position: absolute; left: 0; top: 13px; }
  .care-rhythm svg { display: none; }
  .results-grid { height: auto; min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 250px 210px; gap: 10px; }
  .result-tall { grid-row: 1 / 3; border-radius: 75px 75px 5px 5px; }
  .results-action { align-items: flex-start; flex-direction: column; }
  .specialist-meta { gap: 25px; }
  .specialist-portrait-wrap { height: 410px; min-height: 0; }
  .review-card { grid-template-columns: 26px minmax(0,1fr); gap: 10px; }
  .review-card footer { grid-column: 2; text-align: left; }
  .visit-actions { flex-direction: column; align-items: stretch; }
  .visit-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-contact { grid-column: auto; grid-template-columns: 1fr; }
  .footer-bottom { gap: 20px; align-items: flex-start; flex-direction: column; }

  .modal-panel, .gallery-panel { width: 100%; height: 100%; margin: 0; border: 0; }
  .modal-header { min-height: 92px; padding: 19px 20px; }
  .modal-header h2 { font-size: 1.45rem; }
  .modal-close { width: 40px; height: 40px; }
  .service-filters { top: 92px; padding-inline: 20px; }
  .service-catalogue { padding-inline: 20px; }
  .catalogue-item { grid-template-columns: minmax(0,1fr) auto; gap: 8px 18px; padding: 11px 0; }
  .catalogue-item span { grid-column: 1; }
  .catalogue-item b { grid-column: 2; grid-row: 1 / 3; }
  .modal-booking-bar { padding-inline: 20px; }
  .modal-booking-bar p { display: none; }
  .modal-booking-bar .button { width: 100%; }
  .gallery-stage { grid-template-columns: 42px minmax(0,1fr) 42px; gap: 4px; padding-inline: 8px; }
  .gallery-nav { width: 38px; height: 38px; }
}
