:root {
  --bg: #07090a;
  --panel: #101112;
  --panel-soft: #171512;
  --cream: #f3eee5;
  --paper: #efe8dc;
  --muted: #c8bbab;
  --muted-dark: #6f6254;
  --gold: #c9a063;
  --gold-bright: #e0bd7b;
  --line: rgba(201, 160, 99, 0.36);
  --shadow: rgba(0, 0, 0, 0.42);
  --font-display: "Times New Roman", Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--image {
  transform: translate3d(0, 16px, 0) scale(1.018);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

.landing-page [hidden] {
  display: none !important;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 160, 99, 0.18);
  background: rgba(7, 9, 10, 0.78);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

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

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

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding: 28px 0 24px;
}

.nav a:hover,
.nav a:focus {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.language-switcher select {
  min-width: 62px;
  border: 1px solid rgba(201, 160, 99, 0.38);
  border-radius: 0;
  background: rgba(7, 9, 10, 0.75);
  color: var(--cream);
  padding: 9px 24px 9px 10px;
  font: inherit;
}

.native-select--customized {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select {
  position: relative;
  z-index: 5;
  width: 100%;
}

.custom-select__button {
  position: relative;
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(201, 160, 99, 0.48);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(27, 27, 24, 0.98), rgba(12, 14, 14, 0.98));
  color: var(--cream);
  padding: 0 52px 0 14px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 230, 178, 0.02),
    0 14px 26px rgba(0, 0, 0, 0.18);
}

.custom-select__button::after {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  content: "";
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.custom-select__value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select.is-open {
  z-index: 90;
}

.custom-select.is-open .custom-select__button,
.custom-select__button:hover,
.custom-select__button:focus {
  border-color: rgba(243, 207, 139, 0.82);
  outline: none;
  background:
    linear-gradient(180deg, rgba(32, 31, 27, 0.98), rgba(14, 16, 16, 0.98));
}

.custom-select.is-open .custom-select__button::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select.is-disabled .custom-select__button {
  cursor: not-allowed;
  opacity: 0.5;
}

.custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  max-height: 280px;
  overflow: auto;
  border: 1px solid rgba(201, 160, 99, 0.54);
  background:
    linear-gradient(180deg, rgba(25, 25, 22, 0.98), rgba(8, 10, 10, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.custom-select.is-open .custom-select__list {
  display: grid;
}

.custom-select__option {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(201, 160, 99, 0.16);
  background: transparent;
  color: var(--cream);
  padding: 0 14px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.custom-select__option:last-child {
  border-bottom: 0;
}

.custom-select__option:hover,
.custom-select__option:focus,
.custom-select__option.is-selected {
  background: rgba(201, 160, 99, 0.16);
  color: var(--gold-bright);
  outline: none;
}

.custom-select__option:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.language-switcher .custom-select {
  min-width: 72px;
}

.language-switcher .custom-select__button {
  min-height: 40px;
  padding: 0 34px 0 12px;
  background: rgba(7, 9, 10, 0.75);
  font-size: 13px;
  font-weight: 800;
}

.language-switcher .custom-select__button::after {
  right: 13px;
  width: 7px;
  height: 7px;
}

.language-switcher .custom-select__list {
  left: auto;
  min-width: 86px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid var(--gold);
  padding: 0 22px;
  color: var(--cream);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: rgba(201, 160, 99, 0.12);
  outline: 1px solid rgba(243, 207, 139, 0.72);
  outline-offset: 3px;
}

.button--gold {
  color: #15100a;
  background: linear-gradient(135deg, #f3cf8b, #b8793c);
  border-color: #d5ad69;
  box-shadow: 0 12px 28px rgba(174, 112, 54, 0.26);
}

.button--gold:hover,
.button--gold:focus {
  color: #100c07;
  background: linear-gradient(135deg, #ffe0a0, #c48a49);
}

.section--paper .button:not(.button--gold),
.split.section--paper .button:not(.button--gold) {
  border-color: #9b6a3e;
  background: rgba(201, 160, 99, 0.1);
  color: #24170d;
}

.section--paper .button:not(.button--gold):hover,
.section--paper .button:not(.button--gold):focus,
.split.section--paper .button:not(.button--gold):hover,
.split.section--paper .button:not(.button--gold):focus {
  background: #9b6a3e;
  color: #fff7ec;
  outline-color: rgba(155, 106, 62, 0.42);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 10, 0.7);
  color: var(--cream);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  padding: 56px 0 42px;
  background: #050606;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center 42%;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.92) 0%, rgba(5, 6, 6, 0.7) 34%, rgba(5, 6, 6, 0.24) 72%, rgba(5, 6, 6, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 6, 6, 0.72) 0%, rgba(5, 6, 6, 0.06) 46%);
  content: "";
}

.hero__content {
  width: min(650px, 100%);
  max-width: 100%;
  min-width: 0;
}

.hero__brand {
  width: min(330px, 76vw);
  margin: 0 0 16px -6px;
}

.hero h1 {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero__subtitle {
  max-width: min(540px, 100%);
  margin: 0 0 16px;
  color: #fff7ec;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 35px);
  line-height: 1.1;
  overflow-wrap: break-word;
}

.ornament {
  width: 330px;
  height: 1px;
  margin: 20px 0 18px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px auto 0;
  border: 1px solid var(--gold);
  background: var(--bg);
  transform: rotate(45deg);
  content: "";
}

.hero__body {
  max-width: min(560px, 100%);
  margin: 0 0 24px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 23px);
  font-style: italic;
  line-height: 1.25;
  overflow-wrap: break-word;
}

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

.section {
  position: relative;
  padding: 78px 0;
}

.section--dark {
  background: var(--bg);
}

.section--paper {
  background: var(--paper);
  color: #20170f;
}

.section-title {
  margin: 0 0 32px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title--dark {
  color: #9b6a3e;
}

.section-intro {
  max-width: 760px;
  margin: -12px auto 34px;
  color: var(--muted);
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
}

.section-intro--dark {
  color: #4b4036;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split--reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  min-width: 0;
  padding: 56px max(40px, calc((100vw - 1180px) / 2)) 56px max(40px, calc((100vw - 1180px) / 2));
}

.split__content h2 {
  margin: 0 0 22px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.split__content p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--muted);
}

.split.section--paper .split__content h2 {
  color: #20170f;
}

.split.section--paper .split__content p {
  color: #4b4036;
}

.split__media {
  min-height: 390px;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.service-card {
  height: 100%;
  min-height: 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  background: #111;
  overflow: hidden;
}

.service-card__image {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 7 / 6;
  min-height: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.service-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
  content: "";
}

.service-card__body {
  flex: 1 1 auto;
  min-height: 150px;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.86), #0b0c0c);
}

.service-card h3,
.package-card h3,
.review-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
}

.service-card h3 {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 22px;
  line-height: 1.06;
}

.service-card__icon {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1;
}

.package-card h3 {
  min-height: 52px;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.feature {
  min-height: 160px;
  min-width: 0;
  padding: 24px 16px;
  text-align: center;
  border-left: 1px solid rgba(111, 98, 84, 0.22);
}

.feature:first-child {
  border-left: 0;
}

.feature__mark {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  border: 1px solid #a6784b;
  transform: rotate(45deg);
}

.feature__mark--emoji {
  width: auto;
  height: auto;
  border: 0;
  color: #8b603a;
  font-size: 30px;
  line-height: 1;
  transform: none;
}

.feature h3 {
  min-height: 42px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: #4b4036;
  font-size: 13px;
  line-height: 1.35;
}

.packages-wrap {
  display: block;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.package-card {
  display: flex;
  min-height: 560px;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 26px 18px 22px;
  background: linear-gradient(180deg, #111313, #070808);
}

.package-card__badge {
  display: flex;
  align-items: flex-start;
  min-height: 28px;
  margin: 8px 0 0;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.package-card__badge--empty {
  visibility: hidden;
}

.package-card__from {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
}

.package-card__price {
  margin: 0 0 18px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-card li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-width: 0;
  padding-left: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.package-card li::before {
  content: none;
}

.package-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.package-feature__svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.package-card .button {
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
}

.packages-image {
  display: none;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.packages-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section-note {
  margin: 20px 0 0;
  color: var(--gold);
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid a {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(201, 160, 99, 0.18);
  background: var(--panel);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img,
.gallery-grid a:focus img {
  transform: scale(1.04);
}

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

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

.review-card {
  min-height: 190px;
  min-width: 0;
  border: 1px solid rgba(166, 120, 75, 0.22);
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.24);
}

.review-card__stars {
  color: #9b6a3e;
  letter-spacing: 0;
}

.review-card p {
  margin: 18px 0 14px;
  color: #2d241c;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.35;
}

.review-card h3 {
  color: #8b623d;
  font-size: 15px;
}

.footer-cta {
  padding: 42px 0 34px;
  border-top: 1px solid var(--line);
  background: #060707;
}

.footer-cta__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-cta h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
}

.footer-cta p {
  margin: 0;
  color: var(--muted);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-seo-links {
  margin: 24px 0 22px;
  border-top: 1px solid rgba(201, 160, 99, 0.18);
  border-bottom: 1px solid rgba(201, 160, 99, 0.18);
  padding: 18px 0;
}

.footer-seo-links h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-seo-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-seo-links a {
  border: 1px solid rgba(201, 160, 99, 0.26);
  padding: 6px 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.footer-seo-links a:hover,
.footer-seo-links a:focus {
  border-color: rgba(243, 207, 139, 0.72);
  color: var(--gold-bright);
  outline: none;
}

.footer-contacts strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 9px;
}

.floating-contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(201, 160, 99, 0.56);
  background: rgba(7, 8, 8, 0.92);
  color: var(--cream);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.floating-contact__link--primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14100b;
}

.floating-contact__link:hover,
.floating-contact__link:focus {
  color: var(--gold-bright);
  outline: none;
}

.floating-contact__link--primary:hover,
.floating-contact__link--primary:focus {
  color: #14100b;
}

.floating-contact__icon {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.copyright {
  margin-top: 26px;
  color: rgba(243, 238, 229, 0.48);
  font-size: 12px;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  background: #050606;
  overflow: hidden;
  isolation: isolate;
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--detail-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.92), rgba(5, 6, 6, 0.52) 54%, rgba(5, 6, 6, 0.28)),
    linear-gradient(0deg, rgba(5, 6, 6, 0.74), rgba(5, 6, 6, 0.1));
  content: "";
}

.detail-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
}

.detail-hero__subtitle {
  margin: 0 0 18px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.detail-hero__body {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--cream);
  font-size: 18px;
}

.book-hero {
  min-height: 460px;
}

.detail-content {
  max-width: 860px;
  color: #2b2017;
  font-size: 18px;
}

.detail-content h2,
.detail-content h3 {
  color: #8b603a;
  font-family: var(--font-display);
  line-height: 1.1;
}

.detail-content h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 52px);
}

.detail-content h3 {
  margin: 30px 0 12px;
  font-size: 30px;
}

.detail-content p,
.detail-content ul,
.detail-content ol {
  margin: 0 0 18px;
}

.detail-content li {
  margin-bottom: 8px;
}

.package-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.package-detail-list .package-feature {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  color: #3d3127;
  font-size: 16px;
  line-height: 1.45;
}

.package-detail-list .package-feature__icon {
  width: 28px;
  height: 28px;
  color: #a97543;
}

.detail-booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 34px;
  align-items: start;
}

.booking-intro {
  position: sticky;
  top: 104px;
}

.booking-intro h2 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.booking-intro p {
  color: var(--muted);
}

.booking-alert {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: rgba(201, 160, 99, 0.08);
  color: var(--cream);
}

.booking-alert--success {
  border-color: rgba(139, 190, 135, 0.56);
  background: rgba(75, 133, 75, 0.16);
}

.booking-alert--with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  padding: 22px;
  background: linear-gradient(180deg, rgba(17, 19, 19, 0.96), rgba(7, 8, 8, 0.96));
}

.booking-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 22px;
}

.booking-step h3 {
  margin: 0 0 16px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 28px;
}

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

.booking-form .form-group {
  margin: 0 0 14px;
}

.booking-label {
  display: block;
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 160, 99, 0.42);
  border-radius: 0;
  background: rgba(243, 238, 229, 0.08);
  color: var(--cream);
  padding: 12px 13px;
  font: inherit;
}

.booking-form select {
  min-height: 56px;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 52px;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%) calc(100% - 24px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%) calc(100% - 17px) 50% / 7px 7px no-repeat,
    linear-gradient(180deg, rgba(27, 27, 24, 0.98), rgba(13, 15, 15, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 230, 178, 0.02),
    0 14px 26px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.booking-form select:hover,
.booking-form select:focus {
  border-color: rgba(243, 207, 139, 0.8);
  outline: none;
  background:
    linear-gradient(45deg, transparent 50%, #ffe0a0 50%) calc(100% - 24px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, #ffe0a0 50%, transparent 50%) calc(100% - 17px) 50% / 7px 7px no-repeat,
    linear-gradient(180deg, rgba(32, 31, 27, 0.98), rgba(14, 16, 16, 0.98));
}

.booking-form select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.booking-form select option {
  color: var(--cream);
  background: #111313;
}

.booking-form textarea {
  resize: vertical;
}

.booking-calendar {
  display: grid;
  gap: 18px;
  max-width: 620px;
  border: 1px solid rgba(201, 160, 99, 0.35);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(243, 238, 229, 0.055), rgba(243, 238, 229, 0.025)),
    rgba(11, 12, 12, 0.72);
}

.booking-calendar__toolbar {
  display: grid;
  align-items: center;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
}

.booking-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 160, 99, 0.5);
  background: rgba(201, 160, 99, 0.08);
  color: var(--gold-bright);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-calendar__nav:hover,
.booking-calendar__nav:focus {
  border-color: var(--gold-bright);
  background: rgba(201, 160, 99, 0.2);
  color: var(--cream);
  outline: none;
}

.booking-calendar__nav:disabled {
  opacity: 0.32;
  cursor: default;
}

.booking-calendar__nav:disabled:hover,
.booking-calendar__nav:disabled:focus {
  border-color: rgba(201, 160, 99, 0.5);
  background: rgba(201, 160, 99, 0.08);
  color: var(--gold-bright);
}

.booking-calendar__header {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.booking-calendar__weekdays,
.booking-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-calendar__weekdays {
  gap: 6px;
  margin: 16px 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.booking-calendar__days {
  gap: 7px;
}

.booking-calendar__day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 160, 99, 0.16);
  background: rgba(243, 238, 229, 0.035);
  color: rgba(243, 238, 229, 0.62);
  font: inherit;
}

.booking-calendar__day--empty {
  border-color: transparent;
  background: transparent;
}

.booking-calendar__day.is-disabled {
  opacity: 0.34;
}

.booking-calendar__day.is-today {
  border-color: rgba(243, 207, 139, 0.44);
}

.booking-calendar__day.is-available {
  border-color: rgba(201, 160, 99, 0.55);
  background: rgba(201, 160, 99, 0.12);
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.booking-calendar__day.is-available:hover,
.booking-calendar__day.is-available:focus {
  border-color: var(--gold-bright);
  background: rgba(201, 160, 99, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.booking-calendar__day.is-selected {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(243, 207, 139, 0.28), rgba(184, 121, 60, 0.2));
  color: var(--gold-bright);
}

.booking-calendar__day-number {
  position: relative;
  z-index: 1;
}

.booking-calendar__day-dot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold-bright);
}

.booking-calendar__empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 620px;
  margin-top: 14px;
  border: 1px solid rgba(201, 160, 99, 0.25);
  padding: 14px;
  background: rgba(201, 160, 99, 0.06);
  color: var(--muted);
}

.booking-time-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.booking-choice {
  min-height: 66px;
  border: 1px solid rgba(201, 160, 99, 0.34);
  background: rgba(243, 238, 229, 0.07);
  color: var(--cream);
  padding: 10px 11px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-choice strong,
.booking-choice span {
  display: block;
}

.booking-choice strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.05;
}

.booking-choice span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.booking-choice:hover,
.booking-choice:focus,
.booking-choice.is-selected {
  border-color: var(--gold);
  background: rgba(201, 160, 99, 0.16);
  outline: none;
}

.booking-choice.is-selected strong {
  color: var(--gold-bright);
}

.booking-time-groups {
  display: grid;
  gap: 10px;
}

.booking-choice--time {
  min-height: 50px;
}

.booking-choice--time strong {
  font-family: var(--font-sans);
  font-size: 15px;
}

.booking-error {
  margin-top: 7px;
  color: #f0a5a5;
  font-size: 13px;
}

.booking-form__actions {
  display: flex;
  justify-content: flex-end;
}

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

.related-card {
  min-height: 210px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

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

.related-card span {
  display: block;
  padding: 13px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}

.seo-page-content {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: 42px;
  align-items: start;
}

.seo-page-copy {
  max-width: none;
}

.seo-page-image {
  position: sticky;
  top: 104px;
  margin: 0;
  border: 1px solid rgba(166, 120, 75, 0.24);
  background: rgba(255, 255, 255, 0.24);
  padding: 10px;
}

.seo-page-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.seo-related-card {
  display: flex;
  min-height: 0;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(201, 160, 99, 0.055);
  padding: 9px 11px;
  color: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.seo-related-card span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.seo-related-card:hover,
.seo-related-card:focus {
  border-color: var(--gold);
  background: rgba(201, 160, 99, 0.12);
  color: var(--gold-bright);
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  .services-grid,
  .packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .packages-wrap {
    grid-template-columns: 1fr;
  }

  .packages-image {
    display: none;
  }

  .detail-booking {
    grid-template-columns: 1fr;
  }

  .seo-page-content {
    grid-template-columns: 1fr;
  }

  .seo-page-image {
    position: static;
  }

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

  .booking-intro {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    background: rgba(7, 9, 10, 0.96);
  }

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

  .nav a {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(201, 160, 99, 0.14);
  }

  .site-header__actions .button {
    display: none;
  }

  .hero {
    min-height: min(660px, calc(100svh - var(--header-height)));
    padding: 54px 0 44px;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: -1;
  }

  .split__content {
    min-height: auto;
    padding: 48px 24px;
  }

  .split__media,
  .split__media img {
    min-height: 320px;
  }

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

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

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

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

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

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

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: 126px 1fr auto;
    gap: 12px;
  }

  .logo img {
    width: 118px;
  }

  .nav {
    top: var(--header-height);
  }

  .language-switcher select {
    min-width: 56px;
    padding: 8px 18px 8px 8px;
  }

  .language-switcher .custom-select {
    min-width: 64px;
  }

  .language-switcher .custom-select__button {
    min-height: 36px;
    padding: 0 30px 0 10px;
  }

  .language-switcher .custom-select__list {
    min-width: 78px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 40px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.94) 0%, rgba(5, 6, 6, 0.76) 58%, rgba(5, 6, 6, 0.42) 100%),
      linear-gradient(0deg, rgba(5, 6, 6, 0.78) 0%, rgba(5, 6, 6, 0.12) 46%);
  }

  .hero__brand {
    width: 220px;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 40px;
  }

  .hero__subtitle {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 23px;
    line-height: 1.12;
  }

  .hero__body {
    width: calc(100vw - 28px);
    max-width: 100%;
    font-size: 18px;
  }

  .split__content h2,
  .split__content p {
    width: calc(100vw - 48px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .ornament {
    width: 220px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

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

  .feature {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(111, 98, 84, 0.22);
  }

  .feature:first-child {
    border-top: 0;
  }

  .package-card {
    min-height: auto;
  }

  .package-card h3 {
    min-height: auto;
  }

  .package-detail-list {
    grid-template-columns: 1fr;
  }

  .footer-cta__grid {
    grid-template-columns: 1fr;
  }

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

  .footer-seo-links nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-related-grid {
    grid-template-columns: 1fr;
  }

  .seo-related-card {
    padding: 10px 12px;
  }

  .detail-hero {
    min-height: 500px;
    padding: 118px 0 54px;
  }

  .detail-hero h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  .book-hero h1 {
    max-width: min(100%, 300px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .book-hero .detail-hero__body {
    max-width: 28ch;
  }

  .detail-hero__subtitle {
    font-size: 24px;
  }

  .detail-content {
    font-size: 16px;
  }

  .booking-step,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-choice-grid,
  .booking-time-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-calendar {
    max-width: none;
    padding: 12px;
  }

  .booking-calendar__toolbar {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .booking-calendar__nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .booking-calendar__header {
    font-size: 24px;
  }

  .booking-calendar__weekdays {
    gap: 4px;
    font-size: 10px;
  }

  .booking-calendar__days {
    gap: 4px;
  }

  .booking-calendar__day {
    min-height: 39px;
    font-size: 14px;
  }

  .booking-calendar__day-dot {
    right: 5px;
    bottom: 5px;
  }

  .booking-calendar__empty {
    display: grid;
  }

  .booking-calendar__empty .button {
    width: 100%;
  }

  .booking-step {
    padding: 18px;
  }

  .booking-form__actions .button {
    width: 100%;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

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

  .seo-related-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal--image {
    opacity: 1;
    transform: none;
  }
}
