/* ============================================
   Happy Grill & Bar — varianta 2 (světlý mediteránní)
   Paleta: krémová, terakota, zlatý ochr, hluboká olivová
   ============================================ */

:root {
  /* barvy */
  --bg:           #faf6ef;
  --bg-2:         #f1ead9;
  --surface:      #ffffff;
  --surface-2:    #f7f1e3;
  --line:         #e6dfd0;

  --text:         #1f1d12;
  --text-muted:   #6b6353;
  --text-dim:     #948a78;

  --accent:       #c8542a;          /* terakota */
  --accent-2:     #b8860b;          /* tmavší zlato pro kontrast na světlém */
  --accent-soft:  rgba(200,84,42,.10);
  --olive:        #5a6e2e;          /* hluboká olivová */

  /* typo */
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --container: 1180px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 30px 60px -25px rgba(89,71,40,.18);
  --shadow-soft: 0 10px 30px -15px rgba(89,71,40,.15);

  /* animation */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

em { font-style: italic; color: var(--accent); font-family: var(--font-serif); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--plain::before { display: none; }
.eyebrow--plain { gap: 0; }

.accent { color: var(--accent); font-style: italic; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d4a017 100%);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(200,84,42,.5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(200,84,42,.6);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.7);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: #fff;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250,246,239,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.nav__brand-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #d4a017 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__brand-mark span {
  display: inline-block;
  transform: translateY(-2px);
  margin: 0 1px;
}
.nav__brand-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .01em;
}
.nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav__links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 60px;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(200,84,42,.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(212,160,23,.22), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(90,110,46,.08), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero__bg-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(120,90,40,.025) 0,
      rgba(120,90,40,.025) 1px,
      transparent 1px,
      transparent 3px);
  opacity: .6;
}
.hero__bg-flames {
  position: absolute;
  left: 50%; bottom: -120px;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  filter: blur(90px);
  opacity: .18;
}
.hero__bg-flames span {
  position: absolute;
  border-radius: 50%;
  animation: flicker 6s var(--ease) infinite alternate;
}
.hero__bg-flames span:nth-child(1) { width: 320px; height: 320px; background: var(--accent); left: 50%; top: 30%; transform: translateX(-50%); animation-delay: 0s; }
.hero__bg-flames span:nth-child(2) { width: 220px; height: 220px; background: #d4a017; left: 30%; top: 40%; animation-delay: 1.5s; }
.hero__bg-flames span:nth-child(3) { width: 180px; height: 180px; background: var(--accent); left: 60%; top: 50%; animation-delay: 3s; opacity: .7; }
.hero__bg-flames span:nth-child(4) { width: 140px; height: 140px; background: #d4a017; left: 45%; top: 60%; animation-delay: 2s; opacity: .6; }
.hero__bg-flames span:nth-child(5) { width: 100px; height: 100px; background: #d2563a; left: 55%; top: 35%; animation-delay: 4s; opacity: .8; }

@keyframes flicker {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(10px,-12px) scale(1.05); }
  100% { transform: translate(-8px,8px) scale(.95); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 100%;
}

.hero .eyebrow { display: inline-flex; align-items: center; }
.hero__live-dot {
  width: 8px;
  height: 8px;
  background: var(--olive);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(90,110,46,.6);
  margin-right: 4px;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.85); }
}

.hero__title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 6px 0 22px;
  font-weight: 600;
  max-width: 16ch;
  color: var(--text);
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--accent) 0%, #d4a017 60%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 30px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  max-width: 680px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.hero__meta-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text);
  line-height: 1.2;
}

/* ============ SECTION SHARED ============ */
.section {
  padding: 120px 0;
  position: relative;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section__head .eyebrow { justify-content: center; display: inline-flex; }
.section__title {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.section__sub {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

/* ============ ABOUT ============ */
.about { background: var(--surface); }
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text p {
  color: var(--text-muted);
  margin: 0 0 18px;
}
.about__text .section__title { margin-bottom: 26px; }

.about__points {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.about__points li {
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 15px;
}
.about__points strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 8px;
}

.about__quote {
  position: relative;
  padding: 50px 40px;
  background:
    linear-gradient(135deg, rgba(212,160,23,.10) 0%, rgba(200,84,42,.04) 100%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about__quote::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 60%;
  background: linear-gradient(180deg, #d4a017 0%, var(--accent) 100%);
  border-radius: 0 4px 4px 0;
}
.about__quote-mark {
  width: 48px;
  height: 48px;
  fill: var(--accent);
  opacity: .35;
  margin-bottom: 12px;
}
.about__quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 22px;
  color: var(--text);
}
.about__quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ MENU ============ */
.menu { background: var(--bg); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.menu__category {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--shadow-soft);
}
.menu__category::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  transform: translate(40%, -40%);
  pointer-events: none;
}
.menu__category:hover {
  transform: translateY(-4px);
  border-color: rgba(200,84,42,.35);
  box-shadow: 0 30px 50px -25px rgba(89,71,40,.22);
}
.menu__cat-title {
  font-size: 26px;
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.menu__cat-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 50px; height: 2px;
  background: var(--accent);
}
.menu__items {
  display: grid;
  gap: 22px;
  position: relative;
}
.menu__item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}
.menu__item h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  flex: 1;
  position: relative;
}
.menu__item h4::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
  flex: 1;
  height: 0;
  border-bottom: 1px dotted var(--line);
}
.menu__price {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.menu__item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.menu__item--empty {
  opacity: .55;
}
.menu__item--empty .menu__price,
.menu__item--empty h4 {
  color: var(--text-dim);
}

.menu__note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 15px;
  margin: 0;
}

.menu__cta-wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.menu__open-btn { padding: 16px 32px; font-size: 16px; }
.menu__open-btn span {
  transition: transform .25s var(--ease);
  display: inline-block;
}
.menu__open-btn:hover span { transform: translateX(4px); }

/* ============ DAILY MENU (Google Sheets) ============ */
.daily-menu { background: var(--bg-2); }

.daily-menu__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  min-height: 200px;
  position: relative;
}

.daily-menu__col {
  flex: 1 1 240px;
  max-width: 290px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: daily-fade-in .6s var(--ease) forwards;
}
.daily-menu__col:nth-child(1) { animation-delay: 0s; }
.daily-menu__col:nth-child(2) { animation-delay: .08s; }
.daily-menu__col:nth-child(3) { animation-delay: .16s; }
.daily-menu__col:nth-child(4) { animation-delay: .24s; }

@keyframes daily-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.daily-menu__col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #d4a017 100%);
}

.daily-menu__col-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.01em;
}

.daily-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  flex: 1;
}

.daily-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text);
}
.daily-menu__item-name {
  color: var(--text);
  flex: 1;
}
.daily-menu__item-price {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.daily-menu__empty {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  margin: 0;
}

.daily-menu__state {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 20px;
  color: var(--text-muted);
  font-size: 15px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.daily-menu__state--error {
  color: #a04020;
  border-color: rgba(200,84,42,.35);
  background: rgba(200,84,42,.04);
}
.daily-menu__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.daily-menu__updated {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}
.daily-menu__updated:empty { display: none; }

@media (max-width: 540px) {
  .daily-menu__grid { gap: 14px; }
  .daily-menu__col { flex-basis: 100%; max-width: 380px; padding: 24px 22px; }
}

/* ============ MENU MODAL ============ */
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.menu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(50,40,28,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.menu-modal__panel {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 60px 120px -30px rgba(89,71,40,.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(.98);
  transition: transform .4s var(--ease);
}
.menu-modal.is-open .menu-modal__panel {
  transform: translateY(0) scale(1);
}
.menu-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.menu-modal__head .eyebrow { margin-bottom: 8px; }
.menu-modal__title {
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 0;
}
.menu-modal__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.menu-modal__close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}
.menu-modal__close svg { width: 18px; height: 18px; }

.menu-modal__body {
  padding: 36px 40px;
  overflow-y: auto;
  flex: 1;
  display: grid;
  gap: 44px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.menu-modal__body::-webkit-scrollbar { width: 10px; }
.menu-modal__body::-webkit-scrollbar-track { background: transparent; }
.menu-modal__body::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 10px;
  border: 2px solid var(--surface);
}
.menu-modal__category .menu__items {
  display: grid;
  gap: 22px;
}
.menu-modal__foot {
  padding: 18px 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  font-style: italic;
}

body.has-modal { overflow: hidden; }

@media (max-width: 720px) {
  .menu-modal { padding: 0; }
  .menu-modal__panel {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    border: 0;
  }
  .menu-modal__head { padding: 20px 24px; }
  .menu-modal__body { padding: 26px 24px; gap: 32px; }
  .menu-modal__foot { padding: 14px 24px; }
}

/* ============ GALLERY ============ */
.gallery { background: var(--surface); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg,
      transparent 0,
      transparent 14px,
      rgba(200,84,42,.06) 14px,
      rgba(200,84,42,.06) 28px),
    var(--bg-2);
  border-style: dashed;
}
.gallery__placeholder-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ============ PRESS / NAPSALI O NÁS ============ */
.press { background: var(--bg-2); }
.press__card {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px;
  background:
    linear-gradient(135deg, rgba(212,160,23,.06) 0%, rgba(200,84,42,.02) 100%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.press__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, #d4a017 100%);
}
.press__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.press__source { color: var(--accent); }
.press__sep { color: var(--line); }
.press__title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--text);
}
.press__lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 40px;
}
.press__quotes {
  display: grid;
  gap: 24px;
  margin: 0 0 40px;
}
.press__quote {
  margin: 0;
  padding: 28px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.press__quote-mark {
  width: 28px;
  height: 28px;
  fill: var(--accent);
  opacity: .35;
  margin-bottom: 10px;
}
.press__quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--text);
}
.press__quote figcaption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.press__outro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.press__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid rgba(200,84,42,.3);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.press__link:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #d4a017 100%);
  color: #fff;
  transform: translateY(-2px);
}
.press__link span { transition: transform .25s var(--ease); }
.press__link:hover span { transform: translateX(4px); }

@media (max-width: 720px) {
  .press__card { padding: 36px 26px; }
  .press__quote { padding: 22px 22px; }
  .press__quote blockquote { font-size: 17px; }
}

/* ============ VISIT ============ */
.visit { background: var(--bg); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.visit__col .section__title { margin-bottom: 30px; }
.visit__col p { color: var(--text-muted); }

.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 14px;
}
.hours th, .hours td {
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.hours th {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--text-muted);
  font-weight: 500;
}
.hours td {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text);
}
.hours__note {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14px;
  font-style: italic;
}

.visit__map {
  margin-top: 24px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.visit__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.9);
  transition: filter .4s var(--ease);
}
.visit__map:hover iframe { filter: saturate(1.1); }

.visit__map-note {
  margin-top: 14px;
  font-size: 14px;
}
.visit__map-note a {
  color: var(--accent);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
  position: relative;
  color: var(--text);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 0;
}
.footer__tag {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  max-width: 280px;
}
.footer__list {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer__list a:hover { color: var(--accent); }
.footer__list--muted { color: var(--text-dim); }
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .about__grid,
  .visit__grid { grid-template-columns: 1fr; gap: 50px; }
  .menu__grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__inner { height: 68px; }
  .nav__brand-text { display: none; }
  .nav__links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(250,246,239,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .4s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    width: 100%;
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__cta { margin-bottom: 40px; }
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 22px;
  }
  .hero__meta-value { font-size: 17px; }

  .section { padding: 80px 0; }
  .menu__category { padding: 30px 24px; }
  .about__quote { padding: 36px 26px; }
  .about__quote blockquote { font-size: 20px; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery__item--tall,
  .gallery__item--wide { grid-row: auto; grid-column: auto; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg-flames span,
  .hero__live-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   EXPERIMENT — Editorial hero (override)
   ============================================ */

.hero--editorial {
  text-align: center;
  min-height: 100vh;
  padding: 96px 0 56px;
}

/* pozadí — jen jemná teplá záře, bez plamenů */
.hero--editorial .hero__bg-gradient {
  background:
    radial-gradient(ellipse 60% 55% at 50% 38%, rgba(212,160,23,.20), transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(200,84,42,.10), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero__bg-glow {
  position: absolute;
  left: 50%; top: 34%;
  width: 720px; height: 720px;
  max-width: 120vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,140,60,.18) 0%, transparent 60%);
  filter: blur(40px);
  border-radius: 50%;
}

.hero--editorial .hero__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* kicker s linkami po stranách */
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.hero__kicker-line {
  display: inline-block;
  width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.hero__kicker-line:last-child {
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* nadpis rozbitý do řádků s mixem řezů */
.hero--editorial .hero__title {
  margin: 0 0 22px;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .92;
  text-shadow: none;
}
.hero__title-row { display: block; }

.hero__title-row--big {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(70px, 13vw, 168px);
  letter-spacing: -.015em;
  line-height: 1.0;
  background: linear-gradient(135deg, var(--accent) 0%, #e08a2c 45%, #d4a017 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: .08em 0 .22em;   /* spodní prostor pro descendery (p, y) */
}
.hero__title-row--name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(24px, 4.6vw, 58px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 4px;
  padding-left: .26em; /* kompenzace trackingu pro optické vystředění */
}

.hero--editorial .hero__lead {
  max-width: 540px;
  margin: 0 auto 26px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
}

.hero--editorial .hero__cta {
  justify-content: center;
  margin-bottom: 38px;
}

/* fakta jako inline řádek s oddělovači */
.hero__facts {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 22px 38px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.hero__facts li { text-align: center; }
.hero__fact-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.hero__fact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}
.hero__facts-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

/* svislé štítky po stranách */
.hero__side {
  position: absolute;
  top: 50%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 2;
}
.hero__side--left {
  left: 30px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}
.hero__side--right {
  right: 30px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
}

/* scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll-dot {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-bob 1.6s var(--ease) infinite;
}
@keyframes scroll-bob {
  0%   { opacity: 1; transform: translate(-50%, 0); }
  70%  { opacity: 0; transform: translate(-50%, 16px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

@media (max-width: 1100px) {
  .hero__side { display: none; }
}

@media (max-width: 720px) {
  .hero--editorial { padding: 100px 0 70px; min-height: auto; }
  .hero__facts {
    flex-direction: column;
    gap: 16px;
    border-radius: 22px;
    padding: 22px 30px;
    width: 100%;
    max-width: 320px;
  }
  .hero__facts-divider { width: 60%; height: 1px; }
  .hero__kicker { gap: 10px; letter-spacing: .2em; font-size: 11px; }
  .hero__kicker-line { width: 24px; }
  .hero__scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-dot { animation: none; }
}

/* ampersand v názvu/patičce — obyčejný sans glyf místo ozdobného serif */
.amp-plain {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  color: inherit;
}

/* ============================================
   OBSAH V2 — menu detaily, galerie, akce, poukazy, kontakt
   ============================================ */

/* gramáž/množství vedle názvu položky */
.menu__amt {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--text-dim);
  margin-left: 6px;
  white-space: nowrap;
}
.menu__item h4::after { content: none; } /* vypnout tečkovanou linku u víceřádkových názvů */

/* modal — velké mezisekce (Jídelní / Nápojový lístek) */
.menu-modal__intro {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--accent);
  margin: 8px 0 -8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-soft);
}
.menu-modal__intro:not(:first-child) { margin-top: 24px; }

/* kompaktní 2-sloupcový seznam v modalu */
.menu__items--compact {
  grid-template-columns: 1fr 1fr;
  gap: 12px 36px;
}
.menu__items--compact .menu__item p { display: none; }
.menu-modal__note-inline {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  margin: 4px 0 0;
}
@media (max-width: 600px) {
  .menu__items--compact { grid-template-columns: 1fr; }
}

/* galerie — jednotný foto grid */
.gallery__grid--photos {
  grid-auto-rows: 200px;
}
@media (max-width: 600px) {
  .gallery__grid--photos { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
}

/* ============ AKCE A SLUŽBY ============ */
.akce { background: var(--surface); }
.akce__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.akce__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.akce__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.akce__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(200,84,42,.3);
}
.akce__icon { font-size: 26px; display: block; margin-bottom: 12px; }
.akce__card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text);
}
.akce__card p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.akce__cta {
  position: sticky;
  top: 100px;
}
.akce__cta-inner {
  background: linear-gradient(150deg, var(--accent) 0%, #d4a017 120%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: 0 24px 50px -22px rgba(200,84,42,.55);
}
.akce__cta-inner h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #fff;
  margin: 0 0 14px;
}
.akce__cta-inner p { color: rgba(255,255,255,.92); font-size: 15px; margin: 0 0 24px; }
.akce__cta-inner .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}
.akce__cta-inner .btn--primary:hover { background: #fff; transform: translateY(-2px); }
.akce__cta-mail {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.akce__cta-mail:hover { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .akce__grid { grid-template-columns: 1fr; }
  .akce__cta { position: static; }
}
@media (max-width: 620px) {
  .akce__cards { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 420px) {
  .akce__cards { grid-template-columns: 1fr; }
}

/* ============ DÁRKOVÉ POUKAZY ============ */
.poukazy { background: var(--bg-2); }
.poukazy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.poukazy__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #1a1a1a;
}
.poukazy__media img { width: 100%; height: auto; display: block; }

.poukazy__text .section__title { margin-bottom: 18px; }
.poukazy__text > p { color: var(--text-muted); margin: 0 0 24px; }

.poukazy__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.poukazy__values span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
}
.poukazy__points {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}
.poukazy__points li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 15px;
}
.poukazy__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}

@media (max-width: 860px) {
  .poukazy__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ VISIT — kontakt + rezervace ============ */
.visit__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 14px 0 0;
}
.visit__contact a {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}
.visit__reservation {
  margin-top: 26px;
  padding: 22px 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(200,84,42,.22);
  border-radius: var(--radius);
}
.visit__reservation h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text);
}
.visit__reservation p { margin: 0; color: var(--text-muted); font-size: 15px; }
.visit__reservation a { color: var(--accent); }

/* ============================================
   GALERIE — carousel + lightbox
   ============================================ */
.gallery__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.gallery__track::-webkit-scrollbar { height: 8px; }
.gallery__track::-webkit-scrollbar-track { background: transparent; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }

.gallery__slide {
  flex: 0 0 calc((100% - 48px) / 4);   /* 4 viditelné na desktopu */
  scroll-snap-align: start;
  height: 240px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__slide::after {
  content: "⤢";
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  font-size: 14px;
  color: var(--accent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery__slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.gallery__slide:hover img { transform: scale(1.05); }
.gallery__slide:hover::after { opacity: 1; }

.gallery__arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease), transform .2s var(--ease);
}
.gallery__arrow svg { width: 22px; height: 22px; }
.gallery__arrow:hover { background: var(--accent); color: #fff; transform: scale(1.06); }
.gallery__arrow[disabled] { opacity: .3; pointer-events: none; }

.gallery__hint {
  text-align: center;
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

@media (max-width: 900px) { .gallery__slide { flex-basis: calc((100% - 32px) / 3); } }
@media (max-width: 640px) {
  .gallery__slide { flex-basis: calc((100% - 16px) / 2); height: 200px; }
  .gallery__arrow { width: 40px; height: 40px; }
}
@media (max-width: 420px) {
  .gallery__slide { flex-basis: 78%; height: 220px; }
}

/* ---- lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  background: rgba(20,16,10,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__figure {
  margin: 0;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(.96);
  transition: transform .3s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__img {
  width: min(92vw, 1000px);
  height: min(82vh, 760px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  background: #0e0a07;
}
.lightbox__cap {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  letter-spacing: .02em;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

.lightbox__arrow {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__arrow svg { width: 26px; height: 26px; }
.lightbox__arrow:hover { background: var(--accent); transform: scale(1.08); }

@media (max-width: 640px) {
  .lightbox { padding: 16px; gap: 6px; }
  .lightbox__arrow { width: 42px; height: 42px; position: absolute; bottom: 24px; }
  .lightbox__arrow--prev { left: 24px; }
  .lightbox__arrow--next { right: 24px; }
}

.lightbox__cap:empty { display: none; }

/* logo v navigaci vlevo nahoře */
.nav__logo {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: block;
  flex-shrink: 0;
  background: #fff;
}
@media (max-width: 720px) { .nav__logo { height: 40px; width: 40px; } }

/* ============================================
   HERO — fotka průčelí jako atmosférické pozadí
   ============================================ */
.hero--photo .hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/venek.jpg');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  filter: blur(0.6px) saturate(1.06);
  transform: scale(1.03);
  animation: hero-photo-zoom 24s ease-out forwards;
}
@keyframes hero-photo-zoom { from { transform: scale(1.07); } to { transform: scale(1.03); } }

/* krémový závoj přes fotku — fotka prosvítá, text zůstává čitelný */
.hero--photo .hero__bg-gradient {
  background:
    linear-gradient(180deg,
      rgba(250,246,239,.20) 0%,
      rgba(250,246,239,.14) 45%,
      rgba(250,246,239,.55) 80%,
      var(--bg) 100%);
}
.hero--photo .hero__bg-glow { opacity: .45; }

/* lepší čitelnost nadpisu nad fotkou */
.hero--photo .hero__title-row--name { text-shadow: 0 1px 12px rgba(250,246,239,.9); }
.hero--photo .hero__lead { text-shadow: 0 1px 10px rgba(250,246,239,.95), 0 0 5px rgba(250,246,239,.9); }
.hero--photo .hero__kicker { text-shadow: 0 1px 8px rgba(250,246,239,.85); }

@media (max-width: 720px) {
  .hero--photo .hero__photo { background-position: center 18%; }
}

/* poukazy bez fotky — jeden sloupec, vycentrované */
.poukazy__grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}
.poukazy__grid--single .poukazy__values { justify-content: center; }
.poukazy__grid--single .poukazy__points {
  display: inline-grid;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SHOWCASE — tři fotky pod hero (triptych)
   ============================================ */
.hero--editorial { min-height: 84vh; }
.hero--collage { min-height: 100vh; }

.showcase {
  background: var(--bg);
  padding: 0 0 30px;
  margin-top: -10px;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 222px 222px;
  gap: 16px;
}
.showcase__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.showcase__item--tall { grid-row: 1 / span 2; }
.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.showcase__item:hover img { transform: scale(1.05); }
.showcase__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 24px 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(20,14,8,.72));
  display: flex;
  flex-direction: column;
}
.showcase__item figcaption span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f3c98a;
  margin-bottom: 4px;
}

@media (max-width: 760px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .showcase__item { height: 240px; }
  .showcase__item--tall { grid-row: auto; height: 300px; }
  .showcase__item figcaption { font-size: 19px; }
}

/* ============================================
   HERO SPLIT — text vlevo, koláž 3 fotek vpravo
   ============================================ */
.hero--split .hero__content {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 54px;
  align-items: center;
  max-width: var(--container);
  text-align: left;
}
.hero--split .hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero--split .hero__kicker { margin-bottom: 18px; }
.hero--split .hero__title { align-items: flex-start; margin: 0 0 20px; }
.hero--split .hero__title-row--big { font-size: clamp(46px, 6.4vw, 98px); }
.hero--split .hero__title-row--name { font-size: clamp(20px, 2.5vw, 34px); letter-spacing: .22em; padding-left: .22em; }
.hero--split .hero__lead { margin: 0 0 26px; max-width: 470px; }
.hero--split .hero__cta { justify-content: flex-start; margin-bottom: 30px; }

.hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 480px;
}
.hero__media-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__media-item--tall { grid-row: 1 / span 2; }
.hero__media-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hero__media-item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .hero--split .hero__content { grid-template-columns: 1fr; gap: 36px; }
  .hero--split .hero__text { align-items: center; text-align: center; }
  .hero--split .hero__kicker,
  .hero--split .hero__title { align-items: center; }
  .hero--split .hero__cta { justify-content: center; }
  .hero__media { height: 380px; max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .hero__media { grid-template-rows: 150px 150px; height: auto; }
}

/* ============================================
   HERO KOLÁŽ — tři fotky jako pozadí
   ============================================ */
.hero--collage .hero__collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.hero__collage-cell {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__collage-cell--tall { grid-row: 1 / span 2; }

/* krémový závoj — fotky prosvítají, střed je čitelný */
.hero--collage .hero__bg-gradient {
  background:
    radial-gradient(ellipse 58% 52% at 50% 47%,
      rgba(250,246,239,.86) 0%,
      rgba(250,246,239,.62) 55%,
      rgba(250,246,239,.42) 100%),
    linear-gradient(180deg,
      rgba(250,246,239,.42) 0%,
      rgba(250,246,239,.40) 50%,
      rgba(250,246,239,.72) 85%,
      var(--bg) 100%);
}
.hero--collage .hero__bg-glow { opacity: .35; }

/* čitelnost textu nad koláží */
.hero--collage .hero__title-row--name { text-shadow: 0 1px 14px rgba(250,246,239,.95); }
.hero--collage .hero__lead { text-shadow: 0 1px 12px rgba(250,246,239,.95), 0 0 6px rgba(250,246,239,.9); }
.hero--collage .hero__kicker { text-shadow: 0 1px 10px rgba(250,246,239,.9); }

@media (max-width: 760px) {
  .hero--collage .hero__collage { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Scrollbar — štíhlý, laděný do webu
   ============================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: #d8cdb8;
  border-radius: 8px;
  border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

address.footer__list { font-style: normal; }
