/* ============================================================
   SMASHED — Vom Beef zur Legende — Design-Entwurf
   Palette vom echten Logo abgeleitet: warmes Orange (Bun),
   kräftiges Rot (Sauce), tiefes Braun/Schwarz (Text).
   ============================================================ */
:root {
  --ink:         #1F140D;
  --ink-2:       #2E1D12;
  --ink-3:       #6B5B4C;
  --paper:       #FFF8EF;
  --paper-2:     #FBEBD7;
  --line:        #EAD8BE;
  --orange:      #DC7A2A;
  --orange-dk:   #B8611C;
  --red:         #C23B2E;
  --red-dk:      #9C2C21;
  --white:       #FFFFFF;

  --display: 'Arial Rounded MT Bold', 'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --t-xs: .75rem; --t-sm: .875rem; --t-base: 1rem; --t-lg: 1.125rem;
  --t-xl: 1.375rem; --t-2xl: 1.75rem; --t-3xl: 2.5rem; --t-4xl: clamp(2.4rem, 7vw, 4.8rem);

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s6: 24px;
  --s8: 32px; --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;

  --r-sm: 4px; --r-md: 10px; --r-lg: 20px; --r-full: 999px;

  --sh-sm: 0 1px 2px rgba(31,20,13,.08), 0 2px 6px rgba(31,20,13,.06);
  --sh-md: 0 4px 14px rgba(31,20,13,.14), 0 2px 4px rgba(31,20,13,.06);
  --sh-lg: 0 18px 44px rgba(31,20,13,.22), 0 6px 14px rgba(31,20,13,.1);

  --ease: cubic-bezier(.22,.61,.36,1);
  --bar-h: 68px;
}

:root { color-scheme: light; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 8px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: var(--t-base); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: var(--r-sm); }

.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(760px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.eyebrow {
  font-size: var(--t-xs); font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin: 0 0 var(--s3); display: flex; align-items: center; gap: var(--s3);
}
.eyebrow::after { content: ""; height: 2px; flex: 1; background: linear-gradient(90deg, var(--line), transparent); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }

/* ============================================================ Buttons */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 14px 26px; border: 0; border-radius: var(--r-full);
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-size: var(--t-base); font-weight: 800; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: var(--sh-md);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--sh-lg); background: var(--red-dk); }
.btn:active { transform: translateY(0) scale(1); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg { padding: 17px 34px; font-size: var(--t-lg); }
.btn--ghost {
  --bg: transparent; --fg: currentColor;
  border: 2px solid currentColor; box-shadow: none; font-weight: 700;
}
.btn--ghost:hover { background: rgba(255,255,255,.14); box-shadow: none; }
.btn--dark { --bg: var(--ink); --fg: var(--paper); }
.btn--dark:hover { background: var(--ink-2); }

/* ============================================================ Header */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: calc(var(--bar-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.hdr__in { display: flex; align-items: center; gap: var(--s6); width: min(1200px, 92vw); margin-inline: auto; }
.hdr.is-stuck { background: rgba(255,248,239,.94); backdrop-filter: blur(14px) saturate(1.3); box-shadow: var(--sh-sm); }

.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-right: auto; color: #fff; }
.logo img { width: 34px; height: 34px; border-radius: 8px; }
.logo b { font-family: var(--display); font-size: 1.4rem; font-weight: 900; letter-spacing: -.01em; line-height: 1; text-transform: uppercase; }
.hdr:not(.is-stuck) .logo { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hdr.is-stuck .logo { color: var(--ink); }

.nav { display: flex; gap: var(--s6); align-items: center; }
.nav a {
  font-size: var(--t-sm); font-weight: 700; text-decoration: none; letter-spacing: .02em;
  position: relative; padding: 6px 0; color: inherit;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right .3s var(--ease); border-radius: 2px;
}
.nav a:hover::after { right: 0; }
.hdr:not(.is-stuck) .nav { color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hdr.is-stuck .nav { color: var(--ink); }

.burger {
  display: none; width: 44px; height: 44px; margin-left: var(--s2);
  border: 0; background: transparent; color: inherit; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 22px; height: 3px; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================ Hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--ink); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,12,7,.92) 0%, rgba(20,12,7,.66) 42%, rgba(20,12,7,.18) 78%),
    linear-gradient(180deg, rgba(20,12,7,.48) 0%, rgba(20,12,7,.08) 30%, rgba(20,12,7,.55) 75%, rgba(20,12,7,.92) 100%);
}
.hero__in { padding: calc(var(--bar-h) + var(--s16)) 0 var(--s20); color: #fff; }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(8px); border-radius: var(--r-full); padding: 7px 16px 7px 12px;
  font-size: var(--t-sm); font-weight: 700; margin-bottom: var(--s6);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #6FCF7A; flex: none; }
.hero__badge.is-closed .dot { background: var(--orange); }
.hero h1 {
  font-size: var(--t-4xl); font-weight: 900; letter-spacing: -.02em; line-height: .96;
  margin: 0 0 var(--s4); text-shadow: 0 2px 40px rgba(0,0,0,.5); text-transform: uppercase;
}
.hero h1 em { display: block; font-style: normal; color: var(--orange); }
.hero__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem); max-width: 44ch; color: rgba(255,255,255,.9);
  margin-bottom: var(--s8); text-shadow: 0 1px 20px rgba(0,0,0,.5);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* ============================================================ Abschnitte */
.sec { padding: var(--s24) 0; position: relative; }
.sec--dark { background: var(--ink); color: var(--paper); }
.sec--paper { background: var(--paper-2); }
.sec__head { max-width: 62ch; margin-bottom: var(--s12); }
.sec__head.center { margin-inline: auto; text-align: center; }
.sec h2 { font-size: var(--t-3xl); margin-bottom: var(--s3); text-transform: uppercase; }
.sec__sub { color: var(--ink-3); font-size: var(--t-lg); margin: 0; }
.sec--dark .sec__sub { color: rgba(255,248,239,.7); }
.sec--dark .eyebrow::after { background: linear-gradient(90deg, rgba(255,248,239,.25), transparent); }

/* ============================================================ Produktkarten (Burger-Grid) */
.filters { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-bottom: var(--s12); }
.chip {
  border: 2px solid var(--line); background: var(--white); color: var(--ink-2);
  border-radius: var(--r-full); padding: 10px 18px; cursor: pointer;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 700;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--orange); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: var(--s6); }
.card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid rgba(234,216,190,.7);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--paper-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media--type {
  display: grid; place-items: center; text-align: center; padding: var(--s4);
  background: radial-gradient(circle at 30% 25%, rgba(220,122,42,.13), transparent 55%),
              radial-gradient(circle at 72% 78%, rgba(194,59,46,.12), transparent 55%), var(--paper-2);
}
.card__mono { font-family: var(--display); font-size: 2.4rem; font-weight: 900; color: var(--ink-2); opacity: .32; }
.card__body { padding: var(--s4) var(--s4) var(--s6); display: flex; flex-direction: column; flex: 1; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s3); margin-bottom: 5px; }
.card__name { font-family: var(--display); font-size: var(--t-lg); font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.card__price {
  font-family: var(--display); font-size: var(--t-lg); font-weight: 900; white-space: nowrap; color: var(--red);
  font-variant-numeric: tabular-nums;
}
.card__desc { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.55; margin: 0; flex: 1; }
.tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,248,239,.94); backdrop-filter: blur(6px); color: var(--red-dk);
  border-radius: var(--r-full); padding: 5px 11px;
  font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  box-shadow: var(--sh-sm);
}

/* ============================================================ Deal-Hero-Band */
.deals { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
.deal { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--sh-md); }
.deal img { width: 100%; height: 100%; object-fit: cover; }
.deal__over {
  position: absolute; inset: auto 0 0 0; padding: var(--s6);
  background: linear-gradient(transparent, rgba(20,12,7,.92));
  color: #fff;
}
.deal__over b { font-family: var(--display); font-size: var(--t-xl); text-transform: uppercase; display: block; }
.deal__over span { font-size: var(--t-sm); color: var(--orange); font-weight: 800; }

/* ============================================================ Standort */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); }
.hours { list-style: none; padding: 0; margin: 0 0 var(--s8); }
.hours li { display: flex; justify-content: space-between; gap: var(--s4); padding: 11px 0; border-bottom: 1px solid var(--line); font-size: var(--t-base); }
.hours span:first-child { color: var(--ink-3); }
.hours b { font-variant-numeric: tabular-nums; font-weight: 800; }

.cinfo { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s4); }
.cinfo li { display: flex; gap: var(--s3); align-items: flex-start; }
.cinfo svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }
.cinfo a { text-decoration: none; border-bottom: 1px solid var(--line); }
.cinfo a:hover { border-color: var(--red); }
.cinfo small { display: block; color: var(--ink-3); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; }

.map-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); position: relative; aspect-ratio: 4/3; background: var(--ink); display: grid; place-items: center; }
.map-card__cta { text-align: center; color: #fff; padding: var(--s8); }
.map-card__cta b { font-family: var(--display); font-size: var(--t-xl); text-transform: uppercase; display: block; margin-bottom: var(--s2); }

/* ============================================================ Pitch-Banner */
.pitch {
  position: fixed; inset: auto 0 0 0; z-index: 95;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  font-size: var(--t-xs); text-align: center; box-shadow: 0 -6px 24px rgba(31,20,13,.25);
  border-top: 1px solid rgba(255,248,239,.14);
}
.pitch b { color: var(--orange); }

/* ============================================================ Footer */
.ft { background: var(--ink); color: rgba(255,248,239,.6); padding: var(--s16) 0 calc(var(--s8) + 56px); font-size: var(--t-sm); }
.ft__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s12); margin-bottom: var(--s12); }
.ft h4 { color: var(--paper); font-family: var(--sans); font-size: var(--t-xs); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 var(--s4); }
.ft ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s2); }
.ft a { text-decoration: none; }
.ft a:hover { color: var(--orange); }
.ft__logo { font-family: var(--display); font-size: 1.7rem; color: var(--paper); font-weight: 900; letter-spacing: -.01em; margin-bottom: var(--s2); text-transform: uppercase; }
.ft__social { display: flex; gap: var(--s3); margin-top: var(--s6); }
.ft__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,248,239,.2);
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.ft__social a:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.ft__social svg { width: 17px; height: 17px; }
.ft__btm { border-top: 1px solid rgba(255,248,239,.12); padding-top: var(--s6); display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: var(--t-xs); }

/* ============================================================ Einblenden */
.rise { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }

/* ============================================================ Rechtstexte */
.legal-hdr { padding: var(--s6) 0; border-bottom: 1px solid var(--line); background: var(--ink); }
.legal-hdr .wrap { display: flex; align-items: center; justify-content: space-between; }
.legal-back { font-family: var(--sans); font-size: var(--t-sm); font-weight: 700; color: rgba(255,248,239,.7); text-decoration: none; }
.legal-back:hover { color: #fff; }
.legal { padding: var(--s16) 0 var(--s24); }
.legal h1 { font-size: var(--t-3xl); margin-bottom: var(--s8); text-transform: uppercase; }
.legal h2 { font-size: var(--t-xl); margin: var(--s12) 0 var(--s3); color: var(--ink-2); }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal a { color: var(--red-dk); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal__note { font-size: var(--t-sm); font-style: italic; color: var(--ink-3); background: var(--paper-2); border-radius: var(--r-md); padding: var(--s4); margin-top: var(--s12); }

/* ============================================================ Responsiv */
@media (max-width: 980px) {
  :root { --s24: 68px; --s20: 56px; --s16: 44px; }
  .deals { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: var(--s12); }
  .ft__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .burger { display: flex; }
  #nav {
    position: fixed; inset: calc(var(--bar-h) + env(safe-area-inset-top)) 0 auto 0; z-index: 89;
    flex-direction: column; gap: 0; margin: 0;
    padding: var(--s2) var(--s6) calc(var(--s6) + env(safe-area-inset-bottom));
    background: rgba(255,248,239,.98); backdrop-filter: blur(16px);
    box-shadow: var(--sh-lg); border-top: 1px solid var(--line);
    color: var(--ink);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s linear .25s;
  }
  #nav.is-open {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility 0s;
  }
  #nav a { font-size: var(--t-lg); padding: 15px 2px; border-bottom: 1px solid var(--line); text-transform: none; }
  #nav a::after { display: none; }
}
@media (max-width: 640px) {
  :root { --t-3xl: 1.9rem; --bar-h: 60px; }
  body { padding-bottom: 54px; }
  .hero { min-height: 92svh; }
  .hero__cta .btn { flex: 1; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--s3); }
  .card__body { padding: var(--s3) var(--s3) var(--s4); }
  .card__name { font-size: var(--t-base); }
  .card__price { font-size: var(--t-base); }
  .card__desc { font-size: var(--t-xs); }
  .filters { gap: 6px; }
  .chip { padding: 8px 14px; font-size: var(--t-xs); }
  .ft__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .cinfo a, .ft ul a { display: inline-block; padding: 8px 0; }
  .pitch { font-size: 11px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
}
