/* Poděbradský pivovar — 1:1 mockup */

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

:root {
  --bg-top: #1a4d55;
  --bg-mid: #0f3d45;
  --bg-deep: #0b2e35;
  --accent: #2a9fd4;
  --accent-end: #45d4e8;
  --gold: #f4c94a;
  --gold-end: #ffe27a;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --max-w: 1200px;
  --radius: 20px;
  --radius-lg: 24px;
  --section-y: clamp(3.25rem, 7vw, 5rem);
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  overflow-x: clip;
  padding-top: calc(var(--header-h) + 1.25rem);
  background: linear-gradient(160deg, #1a5f6e 0%, #0f4455 40%, #0d3848 100%);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ─── Animated orb background ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  animation: orbLoop 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes orbLoop {
  0%, 100% {
    background:
      radial-gradient(ellipse 72% 62% at  8% 14%, rgba(69, 212, 232, 0.44) 0%, transparent 65%),
      radial-gradient(ellipse 62% 52% at 90% 36%, rgba(42, 159, 212, 0.38) 0%, transparent 60%),
      radial-gradient(ellipse 68% 58% at 18% 86%, rgba(26, 140, 160, 0.46) 0%, transparent 65%),
      radial-gradient(ellipse 46% 40% at 74% 18%, rgba(69, 212, 232, 0.26) 0%, transparent 55%),
      radial-gradient(ellipse 52% 46% at 50% 54%, rgba(15, 100, 120, 0.30) 0%, transparent 60%);
  }
  25% {
    background:
      radial-gradient(ellipse 76% 66% at 20% 26%, rgba(69, 212, 232, 0.50) 0%, transparent 65%),
      radial-gradient(ellipse 58% 48% at 78% 52%, rgba(42, 159, 212, 0.42) 0%, transparent 60%),
      radial-gradient(ellipse 64% 54% at 10% 74%, rgba(26, 140, 160, 0.42) 0%, transparent 65%),
      radial-gradient(ellipse 50% 44% at 66% 30%, rgba(69, 212, 232, 0.30) 0%, transparent 55%),
      radial-gradient(ellipse 56% 50% at 56% 62%, rgba(15, 100, 120, 0.34) 0%, transparent 60%);
  }
  50% {
    background:
      radial-gradient(ellipse 70% 60% at  4% 40%, rgba(69, 212, 232, 0.42) 0%, transparent 65%),
      radial-gradient(ellipse 64% 54% at 94% 62%, rgba(42, 159, 212, 0.36) 0%, transparent 60%),
      radial-gradient(ellipse 72% 62% at 30% 94%, rgba(26, 140, 160, 0.48) 0%, transparent 65%),
      radial-gradient(ellipse 44% 38% at 80% 10%, rgba(69, 212, 232, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 54% 48% at 44% 46%, rgba(15, 100, 120, 0.28) 0%, transparent 60%);
  }
  75% {
    background:
      radial-gradient(ellipse 74% 64% at 14% 22%, rgba(69, 212, 232, 0.46) 0%, transparent 65%),
      radial-gradient(ellipse 60% 50% at 84% 44%, rgba(42, 159, 212, 0.40) 0%, transparent 60%),
      radial-gradient(ellipse 66% 56% at 14% 80%, rgba(26, 140, 160, 0.44) 0%, transparent 65%),
      radial-gradient(ellipse 48% 42% at 70% 24%, rgba(69, 212, 232, 0.28) 0%, transparent 55%),
      radial-gradient(ellipse 50% 44% at 52% 58%, rgba(15, 100, 120, 0.32) 0%, transparent 60%);
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent        0%,
    transparent       30%,
    rgba(69, 212, 232, 0.05) 45%,
    rgba(255,255,255,  0.03) 50%,
    rgba(69, 212, 232, 0.05) 55%,
    transparent       70%,
    transparent      100%
  );
  background-size: 300% 300%;
  animation: shimmer 10s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 150% -50%; }
  50%  { background-position: -50% 150%; }
  100% { background-position: 150% -50%; }
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ─── Fixed background illustration ─── */
/* Anchored to the right edge, stays put while the page scrolls (position:
   fixed), blurred + rotated so it reads as texture rather than artwork,
   sitting behind the animated orb layers (body::before/::after). */
.bg-illustration {
  position: fixed;
  top: 0;
  right: 5vw;
  width: 40vw;
  height: 100vh;
  object-fit: contain;
  object-position: center;
  transform: rotate(15deg) scale(1.45);
  filter: blur(2.5px);
  opacity: 0.16;
  z-index: -3;
  pointer-events: none;
}

@media (max-width: 900px) {
  .bg-illustration {
    width: 60vw;
    opacity: 0.12;
  }
}

/* ─── Floating capsule navigation ─── */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 2.5rem);
  max-width: 1240px;
}

.nav {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
  border-radius: 999px;
  overflow: hidden;
  color: #fff;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.15);
}

.nav-glass-filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(2px);
  filter: url(#nav-lg-dist);
  isolation: isolate;
  border-radius: inherit;
}

.nav-glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.nav-glass-specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 5px rgba(255, 255, 255, 0.08);
}

.nav-logo,
.nav-links,
.nav-actions {
  position: relative;
  z-index: 3;
}

.nav-logo img {
  margin-top: 10px;
  width: 124px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-family: 'inter';
  font-weight: 100;
  font-size: 16px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-links a.active {
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.nav-icon-btn:hover {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.55);
}

.nav-overlay.visible {
  display: block;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.75rem;
  border: none;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-end) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(42, 159, 212, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 6px 32px rgba(69, 212, 232, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 1px 1px 0 rgba(120, 200, 220, 0.5),
    inset 0 0 5px rgba(120, 200, 220, 0.12),
    inset 0 0 0 1px rgba(120, 200, 220, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 1px 1px 0 rgba(120, 200, 220, 0.7),
    inset 0 0 5px rgba(120, 200, 220, 0.2),
    inset 0 0 0 1px rgba(120, 200, 220, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: none;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 0 5px rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-upper {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

/* ─── Typography ─── */
h1, h2, h3, .section-title, .map-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.map-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: -1rem auto 1.75rem;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 0.85rem;
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.glass-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 2rem);
  min-height: calc(100dvh - var(--header-h) - 2rem);
  display: flex;
  align-items: center;
  padding: 1.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  /* Text sits above the bottle layer (which is z-index 1 below). */
  z-index: 2;
  width: 100%;
}

.hero-copy {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.hero-lead {
  max-width: 420px;
  margin-bottom: 1.75rem;
}

.hero-lead p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── Hero bottles — cascading diagonal layer, behind the copy ─── */
/* Spans the full hero height across the right ~3/4 of the width, each
   bottle placed with its own top/left anchor + rotation so they read as
   a diagonal cascade (matching the pivovarclock.cz hero reference)
   rather than a tidy bottom-right cluster. z-index 1 keeps the whole
   layer behind .hero-grid (z-index 2). */
.hero-bottles {
  position: absolute;
  z-index: 1;
  inset: 0;
  left: 22%;
  perspective: 1200px;
  pointer-events: none;
}

.hero-bottle {
  position: absolute;
  object-fit: contain;
  opacity: 0.96;
  transition: transform 0.15s ease-out, filter 0.2s ease-out;
  will-change: transform;
  /* Per-bottle base placement (top/left/width) comes from inline style;
     JS/hover only ever touches the transform (translate/rotate/scale). */
  transform:
    translate(var(--tx, 0%), var(--ty, 0%))
    rotate(var(--rot, 0deg))
    scale(var(--scale, 1));
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

/* Furthest bottle: softened and dimmed to read as background depth. */
.hero-bottle:nth-child(1) {
  filter: blur(1.5px) drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
  opacity: 0.6;
  z-index: 1;
}

.hero-bottle:nth-child(2) {
  filter: blur(0.7px) drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
  z-index: 2;
  opacity: 0.85;
}

.hero-bottle--front {
  z-index: 3;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.48));
}

/* ─── Sections ─── */
.section {
  padding: var(--section-y) 0;
}

/* ─── Naše piva – scroll-driven section ─── */
.beer-scroll-sentinel {
  position: relative;
  height: calc(100dvh + 900px);
}

.nase-piva-section {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  width: 100%;
  min-height: calc(100dvh - var(--header-h) - 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.nase-piva-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.piva-info-panel {
  padding: 1.75rem 1.85rem;
}

.piva-info-panel .text-muted {
  margin-bottom: 1.25rem;
}

.beer-carousel-outer {
  position: relative;
  padding: 0 2.5rem;
  min-width: 0;
}

.beer-carousel-viewport {
  overflow: hidden;
}

.beer-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.beer-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
  cursor: pointer;
  outline: none;
}

.beer-card:hover,
.beer-card.is-active {
  background: rgba(255, 255, 255, 0.05);
}

.beer-bottle-wrap {
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.beer-bottle-wrap img {
  max-height: 175px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  will-change: transform;
}

.beer-card:hover .beer-bottle-wrap img,
.beer-card.is-active .beer-bottle-wrap img {
  transform: scale(1.22) translateY(-12px);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.52));
}

.beer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.beer-type {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.beer-abv {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.beer-progress-bar {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 0;
}

.beer-progress-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.beer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.beer-dot.is-active {
  background: rgba(255, 255, 255, 0.88);
  transform: scale(1.5);
}

.carousel-wrap {
  position: relative;
  padding: 0 2.25rem;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 46, 53, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
  color: #fff;
  background: rgba(42, 159, 212, 0.85);
  border-color: rgba(69, 212, 232, 0.5);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.carousel-btn.prev {
  left: -0.5rem;
}

.carousel-btn.next {
  right: -0.5rem;
}

/* Speciály */
/* Stejná struktura jako O nás — glass karta překrývá coverflow karusel */
.specialy-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.specialy-intro {
  position: relative;
  z-index: 20;
  padding: 2.1rem 2.15rem;
  margin-right: -3.5rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.specialy-intro .text-muted {
  margin-bottom: 1.25rem;
}

/* Multi-paragraph copy blocks — tighter rhythm between lines */
.copy-stack p {
  margin-bottom: 0.7rem;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.copy-kicker {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.special-card {
  flex: 0 0 calc((100% - 1.7rem) / 3);
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s;
}

.special-card:hover {
  transform: scale(1.015);
}

.special-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content rows */
.content-block {
  margin-bottom: 3.5rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-row--text-first .content-row-body {
  order: 1;
}

.content-row--text-first .content-row-media {
  order: 2;
}

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  background: rgba(0, 0, 0, 0.15);
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-row-body {
  padding: 2rem 2.1rem;
}

.content-row-body .text-muted {
  margin-bottom: 1.5rem;
}

.feature-media {
  position: relative;
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  z-index: 0;
  background: radial-gradient(ellipse at 60% 45%, rgba(69, 212, 232, 0.4), transparent 70%);
  filter: blur(34px);
  opacity: 0.85;
  pointer-events: none;
}

.feature-media-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  background: rgba(0, 0, 0, 0.15);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.feature-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.3, 1);
}

.feature-media:hover .feature-media-frame img {
  transform: scale(1.05);
}

.feature-stat {
  position: absolute;
  z-index: 2;
  right: -0.9rem;
  bottom: -0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.8rem 1.2rem;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.feature-stat--left {
  right: auto;
  left: -0.9rem;
}

.feature-stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-end) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}

.feature-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.feature-chips li {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── Spolupráce — single wide panel, no media, centered ─── */
.spoluprace-card {
  width: 100%;
  max-width: none;
  padding: 3rem 3.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spoluprace-card .copy-stack {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

/* ─── O nás — glass card + curved (coverflow) carousel ─── */
.onas-block {
  margin-bottom: 4.5rem;
}

.onas-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.onas-card {
  position: relative;
  z-index: 20;
  padding: 2.1rem 2.15rem;
  margin-right: -3.5rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.onas-card .text-muted {
  margin-bottom: 1.5rem;
}

.coverflow {
  position: relative;
  min-height: 480px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.coverflow .carousel-btn {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 30;
}

.coverflow .carousel-btn.prev {
  left: 3.75rem;
  right: auto;
}

.coverflow .carousel-btn.next {
  right: -0.5rem;
  left: auto;
}

.coverflow-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.coverflow-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(230px, 24vw, 300px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.8, 0.3, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
  will-change: transform, opacity, filter;
}

.coverflow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.coverflow-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 35, 42, 0.45);
  opacity: var(--veil, 0);
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.coverflow-slide.is-active {
  cursor: default;
}

/* Map */
.map-title {
  text-align: center;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  margin-bottom: 1.75rem;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  height: 480px;
}

.map-frame iframe {
  display: block;
  border: 0;
  width: 100%;
  margin-top: -60px;
  height: calc(100% + 55px);
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.map-filter {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.map-filter:hover,
.map-filter.active {
  background: rgba(69, 212, 232, 0.2);
  border-color: rgba(69, 212, 232, 0.5);
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 4.5rem 0 2.5rem;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col p {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer-col a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 2.5rem;
}

.footer-partnership h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.footer-partnership h4 svg {
  color: var(--text-muted);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.6rem;
}

.mt-2 {
  margin-top: 1.75rem !important;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  color: #ffffff;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  color: var(--accent);
}

.footer-payments {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-logo-main {
  height: 26px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.payment-cards {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-cards img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-copy-left {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy-right {
  text-align: right;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo img {
    margin-bottom: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-copy-right {
    text-align: left;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .beer-card {
    flex: 0 0 calc((100% - 2rem) / 3);
  }

  .special-card {
    flex: 0 0 calc((100% - 0.85rem) / 2);
  }
}

@media (max-width: 900px) {
  body {
    padding-top: calc(var(--header-h) + 0.75rem);
  }

  .site-header {
    top: 0.65rem;
    width: calc(100% - 1.25rem);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 86vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.25rem 2rem;
    gap: 0.15rem;
    background: rgba(8, 40, 48, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 280;
    flex: none;
    border-radius: 0;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-bottles {
    left: 8%;
    opacity: 0.5;
  }

  .beer-scroll-sentinel {
    position: static;
    height: auto;
  }

  .nase-piva-section {
    position: static;
    top: auto;
    min-height: 0;
    height: auto;
    overflow: visible;
    padding: var(--section-y) 0;
  }

  .nase-piva-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .beer-carousel-outer {
    padding: 0;
  }

  .beer-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .beer-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .beer-carousel-track {
    transform: none !important;
    gap: 0.75rem;
  }

  .beer-card {
    flex: 0 0 42%;
    scroll-snap-align: center;
  }

  .beer-card.is-active {
    background: transparent;
  }

  .beer-card.is-active .beer-bottle-wrap img {
    transform: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  }

  .beer-card:active .beer-bottle-wrap img {
    transform: scale(1.12) translateY(-8px);
  }

  .beer-carousel-outer .carousel-btn,
  .beer-progress-bar {
    display: none;
  }

  .content-row {
    grid-template-columns: 1fr;
  }

  .content-row--text-first .content-row-media,
  .content-row--text-first .content-row-body {
    order: unset;
  }

  .content-img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .feature-media-frame {
    max-height: none;
  }

  .feature-stat {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .feature-stat--left {
    left: 0.75rem;
    right: auto;
  }

  .content-row-body {
    padding: 1.5rem 1.35rem;
  }

  .spoluprace-card {
    padding: 1.75rem 1.5rem;
  }

  .onas-layout,
  .specialy-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .onas-card,
  .specialy-intro {
    margin-right: 0;
  }

  .coverflow {
    min-height: 400px;
    perspective: 1100px;
  }

  .coverflow .carousel-btn.prev {
    left: -0.5rem;
  }
}

@media (max-width: 600px) {
  .coverflow {
    min-height: 360px;
  }

  .coverflow-slide {
    width: clamp(190px, 62vw, 240px);
  }

  .beer-card {
    flex: 0 0 60%;
  }

  .beer-bottle-wrap {
    height: 170px;
  }

  .beer-bottle-wrap img {
    max-height: 145px;
  }

  .special-card {
    flex: 0 0 88%;
  }

  .carousel-wrap {
    position: relative;
    padding: 0;
  }

  .piva-info-panel,
  .specialy-intro {
    padding: 1.35rem 1.25rem;
  }

  .nav-logo img {
    width: 76px;
  }
}

