:root {
  --bg: #f6efe7;
  --paper: #fffaf4;
  --paper-soft: rgba(255, 250, 244, 0.72);
  --text: #314638;
  --muted: #6f765e;
  --accent: #b89f7a;
  --accent-dark: #8e7655;
  --line: #d8c6ae;
  --sage: #566843;
  --shadow: 0 22px 60px rgba(69, 57, 40, 0.12);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.76), transparent 30%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 44%, #fbf6ee 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(116px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 16px clamp(22px, 6vw, 92px);
  background: rgba(255, 251, 246, 0.88);
  border-bottom: 1px solid rgba(216, 198, 174, 0.5);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(78, 65, 44, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(184, 159, 122, 0.4);
}

.brand__text {
  display: grid;
  gap: 1px;
  min-width: 0;
  color: var(--sage);
}

.brand__text span {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 8px;
  line-height: 1;
}

.brand__text small {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  color: #4d573f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 159, 122, 0.75);
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease;
}

.social:hover {
  background: #fff5e9;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.78);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--sage);
  transition: transform 220ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 96px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 130px) clamp(24px, 9vw, 170px);
  background: #eadfce;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 70% center;
  transform: translateY(var(--parallax-y, 0));
}

.hero__shade {
  background: linear-gradient(90deg, rgba(246, 239, 231, 0.94) 0%, rgba(246, 239, 231, 0.76) 34%, rgba(246, 239, 231, 0.18) 63%, rgba(246, 239, 231, 0.06) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  color: var(--sage);
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 8px;
}

.hero__subtitle {
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero__text {
  max-width: 390px;
  margin: 0 0 30px;
  color: #53604a;
  font-size: 17px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.consent-note {
  max-width: 330px;
  margin: 8px 0 0;
  color: rgba(83, 96, 74, 0.42);
  font-size: 9.5px;
  line-height: 1.45;
  text-align: left;
}

.consent-note a {
  color: rgba(142, 118, 85, 0.58);
  border-bottom: 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  min-width: 154px;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button--primary {
  background: var(--sage);
  border-color: var(--sage);
  color: #fffaf4;
}

.button--ghost,
.button--outline {
  color: var(--accent-dark);
  background: rgba(255, 250, 244, 0.34);
}

.button--ghost:hover,
.button--outline:hover {
  background: var(--accent);
  color: #fffaf4;
}

.section {
  padding: clamp(70px, 8vw, 112px) clamp(24px, 8vw, 128px);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  background: rgba(255, 250, 244, 0.62);
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

.about h2 {
  margin: 0 0 28px;
  max-width: 620px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
}

.about p {
  max-width: 560px;
  color: #59624f;
}

.signature {
  margin-top: 30px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.section--soft {
  background: linear-gradient(180deg, rgba(247, 239, 229, 0.44), rgba(255, 250, 244, 0.3));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(40px, 110px) auto minmax(40px, 110px);
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 46px;
  color: var(--sage);
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 8px;
  text-align: center;
  text-transform: uppercase;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.advantage {
  min-height: 220px;
  padding: 28px 32px;
  text-align: center;
  border-right: 1px solid rgba(216, 198, 174, 0.75);
}

.advantage:last-child {
  border-right: 0;
}

.advantage h3 {
  min-height: 42px;
  margin: 18px 0 10px;
  color: var(--sage);
  font-size: 13px;
  letter-spacing: 1.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

.advantage p {
  margin: 0;
  color: #66705d;
  font-size: 14px;
}

.line-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border: 1px solid var(--accent);
  opacity: 0.9;
}

.line-icon--certificate {
  border-radius: 4px;
  box-shadow: inset 0 -14px 0 rgba(184, 159, 122, 0.12);
}

.line-icon--medical {
  position: relative;
  border-radius: 7px;
}

.line-icon--medical::before,
.line-icon--medical::after {
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
}

.line-icon--medical::before {
  width: 24px;
  height: 1px;
}

.line-icon--medical::after {
  width: 1px;
  height: 24px;
}

.line-icon--lotus {
  border-radius: 50% 50% 8px 8px;
}

.line-icon--foot {
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 46px;
  transform: rotate(-8deg);
}

.services {
  position: relative;
  text-align: center;
}

.service-disclaimer {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(83, 96, 74, 0.78);
  font-size: 13px;
}

.services::before {
  position: absolute;
  left: 0;
  top: 34%;
  width: 150px;
  height: 280px;
  border: 1px solid rgba(184, 159, 122, 0.28);
  border-left: 0;
  border-radius: 0 80px 80px 0;
  content: "";
}

.price-board {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 34px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(216, 198, 174, 0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 250, 244, 0.78), rgba(255, 250, 244, 0.78)),
    radial-gradient(circle at 50% 42%, rgba(184, 159, 122, 0.12), transparent 34%);
  box-shadow: 0 16px 46px rgba(71, 59, 42, 0.07);
  backdrop-filter: blur(14px);
}

.price-board::before {
  position: absolute;
  inset: 14% 32% auto;
  height: 360px;
  border: 1px solid rgba(184, 159, 122, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.price-group {
  position: relative;
  z-index: 1;
}

.price-group + .price-group {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(184, 159, 122, 0.58);
}

.price-group__heading {
  display: grid;
  grid-template-columns: minmax(46px, 1fr) auto minmax(46px, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--sage);
}

.price-group__heading span {
  height: 1px;
  background: var(--line);
}

.price-group__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px 58px;
  margin: 0;
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  color: #4f5b45;
  text-align: left;
}

.price-row span {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-row span::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 16px;
  border: 1px solid var(--sage);
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-radius: 100% 0 100% 0;
  content: "";
  transform: rotate(42deg);
}

.price-row i {
  height: 1px;
  background-image: linear-gradient(90deg, rgba(216, 198, 174, 0.9) 30%, transparent 0);
  background-size: 6px 1px;
}

.price-row b {
  color: #46543e;
  font-weight: 700;
  white-space: nowrap;
}

.price-row--complex {
  grid-column: 1 / -1;
}

.price-row--complex span {
  max-width: 690px;
  line-height: 1.55;
}

.price-row--complex em {
  display: block;
  margin-bottom: 5px;
  color: var(--sage);
  font-style: normal;
  letter-spacing: 1.5px;
}

.price-footnote {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 30px auto 0;
  color: var(--sage);
  font-size: 13px;
  letter-spacing: 1.6px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.gallery {
  padding-top: 42px;
  text-align: center;
}

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

.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(65, 55, 37, 0.08);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  transition: transform 360ms ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.trust {
  padding-top: 38px;
  padding-bottom: 38px;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 48px;
  border: 1px solid rgba(216, 198, 174, 0.55);
  border-radius: var(--radius);
  background: rgba(207, 204, 178, 0.46);
  color: #53604a;
}

.trust-panel div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--sage);
  font-size: 25px;
  flex: 0 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.review {
  min-height: 210px;
  padding: 36px;
  border: 1px solid rgba(216, 198, 174, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 14px 42px rgba(71, 59, 42, 0.08);
}

.review::before {
  display: block;
  margin-bottom: 6px;
  color: rgba(184, 159, 122, 0.52);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.7;
  content: "“";
}

.review p {
  margin: 0 0 20px;
  color: #59624f;
  font-size: 14px;
}

.review span {
  color: var(--accent-dark);
  font-size: 13px;
}

.contacts {
  display: grid;
  grid-template-columns: 0.95fr minmax(390px, 1.35fr) 1.2fr;
  min-height: 315px;
  border-top: 1px solid rgba(216, 198, 174, 0.52);
  background: rgba(255, 250, 244, 0.72);
}

.contacts__info,
.contacts__list {
  padding: 48px clamp(28px, 3vw, 52px);
}

.brand--footer .brand__logo {
  width: 58px;
  height: 58px;
}

.contacts__info p {
  max-width: 320px;
  color: #64705d;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.contacts__list {
  border-left: 1px solid rgba(216, 198, 174, 0.55);
}

.contacts__list h2 {
  margin: 0 0 22px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contacts__list p {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  margin: 0 0 16px;
  color: #59624f;
  font-size: 14px;
}

.contacts__list p:first-of-type {
  white-space: nowrap;
}

.contacts__list b {
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  background: #eee7dc;
}

.yandex-map {
  width: 100%;
  height: 100%;
  min-height: 315px;
}

.map-fallback {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  height: 100%;
  min-height: 315px;
  padding: 32px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(28deg, transparent 47%, rgba(184, 159, 122, 0.24) 48%, rgba(184, 159, 122, 0.24) 50%, transparent 51%),
    linear-gradient(152deg, transparent 45%, rgba(184, 159, 122, 0.22) 46%, rgba(184, 159, 122, 0.22) 49%, transparent 50%),
    linear-gradient(90deg, rgba(86, 104, 67, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(86, 104, 67, 0.07) 1px, transparent 1px),
    #eee7dc;
  background-size: 230px 120px, 260px 160px, 68px 68px, 68px 68px, auto;
}

.map-fallback::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 244, 0.5);
  content: "";
}

.map-fallback__pin,
.map-fallback p,
.map-fallback a {
  position: relative;
  z-index: 1;
}

.map-fallback__pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--sage);
  transform: rotate(-45deg);
  box-shadow: 0 14px 28px rgba(49, 70, 56, 0.24);
}

.map-fallback__pin::after {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fffaf4;
  content: "";
}

.map-fallback p {
  margin: 0;
  color: #53604a;
  font-weight: 700;
}

.map-fallback a {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(24px, 5vw, 72px);
  background: var(--sage);
  color: rgba(255, 250, 244, 0.86);
  font-size: 12px;
}

.footer p {
  margin: 0;
}

.legal-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: 30px;
  align-items: start;
  padding: 34px clamp(24px, 5vw, 72px);
  background: linear-gradient(135deg, #566843 0%, #46573a 100%);
  color: rgba(255, 250, 244, 0.88);
}

.legal-footer a {
  color: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(255, 250, 244, 0.22);
}

.legal-footer__brand,
.legal-footer__details,
.legal-footer__links {
  display: grid;
  gap: 10px;
}

.legal-footer__details b {
  color: #fffaf4;
  font-weight: 700;
}

.legal-footer__links {
  font-size: 12px;
  line-height: 1.55;
}

.footer-disclaimer {
  color: rgba(255, 250, 244, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.legal-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 100%);
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
}

.legal-hero p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #59624f;
  font-size: 17px;
}

.legal-hero span {
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.legal-card {
  padding: 30px;
  border: 1px solid rgba(216, 198, 174, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 14px 42px rgba(71, 59, 42, 0.06);
  backdrop-filter: blur(14px);
}

.legal-card h2 {
  margin: 0 0 16px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.legal-card p {
  margin: 0 0 12px;
  color: #59624f;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  width: min(680px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(216, 198, 174, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: var(--shadow);
  color: #53604a;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cookie-banner button {
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--sage);
  border-radius: 2px;
  background: var(--sage);
  color: #fffaf4;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 20px;
    border: 1px solid rgba(216, 198, 174, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 4px;
  }

  .menu-button {
    display: block;
  }

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

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

  .advantage:nth-child(2) {
    border-right: 0;
  }

  .contacts {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .legal-footer,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .map-panel {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand__logo {
    width: 48px;
    height: 48px;
  }

  .brand__text span {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .brand__text small {
    max-width: 180px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  .header-actions .social {
    display: none;
  }

  .hero {
    min-height: 640px;
    padding: 84px 22px 58px;
    align-items: end;
  }

  .hero__image {
    object-position: 69% center;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(246, 239, 231, 0.1) 0%, rgba(246, 239, 231, 0.6) 38%, rgba(246, 239, 231, 0.96) 100%);
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: 5px;
  }

  .hero__subtitle,
  .eyebrow {
    letter-spacing: 2px;
  }

  .consent-note {
    max-width: none;
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 60px 20px;
  }

  .about,
  .price-list,
  .review-grid,
  .contacts {
    grid-template-columns: 1fr;
  }

  .about h2 {
    font-size: 34px;
  }

  .section-heading {
    grid-template-columns: 46px auto 46px;
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 24px;
    letter-spacing: 5px;
  }

  .advantage-grid,
  .gallery-grid,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .advantage {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 198, 174, 0.75);
  }

  .advantage:last-child {
    border-bottom: 0;
  }

  .trust-panel {
    padding: 28px;
  }

  .contacts__list {
    border-left: 0;
    border-top: 1px solid rgba(216, 198, 174, 0.55);
  }

  .contacts__list p {
    grid-template-columns: 1fr;
    gap: 2px;
    white-space: normal;
  }

  .footer {
    display: grid;
    text-align: center;
  }

  .legal-card,
  .cookie-banner {
    padding: 22px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
