﻿:root {
  --bg-main: #f7f1e8;
  --bg-soft: #efe5d6;
  --bg-card: #fdf9f3;
  --line: #dcc9af;
  --line-strong: #c6ab85;
  --gold: #b78948;
  --gold-soft: #d7b780;
  --brown: #5b4330;
  --brown-deep: #2f2318;
  --text: #2c2016;
  --text-muted: #6f5841;
  --text-faint: #9b8064;
  --white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(65, 40, 18, 0.08);
  --shadow-card: 0 10px 28px rgba(60, 38, 20, 0.06);
  --radius: 18px;
  --transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(183, 137, 72, 0.1), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(132, 100, 65, 0.08), transparent 42%),
    var(--bg-main);
  line-height: 1.72;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.home-page .hero-title,
.home-page .section-title,
.home-page .service-card h3,
.home-page .logo-main {
  font-family: 'Cormorant Garamond', serif;
}

.home-page .hero-title {
  font-weight: 300;
  letter-spacing: 0.01em;
}

.home-page .section-title {
  font-weight: 300;
}

.home-page .service-card h3 {
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

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

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--brown-deep);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--brown);
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 42px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 36px;
}

header.scrolled {
  background: rgba(247, 241, 232, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(79, 53, 30, 0.08);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  flex-shrink: 0;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--brown-deep);
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: none;
}

.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--brown-deep);
}

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

.btn-book {
  flex-shrink: 0;
  padding: 11px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-deep);
  background: rgba(255, 255, 255, 0.44);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-book:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(126, 90, 50, 0.2);
}

.burger {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.burger span {
  width: 22px;
  height: 1.6px;
  background: var(--brown-deep);
  transition: transform var(--transition), opacity var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 42px 26px;
  background: rgba(247, 241, 232, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 16px 24px rgba(58, 37, 19, 0.07);
}

.mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(198, 171, 133, 0.35);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav .btn-book {
  margin-top: 16px;
  text-align: center;
  border-radius: 999px;
}

.mobile-nav.open {
  display: flex;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(55, 39, 27, 0.86) 0%, rgba(102, 75, 50, 0.72) 42%, rgba(182, 145, 99, 0.62) 100%),
    radial-gradient(circle at 20% 22%, rgba(235, 213, 182, 0.25), transparent 45%);
}

.hero-gradient::before,
.hero-gradient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-gradient::before {
  width: 440px;
  height: 440px;
  right: -110px;
  top: -150px;
  background: radial-gradient(circle, rgba(230, 200, 155, 0.3), transparent 68%);
  animation: drift 14s ease-in-out infinite;
}

.hero-gradient::after {
  width: 380px;
  height: 380px;
  left: -100px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(230, 190, 140, 0.2), transparent 72%);
  animation: drift 16s ease-in-out infinite reverse;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 86px 42px 54px;
}

.hero-eyebrow {
  color: rgba(251, 242, 229, 0.82);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 126px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: #f0d8af;
}

.hero-desc {
  color: rgba(255, 244, 229, 0.86);
  font-size: 16px;
  max-width: 530px;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(123, 84, 44, 0.26);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--brown-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(245, 226, 199, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.86);
}

.btn-outline {
  color: var(--brown-deep);
  border: 1px solid var(--line-strong);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255, 245, 229, 0.5);
  animation: scrollCue 2s ease-in-out infinite;
}

.hero-scroll p {
  color: rgba(255, 245, 229, 0.58);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about,
.services,
.contacts {
  position: relative;
}

.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
}

.about-desc {
  margin-top: 28px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
}

.about-features {
  display: grid;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(198, 171, 133, 0.26);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  font-size: 13px;
}

.feature h4 {
  color: var(--brown-deep);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.feature p {
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.55;
}

.services {
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(239, 229, 214, 0.7) 0%, rgba(247, 241, 232, 0.45) 100%),
    var(--bg-soft);
}

.section-header {
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-empty {
  grid-column: 1 / -1;
  border: 1px dashed rgba(198, 171, 133, 0.58);
  border-radius: 14px;
  padding: 20px;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--bg-card);
  border: 1px solid rgba(198, 171, 133, 0.34);
  border-radius: calc(var(--radius) + 2px);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.service-num {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.14;
  color: var(--brown-deep);
  font-weight: 500;
}

.service-card p {
  flex: 1;
  color: var(--text-muted);
  font-size: 14px;
}

.service-price {
  color: var(--brown);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
}

.service-link {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--brown-deep);
}

.services-cta {
  margin-top: 42px;
  text-align: center;
}

.price-strip {
  border-top: 1px solid rgba(198, 171, 133, 0.3);
  border-bottom: 1px solid rgba(198, 171, 133, 0.3);
  background: rgba(79, 57, 38, 0.95);
  padding: 18px 0;
  overflow: hidden;
}

.price-strip-inner {
  display: flex;
  gap: 34px;
  align-items: center;
  white-space: nowrap;
  min-width: max-content;
  color: rgba(248, 235, 218, 0.75);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: stripScroll 26s linear infinite;
}

.price-strip-inner:empty {
  display: none;
}

.price-strip .dot {
  color: var(--gold-soft);
}

.contacts {
  padding: 120px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: start;
}

.contact-items {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(198, 171, 133, 0.28);
  border-radius: 14px;
}

.contact-icon {
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  font-size: 15px;
}

.contact-item a:hover {
  color: var(--brown-deep);
}

.messenger-buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(198, 171, 133, 0.42);
  background: var(--bg-card);
  color: var(--brown-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.btn-messenger svg {
  width: 18px;
  height: 18px;
}

.btn-messenger.whatsapp svg {
  color: #1f9e53;
}

.btn-messenger.telegram svg {
  color: #1f8fcc;
}

.btn-messenger:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
  background: #fffaf4;
}

.map-placeholder {
  min-height: 380px;
  border-radius: 22px;
  border: 1px solid rgba(198, 171, 133, 0.4);
  background:
    radial-gradient(circle at 12% 0%, rgba(208, 171, 119, 0.2), transparent 40%),
    linear-gradient(180deg, #f5ece0 0%, #f8f2e9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.map-pin {
  color: var(--gold);
  font-size: 32px;
  animation: mapPulse 2.8s ease-in-out infinite;
}

.map-placeholder p {
  color: var(--text-muted);
  font-size: 15px;
}

.map-link {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.map-link:hover {
  color: var(--brown-deep);
}

.footer {
  border-top: 1px solid rgba(198, 171, 133, 0.35);
  background: #3f2f21;
  color: rgba(250, 238, 220, 0.62);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo .logo-main {
  color: #f6ebdc;
  font-size: 18px;
}

.footer-logo .logo-sub {
  color: var(--gold-soft);
}

.footer-copy {
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.76;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.price-page-body {
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 137, 72, 0.1), transparent 35%),
    var(--bg-main);
}

.price-hero {
  padding: 162px 0 74px;
  border-bottom: 1px solid rgba(198, 171, 133, 0.35);
  background:
    linear-gradient(180deg, rgba(239, 229, 214, 0.86) 0%, rgba(247, 241, 232, 0.72) 100%);
}

.price-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(56px, 7vw, 92px);
  color: var(--brown-deep);
  line-height: 0.98;
  margin-bottom: 14px;
}

.price-hero-desc {
  color: var(--text-faint);
  font-size: 15px;
}

.price-content {
  padding: 76px 0 114px;
}

.price-legend {
  margin-bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.price-tag-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-tag-label.base {
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.price-tag-label.vip {
  color: var(--white);
  border: 1px solid var(--gold);
  background: var(--gold);
}

#price-container {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(198, 171, 133, 0.32);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  --price-col-width: 164px;
}

.price-global-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px 24px 12px;
  border-bottom: 1px solid rgba(198, 171, 133, 0.3);
}

.price-block {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(198, 171, 133, 0.3);
  border-radius: 0;
  padding: 24px 24px 12px;
  box-shadow: none;
  opacity: 0;
  transform: translateY(14px);
  animation: priceReveal 0.6s ease forwards;
  scroll-margin-top: 112px;
}

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

.price-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--brown-deep);
  line-height: 1.1;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198, 171, 133, 0.36);
}

.price-main-title {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-columns-tags {
  display: grid;
  grid-template-columns: repeat(2, var(--price-col-width));
  gap: 8px;
  justify-items: stretch;
}

.price-col-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-col-tag.base {
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.price-col-tag.vip {
  color: var(--white);
  border: 1px solid var(--gold);
  background: var(--gold);
}

.price-item {
  border-bottom: 1px solid rgba(220, 201, 175, 0.36);
  padding: 16px 0;
  scroll-margin-top: 112px;
}

.price-item.price-target {
  background: rgba(183, 137, 72, 0.08);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.price-block.price-target .price-block-title {
  color: var(--gold);
}

.price-leading-spacer {
  height: 14px;
}

.price-item-spacer {
  height: 18px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.price-service-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
}

.price-prices {
  display: grid;
  grid-template-columns: repeat(2, var(--price-col-width));
  gap: 8px;
  justify-self: end;
  justify-items: stretch;
}

.price-prices.is-single .price-single {
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  min-width: var(--price-col-width);
  max-width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  font-size: clamp(10px, 1.9vw, 12px);
  letter-spacing: 0.03em;
}

.price-base,
.price-vip {
  min-width: 0;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.price-base {
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.price-vip {
  color: var(--white);
  border: 1px solid var(--gold);
  background: var(--gold);
}

.price-base.is-empty,
.price-vip.is-empty {
  color: var(--text-faint);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.price-comment {
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 12px;
  font-style: italic;
}

.price-section-comment {
  margin: 14px 0 14px;
  padding: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
}

.price-note {
  margin-top: 30px;
  border: 1px solid rgba(198, 171, 133, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  padding: 16px 18px;
  color: var(--text-faint);
  font-size: 13px;
}

.price-book-cta {
  margin-top: 34px;
  text-align: center;
}

.price-empty {
  border: 1px dashed rgba(198, 171, 133, 0.6);
  border-radius: 14px;
  padding: 18px;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.45);
}

@keyframes scrollCue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  48% {
    transform: scaleY(1);
    transform-origin: top;
  }
  52% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes mapPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes drift {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -12px); }
}

@keyframes priceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .container,
  .header-inner,
  .hero-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-grid,
  .contacts-grid {
    gap: 56px;
  }

  .services-grid {
    gap: 16px;
  }

  .service-card h3 {
    font-size: 28px;
  }
}

@media (max-width: 860px) {
  .about-grid,
  .contacts-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .services,
  .contacts {
    padding: 92px 0;
  }

  .contacts-map {
    order: -1;
  }

  .map-placeholder {
    min-height: 270px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .footer-copy {
    flex: initial;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

  .burger {
    display: inline-flex;
  }

  .mobile-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container,
  .header-inner,
  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-inner {
    height: 72px;
  }

  .hero-content {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 0.98;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 100%);
  }

  .btn-primary,
  .btn-ghost,
  .btn-outline,
  .btn-messenger {
    width: 100%;
  }

  .hero-scroll {
    bottom: 18px;
  }

  .section-title {
    font-size: 36px;
  }

  .service-card {
    padding: 30px 22px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .messenger-buttons {
    width: 100%;
  }

  .price-strip-inner {
    animation-duration: 20s;
  }

  .price-hero {
    padding-top: 130px;
    padding-bottom: 54px;
  }

  .price-content {
    padding-top: 54px;
    padding-bottom: 86px;
  }

  .price-block {
    padding: 20px 16px 10px;
  }

  .price-block-title {
    font-size: 30px;
  }

  .price-global-head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 16px 10px;
  }

  .price-global-spacer {
    display: none;
  }

  .price-columns-tags {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-prices {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: center;
  }

  .price-prices.is-single .price-single {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    font-size: clamp(10px, 3.4vw, 11px);
    letter-spacing: 0.02em;
  }
}

@media (max-width: 600px) {
  .logo-main {
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .logo-sub {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 86px;
    padding-bottom: 72px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    letter-spacing: 0.2em;
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .hero-desc {
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.62;
  }

  .hero-desc br {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .section-label {
    letter-spacing: 0.2em;
  }

  .section-title {
    font-size: 32px;
  }

  .about,
  .services,
  .contacts {
    padding: 74px 0;
  }

  .about-grid,
  .contacts-grid {
    gap: 34px;
  }

  .feature {
    padding: 16px;
  }

  .service-card {
    padding: 24px 18px;
    gap: 13px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .service-price {
    font-size: 22px;
  }

  .contact-item {
    padding: 14px 14px;
    gap: 12px;
  }

  .contact-item p,
  .contact-item a {
    font-size: 14px;
  }

  .map-placeholder {
    min-height: 230px;
    border-radius: 16px;
  }

  .price-hero-title {
    font-size: 46px;
  }

  .price-hero-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .price-tag-label {
    font-size: 9px;
    padding: 6px 12px;
  }

  .price-col-tag {
    font-size: 9px;
  }

  .price-block-title {
    font-size: 27px;
  }

  .price-service-name {
    font-size: 14px;
  }

  .price-base,
  .price-vip {
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .container,
  .header-inner,
  .hero-content,
  .mobile-nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    height: 68px;
    gap: 16px;
  }

  .burger {
    width: 34px;
    height: 34px;
  }

  .mobile-nav a {
    font-size: 12px;
    padding: 12px 0;
  }

  .mobile-nav .btn-book {
    margin-top: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-title {
    font-size: 42px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-outline,
  .btn-messenger {
    padding-top: 12px;
    padding-bottom: 12px;
    letter-spacing: 0.11em;
  }

  .services-cta {
    margin-top: 28px;
  }

  .price-content {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .price-block {
    padding: 18px 14px 8px;
  }
}
