:root {
  --bg: #0b0d0b;
  --bg-soft: #121612;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3efe6;
  --muted: rgba(243, 239, 230, 0.84);
  --accent: #bfc6a2;
  --accent-hover: #d2d8b5;
  --accent-dark: #203524;
  --accent-gold: #c59a61;
  --hero-title: #ddd7c7;
  --hero-text: #ddd3c2;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 600;
  color: #efe8dc;
}

.section-subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(
    180deg,
    rgba(22, 36, 28, 0.58) 0%,
    rgba(28, 44, 34, 0.42) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 222, 203, 0.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
  overflow: hidden;
}

.logo {
  min-width: 0;
}

.logo img {
  display: block;
  height: 96px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  position: relative;
  display: inline-block;
  color: #dde3d3;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.28s ease, transform 0.28s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a7b68e, #d4b086);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  pointer-events: none;
}

.nav a:hover {
  color: #f0e6d6;
  transform: translateY(-1px);
}

.nav a:hover::after {
  width: 100%;
}

.header-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #efe6d8;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 22px rgba(0, 0, 0, 0.12);
  transition:
    color 0.28s ease,
    transform 0.28s ease,
    text-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.header-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.02) 100%
  );
  opacity: 0.9;
  pointer-events: none;
}

.header-btn::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(216, 201, 143, 0.7) 50%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.header-btn:hover {
  color: #fff4df;
  transform: translateY(-2px);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.header-btn:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 18px;
  background: rgba(7, 45, 28, 0.96);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a {
  color: #f3efe6;
  font-size: 16px;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: #f1e7d8;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.28s ease, transform 0.28s ease;
}

.header-phone:hover {
  color: #d8c98f;
  transform: translateY(-1px);
}

/* BUTTONS */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #efe6d8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 22px rgba(0, 0, 0, 0.12);
  transition:
    color 0.28s ease,
    transform 0.28s ease,
    text-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.02) 100%
  );
  opacity: 0.9;
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(216, 201, 143, 0.7) 50%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.btn:hover {
  color: #fff4df;
  transform: translateY(-2px);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary,
.btn-secondary {
  color: #efe6d8;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero/bg.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 24, 16, 0.64) 0%, rgba(10, 24, 16, 0.34) 34%, rgba(10, 24, 16, 0.14) 100%),
    linear-gradient(180deg, rgba(14, 35, 22, 0.08) 0%, rgba(8, 18, 12, 0.14) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 145px;
  padding-bottom: 22px;
}

.hero-content {
  max-width: 680px;
  margin-left: -130px;
}

.hero-kicker {
  margin: 0 0 34px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #d8c98f;
  text-transform: uppercase;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(216, 201, 143, 0.08);
}

.hero-text {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.58;
  font-weight: 400;
  color: var(--hero-text);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

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

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  border-top: none;
}

.hero-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 12px;
}

.hero-feature::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0) 72%);
  z-index: 0;
  pointer-events: none;
}

.hero-feature img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  animation: iconFloat 3s ease-in-out infinite;
}

.hero-feature span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #e7dcc8;
  max-width: 150px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(20, 35, 24, 0.18);
}

/* ABOUT */

.about {
  position: relative;
  background: url("images/about/bg.jpg") right -300px center / 1700px no-repeat;
  padding: 110px 0 130px;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 7, 0.7);
  z-index: 0;
}

.about .container {
  width: min(1320px, calc(100% - 32px));
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.about-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.about-text p {
  margin: 0 0 20px;
}

/* CATALOG */

.catalog {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 14, 12, 0.16) 0%, rgba(8, 12, 10, 0.26) 100%),
    url("images/catalog/bg.jpg") center center / cover no-repeat;
}

.catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 35%),
    radial-gradient(circle at top left, rgba(197, 154, 97, 0.05), transparent 24%);
  pointer-events: none;
}

.catalog .container {
  position: relative;
  z-index: 2;
}

.catalog .section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.catalog .section-title {
  margin: 0 0 18px;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 0.98;
  color: #203524;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.18);
}

.catalog .section-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: #f5efe3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 1040px;
}

.catalog-card {
  position: relative;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 16, 14, 0.42);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  background: rgba(12, 18, 16, 0.56);
  border-color: rgba(255, 255, 255, 0.16);
}

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

.catalog-card__content {
  padding: 22px 22px 24px;
}

.catalog-card__content h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.02;
  color: #fff8f0;
}

.catalog-card__content p {
  margin: 0;
  color: rgba(243, 239, 230, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.catalog-gallery-view {
  display: none;
  width: 100%;
  margin-top: 42px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(10, 16, 14, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.catalog-gallery-view.is-open {
  display: block;
}

.catalog-gallery-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.catalog-gallery-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
  color: #fff8f0;
}

.catalog-gallery-close {
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #f3efe6;
  font-weight: 700;
  cursor: pointer;
}

.catalog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.catalog-gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
}

.catalog-gallery-item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.catalog-gallery-item:hover img {
  transform: scale(1.03);
}

/* PRICING */

.pricing {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.55) 0%, rgba(8, 10, 8, 0.72) 100%),
    url("images/pricing/bg.jpg") center center / cover no-repeat;
}

.pricing-container {
  position: relative;
  z-index: 2;
}

.pricing-head {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.pricing-head .section-title {
  color: var(--accent-gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.pricing-head .section-subtitle {
  color: #f0e8da;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}

.pricing-block {
  width: min(980px, 100%);
  margin: 0 auto;
}

.pricing-block--home {
  width: min(980px, 100%);
}

.pricing-block--services {
  width: min(980px, 100%);
  margin: 40px auto 0;
}

.pricing-column__title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.98;
  color: #f4ead7;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pricing-column__text {
  margin: 0 auto;
  max-width: 760px;
  color: #f0e8da;
  font-size: 18px;
  line-height: 1.8;
}

.pricing-column__info {
  margin-bottom: 30px;
}

.pricing-column__info p {
  margin: 0 0 12px;
  color: #f0e8da;
  font-size: 16px;
  line-height: 1.75;
}

.pricing-column__info strong {
  color: #fff8f0;
}

.pricing-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-bottom: 30px;
}

.pricing-prices__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-prices__item span {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-prices__item strong {
  color: #fff8f0;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}

.pricing-prices__item small {
  color: rgba(240, 232, 218, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-list p {
  margin: 0;
  color: #f0e8da;
  font-size: 16px;
  line-height: 1.75;
}

.pricing-list strong {
  color: #fff8f0;
}

.pricing-services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-services__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-services__row span {
  color: #fff8f0;
  font-size: 18px;
  line-height: 1.6;
}

.pricing-services__row strong {
  color: var(--accent-gold);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  text-align: right;
}

.pricing-services-note {
  margin: 24px 0 0;
  color: rgba(240, 232, 218, 0.88);
  font-size: 15px;
  line-height: 1.7;
}

.pricing-services-note strong {
  color: #fff8f0;
}

.pricing-bottom {
  max-width: 860px;
  margin: 100px auto 0;
  text-align: center;
}

.pricing-bottom__title {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  color: var(--accent-gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.pricing-bottom__text p {
  margin: 0 0 14px;
  color: #f0e8da;
  font-size: 17px;
  line-height: 1.8;
}

.pricing-bottom__text strong {
  color: #fff8f0;
}

.pricing-bottom__action {
  margin-top: 32px;
}

.pricing-vk {
  max-width: 980px;
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-vk__content {
  max-width: 760px;
}

.pricing-vk__kicker {
  margin: 0 0 10px;
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-vk h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  color: #fff8f0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.pricing-vk p {
  margin: 0;
  color: #e7dcc8;
  font-size: 17px;
  line-height: 1.8;
}

.pricing-vk__btn {
  margin-top: 28px;
  min-width: 250px;
}

@media (max-width: 1100px) {
  .pricing-stack {
    gap: 70px;
  }

  .pricing-bottom {
    margin-top: 80px;
  }
}

@media (max-width: 640px) {
  .pricing-head {
    margin-bottom: 46px;
  }

  .pricing-column__title,
  .pricing-bottom__title,
  .pricing-vk h3 {
    font-size: 34px;
  }

  .pricing-column__text,
  .pricing-column__info p,
  .pricing-list p,
  .pricing-services__row span,
  .pricing-services__row strong,
  .pricing-bottom__text p,
  .pricing-vk p {
    font-size: 16px;
  }

  .pricing-prices {
    flex-direction: column;
    gap: 22px;
  }

  .pricing-prices__item strong {
    font-size: 34px;
  }

  .pricing-services__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-services__row strong {
    text-align: left;
  }
  
  .pricing-services--home {
  margin-top: 10px;
}

.pricing-services__row--multiline {
  align-items: flex-start;
}

.pricing-services__row--multiline strong {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.65;
}

.pricing-services__row--note span {
  max-width: 220px;
}

.pricing-services__row--note strong {
  max-width: 360px;
}

.pricing-services__row--price strong {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 20px;
}

.pricing-services__row--price strong small {
  color: rgba(240, 232, 218, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

  .pricing-vk__btn {
    width: 100%;
    min-width: 0;
  }
}

/* BOOKING */

.booking {
  position: relative;
  overflow: hidden;
  background: #0b0d0b;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: url("images/booking/bg.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.45) 0%, rgba(8, 10, 8, 0.62) 100%);
}

.booking-inner {
  position: relative;
  z-index: 2;
}

.booking-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.booking-title {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.95;
  font-weight: 600;
  color: #f3eadb;
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(255, 244, 224, 0.05);
}

.booking-subtitle {
  margin: 0;
  color: #ddd2bf;
  font-size: 22px;
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}


.booking-action {
  margin-top: 34px;
}

.booking-fake-btn {
  min-width: 290px;
}

/* виджет скрыт до нажатия */
.booking-widget-shell {
  display: none;
  margin-top: 28px;
  justify-content: center;
}

.booking-widget-shell.is-visible {
  display: flex;
}

/* обертка виджета */
#litepms {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* если виджет сначала показывает обычную ссылку */
#litepms > a {
  display: none;
}

@media (max-width: 640px) {
  .booking-content {
    padding: 20px 0;
  }

  .booking-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .booking-fake-btn {
    width: 100%;
    min-width: 0;
  }
}

/* RULES */

.rules {
  background: #101010;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rule-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
}

.rule-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #fff8f0;
}

.rule-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* CONTACTS */

.contacts {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}

.contacts-bg {
  position: absolute;
  inset: 0;
  background: url("images/contacts/bg.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.contacts-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.35) 0%, rgba(8, 10, 8, 0.45) 100%);
}

.contacts-inner {
  position: relative;
  z-index: 2;
}

.contacts-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.contacts-head .section-title {
  color: #f1e7d8;
}

.contacts-head .section-subtitle {
  color: #d5c7b0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contacts-card,
.map-card {
  padding: 32px;
  border: none;
  border-radius: 30px;
  background: rgba(10, 14, 12, 0.52);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  margin: 0 0 8px;
  color: #c8b89d;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a,
.contact-text {
  margin: 0;
  color: #fff8f0;
  font-size: 17px;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #d8c98f;
}

.map-embed {
  min-height: 100%;
  height: 100%;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  color: #d5c7b0;
  font-size: 18px;
  text-align: center;
  padding: 20px;
}



@media (max-width: 1180px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contacts-card,
  .map-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-item a,
  .contact-text {
    font-size: 16px;
  }

  .map-placeholder {
    min-height: 300px;
    font-size: 16px;
  }
}

/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 24px));
  margin: 24px auto;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.05);
}

.modal-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 48px);
}

.modal-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 20px;
  background: #0b0d0b;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* стрелки поверх фото */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.modal-arrow:hover {
  background: rgba(255,255,255,0.18);
}

.modal-arrow--left {
  left: 12px;
}

.modal-arrow--right {
  right: 12px;
}

@media (max-width: 640px) {
  .modal-content {
    width: calc(100% - 12px);
    margin: 10px auto;
  }

  .modal-image-wrap {
    min-height: calc(100vh - 20px);
  }

  .modal-image {
    max-height: calc(100vh - 20px);
    border-radius: 16px;
  }

  .modal-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .modal-arrow--left {
    left: 8px;
  }

  .modal-arrow--right {
    right: 8px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* ANIMATION */

@keyframes iconFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes iconFloatLower {
  0% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(6px);
  }
}

.hero-feature:nth-child(1) img {
  animation-delay: 0s;
}

.hero-feature:nth-child(2) img {
  animation: iconFloatLower 3s ease-in-out infinite;
  animation-delay: 0.15s;
}

.hero-feature:nth-child(3) img {
  animation-delay: 0.3s;
}

.hero-feature:nth-child(4) img {
  animation-delay: 0.45s;
}

.hero-feature:nth-child(5) img {
  animation: iconFloatLower 3s ease-in-out infinite;
  animation-delay: 0.6s;
}

.hero-feature:nth-child(6) img {
  animation-delay: 0.75s;
}

.hero-feature:nth-child(7) img {
  animation-delay: 0.9s;
}

/* RESPONSIVE */

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

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

  .hero-features-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 14px;
  }

  .hero-content {
    margin-left: -30px;
  }
}

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

  .burger {
    display: block;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .hero-shell {
    padding-top: 110px;
    padding-bottom: 22px;
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0;
  }

  .hero-features-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    padding-top: 18px;
  }

  .hero-feature img {
    width: 68px;
    height: 68px;
  }

  .about-images img {
    height: 220px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .catalog-card img {
    height: 260px;
  }

  .catalog-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-gallery-item img {
    height: 200px;
  }

  .rules-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card__image img {
    min-height: 260px;
  }
}


.pricing-services__row--multiline strong,
.pricing-services__row--price strong {
  max-width: 100%;
}

.pricing-services__row--price strong {
  align-items: flex-start;
}

/* =========================
   PRICING NEW
========================= */

.pricing {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.65) 0%, rgba(8, 10, 8, 0.85) 100%),
    url("images/pricing/bg.jpg") center center / cover no-repeat;
}

.pricing-head {
  max-width: 860px;
}

.pricing-main-card {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pricing-main-card__image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 24px;
}

.pricing-main-card__body {
  display: flex;
  flex-direction: column;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(197, 154, 97, 0.14);
  border: 1px solid rgba(197, 154, 97, 0.22);
  color: #e7bc87;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-main-card__body h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 0.95;
  color: #fff8f0;
}

.pricing-main-text {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.stay-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.stay-price-box {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stay-price-box__label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-price-box strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #fff8f0;
}

.stay-price-box small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pricing-feature {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-feature strong {
  color: #fff1dc;
}

.pricing-main-card__bottom {
  margin-top: 26px;
}

/* ДОП. УСЛУГИ */

.pricing-services-block {
  margin-top: 10px;
  margin-bottom: 32px;
}

.pricing-block-title-wrap {
  margin-bottom: 24px;
}

.pricing-block-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: #fff8f0;
}

.pricing-block-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pricing-block__heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.service-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

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

.service-card__body {
  padding: 24px;
}

.service-card__body h4 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 0.98;
  color: #fff8f0;
}

.service-card__body p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-prices {
  display: grid;
  gap: 12px;
}

.service-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-price-line span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-price-line strong {
  color: #fff5e8;
  font-size: 20px;
}

.service-card--accent {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(197, 154, 97, 0.11) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.service-card--accent .service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-service-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-service-card h4 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: #fff8f0;
}

.mini-service-card__price {
  font-size: 22px;
  font-weight: 700;
  color: #f3e4cf;
}

/* ИНФО-КАРТОЧКИ */

.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.pricing-info-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-info-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #fff8f0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-row span {
  color: var(--muted);
  line-height: 1.6;
}

.info-row strong {
  color: #fff6eb;
  font-size: 18px;
}

.pricing-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ПРОМО */

.pricing-promo {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(197, 154, 97, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(197, 154, 97, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.pricing-promo__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-promo__kicker {
  margin: 0 0 8px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-promo h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: #fff8f0;
}

.pricing-promo p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.pricing-vk-btn {
  min-width: 240px;
}

/* ADAPTIVE */

@media (max-width: 1180px) {
  .pricing-main-card {
    grid-template-columns: 1fr;
  }

  .pricing-main-card__image img {
    min-height: 420px;
  }

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

  .pricing-info-grid {
    grid-template-columns: 1fr;
  }

  .pricing-promo__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .stay-prices {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card__image img {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .pricing-main-card,
  .pricing-info-card,
  .pricing-promo,
  .mini-service-card,
  .service-card__body {
    padding: 20px;
  }

  .pricing-main-card__body h3 {
    font-size: 38px;
  }

  .pricing-block-title {
    font-size: 34px;
  }

  .service-card__body h4,
  .pricing-info-card h3,
  .pricing-promo h3 {
    font-size: 30px;
  }

  .pricing-main-card__image img {
    min-height: 260px;
  }

  .pricing-vk-btn {
    width: 100%;
    min-width: 0;
  }
}
/* CONTACTS ICONS ANIMATION */

.contact-item img {
  animation: contactIconFloat 2.2s ease-in-out infinite;
}

.contact-item:nth-child(1) img { animation-delay: 0s; }
.contact-item:nth-child(2) img { animation-delay: 0.15s; }
.contact-item:nth-child(3) img { animation-delay: 0.3s; }
.contact-item:nth-child(4) img { animation-delay: 0.45s; }
.contact-item:nth-child(5) img { animation-delay: 0.6s; }
.contact-item:nth-child(6) img { animation-delay: 0.75s; }

@keyframes contactIconFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

/* FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 24px 0 18px;
  background: #0a0d0a;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url("images/footer/bg.jpg") center center / cover no-repeat;
  opacity: 0.18;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 8, 0.82) 0%,
    rgba(8, 10, 8, 0.92) 100%
  );
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 70px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-logo img {
  height: 86px;
  width: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-nav a {
  color: #e7dcc8;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav a:hover {
  color: #d8c98f;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}

.footer-copy,
.footer-dev {
  margin: 0;
  color: rgba(243, 239, 230, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.footer-dev a {
  color: #d8c98f;
  transition: color 0.25s ease;
}

.footer-dev a:hover {
  color: #f0e6d6;
}

@media (max-width: 980px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 34px 0 24px;
  }

  .footer-logo img {
    height: 68px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }

  .footer-copy,
  .footer-dev {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 84px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(34px, 13vw, 56px);
    line-height: 0.95;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: auto;
    min-width: 210px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
    padding-top: 16px;
    justify-items: center;
  }

  .hero-feature {
    width: 100%;
  }

  .hero-feature img {
    width: 54px;
    height: 54px;
  }

  .hero-feature::before {
    width: 68px;
    height: 68px;
  }

  .hero-feature span {
    font-size: 12px;
    max-width: 110px;
  }

  .hero-feature:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
  }

  .hero-feature:last-child span {
    max-width: none;
  }

  .catalog .section-title {
    font-size: clamp(38px, 11vw, 54px);
  }

  .catalog .section-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .catalog-card img {
    height: 240px;
  }

  .catalog-card__content h3 {
    font-size: 30px;
  }

  .catalog-gallery-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-gallery-grid {
    grid-template-columns: 1fr;
  }

  .catalog-gallery-item img {
    height: 240px;
  }

  .catalog-card__content,
  .booking-box,
  .rule-card,
  .contacts-card,
  .map-card,
  .extras,
  .price-card {
    padding: 20px;
  }

  .modal-content {
    margin: 16px auto;
    padding: 16px;
  }

  .map-link-card,
  .map-link-card__content {
    min-height: 300px;
  }

  .map-link-card__content {
    padding: 20px;
  }

  .map-link-card__text {
    font-size: 15px;
  }

  .pricing-main-card,
  .pricing-info-card,
  .pricing-promo,
  .mini-service-card,
  .service-card__body {
    padding: 20px;
  }

  .pricing-main-card__body h3 {
    font-size: 38px;
  }

  .pricing-block-title {
    font-size: 34px;
  }

  .service-card__body h4,
  .pricing-info-card h3,
  .pricing-promo h3 {
    font-size: 30px;
  }

  .pricing-main-card__image img {
    min-height: 260px;
  }

  .pricing-vk-btn {
    width: 100%;
    min-width: 0;
  }

  .contacts-card,
  .map-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-item a,
  .contact-text {
    font-size: 16px;
  }

  .map-placeholder {
    min-height: 300px;
    font-size: 16px;
  }

  .site-footer {
    padding: 34px 0 24px;
  }

  .footer-logo img {
    height: 68px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }

  .footer-copy,
  .footer-dev {
    font-size: 13px;
  }
}

/* MAP LINK CARD */

.map-card {
  overflow: hidden;
}

.map-link-card {
  position: relative;
  display: block;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
}

.map-link-card__bg {
  position: absolute;
  inset: 0;
  background:
    url("images/contacts/map-preview.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.map-link-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.18) 0%, rgba(9, 13, 10, 0.58) 100%);
}

.map-link-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 420px;
  padding: 28px;
}

.map-link-card__kicker {
  margin: 0 0 10px;
  color: #d8c98f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-link-card__title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 0.98;
  color: #fff8f0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.map-link-card__text {
  margin: 0 0 22px;
  max-width: 420px;
  color: #efe6d8;
  font-size: 16px;
  line-height: 1.7;
}

.map-link-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #1c140f;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(191, 198, 162, 0.22);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.map-link-card:hover .map-link-card__bg {
  transform: scale(1.06);
}

.map-link-card:hover .map-link-card__btn {
  transform: translateY(-2px);
  background: var(--accent-hover);
  box-shadow: 0 18px 38px rgba(191, 198, 162, 0.25);
}

@media (max-width: 640px) {
  .map-link-card,
  .map-link-card__content {
    min-height: 300px;
  }

  .map-link-card__content {
    padding: 20px;
  }

  .map-link-card__text {
    font-size: 15px;
  }
}


.header-btn,
.map-link-card__btn,
.catalog-gallery-close,
.modal-controls button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #d7debb 0%, #bec79e 100%);
  color: #1b160f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.38),
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(191, 198, 162, 0.18);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    filter 0.28s ease;
}

.header-btn::before,
.map-link-card__btn::before,
.catalog-gallery-close::before,
.modal-controls button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: skewX(-24deg);
  transition: left 0.55s ease;
}

.header-btn:hover,
.map-link-card__btn:hover,
.catalog-gallery-close:hover,
.modal-controls button:hover {
  background:
    linear-gradient(180deg, #dde4c5 0%, #c6d0a7 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    0 16px 30px rgba(0, 0, 0, 0.2),
    0 6px 14px rgba(191, 198, 162, 0.22);
}

.header-btn:hover::before,
.map-link-card__btn:hover::before,
.catalog-gallery-close:hover::before,
.modal-controls button:hover::before {
  left: 150%;
}

.header-btn:active,
.map-link-card__btn:active,
.catalog-gallery-close:active,
.modal-controls button:active {
  transform: translateY(-1px);
}

.header-btn,
.map-link-card__btn,
.catalog-gallery-close,
.modal-controls button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #d7debb 0%, #bec79e 100%);
  color: #1b160f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.38),
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(191, 198, 162, 0.18);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    filter 0.28s ease;
}

.header-btn::before,
.map-link-card__btn::before,
.catalog-gallery-close::before,
.modal-controls button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: skewX(-24deg);
  transition: left 0.55s ease;
}

.header-btn:hover,
.map-link-card__btn:hover,
.catalog-gallery-close:hover,
.modal-controls button:hover {
  background:
    linear-gradient(180deg, #dde4c5 0%, #c6d0a7 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    0 16px 30px rgba(0, 0, 0, 0.2),
    0 6px 14px rgba(191, 198, 162, 0.22);
}

.header-btn:hover::before,
.map-link-card__btn:hover::before,
.catalog-gallery-close:hover::before,
.modal-controls button:hover::before {
  left: 150%;
}

.header-btn:active,
.map-link-card__btn:active,
.catalog-gallery-close:active,
.modal-controls button:active {
  transform: translateY(-1px);
}