:root {
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #5c5c5c;
  --color-accent: #b8860b;
  --color-accent-hover: #9a7209;
  --color-accent-light: #f5efe0;
  --color-border: #e8e4dc;
  --color-success: #2d6a4f;
  --color-error: #b42318;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --radius: 12px;
  --container: 1200px;
}

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

body.derzhava-theme {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); }

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

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .75rem 0;
  flex-wrap: wrap;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-text);
  text-decoration: none;
}
.site-logo-mark {
  display: block;
  line-height: 0;
}
.site-logo-mark svg {
  display: block;
  height: 58px;
  width: auto;
  overflow: visible;
}
.site-logo .custom-logo-link {
  display: block;
  line-height: 0;
}
.site-logo img,
.site-logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(210px, 48vw);
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}
.logo-sub { font-size: .75rem; color: var(--color-muted); }

.header-contacts { display: flex; gap: 1rem; flex-wrap: wrap; }
.header-phone { color: var(--color-text); font-weight: 600; white-space: nowrap; }

.header-actions {
  display: flex;
  gap: .5rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.main-nav { background: var(--color-accent-light); border-top: 1px solid var(--color-border); }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.5rem;
}
.nav-list a {
  display: block;
  padding: .75rem 0;
  color: var(--color-text);
  font-weight: 500;
  font-size: .9rem;
}
.nav-list a:hover { color: var(--color-accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline:hover { background: var(--color-accent-light); }
.btn-ghost { background: transparent; color: var(--color-text); border-color: transparent; }
.btn-ghost:hover { background: var(--color-accent-light); }
.btn-sm { padding: .4rem .9rem; font-size: .8rem; }
.btn-lg { padding: .85rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider { isolation: isolate; }
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  pointer-events: auto;
  transition: opacity 1s ease, visibility 0s;
}
.hero-slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 2;
  pointer-events: none;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide picture,
.hero-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.4) 100%);
}
.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: .6;
}
.hero-dot.is-active,
.hero-dot:hover { background: #fff; opacity: 1; }
.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 4.5rem 0;
  max-width: 720px;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  padding: .35rem .85rem;
  border-radius: 20px;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.hero h1 span { color: #f0d78c; }
.hero-content > p { font-size: 1.05rem; opacity: .9; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-booking-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.hero-booking-card h2 { margin: 0 0 1rem; font-size: 1.1rem; }
.booking-quick-form label {
  display: block;
  margin-bottom: .75rem;
  font-size: .85rem;
  font-weight: 500;
}
.booking-quick-form input {
  width: 100%;
  margin-top: .25rem;
  padding: .6rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: inherit;
}
.booking-alt { font-size: .8rem; color: var(--color-muted); text-align: center; margin-top: .75rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 .5rem;
}
.section-header p { color: var(--color-muted); margin: 0; }
.section-cta { text-align: center; margin-top: 2rem; }

/* Room cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.room-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform .2s, box-shadow .2s;
}
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.room-card-image { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; }
.room-card-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--color-accent);
  color: #fff;
  font-size: .75rem;
  padding: .25rem .6rem;
  border-radius: 4px;
}
.room-card-body { padding: 1.25rem; }
.room-card-body h3 { margin: 0 0 .5rem; font-size: 1.1rem; }
.room-card-body h3 a { color: var(--color-text); }
.room-card-body p { color: var(--color-muted); font-size: .9rem; margin: 0 0 .75rem; }
.room-card-amenities { display: flex; gap: .5rem; margin-bottom: 1rem; font-size: 1.1rem; }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.room-card-footer .btn { margin-left: auto; }
.room-card-price { font-weight: 700; font-size: 1.15rem; color: var(--color-accent); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--color-text);
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); color: var(--color-text); }
.service-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.service-card h3 { margin: 0 0 .5rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.about-text .btn { margin-top: 1rem; }
.about-full { margin-top: .5rem; }
.about-full p { margin: 0 0 1rem; line-height: 1.65; color: var(--color-muted); }
.about-excerpt p { margin: 0; line-height: 1.65; color: var(--color-muted); }
.video-embed {
  position: relative;
  width: 100%;
  margin: 0 0 1.25rem;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--color-border);
}
.feature-item strong { display: block; font-size: 1.75rem; color: var(--color-accent); }
.feature-item span { font-size: .85rem; color: var(--color-muted); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}
.review-rating {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: .5rem;
}
.review-card cite { font-style: normal; color: var(--color-muted); font-size: .9rem; }

/* CTA */
.cta-section { padding-bottom: 4rem; }
.cta-box {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-surface));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page content */
.page-content { padding: 2.5rem 0 4rem; }
.page-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  margin: 0 0 1.5rem;
}
.entry-content p { margin-bottom: 1rem; }
.entry-content ul { padding-left: 1.25rem; }
.narrow { max-width: 560px; }

/* Forms */
.derzhava-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: .9rem;
}
.derzhava-form input,
.derzhava-form select,
.derzhava-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .7rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-surface);
}
.checkbox-label { display: flex !important; gap: .5rem; align-items: flex-start; font-weight: 400 !important; }
.checkbox-label input { width: auto; margin-top: .25rem; }
.form-note { font-size: .85rem; color: var(--color-muted); }

.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.alert-success { background: #d8f3dc; color: var(--color-success); }
.alert-error { background: #fde8e8; color: var(--color-error); }

/* Booking page */
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.booking-notice, .hotel-notice {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}
.booking-room-preview {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.booking-room-kicker {
  margin: 0 0 .35rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
}
.booking-room-desc { margin: 1rem 0; line-height: 1.6; }
.booking-room-picker { margin-bottom: 2.5rem; }
.booking-room-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.booking-room-picker-card {
  display: grid;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color .2s ease, transform .2s ease;
}
.booking-room-picker-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.booking-room-picker-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.booking-room-picker-card span {
  display: grid;
  gap: .2rem;
  padding: 0 .85rem .85rem;
}
.booking-room-picker-card em {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 600;
}
.booking-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.booking-choice {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.booking-agast-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}
.booking-agast-dates label {
  display: grid;
  gap: .35rem;
  font-size: .9rem;
}
.booking-agast-dates input {
  width: 100%;
  padding: .55rem .7rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.booking-agast-status {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-radius: 8px;
  background: #f4f4f4;
}
.booking-agast-status.is-loading { background: #eef5ff; color: #1d4f91; }
.booking-agast-status.is-ok { background: #d8f3dc; color: var(--color-success); }
.booking-agast-status.is-error { background: #fff3cd; color: #7a5b00; border-left: 4px solid #c8a04d; }
.booking-agast-points {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--color-muted);
}
.booking-agast-points li { margin-bottom: .4rem; }
.external-booking-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.booking-open-wrap { margin-bottom: 1.5rem; }
.booking-form-wrap {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
@media (max-width: 900px) {
  .booking-room-preview,
  .booking-choices,
  .booking-layout {
    grid-template-columns: 1fr;
  }
}
.booking-banner {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.booking-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* Room single */
.room-single-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; }
.room-single-media img { border-radius: var(--radius); width: 100%; }
.room-price { font-size: 1.75rem; font-weight: 700; color: var(--color-accent); margin: .5rem 0 1rem; }
.room-price span { font-size: .9rem; color: var(--color-muted); font-weight: 400; }
.room-badge { background: var(--color-accent-light); display: inline-block; padding: .35rem .75rem; border-radius: 6px; font-size: .9rem; }
.amenities-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: 1rem 0; }
.amenities-list li { display: flex; gap: .5rem; align-items: center; }
.room-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.breadcrumb {
  font-size: .85rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { opacity: .5; }

/* Sticky booking (mobile) */
.sticky-booking {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  background: var(--color-accent);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  gap: .5rem;
  transition: transform .2s, background .2s;
}
.sticky-booking:hover { background: var(--color-accent-hover); color: #fff; transform: scale(1.03); }

@media (max-width: 768px) {
  .sticky-booking { display: inline-flex; }
  body.derzhava-theme { padding-bottom: 4rem; }
}

@media (min-width: 769px) {
  .sticky-booking { display: none !important; }
}

/* Reviews layout */
.reviews-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.review-form-aside {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: sticky;
  top: 100px;
}
.reviews-list { display: flex; flex-direction: column; gap: 1rem; }

/* Contacts */
.contacts-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contacts-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.contacts-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); }

/* Footer */
.site-footer {
  background: #2c2c2c;
  color: #ccc;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}
.footer-col h3 { color: #fff; margin: 0 0 1rem; font-size: 1rem; }
.footer-col a { color: #e0c878; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: .35rem; }
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.25rem 0;
  font-size: .85rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .booking-layout, .room-single-grid, .reviews-layout, .contacts-layout { grid-template-columns: 1fr; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav { display: none; }
  .main-nav.is-open { display: block; }
  .nav-list { flex-direction: column; gap: 0; }
  .review-form-aside { position: static; }
}

@media (max-width: 600px) {
  .header-contacts { width: 100%; order: 3; }
  .site-logo-mark svg { height: 48px; }
  .site-logo-img { height: 52px; }
}

/* Photo gallery */
.photo-gallery { margin-top: 2.5rem; }
.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.gallery-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
  transition: transform .2s, box-shadow .2s;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item picture,
.gallery-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-single-media .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.room-single-media .gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* Room gallery */
.room-gallery { margin-top: 0; }
.room-gallery-hero {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: zoom-in;
  background: #eee;
}
.room-gallery-hero img,
.room-gallery-hero picture,
.room-gallery-hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.room-gallery-hero:hover img,
.room-gallery-hero:hover picture img {
  transform: scale(1.02);
}
.room-gallery-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.room-gallery-count {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  pointer-events: none;
}
.room-gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.room-gallery-thumb {
  flex: 0 0 76px;
  width: 76px;
  aspect-ratio: 4/3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  scroll-snap-align: start;
  transition: border-color .2s, transform .2s;
}
.room-gallery-thumb:hover { transform: translateY(-2px); }
.room-gallery-thumb.is-active { border-color: var(--color-accent); }
.room-gallery-thumb img,
.room-gallery-thumb picture,
.room-gallery-thumb picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 0;
}
.lightbox[hidden] { display: none; }
.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: #fff;
  z-index: 2;
}
.lightbox-counter {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 4rem;
}
.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: calc(100vh - 220px);
  object-fit: contain;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox-image.is-loaded { opacity: 1; }
.lightbox-loader {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lightbox-spin .8s linear infinite;
}
.lightbox-loader[hidden] { display: none; }
@keyframes lightbox-spin { to { transform: rotate(360deg); } }
.lightbox-caption {
  margin: 0;
  padding: .75rem 1.25rem 0;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.lightbox-thumbs {
  display: flex;
  gap: .5rem;
  padding: 1rem 1.25rem 1.25rem;
  overflow-x: auto;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}
.lightbox-thumb {
  flex: 0 0 64px;
  width: 64px;
  aspect-ratio: 4/3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: .65;
  transition: opacity .2s, border-color .2s;
}
.lightbox-thumb:hover,
.lightbox-thumb.is-active {
  opacity: 1;
  border-color: var(--color-accent);
}
.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background .2s;
}
.lightbox-close {
  position: static;
  font-size: 1.75rem;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.28); }

@media (max-width: 768px) {
  .lightbox-stage { padding: 0 1rem; }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-image { max-height: calc(100vh - 260px); }
}

/* Booking modal (Agast iframe) */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
}
.booking-modal[hidden] { display: none; }
.booking-modal-dialog {
  display: flex;
  flex-direction: column;
  position: relative;
  width: min(calc(100% - 2rem), calc(var(--container) - 4rem));
  max-width: calc(var(--container) - 4rem);
  max-height: calc(100vh - 2rem);
  background: var(--color-bg, #fff);
  border-radius: var(--radius, 12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  overflow: hidden;
}
.booking-modal-close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--color-text, #1a1a1a);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}
.booking-modal-close:hover { background: #fff; }
.booking-modal-fallback {
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
}
.booking-modal-fallback p {
  margin: 0 0 1.25rem;
  color: var(--color-muted, #666);
}
@media (max-width: 768px) {
  .booking-modal { padding: 0; }
  .booking-modal-dialog {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
  .booking-modal-close { top: .5rem; right: .5rem; }
}

/* Coming soon / under construction pages */
.coming-soon {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  background:
    var(--coming-soon-bg) center / cover no-repeat,
    #1a1a1a;
  color: #fff;
  text-align: center;
}
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .55), rgba(10, 10, 10, .72));
}
.coming-soon-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.coming-soon-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
.coming-soon-text {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #f5efe0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}
body.page-template-template-coming-soon .site-main,
body.page-template-template-coming-soon-php .site-main {
  padding: 0;
}
body.page-template-template-coming-soon .sticky-booking,
body.page-template-template-coming-soon-php .sticky-booking {
  display: none;
}
@media (max-width: 768px) {
  .coming-soon { min-height: calc(100vh - 120px); padding: 3rem 1rem; }
}
