:root {
  --ink: #141118;
  --muted: #665f68;
  --paper: #fff8f0;
  --paper-strong: #ffffff;
  --cyan: #19c5cf;
  --cyan-dark: #087f8c;
  --pink: #e91475;
  --pink-soft: #ff75a8;
  --yellow: #ffbf18;
  --orange: #ff6a22;
  --green: #2d7d54;
  --shadow: 0 28px 80px rgba(29, 15, 37, 0.18);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(25, 197, 207, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(233, 20, 117, 0.06) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 72px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--paper-strong), 0 8px 20px rgba(233, 20, 117, 0.22);
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #302a32;
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: rgba(25, 197, 207, 0.14);
  color: var(--cyan-dark);
}

.site-nav .nav-pill {
  background: var(--ink);
  color: #fff;
}

.site-nav .nav-pill:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 154px max(24px, calc((100vw - 1160px) / 2)) 48px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 8, 17, 0.84), rgba(13, 8, 17, 0.5) 38%, rgba(13, 8, 17, 0.08) 76%),
    linear-gradient(0deg, rgba(13, 8, 17, 0.62), rgba(13, 8, 17, 0.02) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.paint-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.splash {
  position: absolute;
  display: block;
  filter: saturate(1.15);
  opacity: 0.88;
  transform: rotate(-10deg);
}

.splash::before,
.splash::after {
  position: absolute;
  content: "";
  border-radius: 46% 54% 64% 36% / 42% 37% 63% 58%;
}

.splash-pink {
  top: 18%;
  left: -8%;
  width: 360px;
  height: 270px;
  background:
    radial-gradient(circle at 82% 18%, var(--yellow) 0 5px, transparent 6px),
    radial-gradient(circle at 62% 70%, var(--cyan) 0 8px, transparent 9px),
    radial-gradient(circle at 30% 45%, rgba(233, 20, 117, 0.8), transparent 64%);
  clip-path: polygon(5% 18%, 50% 0, 96% 20%, 78% 64%, 100% 92%, 41% 82%, 8% 100%, 18% 56%);
}

.splash-cyan {
  right: 7%;
  bottom: 4%;
  width: 270px;
  height: 210px;
  background:
    radial-gradient(circle at 24% 30%, var(--cyan) 0 7px, transparent 8px),
    radial-gradient(circle at 76% 76%, var(--pink-soft) 0 6px, transparent 7px),
    radial-gradient(circle at 48% 48%, rgba(25, 197, 207, 0.8), transparent 68%);
  clip-path: polygon(0 30%, 24% 0, 66% 10%, 100% 34%, 82% 80%, 36% 100%, 8% 72%);
}

.splash-yellow {
  top: 12%;
  right: 36%;
  width: 180px;
  height: 150px;
  background:
    radial-gradient(circle at 70% 24%, var(--pink) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 60%, rgba(255, 191, 24, 0.85), transparent 66%);
  clip-path: polygon(12% 0, 90% 6%, 100% 54%, 58% 100%, 8% 72%, 0 24%);
}

.bubble-field span {
  position: absolute;
  z-index: 1;
  width: var(--size);
  height: var(--size);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.85), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(25, 197, 207, 0.45), transparent 28%);
  box-shadow: inset -8px -8px 20px rgba(233, 20, 117, 0.2);
  opacity: 0.82;
  animation: floatUp var(--duration) ease-in-out infinite;
}

.bubble-field span:nth-child(1) {
  --size: 42px;
  --duration: 8s;
  left: 19%;
  bottom: 24%;
}

.bubble-field span:nth-child(2) {
  --size: 24px;
  --duration: 7s;
  left: 42%;
  bottom: 14%;
  animation-delay: -2s;
}

.bubble-field span:nth-child(3) {
  --size: 34px;
  --duration: 9s;
  right: 28%;
  bottom: 32%;
  animation-delay: -4s;
}

.bubble-field span:nth-child(4) {
  --size: 18px;
  --duration: 6s;
  right: 16%;
  bottom: 20%;
  animation-delay: -1s;
}

.bubble-field span:nth-child(5) {
  --size: 28px;
  --duration: 8.5s;
  left: 9%;
  bottom: 12%;
  animation-delay: -5s;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -34px, 0) scale(1.08);
  }
}

.hero-content {
  align-self: end;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.6rem, 15vw, 11.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange) 54%, var(--yellow));
  color: #fff;
  box-shadow: 0 16px 36px rgba(233, 20, 117, 0.28);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-instagram {
  border: 1px solid rgba(255, 117, 168, 0.72);
  background: rgba(233, 20, 117, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-instagram:hover {
  background: rgba(233, 20, 117, 0.32);
}

.ink-drop {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: ink 540ms ease-out forwards;
}

@keyframes ink {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(24);
  }
}

.section {
  position: relative;
  padding: 104px 0;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.location-layout,
.mobile-layout,
.menu-layout,
.section-heading,
.menu-grid,
.booking-panel,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.15rem;
}

.menu-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.location-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(25, 197, 207, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 191, 24, 0.2), transparent 30%),
    linear-gradient(115deg, rgba(255, 117, 168, 0.12), transparent 36%),
    var(--paper);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: center;
}

.location-section .section-copy h2 {
  max-width: 620px;
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  line-height: 0.96;
}

.location-section .section-copy p:not(.eyebrow) {
  max-width: 560px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease;
}

.map-link:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 8px 8px 0 var(--ink), 0 24px 70px rgba(20, 17, 24, 0.14);
}

.map-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 12px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.mobile-section {
  background:
    radial-gradient(circle at 20% 0, rgba(255, 191, 24, 0.18), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(233, 20, 117, 0.14), transparent 30%),
    #ecfbfb;
}

.mobile-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.mobile-photo {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--ink), 0 26px 76px rgba(20, 17, 24, 0.18);
}

.mobile-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 17, 24, 0), rgba(20, 17, 24, 0.22)),
    linear-gradient(90deg, rgba(25, 197, 207, 0.18), transparent 42%);
  content: "";
  pointer-events: none;
}

.mobile-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 64% 50%;
}

.mobile-section .section-copy h2 {
  max-width: 680px;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.event-list button {
  min-height: 44px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.event-list button {
  padding: 0 16px;
}

.event-list button:hover,
.event-list button.is-picked {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.check-list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #332c35;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 950;
}

.menu-section {
  background:
    linear-gradient(115deg, rgba(255, 117, 168, 0.13), transparent 34%),
    linear-gradient(280deg, rgba(255, 191, 24, 0.18), transparent 36%),
    var(--paper);
}

.menu-layout {
  display: grid;
  gap: 30px;
}

.section-heading {
  margin-bottom: 34px;
}

.menu-section .section-heading,
.menu-section .menu-grid {
  width: auto;
  margin: 0;
}

.menu-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
}

.menu-section .section-heading p:not(.eyebrow) {
  max-width: 560px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(20, 17, 24, 0.14);
  box-shadow: 8px 8px 0 var(--ink), 0 20px 56px rgba(20, 17, 24, 0.1);
}

.menu-item {
  min-height: 172px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  transition: background 180ms ease, opacity 180ms ease;
}

.menu-item:hover {
  background: #fff;
}

.item-mark {
  display: block;
  width: 48px;
  height: 5px;
  min-height: 0;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--cyan);
}

.item-mark.pink {
  background: var(--pink);
}

.item-mark.yellow {
  background: var(--yellow);
}

.item-mark.orange {
  background: var(--orange);
}

.booking-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(25, 197, 207, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 191, 24, 0.24), transparent 28%),
    #fff;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: start;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 117, 168, 0.12), transparent 34%),
    #fff;
  box-shadow: 10px 10px 0 var(--ink);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 16px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  font-weight: 950;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #332c35;
  font-size: 0.88rem;
  font-weight: 950;
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 2px solid rgba(20, 17, 24, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-form input,
.booking-form select {
  min-height: 50px;
  padding: 0 14px;
}

.booking-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(25, 197, 207, 0.18);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  display: grid;
  margin: 0;
}

.site-footer span {
  color: var(--muted);
}

.site-footer a {
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (min-width: 981px) and (max-width: 1080px) {
  .site-nav a {
    padding: 0 12px;
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 132px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(13, 8, 17, 0.88), rgba(13, 8, 17, 0.46)),
      linear-gradient(0deg, rgba(13, 8, 17, 0.68), rgba(13, 8, 17, 0.04) 52%);
  }

  .location-layout,
  .mobile-layout,
  .menu-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .mobile-layout {
    gap: 34px;
  }

  .mobile-photo,
  .mobile-photo img {
    min-height: 380px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-panel,
  .map-iframe {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 22px, 1160px);
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 34px;
  }

  .hero-media img {
    object-position: 67% 50%;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 74px 0;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .menu-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    padding: 22px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .map-panel {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-right: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .mobile-photo,
  .mobile-photo img {
    min-height: 310px;
  }
}

/* Nápojový lístek: stejný papír, barevné akcenty a rámečky jako zbytek webu. */
#nabidka {
  scroll-margin-top: 110px;
}

.menu-section .eyebrow {
  color: var(--cyan-dark);
}

.menu-categories {
  display: grid;
  gap: 20px;
}

.menu-category {
  --menu-accent: var(--pink);
  --menu-tint: #fff0f5;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 6px 6px 0 var(--ink);
}

.menu-category--fresh {
  --menu-accent: var(--cyan-dark);
  --menu-tint: #e5f8f8;
}

.menu-category--color {
  --menu-accent: #6f428e;
  --menu-tint: #f3ecfa;
}

.menu-category--drinks {
  --menu-accent: #a44712;
  --menu-tint: #fff2d4;
}

.menu-category summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  background: var(--menu-tint);
  cursor: pointer;
  list-style: none;
}

.menu-category summary::-webkit-details-marker {
  display: none;
}

.menu-category summary:hover {
  background: #fff;
}

.menu-category summary:focus-visible {
  outline: 3px solid var(--menu-accent);
  outline-offset: -6px;
}

.menu-number {
  display: grid;
  flex: 0 0 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--menu-accent);
  font-size: 0.85rem;
  font-weight: 850;
}

.menu-category-heading {
  flex: 1;
  min-width: 0;
}

.menu-category-title {
  display: block;
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  line-height: 1.2;
}

.menu-category-heading > span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-expand {
  position: relative;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.menu-expand::before,
.menu-expand::after {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-expand::after {
  transform: rotate(90deg);
}

.menu-category[open] .menu-expand::after {
  transform: rotate(0);
}

.menu-category-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 30px;
  border-top: 2px solid var(--ink);
}

.menu-column {
  min-width: 0;
}

.drink-card + .drink-card {
  margin-top: 30px;
}

.drink-card h4 {
  margin: 0;
  color: var(--menu-accent);
  font-size: 1.25rem;
}

.drink-card-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.drink-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.drink-item {
  font-weight: 650;
  overflow-wrap: anywhere;
  padding: 11px 0;
  border-bottom: 1px dashed #ded4d7;
}

.drink-item:last-child {
  border-bottom: 0;
}

.drink-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.menu-footnote {
  padding: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-footnote p {
  margin: 8px 0;
}

.menu-footnote p:first-child {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1rem;
}

@media (max-width: 720px) {
  .menu-category summary {
    gap: 12px;
    padding: 20px 16px;
  }

  .menu-number {
    flex-basis: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .menu-category-heading > span {
    font-size: 0.8rem;
  }

  .menu-category-body {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 22px 18px;
  }

  .drink-item {
    font-size: 0.92rem;
  }

  .menu-category {
    box-shadow: 4px 4px 0 var(--ink);
  }
}

.menu-section .section-heading,
.menu-category-heading,
.drink-card,
.menu-footnote {
  text-align: center;
}

.menu-section .section-heading h2,
.menu-section .section-heading p:not(.eyebrow) {
  margin-inline: auto;
}

.menu-category summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
}

.menu-expand {
  width: 30px;
  justify-self: end;
}

@media (max-width: 720px) {
  .menu-category summary {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }
}

/* Veřejný Instagram profil s trvale dostupným odkazem. */
.stories-section {
  background: linear-gradient(120deg, #fff0f5, var(--paper) 50%, #e5f8f8);
}

.stories-panel {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(22px, 4vw, 48px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
}

.stories-panel .section-heading {
  width: auto;
}

.stories-panel .eyebrow {
  color: var(--cyan-dark);
}

.stories-panel h2,
.stories-panel .section-heading p:not(.eyebrow) {
  margin-inline: auto;
}

.stories-widget {
  width: min(540px, 100%);
  min-width: 0;
  margin: 30px auto 0;
}

.stories-widget iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: var(--radius);
}

.stories-panel .instagram-link {
  max-width: 100%;
}

.instagram-fallback {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

#instagram-stories {
  scroll-margin-top: 110px;
}

.stories-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  text-align: left;
}

.stories-panel .section-heading {
  min-width: 0;
  margin: 0;
}

.stories-panel h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1;
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.instagram-profile > span:nth-child(2) {
  min-width: 0;
}

.instagram-profile strong,
.instagram-profile small {
  display: block;
}

.instagram-profile small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.instagram-avatar {
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--pink), var(--cyan));
}

.instagram-avatar img {
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.stories-widget {
  margin: 0 auto;
}

.stories-widget .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 1px solid #ded4d7;
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.instagram-preview {
  display: block;
}

.instagram-preview > img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.instagram-preview > span {
  display: grid;
  gap: 6px;
  padding: 20px;
}

.instagram-preview > span > span {
  color: var(--cyan-dark);
  font-size: 0.9rem;
}

.instagram-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stories-panel a:focus-visible {
  outline: 3px solid var(--cyan-dark);
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .stories-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Instagram vkládá vlastní rozměry inline; šířku řídí náš kontejner. */
.stories-widget iframe.instagram-media {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 600px) {
  .stories-panel {
    padding: 24px 12px;
    gap: 24px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .stories-panel .section-heading {
    padding-inline: 6px;
  }

  .stories-panel h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.06;
  }

  .stories-panel .section-heading p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .instagram-profile {
    gap: 10px;
    margin-top: 22px;
  }

  .instagram-avatar img {
    width: 46px;
    height: 46px;
  }

  .instagram-profile small {
    font-size: 0.75rem;
  }

  .stories-panel .instagram-link {
    justify-content: center;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
  }

  .instagram-fallback {
    margin-top: 16px;
    font-size: 0.8rem;
    text-align: center;
  }
}
