/* ===================================================================
   Restaurant Kartbahn Wohlen — Variante 1 "Motorsport"
   Dunkel, kräftig, Renn-Optik
   =================================================================== */

:root {
  --red: #e10600;
  --red-2: #ff2418;
  --ink: #0c0c0e;
  --ink-2: #141418;
  --surface: #1c1c21;
  --surface-2: #26262c;
  --text: #ededef;
  --muted: #9a9aa3;
  --border: rgba(255, 255, 255, .10);
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

* { 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(--text);
  line-height: 1.65;
  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-2); 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: 10px; 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(--border); color: var(--text); background: rgba(255,255,255,.03); }
.btn--ghost:hover { border-color: var(--red); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 12, 14, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background .25s, padding .25s;
}
.header__inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 76px;
}
.site-header.is-scrolled { background: rgba(12, 12, 14, .98); }
.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: var(--muted); 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: var(--text);
  padding: 9px 14px; border-radius: 8px; position: relative;
  transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.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 var(--border);
  background: rgba(255,255,255,.04); 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 ---------- */
.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: #c9c9d0;
  margin: 22px 0 32px; max-width: 560px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__status { margin-top: 26px; }

/* ---------- Page hero (Unterseiten) ---------- */
.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__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: #c2c2ca; font-size: 1.15rem;
  margin-top: 16px; max-width: 560px;
}

/* ---------- Info-Bar ---------- */
.infobar { background: var(--surface); border-block: 1px solid var(--border); }
.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 var(--border); }
.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: #d6d6dc; }
.infobar__value a { color: #fff; text-decoration: none; }
.infobar__value a:hover { color: var(--red-2); }

/* ---------- Sections / Tones ---------- */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.tone-dark { background: var(--ink); }
.tone-light { background: var(--ink-2); }

.eyebrow {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .22em; font-size: 13px; font-weight: 600; color: var(--red-2);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.05;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.section p { color: #c2c2ca; 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-2); text-decoration: none; font-size: 15px;
}
.link-arrow:hover { color: #fff; }

/* ---------- Split layout ---------- */
.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 var(--border); box-shadow: var(--shadow);
}
.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(--red-2));
}
.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, #20232a, #0e0e11 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 var(--border);
  padding: 8px 14px; border-radius: 8px;
}

/* ---------- Cards ---------- */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 38px;
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .18s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.5); }
.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 12px; background: rgba(225,6,0,.14); color: var(--red-2);
  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: #fff; margin-bottom: 8px;
}
.card p { font-size: 15px; color: var(--muted); }

/* ---------- Menu teaser (Home) ---------- */
.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(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.05rem; color: #fff;
  transition: transform .18s, border-color .2s, background .2s;
}
.menu-teaser__cat span {
  font-size: 13px; color: var(--red-2); letter-spacing: .18em;
}
.menu-teaser__cat:hover {
  transform: translateY(-5px); border-color: var(--red);
  background: var(--surface-2);
}

/* ---------- 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(--text);
  border: 1px solid var(--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(--red); 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(--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: #fff; text-transform: uppercase; letter-spacing: .02em;
}
.menu-item__name .tag {
  font-size: 11px; letter-spacing: .1em; color: var(--red-2);
  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(--border); transform: translateY(-4px); }
.menu-item__price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--red-2); white-space: nowrap;
}
.menu-item__price::before { content: "CHF "; font-size: .7em; color: var(--muted); }
.menu-item__desc { font-size: 15px; color: var(--muted); margin-top: 4px; }
.menu-note {
  margin-top: 28px; font-size: 14px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--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: #d0d0d6; 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: var(--ink); }
.cta-band .btn--primary:hover { background: var(--ink); 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(--border);
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; }
.status--open { color: #5cd07a; background: rgba(92,208,122,.1); border-color: rgba(92,208,122,.35); }
.status--open .status__dot { background: #5cd07a; box-shadow: 0 0 0 4px rgba(92,208,122,.2); }
.status--closed { color: #ff6a60; background: rgba(255,106,96,.1); border-color: rgba(255,106,96,.35); }
.status--closed .status__dot { background: #ff6a60; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 720px; }
.form-intro { margin-bottom: 22px; }
.form-intro a { color: var(--red-2); }
.form { display: grid; gap: 16px; }
.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(--muted);
}
.form input, .form select, .form textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: var(--surface); border: 1px solid var(--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-2); 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(--border);
}
.contact-list__label {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .14em; font-size: 12px; color: var(--red-2); font-weight: 600;
}
.contact-list__value { font-size: 1.05rem; color: #fff; text-decoration: none; }
a.contact-list__value:hover { color: var(--red-2); }

.hours-box {
  margin-top: 26px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.hours-box h3 {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .06em; color: #fff; 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: #c8c8ce;
}
.hours-list li.is-today {
  background: rgba(225,6,0,.12); color: #fff; 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(--border); box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; 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: var(--muted); 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: #c2c2ca; }
.footer__contact li, .footer__nav li { font-size: 14px; color: #c2c2ca; }
.footer__contact a, .footer__nav a { color: #c2c2ca; 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 var(--border); padding: 7px 12px; border-radius: 7px;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__bar { border-top: 1px solid var(--border); }
.footer__bar-inner {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  padding: 18px 24px; font-size: 13px; color: var(--muted);
}
.footer__legal a { color: var(--muted); 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: #0e0e11; border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px; margin: 0;
    transform: translateY(-130%); transition: transform .28s ease;
    box-shadow: var(--shadow);
  }
  .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 var(--border); }
  .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(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
}
.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: #fff;
}
.offer-card__head p { font-size: 14px; color: var(--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; }
}
