/* ============================================================
   RESTAURACE KOŘEN — styles.css
   Editorial, moody culinary art direction
   ============================================================ */

:root {
  /* Palette */
  --green-950: #0c1712;
  --green-900: #12211b;   /* base */
  --green-800: #172c23;
  --green-700: #1f3a2e;
  --charcoal:  #14130f;
  --cream:     #f4efe6;
  --cream-dim: #d9d2c4;
  --gold:      #c6a15b;
  --gold-soft: #d8bd86;
  --gold-deep: #a5803f;
  --ink:       #1a1a17;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Segoe UI", sans-serif;

  /* Rhythm */
  --pad-x: clamp(1.25rem, 5vw, 7rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --maxw: 1320px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--green-900);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--green-950); }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--green-950);
  padding: 0.6rem 1.2rem; border-radius: 0 0 6px 6px; z-index: 200;
  transition: top 0.3s var(--ease); font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.section__title--light { color: var(--cream); }

.section {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--maxw);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --b: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--b);
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold { background: var(--gold); color: var(--green-950); --b: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--line { color: var(--cream); --b: rgba(244,239,230,0.35); background: transparent; }
.btn--line:hover { --b: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--ghost { color: var(--cream); --b: rgba(244,239,230,0.28); padding: 0.7rem 1.4rem; font-size: 0.74rem; }
.btn--ghost:hover { --b: var(--gold); color: var(--gold); }

/* ============================================================
   NAVIGACE
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.6rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(12, 23, 18, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: rgba(198,161,91,0.16);
}
.nav.is-scrolled .nav__inner { padding-top: 1rem; padding-bottom: 1rem; }

.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__mark {
  display: grid; place-items: center;
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  border-radius: 50%;
}
.nav__name { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; letter-spacing: 0.02em; }

.nav__links { display: flex; gap: 2.1rem; }
.nav__links a {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; color: var(--cream-dim);
  position: relative; padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { white-space: nowrap; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav__burger span {
  width: 26px; height: 2px; background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: linear-gradient(160deg, var(--green-950), var(--green-800));
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad-x);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__links a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 500; color: var(--cream);
  padding: 0.35rem 0; transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-menu__links a:hover { color: var(--gold); padding-left: 0.6rem; }
.mobile-menu__cta { color: var(--gold) !important; }
.mobile-menu__meta {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.4rem;
  color: var(--cream-dim); font-size: 0.95rem; letter-spacing: 0.04em;
}
.mobile-menu__meta a { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,23,18,0.55) 0%, rgba(12,23,18,0.25) 35%, rgba(12,23,18,0.85) 100%),
    linear-gradient(90deg, rgba(12,23,18,0.7) 0%, rgba(12,23,18,0.1) 55%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content { position: relative; z-index: 3; max-width: 760px; }
.hero__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.98; letter-spacing: -0.015em;
  margin-bottom: 1.8rem;
}
.hero__title span { display: block; }
.hero__title span:last-child { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 30em; color: var(--cream-dim); font-weight: 300;
  margin-bottom: 2.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream-dim);
}
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--cream); animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { top: -50%; } 100% { top: 100%; } }

/* Reveal animation (Intersection Observer) */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
.hero [data-reveal] { transition-delay: 0.15s; }
.hero__title span[data-reveal]:nth-child(2) { transition-delay: 0.28s; }

/* ============================================================
   KONCEPT
   ============================================================ */
.concept { position: relative; }
.concept__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.concept__heading {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 1.8rem; color: var(--cream);
}
.concept__text p { color: var(--cream-dim); margin-bottom: 1.2rem; max-width: 46ch; }

.concept__stats {
  display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 2.4rem;
  padding-top: 2rem; border-top: 1px solid rgba(198,161,91,0.2);
}
.concept__stats strong {
  display: block; font-family: var(--serif); font-size: 2.6rem;
  color: var(--gold); font-weight: 500; line-height: 1;
}
.concept__stats span { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--cream-dim); }

.concept__figure { position: relative; }
.concept__figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px;
  filter: saturate(0.92) contrast(1.03);
}
.concept__figure figcaption {
  position: absolute; left: 1.4rem; bottom: 1.4rem;
  background: rgba(12,23,18,0.72); backdrop-filter: blur(8px);
  padding: 0.9rem 1.3rem; border-left: 2px solid var(--gold);
}
.concept__chef-name { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--cream); }
.concept__chef-role { display: block; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.concept__quote {
  margin: clamp(4rem, 9vw, 7rem) auto 0; max-width: 900px; text-align: center;
}
.concept__quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.25; color: var(--cream);
}
.concept__quote cite { display: block; margin-top: 1.4rem; font-style: normal; color: var(--gold); letter-spacing: 0.12em; font-size: 0.9rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu { position: relative; }
.menu__head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.menu__note { color: var(--cream-dim); font-size: 0.95rem; margin-top: 1rem; }

.menu__cols {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.menu__group:last-child { grid-column: 1 / -1; }
.menu__group:last-child .menu__group-title { text-align: center; }

.menu__group-title {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--gold);
  margin-bottom: 1.8rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(198,161,91,0.22);
  letter-spacing: 0.01em;
}
.menu__group:last-child .menu__group-title { max-width: 640px; margin-inline: auto; }
.menu__group:last-child > .menu__item { max-width: 640px; margin-inline: auto; }

.menu__item { margin-bottom: 1.7rem; }
.menu__item-head { display: flex; align-items: baseline; gap: 0.6rem; }
.menu__item-name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--cream);
  white-space: nowrap;
}
.menu__item-name em { font-size: 0.85rem; color: var(--gold); font-style: normal; letter-spacing: 0.1em; }
.menu__dots { flex: 1; border-bottom: 1px dotted rgba(217,210,196,0.35); transform: translateY(-4px); }
.menu__price {
  font-family: var(--serif); font-size: 1.35rem; color: var(--gold); font-weight: 500;
}
.menu__price::after { content: " Kč"; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--cream-dim); }
.menu__desc { color: var(--cream-dim); font-size: 0.95rem; margin-top: 0.35rem; max-width: 52ch; }

/* ============================================================
   DENNÍ MENU
   ============================================================ */
.daily {
  background:
    linear-gradient(rgba(12,23,18,0.86), rgba(12,23,18,0.92)),
    url("https://images.unsplash.com/photo-1495195134817-aeb325a55b65?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
  padding: var(--section-y) var(--pad-x);
  max-width: none; margin: 0;
  border-block: 1px solid rgba(198,161,91,0.15);
}
.daily__inner { max-width: var(--maxw); margin-inline: auto; }
.daily__head { max-width: 640px; margin-bottom: 3rem; }
.daily__lead { color: var(--cream-dim); margin-top: 1rem; font-size: 1.05rem; }
.daily__lead strong { color: var(--gold); font-weight: 500; }

.daily__list { display: grid; gap: 0; }
.daily__list li {
  display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; align-items: baseline;
  padding: 1.3rem 0; border-top: 1px solid rgba(198,161,91,0.16);
}
.daily__list li:last-child { border-bottom: 1px solid rgba(198,161,91,0.16); }
.daily__course {
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.daily__dish { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--cream); }
.daily__foot { margin-top: 1.6rem; color: var(--cream-dim); font-size: 0.9rem; font-style: italic; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 1.1rem;
}
.gallery__item { position: relative; overflow: hidden; border-radius: 3px; }
.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 1.1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.9) brightness(0.92);
  will-change: transform;
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,23,18,0.5));
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

/* ============================================================
   REZERVACE
   ============================================================ */
.reserve {
  background: linear-gradient(155deg, var(--green-800), var(--green-950));
  max-width: none; margin: 0; padding: var(--section-y) var(--pad-x);
}
.reserve__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.reserve__lead { color: var(--cream-dim); margin-top: 1.2rem; max-width: 38ch; }
.reserve__contact { margin-top: 2.4rem; display: grid; gap: 1rem; }
.reserve__contact li {
  display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: baseline;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(198,161,91,0.14);
}
.reserve__contact span:first-child { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.reserve__contact a:hover { color: var(--gold); }

/* Form */
.reserve__form {
  background: rgba(12,23,18,0.5);
  border: 1px solid rgba(198,161,91,0.18);
  padding: clamp(1.6rem, 4vw, 2.8rem); border-radius: 4px;
  backdrop-filter: blur(6px);
}
.field { margin-bottom: 1.3rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field-row:has(#osoby) { grid-template-columns: 1fr 1fr 0.9fr; }
.field label {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-dim); margin-bottom: 0.5rem;
}
.field__opt { text-transform: none; letter-spacing: 0; color: rgba(217,210,196,0.6); }
.field input, .field select, .field textarea {
  background: rgba(244,239,230,0.04);
  border: 1px solid rgba(244,239,230,0.18);
  color: var(--cream); font-family: var(--sans); font-size: 1rem; font-weight: 300;
  padding: 0.85rem 1rem; border-radius: 3px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(217,210,196,0.45); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: rgba(244,239,230,0.07); outline: none;
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c6a15b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.field select option { background: var(--green-900); color: var(--cream); }
.field textarea { resize: vertical; }
/* Date/time icon tint for dark bg */
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(2) hue-rotate(5deg); cursor: pointer; }

.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #d98b6a; }
.field__error { color: #e6a586; font-size: 0.78rem; margin-top: 0.4rem; min-height: 0; }

.reserve__submit { width: 100%; margin-top: 0.6rem; }
.reserve__success {
  margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: 3px;
  background: rgba(198,161,91,0.14); border: 1px solid var(--gold);
  color: var(--cream); font-size: 0.95rem;
}

/* ============================================================
   REFERENCE
   ============================================================ */
.reviews__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review {
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  border: 1px solid rgba(198,161,91,0.16);
  padding: 2.2rem 2rem; border-radius: 4px;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.review:hover { transform: translateY(-6px); border-color: rgba(198,161,91,0.4); }
.review__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 1rem; }
.review blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; color: var(--cream); font-style: italic; }
.review figcaption strong { display: block; color: var(--gold); font-weight: 500; letter-spacing: 0.02em; }
.review figcaption span { font-size: 0.82rem; color: var(--cream-dim); letter-spacing: 0.06em; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: stretch;
}
.contact__hours { margin-top: 2rem; }
.contact__row {
  display: flex; justify-content: space-between; padding: 0.7rem 0;
  border-bottom: 1px solid rgba(198,161,91,0.14); font-size: 0.98rem;
}
.contact__row span:first-child { color: var(--cream-dim); }
.contact__closed { color: var(--gold-deep); font-style: italic; }
.contact__address { font-style: normal; margin-top: 2rem; color: var(--cream-dim); line-height: 1.8; }
.contact__address strong { color: var(--cream); font-size: 1.05rem; }
.contact__address a:hover { color: var(--gold); }

.contact__map {
  min-height: 420px; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(198,161,91,0.18);
  filter: grayscale(0.3) contrast(1.05);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; display: block; }

/* ============================================================
   PATIČKA
   ============================================================ */
.footer {
  background: var(--green-950);
  border-top: 1px solid rgba(198,161,91,0.18);
  padding: clamp(3.5rem, 7vw, 5rem) var(--pad-x) 2rem;
}
.footer__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem;
}
.footer__brand .nav__mark { margin-bottom: 1rem; }
.footer__brand p { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.footer__tag { font-family: var(--sans) !important; font-size: 0.9rem !important; color: var(--cream-dim); margin-top: 0.4rem; max-width: 24ch; }
.footer__col h3 {
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; font-weight: 500;
}
.footer__col a, .footer__col p { display: block; color: var(--cream-dim); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bar {
  max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(244,239,230,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.82rem; color: rgba(217,210,196,0.6); letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .concept__grid { grid-template-columns: 1fr; }
  .concept__figure { max-width: 460px; }
  .reserve__grid, .contact__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .menu__cols { grid-template-columns: 1fr; }
  .menu__group:last-child { grid-column: auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .field-row, .field-row:has(#osoby) { grid-template-columns: 1fr; }
  .daily__list li { grid-template-columns: 1fr; gap: 0.3rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
}
