/* ===================================================================
   Restaurant Kartbahn Wohlen — Variante 3 "Hybrid"
   Renn-Energie im Hero & in den Akzenten, warme Gastro-Optik im Inhalt
   =================================================================== */

:root {
  --red: #e10600;
  --red-2: #ff2418;
  --amber: #c8851a;
  --ink: #0e0e12;
  --ink-2: #16161b;
  --cream: #f6f1e7;
  --cream-2: #fffdf6;
  --surface-dark: #1f1f25;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1180px;
  --radius: 16px;
  --shadow: 0 18px 44px rgba(20, 14, 4, .16);
  --shadow-dark: 0 18px 40px rgba(0, 0, 0, .5);

  /* Section-Theme (Standard = dunkel) */
  --c-bg: var(--ink);
  --c-card: var(--surface-dark);
  --c-input: #26262d;
  --c-title: #ffffff;
  --c-text: #c9c6bd;
  --c-muted: #94918a;
  --c-border: rgba(255, 255, 255, .10);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--c-text);
  line-height: 1.68;
  font-size: 17px;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 8px; text-decoration: none; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 15px; padding: 14px 26px; border-radius: 11px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--ghost { border-color: var(--c-border); color: var(--c-title); background: transparent; }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ---------- Header (immer dunkel) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 18, .9); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .25s;
}
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.site-header.is-scrolled { background: rgba(14, 14, 18, .99); }
.site-header.is-scrolled .header__inner { min-height: 64px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__logo { height: 50px; width: auto; display: block; }
.brand--footer .brand__logo { height: 44px; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__mark rect { fill: var(--red); }
.brand__mark .brand__check { fill: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: .12em; color: #fff;
}
.brand__text em {
  font-style: normal; font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: #97948c; margin-top: 3px;
}

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: 15px; font-weight: 500; text-decoration: none; color: #ededec;
  padding: 9px 14px; border-radius: 8px; position: relative;
  transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 3px; background: var(--red); border-radius: 3px;
}
.header__cta { margin-left: 4px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff;
  transition: transform .25s, opacity .2s; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (dunkel, Motorsport) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 500px at 78% -10%, #2a0605 0%, transparent 60%), var(--ink);
  padding: clamp(70px, 12vw, 150px) 0 clamp(60px, 9vw, 120px);
}
.hero__stripes {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, transparent 0 64px, rgba(225,6,0,.07) 64px 70px);
}
.hero__stripes::after {
  content: ""; position: absolute; right: -60px; top: 0; bottom: 0; width: 280px;
  background: repeating-conic-gradient(#ffffff0d 0% 25%, transparent 0% 50%) 0 0 / 26px 26px;
  transform: skewX(-14deg); opacity: .5;
}
.hero__inner { position: relative; max-width: 760px; }
.hero__kicker {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .3em;
  font-size: 14px; color: var(--red-2); font-weight: 600; margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.4rem, 12vw, 8rem); line-height: .92; letter-spacing: .02em;
  text-transform: uppercase; color: #fff;
}
.hero__title span { color: var(--red); }
.hero__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: #cbc8bf;
  margin: 22px 0 32px; max-width: 560px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.2); }
.hero .btn--ghost:hover { border-color: var(--red); color: #fff; }
.hero__status { margin-top: 26px; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(700px 360px at 85% -20%, #2a0605 0%, transparent 65%), var(--ink);
  padding: clamp(60px, 9vw, 110px) 0 clamp(44px, 6vw, 72px);
}
.page-hero__stripes {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, transparent 0 70px, rgba(225,6,0,.06) 70px 76px);
}
.page-hero .hero__kicker { position: relative; }
.page-hero__title {
  position: relative; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1; text-transform: uppercase;
  color: #fff; margin-top: 10px;
}
.page-hero__lead {
  position: relative; color: #c6c3ba; font-size: 1.15rem; margin-top: 16px; max-width: 560px;
}

/* ---------- Info-Bar (dunkel) ---------- */
.infobar { background: #17171c; border-block: 1px solid rgba(255,255,255,.08); }
.infobar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.infobar__item { padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.infobar__item + .infobar__item { border-left: 1px solid rgba(255,255,255,.08); }
.infobar__label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; color: var(--red-2); font-weight: 600;
}
.infobar__value { font-size: 15px; color: #d8d5cc; }
.infobar__value a { color: #fff; text-decoration: none; }
.infobar__value a:hover { color: var(--red-2); }

/* ===================================================================
   Section-Tones — hier entsteht der Hybrid-Effekt
   tone-dark = dunkel/Renn   ·   tone-light = warm/gemütlich
   =================================================================== */
.section { padding: clamp(56px, 9vw, 104px) 0; background: var(--c-bg); color: var(--c-text); }

.tone-dark {
  --c-bg: var(--ink);
  --c-card: var(--surface-dark);
  --c-input: #26262d;
  --c-title: #ffffff;
  --c-text: #c9c6bd;
  --c-muted: #94918a;
  --c-border: rgba(255, 255, 255, .10);
}
.tone-light {
  --c-bg: var(--cream);
  --c-card: var(--cream-2);
  --c-input: #ffffff;
  --c-title: #211d15;
  --c-text: #5a5346;
  --c-muted: #837a69;
  --c-border: rgba(45, 33, 12, .15);
}

.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.06; text-transform: uppercase;
  color: var(--c-title); margin-bottom: 18px;
}
.section p { color: var(--c-text); max-width: 62ch; }
.section p + p { margin-top: 14px; }

.link-arrow {
  display: inline-block; margin-top: 20px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
  color: var(--red); text-decoration: none; font-size: 15px;
}
.link-arrow:hover { color: var(--c-title); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.split .btn, .split .link-arrow { margin-top: 8px; }
.split__media { min-height: 340px; }

.media-card {
  position: relative; height: 100%; min-height: 340px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-dark);
}
.media-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-conic-gradient(rgba(255,255,255,.05) 0 25%, transparent 0 50%);
  background-size: 34px 34px; opacity: .6;
}
.media-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}
.media-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.media-card--track { background: linear-gradient(150deg, #1d1f24, #0d0d10 70%); }
.media-card--event { background: linear-gradient(150deg, #2a0a09, #101012 70%); }
.media-card--team  { background: linear-gradient(150deg, #23201b, #100f0c 70%); }
.media-card__tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 1;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px; border-radius: 8px;
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 38px; }
.card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.45); }
.tone-light .card:hover { box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px;
  background: rgba(225,6,0,.12); color: var(--red); font-size: 22px; font-weight: 700;
  font-family: var(--font-display); margin-bottom: 16px;
}
.card h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.15rem; color: var(--c-title); margin-bottom: 8px;
}
.card p { font-size: 15px; color: var(--c-muted); }

/* ---------- Menu teaser ---------- */
.menu-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 34px 0 30px; }
.menu-teaser__cat {
  display: flex; flex-direction: column; gap: 6px; text-decoration: none;
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 24px 22px; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.05rem; color: var(--c-title);
  transition: transform .18s, border-color .2s, box-shadow .2s;
}
.menu-teaser__cat span { font-size: 13px; color: var(--amber); letter-spacing: .18em; }
.menu-teaser__cat:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }

/* ---------- Menu page ---------- */
.menu-nav-wrap { padding: 26px 0; }
.menu-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.menu-nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: 14px; text-decoration: none; color: var(--c-title);
  border: 1px solid var(--c-border); padding: 10px 18px; border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s;
}
.menu-nav a:hover { background: var(--red); border-color: var(--red); color: #fff; }

.menu-section__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 26px; }
.menu-section__num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
  color: var(--amber); line-height: 1;
}
.menu-section__head .section-title { margin-bottom: 0; }

.menu-list { list-style: none; }
.menu-item { padding: 18px 0; border-bottom: 1px dashed var(--c-border); }
.menu-item:last-child { border-bottom: none; }
.menu-item__head { display: flex; align-items: baseline; gap: 12px; }
.menu-item__name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--c-title); text-transform: uppercase; letter-spacing: .02em;
}
.menu-item__name .tag {
  font-size: 11px; letter-spacing: .1em; color: var(--red);
  border: 1px solid rgba(225,6,0,.4); border-radius: 6px; padding: 2px 7px;
  margin-left: 8px; font-style: normal;
}
.menu-item__dots { flex: 1; border-bottom: 2px dotted var(--c-border); transform: translateY(-4px); }
.menu-item__price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--red); white-space: nowrap;
}
.menu-item__price::before { content: "CHF "; font-size: .7em; color: var(--c-muted); }
.menu-item__desc { font-size: 15px; color: var(--c-muted); margin-top: 4px; }
.menu-note {
  margin-top: 28px; font-size: 14px; color: var(--c-muted);
  background: var(--c-card); border: 1px solid var(--c-border);
  border-left: 3px solid var(--red); border-radius: 10px; padding: 16px 18px;
}

/* ---------- Check list ---------- */
.check-list { list-style: none; margin-top: 30px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 38px; color: var(--c-text); font-size: 1.02rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 26px; height: 26px;
  display: grid; place-items: center; background: var(--red); color: #fff;
  border-radius: 7px; font-size: 14px; font-weight: 700;
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--red), #8a0400); position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -40px; top: 0; bottom: 0; width: 240px;
  background: repeating-conic-gradient(#ffffff14 0 25%, transparent 0 50%) 0 0 / 28px 28px;
  transform: skewX(-14deg);
}
.cta-band__inner {
  position: relative; display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between; padding: clamp(40px,6vw,64px) 24px;
}
.cta-band h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem); color: #fff; max-width: 18ch; line-height: 1.1;
}
.cta-band .btn--primary { background: #fff; color: #14110b; }
.cta-band .btn--primary:hover { background: #14110b; color: #fff; }

/* ---------- Status badge ---------- */
.status {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--c-border);
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; }
.status--open { color: #2e9d4f; background: rgba(46,157,79,.12); border-color: rgba(46,157,79,.4); }
.status--open .status__dot { background: #34b659; box-shadow: 0 0 0 4px rgba(52,182,89,.22); }
.status--closed { color: #d8473d; background: rgba(216,71,61,.12); border-color: rgba(216,71,61,.4); }
.status--closed .status__dot { background: #e2554b; }
.hero__status .status, .page-hero .status { color: #fff; }
.hero__status .status--open, .page-hero .status--open { color: #5cd07a; }
.hero__status .status--closed, .page-hero .status--closed { color: #ff7a70; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 720px; }
.form-intro { margin-bottom: 22px; color: var(--c-text); }
.form-intro a { color: var(--red); }
.form { display: grid; gap: 16px; }
.form .section-title { margin-bottom: 4px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: flex; flex-direction: column; gap: 7px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .05em; font-size: 13px; color: var(--c-muted);
}
.form input, .form select, .form textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--c-title);
  background: var(--c-input); border: 1px solid var(--c-border); border-radius: 10px;
  padding: 13px 14px; text-transform: none; letter-spacing: 0;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--red); }
.form textarea { resize: vertical; }
.form .btn { justify-self: start; }
.form__hint {
  font-size: 14px; color: var(--red); min-height: 1.2em;
  font-family: var(--font-body); text-transform: none; letter-spacing: 0;
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
.contact-card .section-title { margin-bottom: 22px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin-bottom: 24px; }
.contact-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding-bottom: 14px; border-bottom: 1px solid var(--c-border);
}
.contact-list__label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em;
  font-size: 12px; color: var(--red); font-weight: 600;
}
.contact-list__value { font-size: 1.05rem; color: var(--c-title); text-decoration: none; }
a.contact-list__value:hover { color: var(--red); }

.hours-box {
  margin-top: 26px; background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 22px;
}
.hours-box h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em;
  color: var(--c-title); margin-bottom: 12px; font-size: 1.1rem;
}
.hours-list { list-style: none; display: grid; gap: 4px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 16px; padding: 7px 10px;
  border-radius: 7px; font-size: 15px; color: var(--c-text);
}
.hours-list li.is-today { background: rgba(225,6,0,.1); color: var(--c-title); font-weight: 600; }
.hours-box__status { margin-top: 14px; }

.contact-side { display: grid; gap: 28px; }
.map-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--c-border); box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer (dunkel) ---------- */
.site-footer { background: #0a0a0c; border-top: 3px solid var(--red); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 36px;
  padding: clamp(48px,7vw,72px) 24px 44px;
}
.brand--footer { margin-bottom: 14px; }
.footer__blurb { color: #97948c; font-size: 15px; max-width: 34ch; }
.footer__col h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em;
  font-size: 14px; color: var(--red-2); margin-bottom: 14px;
}
.footer__hours, .footer__contact, .footer__nav { list-style: none; display: grid; gap: 9px; }
.footer__hours li { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; color: #c4c1b8; }
.footer__contact li, .footer__nav li { font-size: 14px; color: #c4c1b8; }
.footer__contact a, .footer__nav a { color: #c4c1b8; text-decoration: none; }
.footer__contact a:hover, .footer__nav a:hover { color: var(--red-2); }
.footer__social { display: flex; gap: 12px; margin-top: 14px; }
.footer__social a {
  font-family: var(--font-display); text-transform: uppercase; font-size: 12px;
  letter-spacing: .08em; text-decoration: none; color: #fff;
  border: 1px solid rgba(255,255,255,.14); padding: 7px 12px; border-radius: 7px;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  padding: 18px 24px; font-size: 13px; color: #8a877f;
}
.footer__legal a { color: #8a877f; text-decoration: none; }
.footer__legal a:hover { color: var(--red-2); }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 940px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: #101015; border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 12px 16px 20px; margin: 0;
    transform: translateY(-130%); transition: transform .28s ease;
    box-shadow: var(--shadow-dark);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px; font-size: 17px; border-radius: 8px; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: rgba(225,6,0,.16); }
  .nav-toggle { display: flex; margin-left: auto; }
  .header__cta { display: none; }
  .infobar__grid { grid-template-columns: 1fr; }
  .infobar__item + .infobar__item { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .menu-teaser { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .cards, .menu-teaser, .form__row { grid-template-columns: 1fr; }
  .menu-item__head { flex-wrap: wrap; }
  .menu-item__dots { display: none; }
  .menu-item__price { margin-left: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .menu-section__head { flex-wrap: wrap; gap: 8px; }
}

/* ---------- Event-Angebote (Firmen Events) ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.offer-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 30px 28px;
}
.tone-light .offer-card { box-shadow: var(--shadow); }
.offer-card__head { padding-bottom: 16px; margin-bottom: 6px; border-bottom: 2px solid var(--red); }
.offer-card__head h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.6rem; letter-spacing: .03em; color: var(--c-title);
}
.offer-card__head p { font-size: 14px; color: var(--c-muted); margin-top: 5px; }
.offer-card .menu-list { margin-top: 4px; }
.offer-card__highlight {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 18px; background: var(--red); color: #fff; border-radius: 10px;
  padding: 14px 18px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .04em; font-size: 1rem;
}
.offer-card__hl-price { font-weight: 700; font-size: 1.25rem; }

@media (max-width: 760px) { .offer-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
