@font-face {
  font-family: "Cormorant Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("assets/fonts/cormorant-cyrillic-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("assets/fonts/cormorant-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/fonts/manrope-cyrillic-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #fffaf7;
  --paper-deep: #f3e8e2;
  --white: #fffdfb;
  --ink: #201815;
  --ink-soft: #51443d;
  --cocoa: #6b5948;
  --cocoa-deep: #4d3b31;
  --rose: #c9ab9b;
  --rose-soft: #eadbd4;
  --line: rgba(107, 89, 72, 0.2);
  --line-dark: rgba(255, 250, 247, 0.2);
  --shadow: 0 26px 70px rgba(61, 42, 34, 0.12);
  --serif: "Cormorant Variable", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Manrope Variable", Manrope, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
summary {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--cocoa);
}

:focus-visible {
  outline: 2px solid var(--cocoa);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(107, 89, 72, 0.13);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 7px 34px rgba(48, 34, 28, 0.045);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  width: 158px;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 29px);
}

.desktop-nav a,
.footer-nav a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--cocoa);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-book,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-book,
.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.header-book:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-book:hover,
.button-dark:hover {
  background: var(--cocoa-deep);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-outline {
  border-color: currentColor;
  color: var(--cocoa-deep);
  background: transparent;
}

.button-outline-light {
  border-color: rgba(255, 250, 247, 0.45);
  color: var(--paper);
  background: rgba(255, 250, 247, 0.06);
}

.mobile-nav {
  display: none;
}

.breadcrumbs {
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #77685f;
  font-size: 12px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--rose);
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--cocoa-deep);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 82px;
  background:
    radial-gradient(circle at 12% 5%, rgba(201, 171, 155, 0.26), transparent 35%),
    var(--paper);
}

.page-hero::after {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -250px;
  bottom: -290px;
  border: 1px solid rgba(107, 89, 72, 0.19);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 23px;
  color: var(--cocoa);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.038em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 190px 190px 18px 18px;
  background: var(--rose-soft);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 24, 21, 0.7), transparent 45%);
  content: "";
}

.hero-fact {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
}

.hero-fact span {
  max-width: 185px;
  font-size: 12px;
  line-height: 1.45;
}

.hero-fact strong {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 0.95;
  white-space: nowrap;
}

.section {
  padding-block: 96px;
}

.section-muted {
  background: var(--paper-deep);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: end;
  margin-bottom: 48px;
}

.section-head > p,
.prose p,
.info-card p,
.location-card p {
  color: var(--ink-soft);
}

.section-dark .section-head > p,
.section-dark .prose p {
  color: #d8c9c1;
}

.section-head > p {
  margin-bottom: 5px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin-bottom: 20px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.info-card,
.note-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(61, 42, 34, 0.07);
}

.info-card-label {
  display: block;
  margin-bottom: 18px;
  color: var(--cocoa);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 13px 0 13px 27px;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child,
.plain-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.step {
  min-height: 255px;
  padding: 28px;
  background: var(--ink);
}

.step-number {
  display: block;
  margin-bottom: 54px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 30px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.step p {
  margin-bottom: 0;
  color: #d8c9c1;
  font-size: 14px;
}

.price-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-group + .price-group {
  border-top: 8px solid var(--paper-deep);
}

.price-group h3 {
  margin: 0;
  padding: 22px 26px;
  color: var(--paper);
  background: var(--cocoa-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 19px 26px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-name {
  display: block;
  font-weight: 650;
}

.price-note {
  display: block;
  margin-top: 4px;
  color: #77685f;
  font-size: 12px;
  line-height: 1.5;
}

.price-value {
  color: var(--cocoa-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 650;
  white-space: nowrap;
}

.price-disclaimer {
  margin: 18px 0 0;
  color: #77685f;
  font-size: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.related-card,
.result-card,
.location-card,
.fact-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card,
.related-card,
.fact-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(61, 42, 34, 0.1);
}

.card-kicker {
  margin-bottom: 35px;
  color: var(--cocoa);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3,
.related-card h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}

.service-card p,
.related-card p,
.fact-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--cocoa-deep);
  font-size: 12px;
  font-weight: 750;
}

.card-link::after {
  content: "→";
}

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

.fact-card {
  min-height: 225px;
}

.fact-card strong {
  display: block;
  margin-bottom: 24px;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;
  padding: 28px;
  background: var(--white);
}

.timeline-item time {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 31px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.results-grid,
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card,
.certificate-card {
  margin: 0;
  overflow: hidden;
}

.result-card > a:first-child {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee5e0;
}

.result-card > a:first-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.certificate-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #eee5e0;
}

.result-card figcaption,
.certificate-card figcaption {
  padding: 19px 21px 22px;
}

.result-card strong,
.certificate-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 22px;
}

.result-card span,
.certificate-card span {
  color: #77685f;
  font-size: 12px;
}

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

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

.faq-item summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 27px);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 820px;
  padding: 0 52px 25px 0;
  color: var(--ink-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.location-copy {
  padding: 28px;
}

.location-copy h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--cocoa-deep);
  font-size: 12px;
  font-weight: 750;
}

.contact-band {
  padding-block: 80px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 171, 155, 0.25), transparent 30%),
    var(--cocoa-deep);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.contact-band h2 {
  max-width: 760px;
}

.contact-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: #e4d6cf;
}

.site-footer {
  padding-block: 54px 28px;
  background: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 35px;
}

.footer-brand img {
  width: 150px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
  font-size: 13px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #77685f;
  font-size: 11px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom p:last-child {
  max-width: 760px;
  justify-self: end;
  text-align: right;
}

.mobile-action {
  display: none;
}

.first-visit-promos {
  color: var(--paper);
  background:
    radial-gradient(circle at 87% 8%, rgba(201, 171, 155, 0.2), transparent 30%),
    var(--ink);
}

.first-visit-promos .eyebrow {
  color: var(--rose-soft);
}

.first-visit-promos h2 {
  color: var(--paper);
}

.first-visit-promos .section-head > p {
  color: rgba(255, 250, 247, 0.64);
}

.first-visit-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.first-visit-promo-grid.is-single {
  grid-template-columns: minmax(0, 820px);
}

.first-visit-promo-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(255, 250, 247, 0.18);
  border-radius: 26px;
}

.promo-card-label {
  color: var(--rose-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.promo-card-value {
  margin: auto 0 24px;
  font-family: var(--serif);
  font-size: clamp(82px, 11vw, 130px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.first-visit-promo-card h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.first-visit-promo-card > p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.65;
}

.first-visit-promo-card.is-cosmetology {
  border-color: transparent;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 5%, rgba(201, 171, 155, 0.38), transparent 28%),
    var(--paper);
}

.first-visit-promo-card.is-cosmetology .promo-card-label,
.first-visit-promo-card.is-cosmetology .promo-card-value {
  color: var(--cocoa-deep);
}

.first-visit-promo-card.is-cosmetology > p {
  color: var(--ink-soft);
}

.first-visit-promo-card.is-laser {
  background: rgba(255, 250, 247, 0.035);
}

.first-visit-promo-card.is-laser h3 {
  margin-top: 52px;
}

.promo-price-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 250, 247, 0.17);
}

.promo-price-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 250, 247, 0.17);
}

.promo-price-list span {
  color: rgba(255, 250, 247, 0.66);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.promo-price-list strong {
  color: var(--rose-soft);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.first-visit-promo-card .promo-hit {
  color: rgba(255, 250, 247, 0.68);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.promo-hit span {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--rose);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.promo-terms {
  max-width: 920px;
  margin: 20px 0 0;
  color: rgba(255, 250, 247, 0.48);
  font-size: 10px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 84px);
  place-items: center;
  padding-block: 70px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(90px, 20vw, 190px);
  font-weight: 500;
  line-height: 0.8;
}

.not-found h1 {
  margin: 25px auto;
  font-size: clamp(42px, 8vw, 72px);
}

.not-found p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-book {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
    place-items: center;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::before {
    content: "☰";
    font-size: 19px;
  }

  .mobile-nav[open] summary::before {
    content: "×";
    font-size: 27px;
  }

  .mobile-nav nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 36px));
    padding: 15px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .section-head,
  .content-grid,
  .contact-band-grid {
    grid-template-columns: 1fr;
  }

  .first-visit-promo-grid,
  .first-visit-promo-grid.is-single {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
    min-height: 500px;
    border-radius: 260px 260px 18px 18px;
  }

  .hero-card img {
    min-height: 500px;
  }

  .steps,
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid,
  .results-grid,
  .certificate-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 170px 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
    font-size: 15px;
  }

  .shell {
    width: min(100% - 34px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 138px;
    height: 50px;
  }

  .breadcrumbs {
    padding-block: 14px;
  }

  .page-hero {
    padding-block: 50px 62px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-card,
  .hero-card img {
    min-height: 390px;
  }

  .hero-card {
    border-radius: 190px 190px 14px 14px;
  }

  .hero-fact {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .section {
    padding-block: 68px;
  }

  .first-visit-promo-card {
    min-height: 0;
    padding: 29px 24px;
    border-radius: 20px;
  }

  .promo-card-value {
    margin: 76px 0 24px;
    font-size: clamp(86px, 30vw, 120px);
  }

  .first-visit-promo-card.is-laser h3 {
    margin-top: 48px;
  }

  .promo-price-list > div {
    gap: 14px;
  }

  .promo-price-list span {
    font-size: 9px;
  }

  .steps,
  .facts-grid,
  .card-grid,
  .results-grid,
  .certificate-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 220px;
  }

  .step-number {
    margin-bottom: 35px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 19px;
  }

  .price-value {
    font-size: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .location-card img {
    height: 230px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }

  .mobile-action {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    color: var(--paper);
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(32, 24, 21, 0.18);
    font-size: 13px;
    font-weight: 750;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .site-header,
  .mobile-action,
  .contact-band,
  .site-footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding-block: 32px;
  }

  .price-wrap,
  .info-card {
    box-shadow: none;
  }
}
