:root {
  --pink: #937960;
  --pink-deep: #6f5a45;
  --pink-soft: #f7f3ee;
  --rose-line: #ddd1c4;
  --ink: #342f2b;
  --muted: #70665f;
  --gold: #b9a27d;
  --bg: #fbfaf7;
  --card: #ffffff;
  --shadow: 0 12px 34px rgba(72, 58, 45, 0.12);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 42%, #fff 100%);
  font-family: var(--sans);
  line-height: 1.75;
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(147, 121, 96, 0.18);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 36px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 204px;
  height: auto;
}

.global-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: auto;
}

.global-nav__link {
  position: relative;
  color: #6c5b4d;
  font-size: 13px;
  font-weight: 700;
}

.global-nav__link::before {
  display: block;
  color: #937960;
  font-size: 19px;
  line-height: 1;
  text-align: center;
}

.global-nav__link:nth-child(1)::before { content: "⌂"; }
.global-nav__link:nth-child(2)::before { content: "✦"; }
.global-nav__link:nth-child(3)::before { content: "▣"; }
.global-nav__link:nth-child(4)::before { content: "♙"; }

.reserve-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-left: 28px;
}

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 78px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(72, 58, 45, 0.2);
}

.reserve-button--web {
  background: linear-gradient(135deg, #a58b6d, #70563f);
}

.reserve-button--line {
  color: #2f6e45;
  border: 1px solid rgba(47, 110, 69, 0.3);
  background: #fff;
}

.menu-button {
  display: none;
  width: 64px;
  min-height: 58px;
  border: 0;
  color: var(--pink-deep);
  background: transparent;
}

.menu-button__bar {
  display: block;
  width: 30px;
  height: 2px;
  margin: 0 auto 7px;
  background: currentColor;
}

.menu-button__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.drawer {
  display: none;
}

.hero {
  overflow: hidden;
  background: #fbfaf7;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.hero__picture {
  display: block;
}

.hero__picture img {
  width: 100%;
  height: auto;
}

.campaign {
  max-width: 1200px;
  margin: 42px auto 0;
  padding: 0;
}

.campaign__viewport {
  overflow: hidden;
  width: 100%;
}

.campaign__track {
  --campaign-gap: 28px;
  display: flex;
  gap: var(--campaign-gap);
  align-items: center;
  padding: 0 0 2px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.campaign-card {
  display: block;
  flex: 0 0 488px;
  overflow: hidden;
  aspect-ratio: 375 / 138;
  border-radius: 7px;
  background: var(--pink-soft);
  box-shadow: var(--shadow);
  opacity: 0.62;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.campaign-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.campaign-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 0;
}

.dots span,
.dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.dots .is-active {
  background: var(--pink);
}

.section {
  padding: 72px 0;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 54px;
}

.section-title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.35;
}

.section-title span {
  color: #d8cfc4;
  font-style: italic;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu-search {
  padding-top: 72px;
}

.menu-tabs {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #fff;
  box-shadow: 0 5px 26px rgba(72, 58, 45, 0.1);
}

.menu-tabs__button {
  min-height: 62px;
  border: 0;
  border-right: 1px solid #e6ddd2;
  color: #4d433b;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.menu-tabs__button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #a58b6d, #70563f);
}

.treatment-panel {
  display: grid;
  gap: 34px;
  padding: 34px 28px 36px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.treatment-group {
  display: block;
}

.treatment-group[data-menu-panel="body"] {
  order: 1;
}

.treatment-group[data-menu-panel="face"] {
  order: 2;
}

.treatment-group[data-menu-panel="other"] {
  order: 3;
}

.treatment-group__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #4b4038;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.treatment-group__title::before {
  content: "";
  width: 8px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a58b6d, #70563f);
}

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

.treatment-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid #e5d9cc;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(72, 58, 45, 0.08);
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.treatment-card:hover,
.treatment-card:focus-visible {
  border-color: #bba58b;
  box-shadow: 0 14px 30px rgba(72, 58, 45, 0.13);
  outline: 0;
  transform: translateY(-2px);
}

.treatment-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--pink);
  background: #faf7f2;
  border: 0;
  border-radius: 50%;
}

.treatment-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-card strong {
  color: #342f2b;
  font-size: 17px;
  line-height: 1.45;
}

.outline-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(460px, 100%);
  min-height: 50px;
  margin: 42px auto 0;
  color: var(--pink-deep);
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.outline-button--small {
  width: auto;
  min-width: 210px;
  min-height: 40px;
  margin: 0;
  padding: 0 24px;
  font-size: 13px;
}

.achievements {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.98), rgba(244, 238, 231, 0.88));
}

.achievements::before,
.achievements::after {
  content: "";
  position: absolute;
  right: -7%;
  left: -7%;
  height: 190px;
  border: 1px solid rgba(147, 121, 96, 0.2);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
}

.achievements::before {
  bottom: 80px;
}

.achievements::after {
  bottom: 28px;
  opacity: 0.55;
}

.achievements__head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  text-align: center;
}

.achievements__head p {
  margin: 0 0 4px;
  color: #937960;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.achievements__head h2 {
  margin: 0;
  color: #4d433b;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.achievements__head span {
  display: block;
  position: relative;
  width: 118px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, #cbbba8, transparent);
}

.achievements__head span::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 11px;
  height: 11px;
  background: #b9a27d;
  transform: translateX(-50%) rotate(45deg);
}

.achievement-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.achievement-item {
  position: relative;
  min-height: 300px;
  padding: 0 28px 20px;
  text-align: center;
}

.achievement-item__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: #937960;
  border: 1px solid #c7b59e;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.achievement-item__icon::after {
  content: "";
  position: absolute;
  top: 64px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b9a27d;
  transform: translateX(-50%);
}

.achievement-item__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.achievement-item h3 {
  margin: 0 0 12px;
  color: #564a40;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.achievement-item__main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 130px;
}

.achievement-item__main::before {
  content: "";
  position: absolute;
  inset: -28px -42px -22px;
  z-index: -1;
  background: url("assets/achievement-laurel-photo.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.92;
  pointer-events: none;
}

.achievement-item:last-child .achievement-item__main::before {
  inset: -28px -82px -22px;
}

.achievement-item__main p {
  margin: 0;
  color: #564a40;
  font-family: var(--serif);
  line-height: 1;
}

.achievement-item__main strong {
  color: #8a6849;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 12px 22px rgba(72, 58, 45, 0.14);
}

.achievement-item:last-child .achievement-item__main strong {
  font-size: 52px;
}

.achievement-item__main em {
  color: #564a40;
  font-size: 27px;
  font-style: normal;
}

.achievement-item__laurel {
  display: none;
}

.achievement-item__sub {
  margin: 0;
  color: #564a40;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.achievement-item__sub sup {
  font-size: 13px;
}

.achievement-item__stars {
  margin-top: 18px;
  color: #d6aa42;
  font-size: 14px;
  letter-spacing: 0.45em;
}

.achievements__note {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #70665f;
  font-size: 12px;
  text-align: right;
}

.achievements__stats-wrap {
  position: relative;
  z-index: 1;
}

.achievements__stats-wrap picture {
  display: block;
}

.achievements__stats-image {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.promise {
  background: linear-gradient(180deg, #f8f5f0 0%, #fff 100%);
}

.promise .section-title {
  margin-bottom: 60px;
}

.promise-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.promise-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.promise-card,
.feature-card {
  min-height: 190px;
  padding: 28px 22px;
  border: 1px solid #e5d9cc;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.promise-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  min-height: 0;
  border: 0;
  padding: 0;
  text-align: center;
}

.promise-card__media {
  aspect-ratio: 160 / 63;
  min-height: 0;
  margin: 0;
  background: #f7f3ee;
}

.promise-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-card__body {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: start;
  column-gap: 18px;
  padding: 26px 30px 30px;
}

.promise-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 2px 0 0;
  color: var(--pink);
  border: 1px solid var(--rose-line);
  border-radius: 50%;
  background: #faf7f2;
}

.promise-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  color: var(--pink);
  border: 1px solid var(--rose-line);
  border-radius: 50%;
  background: #faf7f2;
}

.feature-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise-card h3,
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.promise-card h3 {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: #3f362f;
  font-size: 20px;
  text-align: center;
}

.promise-card p,
.feature-card p {
  margin: 0;
  color: #675d55;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.promise-card p {
  text-align: left;
  font-size: 14px;
}

.doctor-slider {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
}

.doctor-slider__track {
  --doctor-card-width: clamp(380px, 40vw, 470px);
  display: grid;
  grid-auto-columns: var(--doctor-card-width);
  grid-auto-flow: column;
  gap: 24px;
  overflow: auto;
  padding: 18px max(24px, calc((100% - var(--doctor-card-width)) / 2)) 22px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(24px, calc((100% - var(--doctor-card-width)) / 2));
  scrollbar-width: none;
}

.doctor-slider__track::-webkit-scrollbar,
.snap-track::-webkit-scrollbar {
  display: none;
}

.doctor-card {
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  min-height: 286px;
  border: 1px solid #e5d9cc;
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0.58;
  scroll-snap-align: center;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.doctor-card.is-active {
  opacity: 1;
  box-shadow: 0 18px 46px rgba(72, 58, 45, 0.18);
  transform: scale(1);
}

.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #f6f6f6;
}

.doctor-card div {
  padding: 28px 24px;
}

.doctor-card span,
.doctor-card p,
.doctor-card li {
  color: #766b62;
  font-size: 12px;
  line-height: 1.45;
}

.doctor-card h3 {
  margin: 2px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.doctor-card small {
  font-size: 12px;
}

.doctor-card p {
  margin: 0 0 8px;
  letter-spacing: 0.08em;
}

.doctor-card b {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 9px;
  color: #fff;
  border-radius: 999px;
  background: #937960;
  font-size: 11px;
}

.doctor-card ul {
  padding-left: 1em;
  margin: 0;
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd1c4;
  border-radius: 50%;
  color: var(--pink);
  background: #fff;
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, clamp(54px, 6vw, 72px));
  gap: 24px;
}

.gallery-grid__button {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: zoom-in;
  box-shadow: 0 8px 22px rgba(103, 72, 60, 0.12);
}

.gallery-grid__button::after {
  content: "＋";
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(77, 67, 59, 0.42);
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-grid__button:hover::after,
.gallery-grid__button:focus-visible::after {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-grid__button:focus-visible {
  outline: 2px solid #a58b6d;
  outline-offset: 4px;
}

.gallery-grid__button img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery-grid__button:hover img,
.gallery-grid__button:focus-visible img {
  transform: scale(1.035);
}

.gallery-grid__item--large {
  grid-column: 1 / span 8;
  grid-row: 1 / span 4;
}

.gallery-grid__item--top {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
}

.gallery-grid__item--small-a {
  grid-column: 1 / span 4;
  grid-row: 5 / span 2;
}

.gallery-grid__item--small-b {
  grid-column: 5 / span 4;
  grid-row: 5 / span 2;
}

.gallery-grid__item--tall {
  grid-column: 9 / span 4;
  grid-row: 3 / span 4;
}

.gallery__button {
  display: none;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(47, 41, 36, 0.72);
  cursor: zoom-out;
}

.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 92vw);
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(22, 16, 12, 0.36);
}

.gallery-lightbox__panel img {
  display: block;
  width: 100%;
  max-height: min(76vh, 740px);
  border-radius: 12px;
  object-fit: contain;
  background: #f7f3ee;
}

.gallery-lightbox__panel figcaption {
  margin-top: 10px;
  color: #5b4a3d;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #a58b6d, #70563f);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(47, 41, 36, 0.24);
}

.feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  min-height: 170px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid #e1d6c9;
  border-radius: 0;
  box-shadow: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(247, 243, 238, 0.82)),
    url("assets/promise-price.png") right center / min(48vw, 560px) auto no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -90px;
  width: 48%;
  height: 220px;
  border: 1px solid rgba(147, 121, 96, 0.16);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  min-height: 330px;
  margin: 0 auto;
  padding: 92px 54px 76px;
}

.page-hero__eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.page-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.2;
}

.page-hero p:not(.page-hero__eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.price-summary {
  padding: 44px 0 0;
}

.price-summary__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 54px;
}

.price-summary__card {
  display: grid;
  gap: 4px;
  min-height: 126px;
  padding: 22px;
  border: 1px solid #e5d9cc;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.price-summary__card:hover,
.price-summary__card:focus-visible {
  border-color: #bba58b;
  box-shadow: 0 14px 30px rgba(72, 58, 45, 0.13);
  outline: 0;
  transform: translateY(-2px);
}

.price-summary__card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.price-summary__card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.price-summary__card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.price-section {
  padding-top: 54px;
}

.price-notice {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 42px;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f8f5f0);
  box-shadow: var(--shadow);
}

.price-notice h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.price-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-notice ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-notice li {
  position: relative;
  padding-left: 18px;
  color: #675d55;
  font-size: 13px;
  font-weight: 700;
}

.price-notice li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.price-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: start;
}

.price-side {
  position: sticky;
  top: 104px;
  display: grid;
  overflow: hidden;
  border: 1px solid #e5d9cc;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-side a {
  padding: 15px 18px;
  border-bottom: 1px solid #eee6dc;
  color: #4d433b;
  font-size: 13px;
  font-weight: 700;
}

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

.price-side a:hover,
.price-side a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #a58b6d, #70563f);
  outline: 0;
}

.price-tables {
  display: grid;
  gap: 34px;
}

.price-block {
  overflow: hidden;
  border: 1px solid #e5d9cc;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  scroll-margin-top: 108px;
}

.price-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid #eee6dc;
  background: linear-gradient(135deg, #fbfaf7, #f7f3ee);
}

.price-block__head p {
  order: 2;
  margin: 0;
  color: #b9a27d;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.price-block__head .price-block__note {
  flex: 0 0 100%;
  order: 3;
  margin: -8px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

.price-block__head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.price-table th,
.price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid #eee6dc;
  text-align: left;
  vertical-align: middle;
}

.price-table thead th {
  color: #fff;
  background: #937960;
  font-size: 13px;
}

.price-table tbody th {
  width: 34%;
  color: var(--ink);
  font-size: 15px;
}

.price-table tbody td {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-table tbody td:last-child {
  color: #6f5a45;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.payment-section {
  padding-top: 0;
}

.payment-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #5b4a3d, #2f2924);
  box-shadow: var(--shadow);
}

.payment-panel h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.payment-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.payment-panel .page-hero__eyebrow {
  color: #d4c3ad;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-methods span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.footer {
  overflow: hidden;
  background: #fff;
}

.footer-access {
  padding: 70px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.footer-access__inner {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(440px, 1.05fr);
  gap: 42px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 54px;
}

.footer-map {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid #e1d6c9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(72, 58, 45, 0.12);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

.footer-access__eyebrow {
  margin: 0 0 4px;
  color: var(--pink-deep);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.footer-access__content h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.footer-access__content h3 {
  margin: 0 0 8px;
  color: #7b624d;
  font-size: 17px;
}

.footer-access__content p,
.footer-access__content li {
  color: #675d55;
  font-size: 13px;
  font-weight: 700;
}

.footer-access__content ul {
  display: grid;
  gap: 6px;
  padding-left: 1.2em;
  margin: 10px 0 16px;
}

.footer-schedule {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 7px;
  box-shadow: 0 0 0 1px #e1d6c9;
  font-size: 13px;
}

.footer-schedule caption {
  padding: 8px 0;
  color: #80664f;
  font-weight: 700;
  text-align: left;
}

.footer-schedule th,
.footer-schedule td {
  padding: 9px 10px;
  border: 1px solid #e1d6c9;
  text-align: center;
}

.footer-schedule thead th {
  color: #fff;
  background: #937960;
}

.footer-schedule tbody th {
  color: #675d55;
  background: #fff;
  white-space: nowrap;
}

.footer-schedule td {
  color: #6f5a45;
  background: #fff;
}

.footer-access__note {
  margin: 12px 0 0;
  color: #80664f;
}

.footer-consult {
  position: relative;
  padding: 54px 0 58px;
  background: linear-gradient(180deg, rgba(244, 238, 231, 0.94), rgba(250, 247, 242, 0.88));
}

.footer-consult__inner {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 54px;
  text-align: center;
}

.footer-consult__body {
  text-align: center;
}

.footer-consult__body p {
  margin: 0 0 10px;
  color: #756253;
  font-family: var(--serif);
  font-size: 18px;
}

.footer-consult__body h2 {
  margin: 0 0 28px;
  color: #4d433b;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.footer-consult__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.footer-consult__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(72, 58, 45, 0.13);
}

.footer-consult__button--primary {
  color: #fff;
  background: linear-gradient(135deg, #a58b6d, #70563f);
}

.footer-consult__button--secondary {
  color: #2f6e45;
  border: 1px solid rgba(47, 110, 69, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

.privacy-content {
  padding: 64px 0 82px;
}

.privacy-content__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 54px;
}

.privacy-block {
  padding: 42px;
  border: 1px solid #e5d9cc;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.privacy-block h2 {
  margin: 36px 0 12px;
  color: #4d433b;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.privacy-block h2:first-child {
  margin-top: 0;
}

.privacy-block h3 {
  margin: 26px 0 8px;
  color: #7b624d;
  font-size: 17px;
}

.privacy-block p,
.privacy-block li {
  color: #5f554e;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.privacy-block ul {
  display: grid;
  gap: 4px;
  margin: 10px 0 18px;
  padding-left: 1.4em;
}

.footer-site {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #5b4a3d, #2f2924);
}

.footer-site__inner {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 54px;
}

.footer__logo {
  margin-bottom: 18px;
}

.footer-site .logo img {
  width: 210px;
}

.footer-site__brand p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-site__tel {
  display: inline-block;
  margin: 10px 0 2px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.footer-site__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer-site__nav h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.footer-site__nav a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.footer__bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 18px 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.footer small {
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__inner,
  .section__inner,
  .hero__inner,
  .campaign {
    padding-right: 28px;
    padding-left: 28px;
  }

  .global-nav {
    gap: 18px;
  }

  .hero__inner {
    padding: 0;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-access__inner {
    grid-template-columns: 1fr;
    padding-right: 28px;
    padding-left: 28px;
  }

  .footer-consult__inner,
  .footer-site__inner {
    padding-right: 28px;
    padding-left: 28px;
  }

  .footer-site__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-site__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-summary__inner {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 28px;
    padding-left: 28px;
  }

  .price-layout {
    grid-template-columns: 1fr;
  }

  .price-side {
    position: static;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .payment-panel {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 75px;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
  }

  .site-header__inner {
    min-height: 75px;
    padding: 0 16px;
  }

  .logo img {
    width: 148px;
  }

  .global-nav {
    display: none;
  }

  .reserve-actions {
    gap: 6px;
    margin-left: auto;
  }

  .reserve-button {
    min-width: 66px;
    min-height: 42px;
    border-radius: 5px;
    font-size: 10px;
    box-shadow: 0 8px 18px rgba(72, 58, 45, 0.16);
  }

  .menu-button {
    display: block;
  }

  .drawer {
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease;
  }

  .drawer.is-open {
    max-height: 320px;
    border-top: 1px solid #e5d9cc;
  }

  .drawer a {
    min-height: 48px;
    padding: 12px 20px;
    border-bottom: 1px solid #eee6dc;
    font-size: 14px;
    font-weight: 700;
  }

  .hero__inner {
    padding: 0;
  }

  .campaign {
    margin-top: 42px;
    padding: 16px 0 0;
  }

  .campaign__track {
    --campaign-gap: 12px;
  }

  .campaign-card {
    flex-basis: min(320px, calc(100vw - 64px));
    border-radius: 6px;
  }

  .section {
    padding: 50px 0;
  }

  .section__inner {
    padding: 0 16px;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.96), rgba(247, 243, 238, 0.88)),
      url("assets/promise-price.png") center bottom / 100% auto no-repeat;
  }

  .page-hero__inner {
    min-height: 280px;
    padding: 58px 16px 92px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p:not(.page-hero__eyebrow) {
    font-size: 13px;
    line-height: 1.85;
  }

  .price-summary {
    padding-top: 28px;
  }

  .price-summary__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0 16px;
  }

  .price-summary__card {
    min-height: 116px;
    padding: 18px;
  }

  .price-section {
    padding-top: 36px;
  }

  .price-notice {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
    padding: 22px;
  }

  .price-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .price-side {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .price-side a {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid #e5d9cc;
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .price-tables {
    gap: 24px;
  }

  .price-block {
    scroll-margin-top: 92px;
  }

  .price-block__head {
    display: block;
    padding: 20px;
  }

  .price-block__head h2 {
    font-size: 23px;
  }

  .price-block__head p {
    margin-top: 3px;
    font-size: 14px;
  }

  .price-block__head .price-block__note {
    margin-top: 8px;
    font-size: 12px;
  }

  .price-table-wrap {
    overflow: visible;
  }

  .price-table {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody {
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .price-table tr {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid #eee6dc;
    border-radius: 10px;
    background: #fff;
  }

  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: 0;
  }

  .price-table tbody th {
    font-size: 15px;
    line-height: 1.55;
  }

  .price-table tbody td {
    font-size: 13px;
    line-height: 1.55;
  }

  .price-table tbody td::before {
    content: attr(data-label);
    display: inline-block;
    min-width: 3.2em;
    margin-right: 8px;
    color: #9b8a76;
    font-size: 11px;
    font-weight: 700;
  }

  .price-table tbody td:last-child {
    font-size: 17px;
    white-space: normal;
  }

  .payment-section {
    padding-bottom: 50px;
  }

  .payment-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
  }

  .payment-panel h2 {
    font-size: 25px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .section-title {
    margin-bottom: 18px;
    font-size: 23px;
  }

  .section-head {
    display: block;
  }

  .section-head .outline-button {
    display: none;
  }

  .menu-tabs {
    display: grid;
  }

  .treatment-panel {
    display: block;
    padding: 16px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .treatment-group {
    display: none;
  }

  .treatment-group.is-active {
    display: block;
  }

  .treatment-group__title {
    display: none;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .treatment-card {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    min-height: 78px;
    padding: 14px 16px;
    border: 1px solid #e5d9cc;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(72, 58, 45, 0.08);
  }

  .treatment-card__icon {
    width: 46px;
    height: 46px;
  }

  .treatment-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .treatment-card strong {
    font-size: 14px;
  }

  .outline-button {
    min-height: 44px;
    margin-top: 30px;
    font-size: 12px;
  }

  .achievements__head {
    margin-bottom: 28px;
  }

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

  .achievements__head h2 {
    font-size: 25px;
  }

  .achievements__stats-wrap {
    overflow: visible;
  }

  .achievements__stats-wrap::-webkit-scrollbar {
    display: none;
  }

  .achievements__stats-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .achievement-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-item {
    min-height: 250px;
    padding: 0 42px 16px;
  }

  .achievement-item__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .achievement-item__icon::after {
    top: 68px;
  }

  .achievement-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .achievement-item__main {
    min-height: 112px;
  }

  .achievement-item__main::before {
    inset: -16px -8px -14px;
  }

  .achievement-item:last-child .achievement-item__main::before {
    inset: -16px -24px -14px;
  }

  .achievement-item__main strong {
    font-size: 52px;
  }

  .achievement-item:last-child .achievement-item__main strong {
    font-size: 45px;
  }

  .achievement-item__main em {
    font-size: 23px;
  }

  .achievement-item__laurel {
    display: none;
  }

  .achievement-item__sub {
    font-size: 19px;
  }

  .achievement-item__stars {
    margin-top: 18px;
    font-size: 14px;
  }

  .achievements__note {
    margin-top: 8px;
    font-size: 11px;
  }

  .promise-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promise .section-title {
    margin-bottom: 45px;
  }

  .promise-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    text-align: left;
  }

  .promise-card__media {
    aspect-ratio: 160 / 63;
    min-height: 0;
  }

  .promise-card__media img {
    min-height: 0;
  }

  .promise-card__body {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 14px;
    padding: 20px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 0;
    padding: 18px;
    text-align: left;
  }

  .feature-card__icon {
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    margin: 0 14px 0 0;
  }

  .feature-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .promise-card__icon {
    width: 54px;
    height: 54px;
    margin: 2px 0 0;
  }

  .promise-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .promise-card h3,
  .feature-card h3 {
    font-size: 15px;
  }

  .promise-card h3 {
    font-size: 18px;
  }

  .promise-card p,
  .feature-card p {
    font-size: 12px;
  }

  .promise-card p {
    font-size: 13px;
  }

  .doctor-slider {
    display: block;
  }

  .slider-arrow {
    display: none;
  }

  .doctor-slider__track {
    --doctor-card-width: 74%;
    grid-auto-columns: 74%;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 13% 12px;
    scroll-padding-inline: 13%;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    min-height: 0;
    transform: scale(0.92);
  }

  .doctor-card img {
    height: 188px;
  }

  .doctor-card div {
    padding: 16px;
  }

  .doctor-card h3 {
    font-size: 17px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 10px;
  }

  .gallery-grid__button {
    height: auto;
    border-radius: 10px;
    aspect-ratio: 1 / 0.82;
  }

  .gallery-grid__button::after {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    font-size: 17px;
    opacity: 1;
  }

  .gallery-grid__item--large,
  .gallery-grid__item--tall {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 2 / 1.06;
  }

  .gallery-grid__item--top,
  .gallery-grid__item--small-a,
  .gallery-grid__item--small-b {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery__button {
    display: none;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox__panel {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
  }

  .gallery-lightbox__panel img {
    max-height: 76vh;
    border-radius: 8px;
  }

  .gallery-lightbox__close {
    top: -12px;
    right: -8px;
    width: 38px;
    height: 38px;
  }

  .feature-card {
    border: 1px solid #e5d9cc;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .footer-access {
    padding: 44px 0 36px;
  }

  .footer-access__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .footer-map {
    min-height: 210px;
  }

  .footer-map iframe {
    min-height: 210px;
  }

  .footer-access__content h2 {
    font-size: 25px;
  }

  .footer-schedule {
    display: table;
    table-layout: fixed;
    overflow: visible;
    white-space: normal;
    font-size: 11px;
  }

  .footer-schedule th,
  .footer-schedule td {
    padding: 7px 3px;
  }

  .footer-consult {
    padding: 40px 0 42px;
    background: linear-gradient(180deg, rgba(244, 238, 231, 0.96), rgba(250, 247, 242, 0.92));
  }

  .footer-consult__inner {
    padding: 0 16px;
  }

  .footer-consult__body h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  .footer-consult__actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-site {
    padding: 42px 0 22px;
  }

  .footer-site__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }

  .footer-site__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .footer-site__tel {
    font-size: 22px;
  }

  .privacy-content {
    padding: 42px 0 58px;
  }

  .privacy-content__inner {
    padding: 0 16px;
  }

  .privacy-block {
    padding: 24px 18px;
  }

  .privacy-block h2 {
    font-size: 21px;
  }

  .privacy-block p,
  .privacy-block li {
    font-size: 13px;
  }

  .footer__bottom {
    margin-top: 30px;
    padding: 16px 16px 0;
  }
}
