/* Penzion & Restaurace Stadion – vizuál podle Hotel Singer */
:root {
  --gold: #c5a664;
  --gold-light: #d4bc82;
  --gold-dark: #a88b4a;
  --dark: #1a1714;
  --dark-warm: #2a2520;
  --dark-medium: #3a3530;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --white: #ffffff;
  --text-dark: #1a1714;
  --text-medium: #6b6560;
  --text-light: #9b9590;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 5.5rem;
  --header-top-h: 34px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--cream-light);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--dark);
  padding: 0.6rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 16px 40px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { background: var(--gold-light); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-sm { padding: 12px 28px; }

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center {
  justify-content: center;
  width: 100%;
}
.eyebrow.center::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.serif {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.serif em {
  font-style: italic;
  font-weight: 300;
}

.heading-xl { font-size: clamp(2.6rem, 6vw, 5.5rem); }
.heading-lg { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
.heading-md { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

.body-lg {
  color: var(--text-medium);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.9;
}

.lede {
  color: var(--text-medium);
  font-size: 1rem;
  font-weight: 300;
  max-width: 36rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  color: #fff;
  background: transparent;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 34px;
  padding: 0 3rem;
  background: rgba(26, 23, 20, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
}
.header-top a:hover { color: var(--gold); }
.header-contacts { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.topbar-sep { opacity: 0.45; }
.lang-switch { display: flex; align-items: center; gap: 0.55rem; }
.lang-switch-divider {
  width: 1px;
  height: 0.7rem;
  background: rgba(255,255,255,0.28);
}
.lang-switch a.is-active { color: var(--gold); }

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 16px 3rem;
  background: transparent;
  transition: background 0.35s var(--ease);
}
.site-header.is-solid .header-bar,
.site-header.is-scrolled .header-bar {
  background: #1a1714;
}
.site-header:has(.nav-mobile.is-open) .header-bar {
  background: #1a1714;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
  max-width: 160px;
}
.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.nav-desktop a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.5rem 0;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease);
}
.header-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-mobile {
  display: none;
  background: var(--dark);
  padding: 0.5rem 1.5rem 1.5rem;
}
.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile .lang-switch { padding-top: 1rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
  box-sizing: border-box;
  padding-top: calc(var(--header-top-h) + 4.5rem);
}
.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,23,20,0.72) 0%, rgba(26,23,20,0.28) 48%, rgba(26,23,20,0.18) 100%),
    linear-gradient(180deg, rgba(26,23,20,0.28) 0%, transparent 30%, rgba(26,23,20,0.55) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 7rem;
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
  max-width: 42rem;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero h1 { margin: 1.1rem 0 1.1rem; }
.hero-copy p {
  color: rgba(255,255,255,0.86);
  font-weight: 300;
  max-width: 28rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-scroll {
  position: absolute;
  right: 1.6rem;
  bottom: 2.4rem;
  z-index: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.7);
}

/* Stats */
.stats {
  background: var(--dark);
  color: #fff;
  padding: 3.4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-value {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1;
}
.stat-label {
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Sections */
section[id],
.site-footer[id] {
  scroll-margin-top: 6.75rem;
}
.section { padding: 6rem 0; }
.section-cream { background: var(--cream-light); }
.section-cream-dark { background: var(--cream); }
.section-dark { background: var(--dark); color: #fff; }
.section-head { margin-bottom: 2.4rem; }
.section-head.center { text-align: center; }
.section-head h2 { margin-top: 0.9rem; }
.section-head .lede { margin-top: 1rem; }
.section-head.center .lede { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
}
.split-img {
  min-height: 420px;
  height: 100%;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.split-copy h2 { margin: 0.9rem 0 1.15rem; }
.split-copy p { color: var(--text-medium); font-weight: 300; }

.about-block,
.restaurant-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  min-height: 36rem;
}
.about-visual,
.restaurant-visual {
  min-height: 28rem;
  overflow: hidden;
}
.about-visual img,
.restaurant-visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}
.about-copy,
.restaurant-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 4rem;
}
.about-copy h2,
.restaurant-copy h2 { margin: 1rem 0 2rem; }
.about-copy .btn,
.restaurant-copy .btn {
  align-self: flex-start;
}
.about-signature {
  margin-top: 2.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-medium);
  font-weight: 400;
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 2.2rem;
}
.highlight-card {
  background: #fff;
  padding: 1.5rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-dark);
}
.service-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.service-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.92rem;
}
.service-list li::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  margin-top: 0.75rem;
  background: var(--gold);
  flex-shrink: 0;
}

/* Rooms */
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.room-card {
  background: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.room-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.room-card:hover .room-photo img { transform: scale(1.05); }
.room-badge {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}
.room-body { padding: 1.6rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { margin-bottom: 0.4rem; }
.room-cap {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.room-body ul { display: grid; gap: 0.45rem; color: var(--text-medium); font-size: 0.9rem; font-weight: 300; }
.room-body ul li { padding-left: 0.9rem; position: relative; }
.room-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.35rem;
  height: 1px;
  background: var(--gold);
}
.price-box {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(26,23,20,0.08);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 1.5rem;
  row-gap: 0.85rem;
  align-items: start;
}
.price-box > .room-cap,
.price-box > .price-note {
  grid-column: 1 / -1;
}
.price-box > .room-cap { margin-bottom: 0; }
.price-row {
  display: contents;
}
.price-row > :first-child {
  white-space: nowrap;
}
.price-row > :last-child {
  min-width: 0;
}
.price-row strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--gold-dark);
}
.price-row span { font-size: 0.78rem; color: var(--text-medium); }
.price-note { font-size: 0.8rem; color: var(--text-light); }
.room-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 2px 0 0;
  background: #fff;
  flex-shrink: 0;
}
.room-thumbs button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--dark-warm);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}
.room-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Overlay band */
.band {
  position: relative;
  min-height: 0;
  padding: 4.2rem 0;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,23,20,0.82) 0%, rgba(26,23,20,0.55) 48%, rgba(26,23,20,0.42) 100%);
}
.band-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
  gap: 2.4rem;
  align-items: center;
}
.band-copy {
  max-width: 36rem;
}
.band-copy h2 { margin: 0.9rem 0 1.1rem; }
.band-copy p { color: rgba(255,255,255,0.86); font-weight: 300; }
.band-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.band-photos button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--dark-warm);
  cursor: pointer;
  overflow: hidden;
}
.band-photos img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.fact-row { display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 1.4rem 0 2rem; }
.fact-row span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Lunch */
.lunch-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.day-tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1.4rem 0 1.6rem; }
.day-tab {
  border: 1px solid rgba(26,23,20,0.12);
  background: transparent;
  color: var(--text-medium);
  padding: 0.55rem 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
}
.day-tab.is-active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.menu-day { display: none; }
.menu-day.is-active { display: block; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.menu-item .name { font-weight: 500; }
.menu-item .kind {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.menu-item .price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.lunch-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* Events / activities */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.event-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.event-card:hover img { transform: scale(1.06); }
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(26,23,20,0.82));
}
.event-card div { position: relative; z-index: 1; padding: 1.4rem; }
.event-card h3 { margin-bottom: 0.4rem; }
.event-card p { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.82); }

.klubovna {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.activity-card { overflow: hidden; background: #fff; }
.activity-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.activity-card h3 {
  padding: 0.9rem 1rem 0.15rem;
  font-size: 1.15rem;
}
.activity-card p {
  padding: 0 1rem 1.1rem;
  color: var(--text-medium);
  font-size: 0.86rem;
  font-weight: 300;
}

/* Reviews */
.quote-block {
  background: var(--dark);
  color: #fff;
  padding: 8rem 0;
}
.quote-block .heading-lg { color: #fff; }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.review {
  background: rgba(255,255,255,0.04);
  padding: 2.2rem 1.8rem;
  min-height: 100%;
}
.review-meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.review p {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
  color: rgba(255,255,255,0.92);
}
.review-name {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  font-family: var(--font-sans);
}

/* CTA */
.lede-gap { margin-top: 1rem; }
.footer-contacts { margin-top: 1.2rem; }
.footer-contacts strong { color: #fff; font-weight: 500; }
.activities-head { margin-top: 4rem; }
.cta-block {
  text-align: center;
  padding: 10rem 1.5rem;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(26,23,20,0.72), rgba(26,23,20,0.72)),
    url("../wp-content/uploads/2017/12/20171129_101715_x_Deep.jpg");
  background-position: center;
  background-size: cover;
}
.cta-block h2 { margin: 0.8rem 0 1.2rem; }
.cta-block p { max-width: 34rem; margin: 0 auto 2.4rem; font-weight: 300; color: rgba(255,255,255,0.82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  gap: 2.5rem;
}
.site-footer h3 {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 500;
  font-family: var(--font-sans);
}
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-weight: 300; font-size: 0.9rem; max-width: 18rem; }
.footer-list { display: grid; gap: 0.55rem; font-size: 0.9rem; }
.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  filter: grayscale(0.3) contrast(0.95);
}
.eu-box {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  color: var(--text-light);
}
.eu-box img { height: 28px; width: auto; margin-bottom: 0.4rem; }
.footer-copy {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* Inner pages */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 9.5rem 0 4rem;
}
.page-hero h1 { margin-top: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.7rem; font-weight: 300; }

.menu-cat { margin-bottom: 2.4rem; }
.menu-cat h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2rem;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  margin-bottom: 0.6rem;
  padding-bottom: 0.3rem;
}
.menu-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
  align-items: baseline;
}
.menu-row .amount { color: var(--text-light); font-size: 0.82rem; }
.menu-row .name { font-weight: 500; }
.menu-row .desc { color: var(--text-medium); font-size: 0.84rem; font-weight: 300; }
.menu-row .price {
  font-family: var(--font-serif);
  color: var(--gold-dark);
  font-size: 1.25rem;
  white-space: nowrap;
}
.menu-subheading {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.menu-note { margin-top: 1.5rem; color: var(--text-medium); font-style: italic; font-weight: 300; }

/* Gallery */
.gallery-360-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-360-tile {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--dark);
  cursor: pointer;
  overflow: hidden;
}
.gallery-360-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.gallery-360-tile:hover img { transform: scale(1.05); opacity: 0.88; }
.gallery-360-badge {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.4rem;
}

.gallery-360-viewer[hidden],
.room-gallery-modal[hidden] { display: none !important; }
.gallery-360-viewer,
.room-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gallery-360-viewer__backdrop,
.room-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.9);
}
.gallery-360-viewer__panel,
.room-gallery-modal__dialog { position: relative; z-index: 1; width: min(1100px, 96vw); }
.gallery-360-viewer__bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #fff;
  margin-bottom: 0.8rem;
}
.gallery-360-viewer__caption { flex: 1; margin: 0; }
.gallery-360-viewer__counter { margin: 0; color: var(--text-light); }
.gallery-360-viewer__close,
.room-gallery-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.4rem;
  cursor: pointer;
}
.gallery-360-viewer__img,
.room-gallery-modal__img {
  max-height: 82vh;
  width: 100%;
  object-fit: contain;
  background: #000;
}
.gallery-360-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: var(--gold);
  cursor: pointer;
}
.gallery-360-viewer__nav--prev { left: 0.4rem; }
.gallery-360-viewer__nav--next { right: 0.4rem; }
body.gallery-360-open,
body.room-gallery-open { overflow: hidden; }

/* Admin */
.admin-body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-sans);
}
.admin-wrap { max-width: 60rem; margin: 0 auto; padding: 1.5rem 1rem 4rem; }
.admin-login { max-width: 26rem; margin: 4rem auto; padding: 0 1rem; }
.card {
  background: #fff;
  border: 1px solid rgba(26,23,20,0.08);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-topbar { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; align-items: center; }
.admin-topbar .brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
.admin-topbar .brand img { height: 2.5rem; }
label.field { display: block; margin-bottom: 1rem; }
label.field > span { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-medium); margin-bottom: 0.35rem; }
input[type="text"], input[type="password"], input[type="number"], textarea, select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(26,23,20,0.14);
  border-radius: 0;
  background: #fff;
  color: var(--dark);
}
.btn.secondary { background: transparent; color: var(--dark); border: 1px solid rgba(26,23,20,0.18); }
.btn.secondary:hover { background: var(--dark); color: #fff; }
.btn.danger { background: transparent; color: #8a2a1f; border: 1px solid #e3c4bf; }
.btn.small { padding: 0.4rem 0.8rem; font-size: 0.68rem; }
.alert { padding: 0.8rem 1rem; margin-bottom: 1.25rem; }
.alert.success { background: #ecfdf3; color: #027a48; }
.alert.error { background: #fef3f2; color: #b42318; }
.day-grid { display: grid; gap: 1rem; }
.lunch-day { border: 1px solid rgba(26,23,20,0.08); padding: 1rem; background: var(--cream); }
.lunch-day h3 { margin: 0 0 0.75rem; color: var(--gold-dark); font-family: var(--font-serif); font-size: 1.4rem; }
.inline-grid { display: grid; grid-template-columns: 1fr 7rem; gap: 0.75rem; }
.item-row { display: grid; grid-template-columns: 5rem 1fr 6rem 2.5rem; gap: 0.5rem; margin-bottom: 0.5rem; }
.item-row .desc-full { grid-column: 1 / -1; }
.cat-block { border: 1px solid rgba(26,23,20,0.08); padding: 1rem; margin-bottom: 1rem; background: var(--cream); }
.muted { color: var(--text-medium); font-size: 0.875rem; }
.tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
[hidden] { display: none !important; }

@media (max-width: 1024px) {
  :root { --header-top-h: 32px; }
  .wrap,
  .hero-copy { width: calc(100% - 2.25rem); }
  .header-top {
    height: var(--header-top-h);
    padding-inline: 1rem;
    justify-content: flex-end;
  }
  .header-contacts { display: none; }
  .header-bar { padding: 0.55rem 1rem; grid-template-columns: auto auto; }
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; justify-self: end; }
  .logo img { height: 44px; max-width: 9rem; }
  .site-header {
    background: linear-gradient(180deg, rgba(26,23,20,0.96) 0%, rgba(26,23,20,0.82) 55%, rgba(26,23,20,0) 100%);
  }
  .site-header.is-solid,
  .site-header.is-scrolled,
  .site-header:has(.nav-mobile.is-open) {
    background: #1a1714;
  }
  .split, .lunch-layout, .klubovna, .room-grid, .event-grid, .reviews, .footer-grid, .band-layout {
    grid-template-columns: 1fr;
  }
  .activity-grid, .gallery-360-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 2rem 1rem; }
  .split { gap: 2rem; }
  .split-img { min-height: 240px; }
  .lunch-photo img { min-height: 240px; }
  .hero {
    align-items: flex-start;
    min-height: 100svh;
    padding-top: calc(var(--header-top-h) + 5.1rem + env(safe-area-inset-top, 0px));
  }
  .hero-copy {
    padding-bottom: 2.8rem;
    max-width: none;
  }
  .hero h1 { margin: 0.65rem 0 0.85rem; }
  .heading-xl { font-size: clamp(1.8rem, 8.2vw, 2.55rem); }
  .page-hero { padding: calc(var(--header-top-h) + 4.4rem) 0 3rem; }
  section[id],
  .site-footer[id] { scroll-margin-top: 5.6rem; }
}

@media (max-width: 720px) {
  .wrap,
  .hero-copy { width: calc(100% - 2rem); }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; min-width: 0; padding-inline: 1.1rem; letter-spacing: 0.12em; }
  .hero-scroll { display: none; }
  .hero-copy p { max-width: none; font-size: 0.95rem; line-height: 1.65; }
  .heading-xl { font-size: clamp(1.65rem, 7.8vw, 2.2rem); }
  .section { padding: 4rem 0; }
  .band { padding: 2.6rem 0; }
  .room-body { padding: 1.25rem 1rem 1.4rem; }
  .price-box { column-gap: 0.9rem; }
  .page-hero { padding: calc(var(--header-top-h) + 4.1rem) 0 2.6rem; }
  .menu-row { grid-template-columns: 1fr auto; }
  .menu-row .amount { grid-column: 1 / -1; }
  .item-row { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; }
}
