 
:root {
  --bg: #050505;
  --bg-2: #080604;
  --surface: #111111;
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-3: rgba(255, 255, 255, 0.1);
  --gold: #C9A45C;
  --soft-gold: #F2D28A;
  --text: #F7F1E5;
  --muted: #B8B0A3;
  --line: rgba(201, 164, 92, 0.26);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --heading: 'Playfair Display', 'Cinzel', Georgia, serif;
  --body: 'Inter', 'Montserrat', Arial, sans-serif;
  --ease: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(201, 164, 92, 0.13), transparent 24rem),
    radial-gradient(circle at 85% 20%, rgba(242, 210, 138, 0.08), transparent 20rem),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #12100b;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

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

.section.compact {
  padding: 72px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--soft-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title.left .eyebrow::before {
  display: none;
}

.section-title h2,
.section-title h1,
h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.04;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.35rem, 6.2vw, 5.55rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.75rem, 3.9vw, 3.45rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
}

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 760px;
  color: #ded4c3;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--ease), border var(--ease), backdrop-filter var(--ease), transform var(--ease);
  border-bottom: 1px solid rgba(201, 164, 92, 0.0);
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--soft-gold);
  background: radial-gradient(circle, rgba(242, 210, 138, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 24px rgba(201, 164, 92, 0.22);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link,
.dropdown-toggle {
  border: 1px solid transparent;
  background: transparent;
  color: rgba(247, 241, 229, 0.84);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: color var(--ease), border var(--ease), background var(--ease), box-shadow var(--ease);
}

.nav-link:hover,
.nav-link.active,
.dropdown:hover .dropdown-toggle,
.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--soft-gold);
  border-color: rgba(201, 164, 92, 0.38);
  background: rgba(201, 164, 92, 0.08);
  box-shadow: 0 0 26px rgba(201, 164, 92, 0.12);
}

.dropdown {
  position: relative;
}

.dropdown-toggle i {
  margin-left: 6px;
  font-size: 0.76rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 326px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 14px;
  color: var(--muted);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--soft-gold);
  background: rgba(201, 164, 92, 0.08);
}

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

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft-gold);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

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

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

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

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(242, 210, 138, 0.68);
  border-radius: 999px;
  color: #151008;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.2);
}

.badge-18.large {
  height: 78px;
  min-width: 104px;
  border-radius: 24px;
  font-size: 1.85rem;
}

.badge-18.ghost {
  color: var(--soft-gold);
  background: rgba(201, 164, 92, 0.08);
  border-color: var(--line);
}

.gold-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 20px;
  min-height: 48px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), border var(--ease), background var(--ease), color var(--ease);
}

.gold-btn {
  color: #100c06;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  box-shadow: 0 18px 44px rgba(201, 164, 92, 0.25);
}

.outline-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.gold-btn:hover,
.outline-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(201, 164, 92, 0.22);
  border-color: rgba(242, 210, 138, 0.6);
}

.gold-btn.small,
.outline-btn.small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.54) 48%, rgba(5, 5, 5, 0.2)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 70% 40%, rgba(201, 164, 92, 0.14), transparent 26rem);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

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

.hero-content {
  max-width: 930px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  max-width: 760px;
  color: rgba(247, 241, 229, 0.82);
}

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

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.feature-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 241, 229, 0.9);
  backdrop-filter: blur(10px);
}

.feature-badges i {
  color: var(--soft-gold);
}

.hero.page-hero {
  min-height: 62vh;
}

.hero.hotel-hero {
  min-height: 82vh;
}

.luxury-card {
  position: relative;
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 210, 138, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.luxury-card:hover::before {
  opacity: 1;
}

.card-pad {
  padding: 30px;
}

.icon-pill {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  color: var(--soft-gold);
  background: rgba(201, 164, 92, 0.11);
  border: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
}

.split-section.reverse .split-image {
  order: -1;
}

.split-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.split-image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.rich-copy p {
  margin-bottom: 1.1rem;
}

.highlight-grid,
.package-grid,
.mini-grid,
.facts-grid,
.contact-grid,
.review-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.highlight-grid {
  margin-top: 30px;
}

.highlight-card,
.mini-card,
.fact-card,
.contact-card,
.value-card {
  padding: 24px;
  min-height: 100%;
}

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

.hotel-card {
  transition: transform var(--ease), border-color var(--ease);
}

.hotel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 210, 138, 0.5);
}

.hotel-card img {
  height: 265px;
  object-fit: cover;
}

.hotel-card-content {
  padding: 26px;
}

.location {
  color: var(--soft-gold);
  font-weight: 800;
  margin: 8px 0 14px;
}

.card-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--muted);
}

.card-icons span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.card-icons i {
  color: var(--gold);
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -12px 0 34px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 15px;
  transition: var(--ease);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--soft-gold);
  background: rgba(201, 164, 92, 0.1);
}

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

.package-card {
  padding: 30px;
  min-height: 100%;
}

.price {
  color: var(--soft-gold);
  font-family: var(--heading);
  font-size: 1.35rem;
  margin: 14px 0;
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.17), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(45deg, rgba(201, 164, 92, 0.08) 0 1px, transparent 1px 16px),
    #080604;
  border-block: 1px solid var(--line);
}

.feature-band-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 44px;
  align-items: center;
}

.responsible-panel {
  padding: 44px;
}

.responsible-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.responsible-icons div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.responsible-icons i {
  color: var(--soft-gold);
  font-size: 1.4rem;
}

.newsletter {
  padding: 46px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.17), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  max-width: 620px;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border var(--ease), box-shadow var(--ease);
}

.contact-form select option {
  background: #111;
  color: var(--text);
}

.newsletter-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.12);
}

.form-note,
.helper {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 10px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 28px;
}

.timeline-year {
  justify-self: end;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #130f08;
  font-weight: 900;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  box-shadow: 0 20px 48px rgba(201, 164, 92, 0.18);
  z-index: 2;
}

.timeline-content {
  padding: 24px;
}

.timeline-item:nth-child(even) .timeline-year {
  grid-column: 2;
  justify-self: start;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.review-card {
  padding: 28px;
}

.stars {
  color: var(--soft-gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 92, 0.13);
  border: 1px solid var(--line);
  color: var(--soft-gold);
  font-weight: 900;
  margin-bottom: 16px;
}

.quick-facts {
  margin-top: -58px;
  position: relative;
  z-index: 3;
}

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

.fact-card {
  padding: 20px;
}

.fact-card i {
  color: var(--soft-gold);
  margin-bottom: 12px;
}

.fact-card strong {
  display: block;
  margin-bottom: 5px;
}

.fact-card span,
.fact-card a {
  color: var(--muted);
  font-size: 0.92rem;
  word-break: break-word;
}

.hotel-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 48px;
}

.hotel-feature:nth-child(even) .hotel-feature-media {
  order: 2;
}

.hotel-feature-media { 
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hotel-feature-media img {
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.feature-list i {
  color: var(--gold);
}

.notice-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(201, 164, 92, 0.08);
  color: #d9cfbf;
}

.notice-line i {
  color: var(--soft-gold);
  margin-top: 4px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: stretch;
}

.map-frame {
  min-height: 420px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #070707;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(0.9);
}

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

.contact-form-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 36px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
}

.required {
  color: var(--soft-gold);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  margin-top: 5px;
  accent-color: var(--gold);
}

.error-message {
  color: #f4a6a6;
  min-height: 1.2em;
  font-size: 0.88rem;
}

.success-message {
  display: none;
  padding: 16px;
  border: 1px solid rgba(242, 210, 138, 0.5);
  border-radius: 16px;
  background: rgba(201, 164, 92, 0.12);
  color: var(--soft-gold);
}

.success-message.show {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 164, 92, 0.14), transparent 26rem),
    #070605;
  padding: 80px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand p {
  max-width: 440px;
}

.footer-title {
  color: var(--soft-gold);
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--soft-gold);
}

.footer-links a.active {
  color: var(--soft-gold);
}

.footer-legal a {
  color: var(--soft-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-content .luxury-card {
  padding: 30px;
}

.legal-content h2,
.legal-content h3 {
  margin-bottom: 12px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
}

.legal-list {
  margin: 16px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-list li {
  margin-bottom: 10px;
}

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

.support-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.footer-legal {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft-gold);
  background: rgba(255, 255, 255, 0.04);
}

.socials a:hover {
  background: rgba(201, 164, 92, 0.12);
}

.footer-badge-wrap {
  margin: 18px 0;
}

.cookie-settings-link {
  color: var(--soft-gold);
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  z-index: 1500;
  color: var(--text);
}

.cookie-banner {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: rgba(8, 6, 4, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  width: min(100%, 620px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #0b0907;
  box-shadow: var(--shadow);
  padding: 30px;
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-row:last-of-type {
  border-bottom: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
  min-width: 54px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: var(--ease);
}

.slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--ease);
}

.switch input:checked+.slider {
  background: rgba(201, 164, 92, 0.72);
}

.switch input:checked+.slider::before {
  transform: translateX(24px);
}

.switch input:disabled+.slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {

  .nav-menu,
  .nav-actions .gold-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav-menu.open {
    display: flex;
    position: fixed;
    inset: 82px 18px auto 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(6, 6, 6, 0.96);
    box-shadow: var(--shadow);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: 100%;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .hotel-grid,
  .package-grid,
  .contact-grid,
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-section,
  .split-section.reverse,
  .hotel-feature,
  .booking-grid,
  .feature-band-inner {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-image,
  .hotel-feature:nth-child(even) .hotel-feature-media {
    order: 0;
  }

  .split-image,
  .hotel-feature-media {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 130px 0 74px;
    min-height: 92vh;
  }

  .hero.page-hero {
    min-height: 54vh;
  }

  .hero-actions,
  .newsletter-form,
  .cookie-content,
  .form-row {
    flex-direction: column;
    display: flex;
  }

  .gold-btn,
  .outline-btn {
    width: 100%;
  }

  .hotel-grid,
  .package-grid,
  .highlight-grid,
  .mini-grid,
  .facts-grid,
  .contact-grid,
  .review-grid,
  .values-grid,
  .responsible-icons {
    grid-template-columns: 1fr;
  }

  .policy-grid,
  .support-strip {
    grid-template-columns: 1fr;
  }

  .feature-band-inner {
    gap: 24px;
  }

  .responsible-panel,
  .newsletter,
  .contact-form-wrap {
    padding: 26px;
  }

  .timeline::before {
    left: 45px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    grid-template-columns: 90px 1fr;
    gap: 18px;
  }

  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    justify-self: start;
    width: 72px;
    height: 72px;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

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

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-actions,
  .modal-actions {
    justify-content: stretch;
  }

  .cookie-actions button,
  .modal-actions button {
    width: 100%;
  }

  .badge-18.large {
    min-width: 88px;
    height: 66px;
    font-size: 1.55rem;
  }
}

.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;
}