/* =========================================================
   Restaurace Na Tumovce — styles.css
   Desktop base · palette · typography · sections
   Media queries live in responsive.css.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg-deep:    #14100C;
  --bg-surface: #1F1812;
  --bg-elev:    #2A2019;
  --bg-darker:  #0E0A07;

  --brand-amber:  #D9A441;
  --brand-amber-2:#E8B95B;
  --brand-copper: #B8701E;
  --accent-crimson:#8B2A1F;

  --cream:     #EBDFC7;
  --text-warm: #D4C7AE;
  --text-mute: #8E8372;

  --divider:   rgba(235,223,199,0.12);
  --hair:      rgba(235,223,199,0.08);
  --amber-a:   rgba(217,164,65,0.16);
  --amber-b:   rgba(217,164,65,0.36);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.18);
  --shadow-md: 0 2px 6px rgba(0,0,0,0.35), 0 14px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 6px 18px rgba(0,0,0,0.45), 0 28px 80px rgba(0,0,0,0.45);
  --shadow-amber: 0 12px 30px -10px rgba(217,164,65,0.35);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1200px;
  --gap-sm: 12px;
  --gap:    20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --radius: 14px;
  --radius-lg: 22px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hand:    'Caveat', cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-warm);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--brand-amber);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-amber);
  outline-offset: 0;
  border-color: var(--brand-amber);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  max-width: var(--maxw);
}

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 18px;
}
.h2--light { color: #fff; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-amber);
  font-weight: 600;
  margin: 0 0 14px;
}
.eyebrow--hand {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brand-amber-2);
  font-weight: 600;
}

p { margin: 0 0 1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
  transition: transform 220ms var(--ease-out),
              background-color 220ms var(--ease-out),
              box-shadow 220ms var(--ease-out),
              border-color 220ms var(--ease-out),
              color 220ms var(--ease-out);
  will-change: transform;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-amber);
  color: #1A120A;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 10px 26px -8px rgba(217,164,65,0.5), 0 2px 6px rgba(0,0,0,0.28);
}
.btn--primary:hover {
  background: var(--brand-amber-2);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 16px 36px -8px rgba(217,164,65,0.65), 0 3px 8px rgba(0,0,0,0.3);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(235,223,199,0.35);
}
.btn--ghost:hover {
  border-color: var(--brand-amber);
  color: var(--brand-amber-2);
  transform: translateY(-1px);
}
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px 0;
  transition: background-color 300ms var(--ease-out),
              backdrop-filter 300ms var(--ease-out),
              padding 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out),
              border-color 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(20,16,12,0.88);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  padding: 12px 0;
  border-bottom-color: var(--divider);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.6);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 3px;
}
.logo__line1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.logo__line2 {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-amber);
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav__links a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-warm);
  padding: 6px 2px;
  transition: color 220ms var(--ease-out);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--brand-amber);
  transition: width 260ms var(--ease-out), left 260ms var(--ease-out);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  padding: 6px 2px;
  transition: color 220ms var(--ease-out);
}
.nav__phone:hover { color: var(--brand-amber); }
.nav__cta { padding: 11px 22px; font-size: 0.85rem; border-radius: 8px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 200ms ease;
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Drawer (mobile) ---------- */
.drawer {
  position: fixed; inset: 0;
  z-index: 70;
  background: rgba(14,10,7,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-100%);
  transition: transform 400ms var(--ease-out);
  visibility: hidden;
}
.drawer.is-open {
  transform: translateY(0);
  visibility: visible;
}
.drawer__inner {
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer__links {
  display: flex; flex-direction: column; gap: 8px;
}
.drawer__links a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
}
.drawer__phone {
  margin-top: 12px;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
}
.drawer__hours {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.9rem;
  margin: 8px 0 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute; inset: -5%;
  width: 110%; height: 110%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
  filter: saturate(1.05) contrast(1.03);
}
.hero__grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.78) 0%, rgba(20,16,12,0.42) 42%, rgba(20,16,12,0.85) 100%),
    radial-gradient(70% 60% at 25% 70%, rgba(217,164,65,0.18), transparent 70%),
    radial-gradient(50% 50% at 80% 20%, rgba(139,42,31,0.22), transparent 75%);
}
.hero__noise {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 12px 0 22px;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-amber);
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-warm);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--text-mute);
}
.hero__addr { letter-spacing: 0.01em; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--divider);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--cream);
}
.status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #62C47A;
  box-shadow: 0 0 0 0 rgba(98,196,122,0.5);
  animation: pulse 2.4s infinite;
}
.status.is-closed .status__dot { background: #C47A62; animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(98,196,122,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(98,196,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(98,196,122,0); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: 0.55;
  transition: opacity 260ms var(--ease-out);
  z-index: 2;
  animation: bounceY 2.6s var(--ease-out) infinite;
}
.hero__scroll:hover { opacity: 1; }
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--bg-darker), var(--bg-surface), var(--bg-darker));
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--brand-amber-2);
}
.marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.marquee__group span { display: inline-block; }
.marquee__group .dot {
  color: var(--accent-crimson);
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.8;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Sections base ---------- */
section { padding: 96px 0; position: relative; }

/* ---------- Story ---------- */
.story { background: var(--bg-deep); }
.story__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}
.story__text p {
  color: var(--text-warm);
  font-size: 1rem;
}
.story__text .h2 { margin-bottom: 22px; }

.stats {
  display: flex;
  gap: 26px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-amber);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}

.story__media {
  position: relative;
  min-height: 520px;
}
.story__fig {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}
.story__fig--front {
  top: 60px; left: 140px; right: 0;
  height: 440px;
  z-index: 3;
}
.story__fig--back {
  top: 0; left: 0;
  width: 300px; height: 230px;
  transform: rotate(-5deg);
  z-index: 2;
  border: 8px solid var(--bg-deep);
}
.story__fig--inset {
  right: 20px; bottom: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 6px solid var(--bg-deep);
  z-index: 4;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--amber-b);
}
.story__tape {
  position: absolute;
  bottom: 12px; left: 14px;
  background: var(--brand-amber);
  color: #1A120A;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 2px 14px;
  border-radius: 3px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Pillars ---------- */
.pillars { background: var(--bg-darker); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.pillars__head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pillar {
  background: var(--bg-surface);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 340ms var(--ease-out),
              border-color 340ms var(--ease-out),
              box-shadow 340ms var(--ease-out),
              background-color 340ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, var(--amber-a), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--amber-b);
  background: var(--bg-elev);
  box-shadow: var(--shadow-md), 0 12px 36px -14px rgba(217,164,65,0.25);
}
.pillar__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber-a), transparent);
  border: 1px solid var(--amber-a);
  color: var(--brand-amber);
  margin-bottom: 6px;
}
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.02em;
}
.pillar p {
  color: var(--text-warm);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.7;
}

/* ---------- Beers ---------- */
.beers {
  background:
    radial-gradient(60% 80% at 85% 30%, rgba(217,164,65,0.06), transparent 60%),
    var(--bg-deep);
}
.beers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.beers__list .h2 { margin-bottom: 10px; }
.beers__note {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.menu-list { display: flex; flex-direction: column; gap: 18px; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--hair);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row__main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.menu-row__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.menu-row__desc {
  font-size: 0.86rem;
  color: var(--text-mute);
  line-height: 1.5;
}
.menu-row__dots {
  flex: 1;
  min-width: 30px;
  border-bottom: 2px dotted rgba(235,223,199,0.22);
  margin-bottom: 6px;
  align-self: end;
}
.menu-row__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-amber);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.beers__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.chip {
  display: inline-flex;
  padding: 7px 14px;
  background: rgba(217,164,65,0.08);
  border: 1px solid var(--amber-a);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--brand-amber-2);
  letter-spacing: 0.02em;
}

.beers__media { position: relative; }
.beers__fig {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.beers__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}
.beers__fig::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(200deg, transparent 55%, rgba(184,112,30,0.28) 100%),
    linear-gradient(to top, rgba(20,16,12,0.55), transparent 35%);
  pointer-events: none;
}
.beers__fig-badge {
  position: absolute;
  top: 24px; right: 24px;
  padding: 12px 16px;
  background: rgba(20,16,12,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--amber-b);
  border-radius: 12px;
  text-align: center;
  z-index: 2;
}
.beers__fig-badge-k {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-amber);
  line-height: 1;
  letter-spacing: -0.02em;
}
.beers__fig-badge-l {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-warm);
}

/* ---------- Kitchen ---------- */
.kitchen {
  background: var(--bg-darker);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.kitchen__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.kitchen__intro {
  color: var(--text-warm);
  font-size: 1rem;
  margin: 12px auto 0;
}

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.dish {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 340ms var(--ease-out),
              box-shadow 340ms var(--ease-out),
              border-color 340ms var(--ease-out);
  position: relative;
}
.dish:hover {
  transform: translateY(-5px);
  border-color: var(--amber-b);
  box-shadow: var(--shadow-lg);
}
.dish__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.dish__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.55), transparent 55%);
  pointer-events: none;
}
.dish__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.dish__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0;
}
.dish__desc {
  color: var(--text-warm);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.dish__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.dish__portion {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}
.dish__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-amber);
  padding: 5px 14px;
  border: 1.5px solid var(--amber-b);
  border-radius: 8px;
  letter-spacing: -0.01em;
}

.kitchen__foot {
  text-align: center;
  margin: 40px auto 0;
  color: var(--text-mute);
  font-size: 0.95rem;
  max-width: 640px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-deep); }
.gallery__head { margin-bottom: 40px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 500ms var(--ease-out);
}
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.35), transparent 60%);
  transition: opacity 300ms var(--ease-out);
  pointer-events: none;
}
.gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(1.15) brightness(1.05);
}
.gallery__item:hover::after { opacity: 0; }
.gallery__item:hover { box-shadow: 0 0 0 1.5px var(--amber-b), var(--shadow-md); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Contact ---------- */
.contact {
  background: var(--bg-darker);
  border-top: 1px solid var(--hair);
}
.contact__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: stretch;
}
.contact__info { display: flex; flex-direction: column; }
.contact__info .h2 { margin-bottom: 28px; }

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
}
.hours th, .hours td {
  padding: 13px 0;
  text-align: left;
  border-bottom: 1px dashed var(--hair);
  font-size: 0.96rem;
}
.hours th {
  font-weight: 500;
  color: var(--text-warm);
  font-family: var(--font-body);
  width: 40%;
}
.hours td {
  text-align: right;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.hours tr.today th,
.hours tr.today td {
  color: var(--brand-amber);
  font-weight: 600;
}
.hours tr.today th::after {
  content: 'Dnes';
  display: inline-block;
  margin-left: 12px;
  padding: 2px 10px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--brand-amber);
  color: #1A120A;
  border-radius: 999px;
  vertical-align: middle;
  font-weight: 700;
}

.contact__block { margin-bottom: 24px; }
.contact__subhead {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-amber);
  font-weight: 600;
  margin: 0 0 8px;
}
.contact address {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
}
.contact__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: inline-block;
  transition: color 220ms var(--ease-out);
}
.contact__phone:hover { color: var(--brand-amber); }
.contact__hint {
  color: var(--text-mute);
  font-size: 0.88rem;
  margin: 6px 0 0;
}

.contact__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--amber-a);
  box-shadow: var(--shadow-lg);
  min-height: 520px;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05) hue-rotate(-4deg);
}
.contact__maplink {
  position: absolute;
  bottom: 14px; right: 14px;
  padding: 9px 16px;
  background: rgba(20,16,12,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--amber-b);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--brand-amber-2);
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out);
}
.contact__maplink:hover { background: var(--brand-amber); color: #1A120A; }

/* ---------- Reserve ---------- */
.reserve {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.reserve__bg { position: absolute; inset: 0; z-index: 0; }
.reserve__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.reserve__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.90), rgba(20,16,12,0.85)),
    radial-gradient(60% 60% at 30% 30%, rgba(139,42,31,0.25), transparent 70%);
}
.reserve__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.reserve__card {
  width: 100%;
  max-width: 720px;
  background: rgba(31,24,18,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--amber-a);
  border-radius: var(--radius-lg);
  padding: 52px 52px 44px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(217,164,65,0.12);
  text-align: center;
  position: relative;
}
.reserve__card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(80% 60% at 50% 0%, var(--amber-a), transparent 60%);
  pointer-events: none;
}
.reserve__card > * { position: relative; }
.reserve__sub {
  color: var(--text-warm);
  font-size: 1rem;
  max-width: 520px;
  margin: 6px auto 36px;
}
.reserve__sub a {
  color: var(--brand-amber);
  font-weight: 600;
  border-bottom: 1px solid var(--amber-b);
}

.res-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.res-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px; opacity: 0;
}
.res-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.res-form__row:has(.field:nth-child(3)) { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-amber);
  font-weight: 600;
}
.field__opt { color: var(--text-mute); text-transform: none; letter-spacing: 0.04em; font-weight: 400; }
.field input,
.field select,
.field textarea {
  background: rgba(14,10,7,0.6);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--cream);
  transition: border-color 220ms var(--ease-out), background-color 220ms var(--ease-out);
  width: 100%;
  font-size: 0.95rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--divider); }
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D9A441' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field select option { background: var(--bg-surface); color: var(--cream); }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-warm);
  font-size: 0.88rem;
  line-height: 1.55;
  cursor: pointer;
}
.check input {
  width: 18px; height: 18px;
  accent-color: var(--brand-amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.res-form__submit {
  margin-top: 10px;
  width: 100%;
}

.res-success {
  text-align: center;
  padding: 20px 0;
  color: var(--cream);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.res-success[hidden] { display: none; }
.res-success svg { color: var(--brand-amber); }
.res-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0;
  color: var(--cream);
}
.res-success a { color: var(--brand-amber); border-bottom: 1px solid var(--amber-b); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  padding-top: 64px;
  border-top: 1px solid var(--hair);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair);
}
.logo--footer .logo__line1 { font-size: 1.5rem; }
.logo--footer .logo__line2 { font-size: 0.66rem; }
.footer__tag {
  color: var(--text-warm);
  font-size: 0.94rem;
  max-width: 380px;
  margin: 18px 0 22px;
}
.status--footer { background: rgba(255,255,255,0.03); }

.footer__col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-amber);
  font-weight: 600;
  margin: 4px 0 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.92rem;
  color: var(--text-warm);
  transition: color 220ms var(--ease-out);
}
.footer__col a:hover { color: var(--brand-amber); }
.footer__col address {
  color: var(--text-warm);
  font-size: 0.92rem;
  line-height: 1.75;
}
.footer__hours {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--text-mute);
}

.footer__bar {
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--text-mute);
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(10,8,6,0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease-out);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(235,223,199,0.1);
  border: 1px solid var(--divider);
  color: var(--cream);
  display: grid; place-items: center;
  transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.lightbox__close:hover {
  background: var(--brand-amber);
  color: #1A120A;
  transform: rotate(90deg);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
