/* === Foundation === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: oklch(96% 0.012 80);
  --cream-dark: oklch(92% 0.018 75);
  --dark: oklch(16% 0.025 55);
  --dark2: oklch(30% 0.030 55);
  --gold: oklch(58% 0.11 62);
  --gold-hex: #c4936a;
  --gold-light: oklch(70% 0.09 75);
  --gold-bg: oklch(90% 0.035 78);
  --white: oklch(99% 0.005 80);
  --pad: 48px;
  --footer-bg: #140e0a;
}

@media (max-width: 768px) { :root { --pad: 20px; } }

html {
  scroll-behavior: smooth;
  background-color: var(--footer-bg);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  min-height: 100%;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* === Utilities === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity 0.9s ease; }
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.35s !important; }
.delay-4 { transition-delay: 0.5s !important; }
.delay-5 { transition-delay: 0.65s !important; }
.delay-6 { transition-delay: 0.8s !important; }

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.btn-gold {
  background: var(--gold);
  color: white;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  padding: 15px 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); }

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  text-align: center;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold); color: white; }

.section { padding: 100px var(--pad); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section--dark { background: var(--dark); }

.container { max-width: 1300px; margin: 0 auto; }
.container--narrow { max-width: 1200px; margin: 0 auto; }
.container--booking { max-width: 1000px; margin: 0 auto; }
.container--pricing { max-width: 1100px; margin: 0 auto; }

.section__header { text-align: center; margin-bottom: 60px; }
.section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  color: var(--dark);
}
.section__title--light { color: white; }
.section__title em { font-style: italic; }
.section__divider { width: 50px; height: 1px; background: var(--gold); margin: 20px auto 0; }
.section__note {
  margin-top: 16px;
  color: var(--dark2);
  font-size: 13.5px;
  font-weight: 300;
}
.section__note--light {
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* === Nav + Mobile menu === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  background: linear-gradient(to bottom, rgba(20, 14, 10, 0.65) 0%, transparent 100%);
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.site-nav.is-scrolled {
  height: 62px;
  background: rgba(246, 241, 234, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.site-nav.site-nav--solid {
  height: 62px;
  background: rgba(246, 241, 234, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-nav.site-nav--solid .site-nav__brand,
.site-nav.site-nav--solid .site-nav__link { color: var(--dark); }
.site-nav.site-nav--solid .site-nav__burger span { background: var(--dark); }
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.site-nav__logo:hover .site-nav__brand { color: var(--gold-light); }
.site-nav.is-scrolled .site-nav__logo:hover .site-nav__brand { color: var(--gold); }
.site-nav__logo-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display';
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.site-nav__brand {
  font-family: 'Playfair Display';
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.site-nav.is-scrolled .site-nav__brand { color: var(--dark); }
.site-nav__tagline {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: -2px;
}
.site-nav__links { display: flex; gap: 32px; align-items: center; }
.site-nav__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav.is-scrolled .site-nav__link { color: var(--dark); }
.site-nav__link:hover { color: var(--gold-light); }
.site-nav__burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.site-nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}
.site-nav.is-scrolled .site-nav__burger span { background: var(--dark); }
.site-nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.site-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.site-nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Playfair Display';
  color: white;
  font-size: 32px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .mob-cta {
  margin-top: 24px;
  background: var(--gold);
  color: white !important;
  font-family: 'Inter' !important;
  font-size: 13px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 40px !important;
  font-weight: 500;
}

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1.4s ease 0.8s, transform 1.4s ease 0.8s;
}
.hero__bg:not(.is-loaded) { filter: blur(12px); transform: scale(1.04); }
.hero__bg.is-loaded { filter: blur(0); transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 12, 8, 0.35) 0%, rgba(18, 12, 8, 0.18) 45%, rgba(18, 12, 8, 0.72) 100%);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.hero__title {
  font-family: 'Playfair Display';
  color: white;
  font-size: clamp(34px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.15;
  max-width: 860px;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  text-wrap: pretty;
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero__actions .btn-gold { padding: 15px 40px; letter-spacing: 0.2em; }
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* === Stats bar === */
.stats-bar {
  position: relative;
  background: var(--cream);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 0;
}
.stats-bar > * { position: relative; z-index: 1; }
.stats-bar__item {
  text-align: center;
  padding: 88px 32px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--cream-dark);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: clamp(56px, 6vw, 80px);
  color: oklch(88% 0.018 75);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stats-bar__label {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
  text-align: center;
}

/* === Benefits === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s;
}
.card:hover { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); transform: translateY(-6px); }
.card__img-wrap { height: 260px; overflow: hidden; }
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.card:hover .card__img { transform: scale(1.05); }
.card__body { padding: 28px 24px 32px; }
.card__title { font-size: 20px; font-weight: 500; margin-bottom: 10px; color: var(--dark); }
.card__desc { font-size: 14px; color: var(--dark2); line-height: 1.8; font-weight: 300; }

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__lead { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.about__title { font-size: clamp(26px, 3vw, 44px); font-weight: 400; line-height: 1.2; margin-bottom: 24px; color: var(--dark); }
.about__title em { font-style: italic; }
.about__text { color: var(--dark2); line-height: 1.85; font-size: 15px; margin-bottom: 20px; font-weight: 300; }
.about__highlights { display: flex; gap: 40px; flex-wrap: wrap; }
.about__highlight-line { width: 28px; height: 1px; background: var(--gold); margin-bottom: 10px; }
.about__highlight-title { font-size: 12px; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.about__highlight-sub { font-size: 11px; color: var(--dark2); font-weight: 300; }
.about__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about__photos img { width: 100%; object-fit: cover; display: block; }
.about__photos img:first-child { grid-column: 1 / -1; height: 280px; }
.about__photos img:not(:first-child) { height: 180px; }

/* === Rooms === */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s;
  overflow: hidden;
}
.room-card:hover { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); transform: translateY(-6px); }
.room-card__media { position: relative; overflow: hidden; }
.room-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.room-card:hover .room-card__media img { transform: scale(1.05); }
.room-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.room-card__body { padding: 22px 20px 26px; }
.room-card__body h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; color: var(--dark); line-height: 1.3; }
.room-card__body p { font-size: 13px; color: var(--dark2); line-height: 1.7; margin-bottom: 14px; font-weight: 300; }
.room-card__features { list-style: none; margin-bottom: 18px; }
.room-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 12px;
  color: var(--dark2);
  font-weight: 300;
}
.room-card__features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}
.room-card__actions { display: flex; gap: 8px; }
.room-card__actions .btn-outline-gold { flex: 1; min-width: 0; padding: 10px 8px; letter-spacing: 0.1em; }
.section__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === Room detail page === */
.room-detail__hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: 78px;
}
.room-detail__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 12, 8, 0.35) 0%, rgba(18, 12, 8, 0.65) 100%);
}
.room-detail__hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 60px;
}
.room-detail__hero-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.room-detail__hero-title {
  color: white;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.room-detail__breadcrumb {
  background: var(--dark);
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}
.room-detail__breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.room-detail__breadcrumb a:hover { color: var(--gold-light); }
.room-detail__breadcrumb-sep { color: rgba(255, 255, 255, 0.2); }
.room-detail__breadcrumb-current { color: var(--gold-light); }
.room-detail__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  padding: 80px var(--pad);
}
.room-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark2);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-bottom: 36px;
}
.room-detail__back::before { content: '←'; font-size: 16px; }
.room-detail__back:hover { color: var(--gold); }
.room-detail__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.room-detail__subtitle {
  font-size: 13px;
  color: var(--dark2);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.room-detail__desc {
  font-size: 15.5px;
  color: var(--dark2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}
.room-detail__beds {
  background: var(--gold-bg);
  padding: 22px 24px;
  margin-bottom: 32px;
  border-left: 3px solid var(--gold);
}
.room-detail__beds-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.room-detail__beds-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
  font-weight: 300;
}
.room-detail__features-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark2);
  margin-bottom: 16px;
  font-weight: 500;
}
.room-detail__features-list { list-style: none; }
.room-detail__features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 13.5px;
  color: var(--dark2);
  font-weight: 300;
}
.room-detail__features-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0;
}
.room-detail__sidebar { position: sticky; top: 90px; }
.room-detail__card { margin-bottom: 16px; }
.room-detail__card--dark { background: var(--dark); padding: 32px; }
.room-detail__card--info { background: var(--cream-dark); padding: 24px; }
.room-detail__card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.room-detail__price { margin-bottom: 24px; }
.room-detail__price-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.1;
}
.room-detail__price-note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}
.room-detail__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
  letter-spacing: 0.18em;
}
.room-detail__pricing-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.room-detail__pricing-link:hover { color: var(--gold-light); }
.room-detail__info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
}
.room-detail__info-row--last { border-bottom: none; }
.room-detail__info-key { color: var(--dark2); font-weight: 300; }
.room-detail__info-val { color: var(--dark); font-weight: 400; text-align: right; }
.room-detail__others { border-top: 1px solid var(--cream-dark); }
.room-detail__others-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 32px;
}
.room-detail__others-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.room-detail__other-card {
  background: var(--cream);
  padding: 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.room-detail__other-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
}
.room-detail__other-card--soon {
  opacity: 0.72;
  cursor: default;
}
.room-detail__other-card--soon:hover {
  border-bottom-color: transparent;
  transform: none;
}
.room-detail__other-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.room-detail__other-sub {
  display: block;
  font-size: 11.5px;
  color: var(--dark2);
  font-weight: 300;
}

/* === Cenník === */
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.pricing__tab {
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 12px 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.pricing__tab.is-active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.pricing__panel[hidden] { display: none; }
.pricing__seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.pricing__season-card {
  position: relative;
  padding: 36px 40px;
  overflow: hidden;
}
.pricing__season-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pricing__season-card--regular {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing__season-card--regular::before {
  background: radial-gradient(ellipse 85% 65% at 50% -15%, rgba(255, 255, 255, 0.1), transparent 58%);
}
.pricing__season-card--active {
  background: rgba(196, 147, 106, 0.14);
  border: 1px solid rgba(196, 147, 106, 0.4);
}
.pricing__season-card--active::before {
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(255, 255, 255, 0.14), transparent 55%);
}
.pricing__season-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.pricing__season-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
}
.pricing__season-card--regular .pricing__season-label { color: rgba(255, 255, 255, 0.65); }
.pricing__season-card--active .pricing__season-label { color: var(--gold-light); }
.pricing__season-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 8px;
  line-height: 1;
}
.pricing__season-dates {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.pricing__price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.pricing__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing__price-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.pricing__price-persons {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.03em;
  font-weight: 500;
}
.pricing__price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing__price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: white;
  font-weight: 400;
  line-height: 1;
}
.pricing__price-unit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}
.pricing__notes {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 40px;
  margin-bottom: 32px;
}
.pricing__notes-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.pricing__notes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}
.pricing__notes-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-weight: 400;
}
.pricing__notes-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  flex-shrink: 0;
  margin-top: 7px;
}
.pricing__loyalty {
  border: 1px solid var(--gold);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pricing__loyalty-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: white;
  font-weight: 400;
  margin-bottom: 4px;
}
.pricing__loyalty-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.pricing__loyalty-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.pricing--page {
  padding-top: 120px;
}
.pricing-page__back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.pricing-page__back:hover { color: var(--gold); }
.pricing-page__cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.pricing-page__cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pricing-page__cta-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.pricing-page__cta-text {
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}
.pricing-page__cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.pricing-page__cta-actions .btn-gold,
.pricing-page__cta-actions .btn-outline-gold,
.content-page__actions .btn-gold,
.content-page__actions .btn-outline-gold {
  width: 100%;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
  box-sizing: border-box;
}
.pricing-page__cta-actions .btn-gold,
.content-page__actions .btn-gold {
  border: 1px solid transparent;
}

/* === CTA banner === */
.cta-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(18, 12, 8, 0.62); }
.cta-banner__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
}
.cta-banner__eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.cta-banner__title {
  font-family: 'Playfair Display';
  color: white;
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
}
.cta-banner__title em { font-style: italic; }
.cta-banner__content .btn-gold { padding: 16px 48px; letter-spacing: 0.2em; }

/* === Services === */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; }
.service-row {
  display: grid;
  grid-template-columns: 68px 60px 1fr;
  gap: 0 24px;
  align-items: center;
  padding: 34px 36px;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.3s;
}
.service-row:nth-child(odd) { border-right: 1px solid var(--cream-dark); }
.service-row:nth-child(-n+2) { border-top: none; }
.service-row:hover { background: var(--cream); }
.service-row__num {
  font-family: 'Playfair Display';
  font-size: 42px;
  font-weight: 400;
  color: oklch(85% 0.018 72);
  line-height: 1;
  user-select: none;
  transition: color 0.3s;
}
.service-row:hover .service-row__num { color: var(--gold); }
.service-row__icon { color: oklch(65% 0.06 65); transition: color 0.3s; display: flex; align-items: center; }
.service-row:hover .service-row__icon { color: var(--gold); }
.service-row__title {
  font-family: 'Playfair Display';
  font-size: 19px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 5px;
}
.service-row__desc { font-size: 13px; color: var(--dark2); line-height: 1.7; font-weight: 300; }

/* === Location === */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location__text { color: rgba(255, 255, 255, 0.5); font-size: 15px; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.location__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.location__list-place { color: rgba(255, 255, 255, 0.6); font-size: 13.5px; font-weight: 300; }
.location__list-meta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; margin-left: 12px; }
.location__list-time { font-family: 'Playfair Display'; color: var(--gold); font-size: 17px; font-weight: 500; }
.location__list-how { color: rgba(255, 255, 255, 0.28); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.location__address-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  margin-bottom: 20px;
}
.location__address-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.location__address-street { font-family: 'Playfair Display'; font-size: 20px; color: white; font-weight: 400; margin-bottom: 6px; }
.location__address-city { color: rgba(255, 255, 255, 0.42); font-size: 14px; line-height: 1.7; font-weight: 300; }
.location__photo { width: 100%; height: 260px; object-fit: cover; display: block; }

/* === Gallery + Lightbox === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 8, 0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(18, 12, 8, 0.38); }
.gallery-item span {
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover span { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 22px;
  padding: 10px 16px;
  cursor: pointer;
}
.lightbox__prev { left: 32px; }
.lightbox__next { right: 32px; }
.lightbox__counter {
  position: fixed;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* === Booking === */
.booking-form__field { margin-bottom: 16px; }
.booking-form__radio-group { margin-top: 12px; }

.booking-form label:not(.booking-form__radio):not(.booking-form__consent):not(.booking-form__date-field) {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.booking-form input:not([type="radio"]):not([type="checkbox"]),
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.booking-form input:not([type="radio"]):not([type="checkbox"]):focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--gold); }
.booking-form select { cursor: pointer; }
.booking-form select option { color: var(--dark); }
.booking-form textarea { resize: vertical; min-height: 120px; }
.booking-form__date-field {
  display: block;
  cursor: pointer;
}
.booking-form__date-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.booking-form input[type="date"] {
  position: relative;
  cursor: pointer;
  color-scheme: dark;
}
.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}
.booking-form__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.booking-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.booking-form__rooms-panel[hidden] { display: none; }
.booking-form__hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 14px;
}
.booking-form__room-rows { display: flex; flex-direction: column; gap: 8px; }
.booking-form__room-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.booking-form__room-name { font-size: 13px; color: rgba(255, 255, 255, 0.75); font-weight: 300; line-height: 1.4; }
.booking-form__room-qty {
  width: 72px;
  text-align: center;
  padding: 10px 8px;
}
.booking-form__room-rows.is-error { outline: 1px solid #c45c5c; outline-offset: 4px; }
.booking-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-weight: 300;
}
.booking-form__consent input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  padding: 0;
  border: none;
  background: none;
}
.booking-form__consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.booking-form__consent a:hover { color: var(--gold-light); }
.booking-form__row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.booking-form__row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.booking-form__radio-group { display: flex; gap: 12px; }
.booking-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
}
.booking-form__radio:has(input:checked) {
  border-color: var(--gold);
  background: rgba(196, 147, 106, 0.15);
}
.booking-form__radio input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.booking-form__radio span { font-size: 13px; line-height: 1.4; color: rgba(255, 255, 255, 0.6); font-weight: 300; }
.booking-form__radio:has(input:checked) span { color: white; font-weight: 400; }
.booking-form__submit { text-align: center; margin-top: 28px; }
.booking-form__submit .btn-gold { padding: 16px 60px; letter-spacing: 0.2em; }

/* === Status page (404, rezervácia úspešná) === */
.status-page {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.status-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.status-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 12, 8, 0.22) 0%, rgba(18, 12, 8, 0.58) 100%);
}
.status-page__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px var(--pad) 96px;
  max-width: 640px;
}
.status-page__mark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 16vw, 132px);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
  user-select: none;
}
.status-page__mark--icon {
  font-size: clamp(48px, 10vw, 72px);
  color: var(--gold);
  -webkit-text-stroke: 0;
  opacity: 1;
}
.status-page__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}
.status-page__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin-bottom: 36px;
}
.status-page__highlight { color: var(--gold); }
.status-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.status-page__actions .btn-gold,
.status-page__actions .btn-outline-white {
  padding: 15px 40px;
  letter-spacing: 0.2em;
}

/* === Legal === */
.legal-page { padding: 120px var(--pad) 80px; background: var(--cream); min-height: 60vh; }
.legal-page__inner { max-width: 720px; margin: 0 auto; }
.legal-page__back {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark2);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.legal-page__back:hover { color: var(--gold); }
.legal-page__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.legal-page__updated { font-size: 13px; color: var(--dark2); margin-bottom: 40px; }
.legal-page__section { margin-bottom: 32px; }
.legal-page__section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.legal-page__section p,
.legal-page__section li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark2);
  font-weight: 300;
}
.legal-page__section ul { padding-left: 20px; margin-top: 8px; }
.legal-page__section li { margin-bottom: 6px; }
.legal-page__section a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* === Content page (placeholder / simple subpages) === */
.content-page { padding: 120px var(--pad) 80px; background: var(--cream); min-height: 60vh; }
.content-page__inner { max-width: 640px; margin: 0 auto; }
.content-page__back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--dark2);
  text-decoration: none;
  transition: color 0.2s;
}
.content-page__back:hover { color: var(--gold); }
.content-page__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.content-page__message {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark2);
  font-weight: 300;
  margin-bottom: 28px;
}
.content-page__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 460px;
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__item { margin-bottom: 22px; display: flex; gap: 18px; }
.contact__line { width: 36px; height: 1px; background: var(--gold); margin-top: 10px; flex-shrink: 0; }
.contact__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact__value { font-size: 13.5px; color: var(--dark2); line-height: 1.7; font-weight: 300; white-space: pre-line; }
.contact__photo { width: 100%; height: 400px; object-fit: cover; display: block; margin-bottom: 16px; }
.contact__pet {
  background: var(--gold-bg);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact__pet-icon { font-size: 26px; }
.contact__pet-title { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
.contact__pet-desc { font-size: 12px; color: var(--dark2); font-weight: 300; }

/* === Footer === */
.site-footer {
  background-color: var(--footer-bg);
  padding: 56px 48px 28px;
  color: rgba(255, 255, 255, 0.38);
}
.site-footer .container { color: rgba(255, 255, 255, 0.38); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
}
.site-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.site-footer__mark {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display';
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.site-footer__name { font-family: 'Playfair Display'; color: white; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; }
.site-footer__desc { font-size: 13px; line-height: 1.85; max-width: 260px; font-weight: 300; margin-bottom: 16px; }
.site-footer__address { font-size: 12px; color: rgba(255, 255, 255, 0.28); }
.site-footer__col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list li {
  margin-bottom: 9px;
}
.site-footer__list li:last-child {
  margin-bottom: 0;
}
.site-footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
  line-height: 1.4;
}
.site-footer__link:hover { color: rgba(255, 255, 255, 0.75); }
.site-footer__item {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  line-height: 1.4;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

/* === Room detail page === */
/* Intro + pictograms are above the fold: show immediately, no empty flash before JS */
.room-page .room-page__intro.fade-up,
.room-page .room-page__pictograms.fade-up {
  opacity: 1;
  transform: none;
}

.room-page__mini-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-page__mini-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 60%;
}
.room-page__mini-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 8, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 78px var(--pad) 0;
}
.room-page__mini-header-title {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

.rooms--page {
  padding-top: 56px;
  padding-bottom: 80px;
}

.room-page__mini-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
}
.room-page__mini-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.room-page__mini-breadcrumb a:hover { color: var(--gold-light); }
.room-page__mini-breadcrumb-sep { color: rgba(255, 255, 255, 0.2); }
.room-page__mini-breadcrumb-current { color: rgba(255, 255, 255, 0.75); }

.room-page__layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0 56px;
  padding: 0 var(--pad) 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .room-page__layout { grid-template-columns: 1fr; }
  .room-page__sidebar { order: -1; }
}

.room-page__main { padding-top: 52px; }

.room-page__intro { margin-bottom: 40px; }
.room-page__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.room-page__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
}
.room-page__subtitle {
  font-size: 14px;
  color: var(--dark2);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.room-page__pictograms {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 36px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
  align-items: center;
}
.room-page__pictogram {
  display: flex;
  align-items: center;
  gap: 10px;
}
.room-page__pictogram-icon { color: var(--gold); flex-shrink: 0; }
.room-page__pictogram-value {
  font-size: 13px;
  color: var(--dark2);
  font-weight: 300;
  line-height: 1.4;
}

.room-page__photo { margin-bottom: 52px; overflow: hidden; }
.room-page__photo img {
  width: 100%;
  display: block;
  height: clamp(280px, 40vw, 480px);
  object-fit: cover;
}

.room-page__section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.room-page__description { margin-bottom: 48px; }
.room-page__description h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--dark);
}
.room-page__description p {
  font-size: 15.5px;
  line-height: 1.88;
  color: var(--dark2);
  font-weight: 300;
}
.room-page__description--extra { margin-bottom: 48px; }

.room-page__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  margin-bottom: 48px;
}
.room-page__highlight {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.room-page__highlight-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.room-page__highlight-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--dark);
  font-weight: 400;
  line-height: 1.2;
}

.room-page__facilities { margin-bottom: 52px; }
.room-page__facilities h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--dark);
}
.room-page__facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--cream-dark);
  border-left: 1px solid var(--cream-dark);
}
@media (max-width: 600px) {
  .room-page__facilities-grid { grid-template-columns: repeat(2, 1fr); }
}
.room-page__facility {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.room-page__facility-icon { color: var(--gold); flex-shrink: 0; }
.room-page__facility-text {
  font-size: 13px;
  color: var(--dark2);
  font-weight: 300;
  line-height: 1.4;
}

.room-page__divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 52px 0;
}

.room-page__gallery h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--dark);
}
.room-page__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.room-page__gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  text-align: left;
}
.room-page__gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.room-page__gallery-item:hover img { transform: scale(1.05); }
.room-page__gallery-item--wide { grid-column: span 2; }
.room-page__gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 8, 0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  pointer-events: none;
}
.room-page__gallery-item:hover .room-page__gallery-overlay { background: rgba(18, 12, 8, 0.3); }
.room-page__gallery-overlay span {
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.room-page__gallery-item:hover .room-page__gallery-overlay span { opacity: 1; }

.room-page__sidebar { padding-top: 52px; }
.room-page__sidebar-sticky {
  position: sticky;
  top: 80px;
}

.room-page__booking-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}
.room-page__booking-section { padding: 24px 28px; }
.room-page__booking-divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 0;
}

.room-page__price-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.room-page__price-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
  font-weight: 400;
}

.room-page__season-tabs { display: flex; margin-top: 20px; }
.room-page__season-tab {
  flex: 1;
  padding: 10px 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  background: var(--cream);
  color: var(--dark2);
  transition: all 0.25s;
  border-bottom: 2px solid transparent;
}
.room-page__season-tab.is-active {
  background: var(--gold-bg);
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.room-page__season-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.room-page__season-panel { display: none; padding-top: 20px; }
.room-page__season-panel.is-active { display: block; }
.room-page__season-dates {
  font-size: 12px;
  color: var(--dark2);
  margin-bottom: 20px;
  font-weight: 300;
}
.room-page__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.room-page__price-row:last-child { border-bottom: none; }
.room-page__price-persons { font-size: 14px; color: oklch(42% 0.028 55); font-weight: 400; }
.room-page__price-amount { display: flex; align-items: baseline; gap: 4px; }
.room-page__price-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--dark);
  font-weight: 400;
  line-height: 1;
}
.room-page__price-unit { font-size: 12px; color: var(--dark2); font-weight: 300; }

.room-page__price-cta { padding-top: 20px; padding-bottom: 20px; }
.room-page__price-cta .btn-gold {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.room-page__services { padding-top: 24px; padding-bottom: 24px; }
.room-page__services-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.room-page__service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 12px;
}
.room-page__service:last-child { border-bottom: none; }
.room-page__service-name { font-size: 13px; color: var(--dark); font-weight: 400; }
.room-page__service-price { font-size: 12px; color: var(--dark2); font-weight: 300; text-align: right; }
.room-page__service-price--free { color: oklch(42% 0.12 145); font-weight: 400; }

.room-page__checkin { padding-top: 20px; padding-bottom: 24px; }
.room-page__checkin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.room-page__checkin-row:not(.room-page__checkin-row--last) {
  border-bottom: 1px solid var(--cream-dark);
}
.room-page__checkin-key {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark2);
  font-weight: 400;
}
.room-page__checkin-val {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
}

.room-page__others {
  background: var(--white);
  padding: 64px var(--pad);
  border-top: 1px solid var(--cream-dark);
}
.room-page__others-inner { max-width: 1320px; margin: 0 auto; }
.room-page__others-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 32px;
}
.room-page__others-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .room-page__others-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .room-page__others-grid { grid-template-columns: 1fr; }
}
.room-page__other-card {
  background: var(--cream);
  padding: 20px;
  display: block;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
a.room-page__other-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
}
.room-page__other-card--soon {
  opacity: 0.55;
  cursor: default;
}
.room-page__other-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
  display: block;
}
.room-page__other-sub {
  font-size: 11.5px;
  color: var(--dark2);
  font-weight: 300;
  display: block;
}

.room-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.room-lightbox.is-open { display: flex; }
.room-lightbox__img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.room-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.room-lightbox__prev,
.room-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 22px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.room-lightbox__prev { left: 16px; }
.room-lightbox__next { right: 16px; }
.room-lightbox__prev:hover,
.room-lightbox__next:hover { border-color: var(--gold); }
.room-lightbox__counter {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* === Responsive === */
@media (max-width: 768px) {
  .section { padding: 60px var(--pad); }
  .section__header { margin-bottom: 40px; }

  .site-nav__brand { font-size: 15px; }
  .site-nav__tagline { display: none; }
  .site-nav__links { display: none; }
  .site-nav__burger { display: flex; }

  .hero__content { padding: 0 24px; }
  .hero__subtitle { font-size: 15px; }
  .hero__actions .btn-gold,
  .hero__actions .btn-outline-white { padding: 13px 28px; }
  .hero__scroll { display: none; }

  .status-page__content { padding: 120px var(--pad) 72px; }
  .status-page__actions { flex-direction: column; width: 100%; }
  .status-page__actions .btn-gold,
  .status-page__actions .btn-outline-white { width: 100%; padding: 13px 28px; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stats-bar__item {
    padding: 56px 16px;
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }
  .stats-bar__item:nth-child(odd) { border-right: 1px solid var(--cream-dark); }
  .stats-bar__item:nth-child(n+3) { border-bottom: none; }
  .stats-bar__number { font-size: clamp(44px, 11vw, 62px); }
  .stats-bar__label { bottom: 24px; font-size: 10px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .card:hover { transform: none; }
  .card__img-wrap { height: 220px; }
  .card__title { font-size: 18px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photos img:first-child { height: 180px; }
  .about__photos img:not(:first-child) { height: 130px; }
  .about__highlights { gap: 24px; }

  .rooms-grid { grid-template-columns: 1fr; gap: 16px; }
  .room-card:hover { transform: none; }

  .room-page__mini-header { height: 190px; }
  .room-page__mini-header-overlay { padding-top: 62px; }
  .room-page__layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 var(--pad) 56px;
  }
  .room-page__main,
  .room-page__sidebar { padding-top: 40px; }
  .room-page__sidebar { order: -1; }
  .room-page__sidebar-sticky { position: static; }
  .room-page__highlights { grid-template-columns: 1fr; }
  .room-page__facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .room-page__gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .room-page__gallery-item--wide { grid-column: span 2; }
  .room-page__others-grid { grid-template-columns: 1fr; gap: 12px; }
  .room-page__pictograms { gap: 16px 24px; }

  .pricing__tabs { margin-bottom: 36px; }
  .pricing__tab { padding: 10px 20px; font-size: 12px; }
  .pricing__seasons { grid-template-columns: 1fr; }
  .pricing__season-card { padding: 28px 24px; }
  .pricing__price-amount { font-size: 32px; }
  .pricing__notes { padding: 24px 20px; }
  .pricing__notes-list { grid-template-columns: 1fr; }
  .pricing__loyalty { padding: 20px 24px; }
  .pricing__loyalty-title { font-size: 17px; }

  .pricing--page { padding-top: 100px; }
  .pricing-page__cta-actions,
  .content-page__actions {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cta-banner { height: 320px; }
  .cta-banner__content { padding: 0 24px; }
  .cta-banner__content .btn-gold { padding: 13px 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-row {
    grid-template-columns: 48px 48px 1fr;
    gap: 0 14px;
    padding: 24px 0;
    border-right: none !important;
    border-top: 1px solid var(--cream-dark);
  }
  .service-row:first-child { border-top: none; }
  .service-row__num { font-size: 32px; }
  .service-row__title { font-size: 17px; }

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location__photo { height: 200px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-item img { height: 140px; }

  .booking-form__row-4,
  .booking-form__row-3 { grid-template-columns: 1fr 1fr; }
  .booking-form__row-4 .booking-form__date-field { grid-column: 1 / -1; }
  .booking-form__row-3 { grid-template-columns: 1fr; }
  .booking-form__room-row { grid-template-columns: 1fr; gap: 10px; }
  .booking-form__room-qty { width: 100%; }
  .booking-form__radio-group { flex-direction: column; }
  .booking-form__submit .btn-gold { width: 100%; padding: 14px 40px; }

  .content-page { padding: 100px var(--pad) 64px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__photo { height: 220px; }

  .site-footer { padding: 48px var(--pad) 24px; }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 28px;
    margin-bottom: 36px;
  }
  .site-footer__brand-col { grid-column: 1 / -1; }
  .site-footer__rooms-col { display: none; }
  .site-footer__col-title { margin-bottom: 14px; }
  .site-footer__list li { margin-bottom: 8px; }
  .site-footer__link,
  .site-footer__item { font-size: 12.5px; }
  .site-footer__bottom { flex-direction: column; }
}
