

.theme-light {
  --c-bg: #FAF7F0;
  --c-bg-2: #F2EDE3;
  --c-bg-card: #FFFFFF;
  --c-text: #1A1612;
  --c-text-dim: #6B6660;
  --c-gold: #9A7E50;
  --c-gold-hover: #B89968;
  --c-silver: #9F9A92;
  --c-divider: rgba(154, 126, 80, 0.25);
  --c-divider-strong: rgba(154, 126, 80, 0.5);
  --c-logo-accent: #1A1612;
  --c-header-bg-scrolled: rgba(250, 247, 240, 0.96);
  --c-header-border: rgba(154, 126, 80, 0.18);
}

.theme-dark {
  --c-bg: #0A0908;
  --c-bg-2: #070605;
  --c-bg-card: #131110;
  --c-text: #E8E4DA;
  --c-text-dim: #A8A8A8;
  --c-gold: #B89968;
  --c-gold-hover: #C9A877;
  --c-silver: #A8A8A8;
  --c-divider: rgba(184, 153, 104, 0.18);
  --c-divider-strong: rgba(184, 153, 104, 0.45);
  --c-logo-accent: #E8E4DA;
  --c-header-bg-scrolled: rgba(10, 9, 8, 0.96);
  --c-header-border: rgba(184, 153, 104, 0.15);
}

:root {
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-logo: 'Cinzel', serif;
  --f-body: 'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.5s ease, color 0.5s ease;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

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

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

::selection { background: var(--c-gold); color: var(--c-bg); }

.ctnr-xl { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.ctnr-lg { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.ctnr-md { max-width: 1024px; margin: 0 auto; padding: 0 24px; }

@media (min-width: 768px) {
  .ctnr-xl, .ctnr-lg, .ctnr-md { padding: 0 48px; }
}

.overline {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--c-silver);
  font-weight: 400;
}
.overline--gold { color: var(--c-gold); }

.hero-overline {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #B89968;
  font-weight: 400;
}

.display-h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--c-text);
  margin: 16px 0 0;
  transition: color 0.5s ease;
}

.display-h3 {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--c-text);
  margin: 0;
  transition: color 0.5s ease;
}

.body-prose {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-text-dim);
  font-weight: 300;
  margin: 0;
  transition: color 0.5s ease;
}
.body-prose--bright { color: var(--c-text); }

.price {
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--c-gold);
  font-weight: 300;
  line-height: 1;
  margin-top: 6px;
}

.vignette {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.vignette-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold) 50%, transparent);
  opacity: 0.5;
}
.vignette--on-image .vignette-line {
  background: linear-gradient(to right, transparent, #B89968 50%, transparent);
  opacity: 0.7;
}
.vignette svg { margin: 0 12px; }

.my-6 { margin: 24px 0; }
.my-8 { margin: 32px 0; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

.gold-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  border: 1px solid var(--c-gold);
  color: var(--c-text);
  background: transparent;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.5s, border-color 0.5s;
}
.gold-btn--sm { padding: 12px 32px; font-size: 11px; }

.gold-btn__bg {
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.gold-btn:hover .gold-btn__bg { transform: scaleX(1); }

.gold-btn__label {
  position: relative;
  z-index: 1;
  transition: color 0.5s;
}
.gold-btn:hover .gold-btn__label { color: var(--c-bg); }

.hero-content .gold-btn,
.page-hero .gold-btn {
  color: #E8E4DA;
  border-color: #B89968;
}
.hero-content .gold-btn__bg,
.page-hero .gold-btn__bg { background: #B89968; }
.hero-content .gold-btn:hover .gold-btn__label,
.page-hero .gold-btn:hover .gold-btn__label { color: #0A0908; }

.header-gradient {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.45) 50%, rgba(10,9,8,0) 100%);
  pointer-events: none;
  z-index: 40;
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 41;
  transition: all 0.7s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: var(--c-header-bg-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-header-border);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .header-inner { padding: 0 48px; } }

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.header--on-hero .menu-line { background: #E8E4DA; }
.header--on-hero .menu-btn,
.header--on-hero .menu-label,
.header--on-hero .lang-btn,
.header--on-hero .theme-toggle { color: #E8E4DA; }

.header--scrolled .menu-line { background: var(--c-text); }
.header--scrolled .menu-btn,
.header--scrolled .menu-label,
.header--scrolled .lang-btn,
.header--scrolled .theme-toggle { color: var(--c-text); }

.menu-btn { display: flex; align-items: center; gap: 12px; }
.menu-lines { display: none; flex-direction: column; gap: 5px; }
.menu-line { width: 28px; height: 1px; transition: background 0.5s; }
.menu-mobile-icon { display: flex; }
.menu-label {
  display: none;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: color 0.5s;
}

@media (min-width: 768px) {
  .menu-lines { display: flex; }
  .menu-mobile-icon { display: none; }
  .menu-label { display: inline; }
}

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

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.5s, filter 0.5s;
}
.logo-img--footer {
  height: 36px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .logo-img { height: 32px; }
  .logo-img--footer { height: 32px; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: color 0.5s, background 0.3s;
}
.theme-toggle:hover {
  background: rgba(184, 153, 104, 0.15);
  color: var(--c-gold);
}

.lang-wrap { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  transition: color 0.5s;
}
#lang-chevron { transition: transform 0.3s; }
.lang-wrap.is-open #lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.lang-wrap.is-open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--c-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-divider);
  min-width: 120px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.lang-item {
  text-align: left;
  padding: 8px 0;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-text);
  transition: color 0.3s;
}
.lang-item:hover,
.lang-item.is-active { color: var(--c-gold); }

.nav-dropdown {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.7s;
}
.nav-dropdown.is-open {
  max-height: 160px;
  opacity: 1;
}

@media (min-width: 768px) { .nav-dropdown { display: block; } }

.nav-vignette { margin-bottom: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-bottom: 32px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.header--on-hero .nav-link { color: #E8E4DA; }
.header--scrolled .nav-link { color: var(--c-text); }
.nav-link:hover,
.nav-link.is-active { color: var(--c-gold); }

.nav-link__underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 0;
  background: var(--c-gold);
  transition: width 0.5s;
}
.nav-link:hover .nav-link__underline,
.nav-link.is-active .nav-link__underline { width: 100%; }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s;
}
.mobile-menu.is-open { max-height: 600px; }

@media (min-width: 768px) { .mobile-menu { display: none; } }

.mobile-menu-inner {
  padding: 8px 24px 32px;
  background: var(--c-bg-card);
}

.mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-divider);
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-text);
}
.mobile-link.is-active { color: var(--c-gold); }

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.wa-float:hover {
  background: var(--c-gold);
  color: var(--c-bg);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

#restoplace-wrapper-btn { display: none !important; }

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0A0908;
}

.hero-carousel { height: 100vh; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-carousel--has-video .carousel-slide,
.hero-carousel--has-video .carousel-dots { display: none; }
.hero-carousel--has-video .carousel-overlay { z-index: 2; }
.hero-carousel--has-video .hero-content { z-index: 3; position: relative; }

@media (max-width: 768px) {
  .hero-video { display: none !important; }
  .hero-carousel--has-video .carousel-slide,
  .hero-carousel--has-video .carousel-dots { display: block; }
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2000ms ease-in-out, transform 8000ms ease-out;
}
.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1.04);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.2) 30%, rgba(10,9,8,0.2) 60%, rgba(10,9,8,0.8) 100%);
  z-index: 5;
}

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.carousel-dot {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  transition: all 0.7s;
  padding: 0;
}
.carousel-dot.is-active {
  width: 48px;
  background: #B89968;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 10;
  color: #E8E4DA;
}
.hero-content .hero-overline { margin-bottom: 32px; }

.hero-title {
  font-family: var(--f-logo);
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  color: #E8E4DA;
  padding-left: 0.28em;
  line-height: 1;
  margin: 0;
}

.hero-tagline-wrap {
  margin-top: 32px;
  max-width: 580px;
}
.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: #E8E4DA;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(250%); }
}

.scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 64px;
  position: relative;
  overflow: hidden;
  background: rgba(184,153,104,0.2);
}
.scroll-line__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #B89968;
  animation: scrollHint 2.4s ease-in-out infinite;
}

.section {
  padding: 80px 0;
  background: var(--c-bg);
  transition: background 0.5s ease;
}
.section--lg { padding: 64px 0; }

@media (min-width: 768px) { .section--lg { padding: 80px 0; } }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.prose-stack > * + * { margin-top: 24px; }

.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-divider-strong);
}
@media (min-width: 640px) { .facility-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .facility-grid { grid-template-columns: repeat(4, 1fr); } }

.facility-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  background: #0A0908;
  display: block;
}
.facility-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s;
}
.facility-card:hover .facility-card__image { transform: scale(1.08); }

.facility-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.1) 0%, rgba(10,9,8,0.45) 60%, rgba(10,9,8,0.92) 100%);
}

.facility-card__content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #E8E4DA;
}

.facility-card__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 300;
  color: #E8E4DA;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}
.facility-card__desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.7;
  color: #E8E4DA;
  font-weight: 300;
  margin: 16px 0 0;
  opacity: 0.85;
}
.facility-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid #B89968;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E8E4DA;
  align-self: flex-start;
}

.map-section-wrap {
  background: var(--c-bg);
  padding: 96px 0;
  transition: background 0.5s ease;
}
@media (max-width: 768px) {
  .map-section-wrap { padding: 64px 0; }
}

.map-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-stack-head {
  text-align: center;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-value {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-text);
  font-weight: 300;
  margin-top: 4px;
  transition: color 0.5s;
}
.contact-secondary {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-silver);
  font-weight: 300;
  margin-top: 4px;
}
.map-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.map-buttons--center {
  justify-content: center;
  margin-top: 32px;
}
.map-buttons--center .gold-btn--sm {
  min-width: 240px;
}

.map-info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
  padding-top: 56px;
  border-top: 1px solid var(--c-divider);
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .map-info-row { grid-template-columns: repeat(3, 1fr); }
}
.map-info-item .contact-value { font-size: 1.15rem; }

.map-visual {
  position: relative;
  min-height: 500px;
  background: var(--c-bg-2);
  overflow: hidden;
}
@media (min-width: 768px) { .map-visual { min-height: 600px; } }

.map-visual--wide {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--c-divider);
}
@media (min-width: 768px) {
  .map-visual--wide { min-height: 500px; }
}

.map-visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
@media (min-width: 768px) {
  .map-visual iframe { min-height: 500px; }
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10,9,8,0.3);
}
.map-placeholder__text {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: #E8E4DA;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  padding: 40px 60px;
  background: rgba(10,9,8,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184,153,104,0.35);
}

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  color: #E8E4DA;
}
.page-hero-content { width: 100%; }
.page-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  color: #E8E4DA;
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
}
.page-hero-tagline {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: #A8A8A8;
  line-height: 1.6;
  max-width: 580px;
  margin: 24px 0 0;
}

.rooms-stack {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media (min-width: 768px) { .rooms-stack { gap: 128px; } }

.room-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .room-row { grid-template-columns: 1fr 1fr; gap: 80px; }
  .room-row--reverse > .room-image-wrap { order: 2; }
  .room-row--reverse > .room-info { order: 1; }
}

.room-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 2s;
}
.room-row:hover .room-image { transform: scale(1.05); }

.room-number {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.room-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.venues-stack {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media (min-width: 768px) { .venues-stack { gap: 128px; } }

.venue-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .venue-row { grid-template-columns: 7fr 5fr; gap: 64px; }
  .venue-row--reverse > .venue-image-wrap { order: 2; }
  .venue-row--reverse > .venue-info { order: 1; }
}

.venue-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.venue-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 3s;
}
.venue-row:hover .venue-image { transform: scale(1.05); }

.venue-image-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,153,104,0.55);
}
.venue-number {
  font-family: var(--f-logo);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #E8E4DA;
}
.venue-image-subtitle {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #B89968;
}
.venue-subtitle {
  font-family: var(--f-logo);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-left: 16px;
  vertical-align: middle;
}
.venue-tagline {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-gold);
  font-weight: 300;
  margin: 0 0 20px;
}

.banquet-carousel { height: 70vh; }

.banquet-hero-caption {
  position: absolute;
  bottom: 80px;
  left: 48px;
  right: 48px;
  z-index: 10;
}
.banquet-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #E8E4DA;
  letter-spacing: 0.02em;
  margin: 8px 0 0;
}

.banquet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .banquet-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.capacity-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.capacity-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.capacity-number {
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--c-gold);
  font-weight: 300;
  min-width: 110px;
  line-height: 1;
}
.capacity-label {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-silver);
  font-weight: 300;
  margin-top: 4px;
}

.restoplace-card {
  padding: 40px;
  border: 1px solid var(--c-divider-strong);
  background: var(--c-bg-card);
  transition: background 0.5s, border-color 0.5s;
}
.restoplace-title {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--c-text);
  margin: 0 0 24px;
  line-height: 1.2;
}

.banquet-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.banquet-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-text);
}
.banquet-features li:last-child { margin-bottom: 0; }
.banquet-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--c-gold);
  transform: rotate(45deg);
  opacity: 0.7;
}

.manager-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(184,153,104,0.08);
  border: 1px solid var(--c-divider);
  transition: background 0.3s, border-color 0.3s;
}
.manager-card--link {
  text-decoration: none;
  cursor: pointer;
}
.manager-card--link:hover {
  background: rgba(184,153,104,0.15);
  border-color: var(--c-gold);
}
.manager-value {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.conference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .conference-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .conference-text { order: 1; }
  .conference-image-wrap { order: 2; }
}
.conference-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.conference-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contacts-page {
  padding: 160px 0 96px;
  min-height: 100vh;
  background: var(--c-bg);
  transition: background 0.5s ease;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .contacts-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (min-width: 1024px) {
  .contacts-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.about-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-prose .body-prose { margin-bottom: 24px; }
.about-prose .body-prose:last-child { margin-bottom: 0; }

.contact-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-divider);
  transition: background 0.5s, border-color 0.5s;
}
.contact-card > div:first-child { display: inline-block; }

.contact-value--link {
  display: inline-block;
  color: var(--c-text);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.contact-value--link:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

.contact-card--list { text-align: center; }
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-divider);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.contact-row-value {
  font-family: var(--f-body);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--c-text);
  transition: color 0.3s;
}
.contact-row-value:hover { color: var(--c-gold); }

.services-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
@media (min-width: 768px) {
  .services-intro { margin-bottom: 56px; }
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.services-grid > .service-card {
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 640px) {
  .services-grid { gap: 40px; }
  .services-grid > .service-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  .services-grid { gap: 48px; }
  .services-grid > .service-card {
    flex: 0 0 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
  }
}

.service-card {
  position: relative;
  background: var(--c-bg-2);
  border: 1px solid var(--c-divider);
  padding: 48px 36px 40px;
  text-align: center;
  transition: background 0.5s, border-color 0.5s, transform 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
}

.service-card-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--c-text-dim);
}

.service-icon {
  color: var(--c-gold);
  margin-bottom: 24px;
}

.service-name {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0 0 8px;
  line-height: 1.2;
}

.service-subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--c-gold);
  margin: 0;
}

.service-divider {
  width: 32px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.5;
  margin: 24px auto;
}

.service-desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--c-text-dim);
  margin: 0 0 24px;
  flex: 1;
}

.service-meta-row {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--c-text-dim);
  margin-bottom: 16px;
}
.service-meta-row .overline {
  display: inline-block;
  margin-right: 8px;
  color: var(--c-gold);
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
  width: 100%;
}

.service-phone {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-text);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.service-phone:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

.service-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
  transition: background 0.3s, color 0.3s;
}
.service-wa:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

.footer {
  padding: 80px 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-divider);
  transition: background 0.5s ease, border-color 0.5s ease;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-tagline {
  margin-top: 24px;
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--c-silver);
  font-weight: 300;
  line-height: 1.6;
}

.footer-social {
  margin-top: 24px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-text);
  transition: color 0.3s;
}
.social-link:hover { color: var(--c-gold); }
.social-link svg { color: var(--c-gold); flex-shrink: 0; }
.footer-link {
  display: block;
  padding: 4px 0;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
  font-weight: 300;
  text-align: left;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--c-gold); }

.footer-info {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
  font-weight: 300;
  line-height: 2;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copy {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-silver);
  font-weight: 300;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.modal--open { display: flex; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFade 0.3s ease;
}
.modal-window {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--c-bg);
  border: 1px solid var(--c-divider-strong);
  padding: 48px 40px 40px;
  margin: auto;
  animation: modalSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 640px) {
  .modal-window { padding: 40px 24px 32px; }
  .modal { padding: 20px 12px; }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-divider);
  background: transparent;
  color: var(--c-text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.modal-close:hover { color: var(--c-gold); border-color: var(--c-gold); }

.modal-head { text-align: center; margin-bottom: 32px; }
.modal-title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 12px 0 12px;
  line-height: 1.2;
}
.modal-subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--c-text-dim);
  margin: 0;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 520px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid var(--c-divider-strong);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-text);
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(184, 153, 104, 0.04);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid,
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #c94f3c;
  background: rgba(201, 79, 60, 0.04);
}
.form-field input:user-invalid:focus,
.form-field select:user-invalid:focus,
.form-field textarea:user-invalid:focus {
  border-color: #c94f3c;
}
.form-field textarea { resize: vertical; min-height: 80px; font-family: var(--f-body); }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A7E50' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
}

.form-field select option {
  color: #1a1612;
  background: #ffffff;
  font-weight: 400;
  padding: 8px;
}

.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
}
.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.form-checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--c-divider-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.form-checkbox-box::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--c-gold);
  border-bottom: 1.5px solid var(--c-gold);
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.2s;
}
.form-checkbox input:checked ~ .form-checkbox-box {
  border-color: var(--c-gold);
  background: rgba(184, 153, 104, 0.06);
}
.form-checkbox input:checked ~ .form-checkbox-box::after { opacity: 1; }
.form-checkbox input:focus-visible ~ .form-checkbox-box {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.form-checkbox-label {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-text);
}

.form-transfer-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  margin: 4px 0 8px;
  border: 1px solid var(--c-divider);
  background: rgba(184, 153, 104, 0.02);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.form-actions--booking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 520px) {
  .form-actions--booking { grid-template-columns: 1fr 1fr; }
}
.form-actions--booking .gold-btn { width: 100%; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid var(--c-divider-strong);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.wa-btn svg { color: var(--c-gold); }
.wa-btn:hover {
  border-color: var(--c-gold);
  background: rgba(184, 153, 104, 0.05);
}

.booking-success {
  text-align: center;
  padding: 24px 0;
}
.booking-success-icon {
  color: var(--c-gold);
  margin-bottom: 24px;
  display: inline-block;
}
.booking-success-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0 0 16px;
}
.booking-success-text {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-dim);
  margin: 0 0 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.text-btn {
  background: transparent;
  border: none;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  cursor: pointer;
  padding: 12px 8px;
  transition: color 0.3s;
}
.text-btn:hover { color: var(--c-gold); }

.form-disclaimer {
  font-family: var(--f-body);
  font-size: 11px;
  line-height: 1.6;
  color: var(--c-text-dim);
  margin: 0;
  text-align: center;
  border-top: 1px solid var(--c-divider);
  padding-top: 20px;
}

@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page {
  display: none;
}
.page--active {
  display: block;
  animation: fadeUp 0.8s ease-out;
}

.img-skeleton {
  background: linear-gradient(90deg, rgba(184,153,104,0.05), rgba(184,153,104,0.15), rgba(184,153,104,0.05));
  background-size: 200% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.hero-overline--prominent {
  font-weight: 600;
  letter-spacing: 0.5em;

  padding-left: 0.5em;
  color: #F0D9A8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.4);
  transform: translateY(-12px);
}
@media (min-width: 768px) {
  .hero-overline--prominent { transform: translateY(-20px); }
}
.hero-content .hero-overline--prominent { margin-bottom: 24px; }

.overline--centered {
  display: inline-block;
}

.section--tight-top {
  padding-top: 32px;
}
@media (min-width: 768px) {
  .section--tight-top { padding-top: 48px; }
}
.section--tight-bottom {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .section--tight-bottom { padding-bottom: 40px; }
}

.map-section-wrap--tight {
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  .map-section-wrap--tight { padding-bottom: 40px; }
}
.map-section-wrap--tight-top {
  padding-top: 48px;
}
@media (max-width: 768px) {
  .map-section-wrap--tight-top { padding-top: 32px; }
}

.room-info,
.venue-info {
  text-align: center;
}
.room-info .vignette,
.venue-info .vignette {
  justify-content: center;
}
.room-info .room-bottom {
  justify-content: center;
  align-items: center;
}
.venue-info .venue-tagline,
.venue-info .body-prose {
  text-align: center;
}
@media (min-width: 768px) {

  .room-info .body-prose,
  .venue-info .body-prose {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
  }
}

.conference-text--centered {
  text-align: center;
}
.conference-text--centered .vignette {
  justify-content: center;
}
.capacity-stack--centered {
  align-items: center;
}
.capacity-stack--centered .capacity-row {
  justify-content: center;
}

.room-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.room-gallery-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.room-gallery-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.room-gallery-slide .room-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 2s;
}
.room-row:hover .room-gallery-slide.is-active .room-image {
  transform: scale(1.04);
}

.room-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(10, 9, 8, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}
.room-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.room-gallery-dot.is-active {
  background: #E8C98D;
  transform: scale(1.3);
}

.room-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.35);
  color: #E8E4DA;
  border: 1px solid rgba(232, 201, 141, 0.35);
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.room-gallery-arrow:hover { background: rgba(184, 153, 104, 0.85); color: #1A1612; }
.room-gallery-arrow--prev { left: 12px; }
.room-gallery-arrow--next { right: 12px; }
.room-image-wrap:hover .room-gallery-arrow,
.room-gallery:hover .room-gallery-arrow,
.room-gallery-arrow:focus-visible { opacity: 1; }

.room-gallery.is-single .room-gallery-dots,
.room-gallery.is-single .room-gallery-arrow {
  display: none;
}

@media (max-width: 768px) {
  .room-gallery-arrow {
    opacity: 0.7;
    width: 36px;
    height: 36px;
  }
  .room-gallery-arrow--prev { left: 8px; }
  .room-gallery-arrow--next { right: 8px; }
}

.payments-section {
  padding: 56px 0 80px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-divider);
  transition: background 0.5s ease, border-color 0.5s ease;
}
@media (max-width: 768px) {
  .payments-section { padding: 40px 0 56px; }
}

.map-stack .payments-strip {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--c-divider);
  width: 100%;
}

.payments-strip {
  text-align: center;
}
.payments-strip__title {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--c-silver);
  font-weight: 400;
  margin-bottom: 24px;
  display: inline-block;
  padding-left: 0.45em;
}
.payments-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 32px;
}
.payments-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  filter: grayscale(0.05);
  opacity: 0.95;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
.payments-logo--wide { height: 32px; }
.payments-logo--square { height: 42px; }
.payments-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}
.payments-logo svg {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 140px;
}
.payments-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .payments-logo--wide { height: 26px; }
  .payments-logo--square { height: 34px; }
}

.payments-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 14px;
  border-radius: 4px;
  color: #fff;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .payments-strip__list { gap: 16px 24px; }
}

.theme-dark .payments-logo {
  filter: grayscale(0.05) brightness(1.05);
}

.payments-strip--mini {
  margin-top: 40px;
  padding-top: 0;
  border-top: 0;
}
.payments-strip--mini .payments-strip__title {
  display: none;
}
.payments-strip--mini .payments-strip__list {
  gap: 14px 22px;
  justify-content: center;
}
.payments-strip--mini .payments-logo--wide   { height: 22px; }
.payments-strip--mini .payments-logo--square { height: 30px; }
@media (max-width: 640px) {
  .payments-strip--mini .payments-logo--wide   { height: 18px; }
  .payments-strip--mini .payments-logo--square { height: 24px; }
  .payments-strip--mini .payments-strip__list { gap: 10px 16px; }
}

.footer { padding-top: 40px; }

.venue-image-wrap .room-gallery.venue-gallery {
  width: 100%;
  height: 100%;
  position: relative;
}
.venue-gallery .room-gallery-slide .venue-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 3s;
}

.venue-row:hover .venue-gallery .room-gallery-slide.is-active .venue-image {
  transform: scale(1.05);
}

.venue-row:hover .venue-image-wrap > .venue-image { transform: none; }

.venue-image-wrap .venue-image-meta {
  z-index: 3;
  pointer-events: none;
}

.venue-gallery .room-gallery-arrow {
  background: rgba(10, 9, 8, 0.45);
}

.conference-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.conference-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}
.conference-gallery .room-gallery-slide .conference-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.page-hero-carousel .ph-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.page-hero-carousel .ph-slide.is-active { opacity: 1; }

.page-hero--carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.4), rgba(10, 9, 8, 0.85));
  z-index: 1;
  pointer-events: none;
}
.page-hero--carousel .page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-carousel-dots {
  display: none;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  z-index: 3;
}
.page-hero-carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(232, 228, 218, 0.4);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.page-hero-carousel-dots button.is-active {
  background: #E8C98D;
  transform: scale(1.3);
}

/* =========================================================================
   PROMO-MODAL (всплывающее окно акции)
   Использует .modal, .modal-overlay, .modal-window, .modal-close
   из основной системы — наследует поведение, тёмную/светлую тему,
   анимации появления.
   ========================================================================= */
.promo-modal { z-index: 110; }                 /* поверх остального, но ниже бронь-окна нет смысла — оно ещё не открыто */
.promo-modal-window {
  max-width: 960px;
  padding: 0;                                  /* картинка идёт от края до края */
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-divider-strong);
  box-shadow:
    0 30px 80px -20px rgba(10, 9, 8, 0.45),
    0 0 0 1px rgba(154, 126, 80, 0.06);
  animation: promoModalIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes promoModalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.promo-modal-window > .modal-close {
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(250, 247, 240, 0.92);       /* кремовая подушка поверх любой картинки */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(154, 126, 80, 0.28);
  color: var(--c-text);
  z-index: 3;
}
.theme-dark .promo-modal-window > .modal-close {
  background: rgba(19, 17, 16, 0.85);          /* тёмная подушка под крестик в тёмной теме */
  border-color: rgba(184, 153, 104, 0.35);
}
.promo-modal-window > .modal-close:hover {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}
.promo-modal-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;                         /* пропорции исходного постера 966×1280 */
  min-height: 0;
  background: var(--c-bg-2);
  overflow: hidden;
}
.promo-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.promo-modal-body {
  padding: 56px 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;                         /* центрирование по горизонтали */
  text-align: center;
  position: relative;
}
/* Декоративные золотые уголки — отсылка к рамке постера, перекликается с виньетками сайта */
.promo-modal-body::before,
.promo-modal-body::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.promo-modal-body::before {
  top: 22px;
  left: 22px;
  border-top: 1px solid var(--c-gold);
  border-left: 1px solid var(--c-gold);
}
.promo-modal-body::after {
  bottom: 22px;
  right: 22px;
  border-bottom: 1px solid var(--c-gold);
  border-right: 1px solid var(--c-gold);
}
.promo-modal-window:hover .promo-modal-body::before,
.promo-modal-window:hover .promo-modal-body::after {
  opacity: 0.8;
}
.promo-modal-overline {
  margin-bottom: 18px;
  color: var(--c-gold);
}
.promo-modal-title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0 0 4px;
  line-height: 1.1;
}
.promo-modal-desc {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--c-text-dim);
  margin: 0 0 32px;
  max-width: 360px;                            /* короткая строка читается легче, особенно по центру */
  line-height: 1.55;
}
.promo-modal-cta {
  align-self: center;                          /* кнопка по центру колонки */
}

/* IMAGE-ONLY режим — когда задано только cfg.image без текста.
   Окно превращается в кликабельный баннер. */
.promo-modal.promo-modal--image-only .promo-modal-window {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.promo-modal.promo-modal--image-only .promo-modal-image-wrap {
  aspect-ratio: auto;
  min-height: 0;
}
.promo-modal-image-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
.promo-modal-image-link .promo-modal-image-wrap {
  transition: opacity 0.3s;
}
.promo-modal-image-link:hover .promo-modal-image-wrap {
  opacity: 0.92;
}

/* Адаптив */
@media (max-width: 760px) {
  .promo-modal-window {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .promo-modal-image-wrap {
    aspect-ratio: 4 / 5;                       /* чуть менее вытянутая картинка на мобильном */
  }
  .promo-modal-body {
    padding: 38px 28px 36px;
  }
  .promo-modal-body::before,
  .promo-modal-body::after {
    width: 20px;
    height: 20px;
  }
  .promo-modal-body::before { top: 16px; left: 16px; }
  .promo-modal-body::after  { bottom: 16px; right: 16px; }
  .promo-modal-cta {
    align-self: stretch;                       /* кнопка во всю ширину — удобно тапать */
    justify-content: center;
  }
  .promo-modal-window > .modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 420px) {
  .promo-modal-image-wrap {
    aspect-ratio: 4 / 5;
  }
  .promo-modal-body {
    padding: 32px 22px 32px;
  }
  .promo-modal-title {
    font-size: 1.55rem;
  }
  .promo-modal-desc {
    font-size: 1rem;
    margin-bottom: 26px;
  }
}
