/* ============================================
   ONYX — Specialty Coffee Praha
   Premium editorial dark theme
   ============================================ */

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

:root {
  --black: #070705;
  --ink: #0e0d0b;
  --graphite: #1a1917;
  --carbon: #252420;
  --stone: #c8c0b4;
  --bone: #e0d9ce;
  --cream: #ebe6dc;
  --brass: #8a7d6b;
  --brass-dim: #6b6155;
  --smoke: #3d3a35;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --section-pad: clamp(80px, 12vh, 160px);
  --side-pad: clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--stone);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--cream); }

::selection {
  background: var(--brass);
  color: var(--black);
}

/* --- UTILITIES --- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2em;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--bone);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--cream);
  color: var(--black);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--smoke);
}
.btn--ghost:hover {
  border-color: var(--brass);
  color: var(--cream);
}

/* --- BADGE --- */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dim);
  border: 1px solid var(--smoke);
  padding: 5px 14px;
  border-radius: 2px;
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* --- IMAGE PLACEHOLDER (before real images load) --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--graphite) 0%, var(--carbon) 100%);
}


/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--side-pad);
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(7, 7, 5, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--cream);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-dim);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--cream); }

/* Language switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 16px;
  padding: 3px 3px 3px 20px;
  border-left: 1px solid var(--smoke);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.nav__lang-item {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  color: var(--stone) !important;
  padding: 4px 10px;
  border-radius: 2px;
  transition: color 0.3s, background 0.3s;
  text-transform: none !important;
}
.nav__lang-item:hover {
  color: var(--cream) !important;
  background: rgba(255, 255, 255, 0.08);
}
.nav__lang-item--active {
  color: var(--cream) !important;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-menu__lang {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.mobile-menu__lang .nav__lang-item {
  font-size: 14px !important;
  padding: 6px 12px;
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--stone);
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger span:first-child { top: 4px; }
.nav__burger span:last-child { bottom: 4px; }
.nav__burger.active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav__burger.active span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--brass); }
.mobile-menu__ig {
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  color: var(--brass-dim) !important;
  margin-top: 24px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
/* Gradient placeholder until image loads */
.hero__bg-img[src*="hero-bg"] {
  background: linear-gradient(135deg, #1a1917 0%, #0e0d0b 50%, #1a1917 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7,7,5,0.3) 0%, rgba(7,7,5,0.6) 50%, var(--black) 100%);
}

/* Ambient light that follows mouse */
.hero__light {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 125, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              top 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: left, top;
  z-index: 1;
}

/* Subtle grain */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--side-pad);
  max-width: 800px;
}

.hero__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 40px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 110px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.hero__title-line { display: block; }
.hero__title-line:nth-child(2) { color: var(--brass); }

.hero__rule {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
.hero__rule span {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--brass-dim);
}

.hero__sub {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hidden menu — flashlight reveal */
.hero__chalk {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-mask-image: radial-gradient(circle 180px at var(--fx, -200px) var(--fy, -200px), black 0%, transparent 60%);
  mask-image: radial-gradient(circle 180px at var(--fx, -200px) var(--fy, -200px), black 0%, transparent 60%);
}
.hero__chalk.active { opacity: 1; }
.chalk-item {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 30px);
  font-weight: 500;
  color: rgba(224, 217, 206, 0.8);
  white-space: nowrap;
  letter-spacing: -0.01em;
}


/* ============================================
   FILOZOFIE
   ============================================ */
.filozofie {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ink);
}

.filozofie__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.filozofie__image {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--carbon) 100%);
}
.filozofie__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filozofie__heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 24px;
}

.filozofie__divider { margin-bottom: 24px; }
.filozofie__divider span {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--brass);
}

.filozofie__text {
  color: var(--stone);
  margin-bottom: 16px;
  max-width: 520px;
}

.filozofie__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}


/* ============================================
   NABÍDKA
   ============================================ */
.nabidka {
  padding: var(--section-pad) var(--side-pad);
  background: var(--black);
}

.nabidka__header {
  max-width: 1100px;
  margin: 0 auto 60px;
}
.nabidka__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 16px;
}
.nabidka__intro {
  color: var(--brass-dim);
  font-size: 14px;
  max-width: 480px;
}

.nabidka__list {
  max-width: 1100px;
  margin: 0 auto;
}

.nabidka__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(61, 58, 53, 0.5);
  transition: border-color 0.3s;
}
.nabidka__item:first-child {
  border-top: 1px solid rgba(61, 58, 53, 0.5);
}
.nabidka__item:hover { border-color: var(--brass-dim); }

.nabidka__item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.nabidka__item-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.nabidka__item-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-left: 24px;
}

.nabidka__item-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--smoke) 0%, transparent 100%);
  margin-bottom: 10px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.nabidka__item:hover .nabidka__item-line { transform: scaleX(1); }

.nabidka__item-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nabidka__item-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dim);
  border: 1px solid var(--smoke);
  padding: 4px 12px;
  border-radius: 2px;
}
.nabidka__item-note {
  font-size: 13px;
  color: var(--brass-dim);
  font-style: italic;
}

/* Food section */
.nabidka__food {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding-top: 60px;
  border-top: 1px solid var(--smoke);
}
.nabidka__food-image {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--carbon) 100%);
}
.nabidka__food-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 12px;
}
.nabidka__food-text p {
  color: var(--stone);
  margin-bottom: 20px;
}
.nabidka__food-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nabidka__food-items span {
  font-size: 13px;
  color: var(--brass-dim);
}

.nabidka__footer {
  max-width: 1100px;
  margin: 48px auto 0;
  text-align: center;
  color: var(--brass-dim);
  font-size: 13px;
}
.nabidka__footer a {
  color: var(--bone);
  border-bottom: 1px solid var(--brass-dim);
  padding-bottom: 1px;
}
.nabidka__footer a:hover {
  color: var(--cream);
  border-color: var(--brass);
}


/* ============================================
   PROSTOR
   ============================================ */
.prostor {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--graphite);
  overflow: hidden;
}

.prostor__visual {
  position: relative;
  display: grid;
  grid-template-rows: 2fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.prostor__img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--carbon) 100%);
}
.prostor__img img {
  transition: transform 6s cubic-bezier(0.23, 1, 0.32, 1);
}
.prostor__img:hover img {
  transform: scale(1.04);
}

.prostor__img--1 {
  grid-column: 1 / -1;
  grid-row: 1;
}
.prostor__img--2 {
  grid-column: 1;
  grid-row: 2;
}
.prostor__img--3 {
  grid-column: 2;
  grid-row: 2;
}

.prostor__content {
  padding: var(--section-pad) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prostor__heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 28px;
}

.prostor__desc {
  max-width: 440px;
  margin-bottom: 40px;
}
.prostor__desc p { color: var(--stone); }

.prostor__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.prostor__detail {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--smoke);
}
.prostor__detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  min-width: 110px;
}
.prostor__detail-value {
  font-size: 14px;
  color: var(--stone);
}


/* ============================================
   GALERIE
   ============================================ */
.galerie {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ink);
  overflow: hidden;
}

.galerie__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
}

.galerie__block {
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--carbon) 100%);
}
.galerie__block img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.galerie__block:hover img {
  transform: scale(1.04);
}

.galerie__block--1 { aspect-ratio: 3 / 4; }
.galerie__block--2 {
  aspect-ratio: 3 / 5;
  margin-top: 40px;
}
.galerie__block--3 { aspect-ratio: 3 / 4; }
.galerie__block--4 {
  aspect-ratio: 3 / 4.5;
  margin-top: 24px;
}


/* ============================================
   NÁVŠTĚVA
   ============================================ */
.navsteva {
  padding: var(--section-pad) var(--side-pad);
  background: var(--black);
}

.navsteva__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.navsteva__heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 16px;
}

.navsteva__note {
  color: var(--brass-dim);
  font-size: 14px;
  margin-bottom: 28px;
  max-width: 380px;
}

.navsteva__map {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--graphite) 0%, var(--carbon) 100%);
}
.navsteva__map-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.navsteva__map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.navsteva__map-link:hover img {
  transform: scale(1.03);
}
.navsteva__map-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(7, 7, 5, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 0.3s;
}
.navsteva__map-link:hover .navsteva__map-overlay {
  background: rgba(7, 7, 5, 0.9);
}

.navsteva__col--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.navsteva__info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(61, 58, 53, 0.4);
}
.navsteva__info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.navsteva__info-value {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
}
.navsteva__info-value a {
  color: var(--stone);
  transition: color 0.3s;
}
.navsteva__info-value a:hover { color: var(--cream); }
.navsteva__info-link {
  font-size: 15px;
  color: var(--bone);
  border-bottom: 1px solid var(--brass-dim);
  display: inline-block;
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.navsteva__info-link:hover {
  color: var(--cream);
  border-color: var(--brass);
}

.navsteva__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}


/* ============================================
   MID CTA
   ============================================ */
.midcta {
  padding: 72px var(--side-pad);
  text-align: center;
  background: var(--graphite);
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
}
.midcta h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.midcta p {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--brass);
  margin-bottom: 28px;
}
.midcta__btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--brass-dim);
  border-radius: 0;
  transition: background 0.3s, border-color 0.3s;
}
.midcta__btn:hover {
  background: rgba(138, 125, 107, 0.15);
  border-color: var(--brass);
}
.midcta__note {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.06em;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px var(--side-pad) 36px;
  background: var(--ink);
  border-top: 1px solid var(--smoke);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.footer__logo {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--bone);
}
.footer__social {
  display: flex;
  gap: 24px;
}
.footer__social a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-dim);
  transition: color 0.3s;
}
.footer__social a:hover { color: var(--cream); }

.footer__line {
  margin-bottom: 24px;
}
.footer__line span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--smoke);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.05em;
}

.footer__demo {
  margin-top: 24px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(61, 58, 53, 0.6);
}
.footer__demo a {
  color: rgba(61, 58, 53, 0.6);
  border-bottom: 1px solid rgba(61, 58, 53, 0.3);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.footer__demo a:hover {
  color: var(--brass-dim);
  border-color: var(--brass-dim);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }

  .filozofie__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .filozofie__image {
    aspect-ratio: 16 / 9;
  }

  .prostor {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .prostor__visual {
    min-height: 50vh;
  }

  .galerie__strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .galerie__block--2,
  .galerie__block--4 { margin-top: 20px; }

  .nabidka__food {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nabidka__food-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .navsteva__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(34px, 11vw, 60px);
  }
  .hero__rule { margin: 24px 0; }
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .nabidka__item-top {
    flex-direction: column;
    gap: 4px;
  }
  .nabidka__item-price { margin-left: 0; }
  .nabidka__item-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .prostor__content {
    padding: 40px 20px;
  }
  .prostor__detail {
    flex-direction: column;
    gap: 4px;
  }
  .prostor__detail-label { min-width: unset; }

  .navsteva__actions {
    flex-direction: column;
  }
  .navsteva__actions .btn {
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 6px;
  }
}
