/* ============================================================
   CHEATY Bielefeld – Website-Konzept 2026
   Palette: Kreide & Creme (bewusst zurückhaltend, 1 Akzentfarbe)
   ============================================================ */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/caveat-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --ink: #1b1a18;
  --ink-2: #23211e;
  --ink-3: #2b2925;
  --paper: #faf7f1;
  --paper-2: #f3eee4;
  --white: #ffffff;
  --chalk: #f4f1e9;
  --chalk-dim: rgba(244, 241, 233, 0.6);
  --muted: #6b645a;
  --accent: #a16c2b;
  --accent-deep: #855620;
  --accent-bright: #dca562;
  --accent-tint: rgba(161, 108, 43, 0.09);
  --line: rgba(27, 26, 24, 0.12);
  --line-soft: rgba(27, 26, 24, 0.08);
  --line-dark: rgba(244, 241, 233, 0.16);
  --radius: 20px;
  --radius-s: 14px;
  --shadow: 0 24px 48px -28px rgba(27, 26, 24, 0.35);
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-hand: "Caveat", "Bradley Hand", "Segoe Script", cursive;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

::selection {
  background: rgba(220, 165, 98, 0.4);
}

:focus-visible {
  outline: 3px solid rgba(161, 108, 43, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 9vw, 108px);
}

/* Skip-Link (A11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--chalk);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus {
  left: 16px;
}

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.lede {
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--muted);
  max-width: 62ch;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.section-head .lede {
  margin-inline: auto;
  margin-top: 14px;
}

/* ⊛ Kreide-Bullet (wie auf der Tafel) */
.spark-list li,
.badge-spark {
  position: relative;
}
.spark::before,
.spark-list li::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 11px;
  flex: none;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='8.3'/%3E%3Cpath d='M10 4v12M4.8 7l10.4 6M15.2 7L4.8 13'/%3E%3C/g%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round'%3E%3Ccircle cx='10' cy='10' r='8.3'/%3E%3Cpath d='M10 4v12M4.8 7l10.4 6M15.2 7L4.8 13'/%3E%3C/g%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease,
    color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1.5px);
}
.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--chalk {
  background: var(--chalk);
  color: var(--ink);
}
.btn--chalk:hover {
  background: var(--white);
}
.btn--ghost {
  border-color: rgba(244, 241, 233, 0.4);
  color: var(--chalk);
}
.btn--ghost:hover {
  border-color: var(--chalk);
}
.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover {
  background: #000;
}
.btn--outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--ink);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--chalk);
  background: rgba(27, 26, 24, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(27, 26, 24, 0.92);
  border-bottom-color: rgba(244, 241, 233, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.04em;
}
.brand .brand-mark {
  align-self: center;
  width: 21px;
  height: 21px;
  color: var(--accent-bright);
}
.brand small {
  font-family: var(--font-hand);
  font-size: 17px;
  font-weight: 600;
  color: var(--chalk-dim);
  letter-spacing: 0.02em;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--chalk-dim);
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover {
  color: var(--chalk);
  background: rgba(244, 241, 233, 0.08);
}
.main-nav .nav-cta {
  margin-left: 10px;
  border: 1.5px solid rgba(220, 165, 98, 0.55);
  color: var(--accent-bright);
}
.main-nav .nav-cta:hover {
  background: rgba(220, 165, 98, 0.12);
  color: var(--accent-bright);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(244, 241, 233, 0.35);
  border-radius: 12px;
  background: transparent;
  color: var(--chalk);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--chalk);
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 88px));
  padding-bottom: clamp(64px, 8vw, 104px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      640px 460px at 82% 4%,
      rgba(220, 165, 98, 0.17),
      transparent 66%
    ),
    radial-gradient(520px 420px at 4% 96%, rgba(220, 165, 98, 0.07), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  background-color: var(--accent-bright);
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 15ch;
  margin-bottom: 20px;
}
.hero h1 .hand-accent {
  font-family: var(--font-hand);
  font-style: normal;
  font-weight: 600;
  color: var(--accent-bright);
  font-size: 1.12em;
  line-height: 1;
}

.hero .lede {
  color: var(--chalk-dim);
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-call {
  font-size: 14.5px;
  color: var(--chalk-dim);
}
.hero-call a {
  color: var(--chalk);
  font-weight: 650;
  border-bottom: 1.5px solid rgba(244, 241, 233, 0.35);
  transition: border-color 0.15s ease;
}
.hero-call a:hover {
  border-color: var(--chalk);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(244, 241, 233, 0.22);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--chalk-dim);
}
.hero-badges li::before {
  width: 13px;
  height: 13px;
  margin-right: 9px;
  background-color: var(--accent-bright);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art svg {
  width: min(430px, 100%);
  height: auto;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  background: var(--paper);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.h-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.h-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line);
}
.h-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--paper-2);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.h-card .icon svg {
  width: 32px;
  height: 32px;
}
.h-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.h-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ============================================================
   MENÜ
   ============================================================ */
.menu-section {
  background: var(--white);
}

.menu-chips {
  position: sticky;
  top: var(--header-h);
  z-index: 60;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 4px;
  margin-bottom: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.menu-chips::-webkit-scrollbar {
  display: none;
}
.menu-chips a {
  flex: none;
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 650;
  color: #55504a;
  transition: all 0.18s ease;
}
.menu-chips a:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.menu-chips a.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.menu-block {
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius) + 4px);
  background: var(--paper);
  padding: clamp(28px, 4.5vw, 52px);
  margin-bottom: 26px;
  scroll-margin-top: 150px;
}

.menu-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.menu-block-head h3 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 8px;
}
.menu-block-head .menu-note {
  font-size: 15px;
  color: var(--muted);
  max-width: 52ch;
}

.price-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent-tint);
  border: 1px solid rgba(161, 108, 43, 0.28);
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
}

.hand-note {
  font-family: var(--font-hand);
  font-size: 21px;
  color: var(--accent);
  transform: rotate(-2deg);
  display: inline-block;
}

/* --- Dunkler Tafel-Block (Mix-Drinks) --- */
.menu-block--dark {
  background: var(--ink-2);
  border-color: transparent;
  color: var(--chalk);
  background-image: radial-gradient(
      420px 300px at 88% 0%,
      rgba(220, 165, 98, 0.12),
      transparent 62%
    ),
    radial-gradient(380px 300px at 0% 100%, rgba(244, 241, 233, 0.045), transparent 60%);
  box-shadow: inset 0 0 0 1px rgba(244, 241, 233, 0.07);
}
.menu-block--dark .menu-note {
  color: var(--chalk-dim);
}

.price-heart {
  position: relative;
  flex: none;
  width: 96px;
  height: 88px;
  transform: rotate(-6deg);
  color: var(--chalk);
}
.price-heart svg {
  position: absolute;
  inset: 0;
  color: rgba(244, 241, 233, 0.85);
}
.price-heart span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-bottom: 10px;
  font-family: var(--font-hand);
  font-size: 30px;
  font-weight: 700;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
.menu-cols h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.menu-block--dark .menu-cols h4 {
  color: var(--chalk-dim);
  border-bottom-color: var(--line-dark);
}

.menu-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 16.5px;
  font-weight: 500;
}
.menu-block--dark .menu-list li::before {
  background-color: var(--accent-bright);
}

/* --- Limonaden-Grid --- */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 12px;
}
.flavor-grid li {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  padding: 15px 18px;
  font-size: 15.5px;
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.flavor-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(161, 108, 43, 0.4);
  box-shadow: 0 12px 26px -18px rgba(27, 26, 24, 0.35);
}

/* --- Süßes --- */
.sweet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}
.sweet-grid li {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.sweet-grid li:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.sweet-grid .txt strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18.5px;
  margin-bottom: 3px;
}
.sweet-grid .txt span {
  font-size: 14.5px;
  color: var(--muted);
}
.sweet-grid li::before {
  margin-top: 6px;
}

.menu-footnote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.menu-disclaimer {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about {
  background: var(--paper-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.about-copy h2 {
  margin-bottom: 18px;
}
.about-copy p {
  color: #524d45;
  margin-bottom: 16px;
  max-width: 58ch;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.service-chips li {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.facts-card {
  background: var(--ink-2);
  color: var(--chalk);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow);
  background-image: radial-gradient(
    320px 240px at 90% 0%,
    rgba(220, 165, 98, 0.13),
    transparent 62%
  );
  transform: rotate(-0.6deg);
}
.facts-card .hand {
  font-size: 27px;
  color: var(--accent-bright);
  display: block;
  margin-bottom: 18px;
}
.facts-card li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15.5px;
  border-bottom: 1px solid rgba(244, 241, 233, 0.09);
}
.facts-card li:last-child {
  border-bottom: 0;
}
.facts-card li::before {
  background-color: var(--accent-bright);
  margin-top: 5px;
}

/* ============================================================
   KONTAKT / BESUCH
   ============================================================ */
.visit {
  background: var(--white);
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.v-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--paper);
}
.v-card h3 {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}
.v-card p {
  font-size: 15.5px;
  color: #524d45;
}
.v-card .small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.v-card a.inline-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 650;
  color: var(--accent-deep);
  border-bottom: 1.5px solid rgba(161, 108, 43, 0.35);
  transition: border-color 0.15s ease;
}
.v-card a.inline-link:hover {
  border-color: var(--accent-deep);
}
.visit-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--chalk-dim);
  padding: clamp(48px, 6vw, 72px) 0 32px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(244, 241, 233, 0.1);
}
.footer-brand {
  max-width: 320px;
}
.footer-brand .brand {
  color: var(--chalk);
  margin-bottom: 10px;
}
.footer-brand .hand {
  display: block;
  font-size: 21px;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
}
.footer-brand a:hover {
  color: var(--chalk);
}
.footer-nav {
  display: flex;
  gap: 56px;
  margin-left: auto;
}
.footer-nav h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, 0.42);
  margin-bottom: 14px;
}
.footer-nav li {
  margin-bottom: 9px;
}
.footer-nav a {
  font-size: 14.5px;
  transition: color 0.15s ease;
}
.footer-nav a:hover {
  color: var(--chalk);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(244, 241, 233, 0.42);
}

/* ============================================================
   Unterseiten (Impressum / Datenschutz)
   ============================================================ */
.legal-main {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  min-height: 70vh;
}
.legal-main h1 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 16px;
}
.legal-main h2 {
  font-size: 21px;
  margin: 32px 0 10px;
}
.legal-main p {
  max-width: 70ch;
  color: #524d45;
  margin-bottom: 12px;
}
.legal-note {
  background: var(--accent-tint);
  border: 1px solid rgba(161, 108, 43, 0.28);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--accent-deep);
  margin: 20px 0 8px;
  max-width: 70ch;
}

/* ============================================================
   Animationen (nur mit JS aktiv → ohne JS alles sichtbar)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .btn,
  .h-card,
  .flavor-grid li {
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    left: 14px;
    right: 14px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #22201d;
    border: 1px solid rgba(244, 241, 233, 0.12);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .main-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 13px 16px;
    font-size: 15.5px;
    color: var(--chalk);
  }
  .main-nav .nav-cta {
    margin: 10px 0 0;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }
  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
  }
  .hero-art svg {
    width: min(320px, 78%);
  }
  .hero h1 {
    max-width: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .facts-card {
    transform: none;
  }

  .menu-cols {
    grid-template-columns: 1fr;
  }
  .sweet-grid {
    grid-template-columns: 1fr;
  }
  .sweet-grid li:nth-last-child(-n + 2) {
    border-bottom: 1px dashed var(--line);
  }
  .sweet-grid li:last-child {
    border-bottom: 0;
  }
  .menu-block-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-heart {
    order: -1;
    margin-left: auto;
    margin-bottom: -30px;
  }
  .menu-chips {
    justify-content: flex-start;
    width: calc(100% + 48px);
    margin-left: -24px;
    padding-inline: 24px;
  }
  .footer-nav {
    margin-left: 0;
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, 100% - 40px);
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .flavor-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flavor-grid li {
    font-size: 14px;
    padding: 12px 13px;
  }
  .flavor-grid li::before {
    display: none;
  }
  .menu-chips {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding-inline: 20px;
  }
}
