/* ===== TOKENS ===== */
:root{
  --cream:#EEEAE2;
  --cream-alt:#E7E2D8;
  --ink:#17140F;
  --ink-2:#1E1B15;
  --text:#1A1917;
  --muted:#7A7468;
  --muted-light:#B8B2A4;
  --accent:#F4501E;
  --accent-2:#FF6A38;
  --green:#22C58B;
  --line:#D8D2C4;
  --line-dark:#37332A;
  --white:#FFFFFF;

  --font-display:'Anton', 'Arial Narrow', sans-serif;
  --font-mono:'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-mono);
  background:var(--cream);
  color:var(--text);
  font-size:15px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
hr.rule{border:none; border-top:1px solid var(--line); margin:28px 0 40px;}
.section-dark hr.rule{border-top-color:var(--line-dark);}

::selection{background:var(--accent); color:var(--white);}

/* ===== TOP BAR ===== */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 36px;
  mix-blend-mode:normal;
}
.wordmark{
  font-family:var(--font-display);
  font-size:20px;
  letter-spacing:0.5px;
  color:var(--white);
  line-height:1;
  display:flex; flex-direction:column;
  text-shadow:0 2px 12px rgba(0,0,0,0.4);
}
.wordmark span{
  font-family:var(--font-mono);
  font-size:9px;
  letter-spacing:2px;
  font-weight:500;
  color:var(--accent-2);
  margin-top:2px;
}
.wordmark.small{
  color:var(--cream);
  text-shadow:none;
  font-size:16px;
}
.topbar-right{display:flex; align-items:center; gap:18px;}
.status-pill{
  display:flex; align-items:center; gap:8px;
  font-size:11px; letter-spacing:1px; font-weight:600;
  color:var(--white);
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.25);
  padding:7px 12px; border-radius:999px;
  backdrop-filter:blur(6px);
}
.pulse{
  width:7px; height:7px; border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 0 rgba(34,197,139,0.6);
  animation:pulse 2s infinite;
}
.pulse.closed{background:#E85B4F; box-shadow:0 0 0 0 rgba(232,91,79,0.6);}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,139,0.5);}
  70%{box-shadow:0 0 0 8px rgba(34,197,139,0);}
  100%{box-shadow:0 0 0 0 rgba(34,197,139,0);}
}
.topbar-phone{
  font-size:12px; color:var(--white); letter-spacing:0.5px;
  text-shadow:0 2px 12px rgba(0,0,0,0.4);
  display:none;
}
@media(min-width:720px){.topbar-phone{display:block;}}

/* ===== SIDE DOT NAV ===== */
.dotnav{
  position:fixed; right:28px; top:50%; transform:translateY(-50%);
  z-index:150;
}
.dotnav ul{display:flex; flex-direction:column; gap:18px; align-items:flex-end;}
.dotnav li{
  display:flex; align-items:center; gap:10px; cursor:pointer;
  position:relative;
}
.dotnav .dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--muted-light);
  transition:all .25s ease;
}
.dotnav li span.label{
  font-size:10px; letter-spacing:1.5px; font-weight:700;
  color:var(--accent);
  opacity:0; transform:translateX(6px);
  transition:all .25s ease;
  white-space:nowrap;
}
.dotnav li.active .dot{
  background:var(--accent);
  transform:scale(1.6);
}
.dotnav li.active span.label{opacity:1; transform:translateX(0);}
@media(max-width:720px){ .dotnav{display:none;} }

/* ===== SECTIONS GENERIC ===== */
.section{
  padding:110px 8vw 100px;
  position:relative;
}
.section-light{background:var(--cream); color:var(--text);}
.section-alt{background:var(--cream-alt);}
.section-dark{background:var(--ink); color:var(--cream);}
.section-dark .muted, .section-dark p{color:#B9B3A5;}

.eyebrow{
  font-size:11px; letter-spacing:3px; font-weight:600;
  color:var(--muted); text-transform:uppercase;
  margin-bottom:14px;
}
.section-dark .eyebrow{color:#8B8478;}

.headline{
  font-family:var(--font-display);
  font-size:clamp(48px, 8vw, 96px);
  line-height:0.92;
  letter-spacing:0.5px;
  color:var(--text);
}
.section-dark .headline{color:var(--cream);}
.headline.accent{color:var(--accent);}

.section-head{max-width:900px; margin-bottom:6px;}
.section-note{
  color:var(--muted); font-size:13px; max-width:340px; margin-top:18px;
}
.section-head-row{
  display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap;
}
.link-arrow{
  font-size:12px; letter-spacing:1px; font-weight:700; color:var(--text);
  border-bottom:1px solid var(--text); padding-bottom:2px; white-space:nowrap;
}
.icon-badge{font-size:26px; opacity:.7;}

/* ===== HERO ===== */
.hero{
  position:relative; min-height:100vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  background:var(--ink);
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center 65%;
  filter:saturate(0.9) brightness(0.65);
  transform:scale(1.05);
}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,13,10,0.35) 0%, rgba(15,13,10,0.55) 45%, rgba(15,13,10,0.96) 100%);
}
.hero-inner{
  position:relative; z-index:2;
  padding:0 8vw 90px;
  max-width:900px;
}
.hero .eyebrow{color:var(--accent-2);}
.hero-title{
  font-family:var(--font-display);
  font-size:clamp(52px, 11vw, 128px);
  line-height:0.88;
  color:var(--white);
  margin-bottom:22px;
}
.hero-sub{
  color:#D8D3C6; font-size:15px; max-width:460px; margin-bottom:34px;
}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:56px;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12px; font-weight:700; letter-spacing:1.5px;
  padding:15px 26px; border-radius:2px; cursor:pointer; border:1px solid transparent;
  transition:all .2s ease;
}
.btn-solid{background:var(--accent); color:var(--white);}
.btn-solid:hover{background:var(--accent-2);}
.btn-outline{border-color:rgba(255,255,255,0.4); color:var(--white);}
.btn-outline:hover{border-color:var(--white); background:rgba(255,255,255,0.08);}
.btn-outline-light{border-color:var(--accent); color:var(--accent);}
.btn-outline-light:hover{background:rgba(244,80,30,0.1);}

.hero-meta{display:flex; gap:40px; flex-wrap:wrap;}
.hero-meta > div{display:flex; flex-direction:column;}
.hero-meta-num{font-family:var(--font-display); font-size:26px; color:var(--white);}
.hero-meta-label{font-size:10px; letter-spacing:1px; color:#9C9585; margin-top:4px;}

.scroll-hint{
  position:absolute; bottom:24px; left:8vw; z-index:2;
  font-size:10px; letter-spacing:3px; color:#9C9585;
  display:flex; align-items:center; gap:8px;
}
.scroll-hint span{animation:bob 1.6s infinite;}
@keyframes bob{0%,100%{transform:translateY(0);}50%{transform:translateY(5px);}}

/* ===== MENU TABS + GRID ===== */
.tabs{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px;}
.tab{
  font-family:var(--font-mono); font-size:12px; letter-spacing:1px; font-weight:600;
  padding:12px 20px; background:transparent; border:1px solid var(--line);
  cursor:pointer; color:var(--text); transition:all .2s ease;
}
.tab.active{background:var(--ink); color:var(--cream); border-color:var(--ink);}
.tab:not(.active):hover{border-color:var(--text);}

.menu-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:1px; background:var(--line);
  border:1px solid var(--line);
}
.item-card{background:var(--white); display:flex; flex-direction:column;}
.item-card[hidden]{display:none;}
.item-img{
  aspect-ratio:16/10; background-size:cover; background-position:center;
  background-color:#ddd;
}
.item-img-placeholder{
  background:var(--ink); display:flex; align-items:center; justify-content:center;
}
.item-img-placeholder span{
  font-family:var(--font-display); font-size:64px; color:#3A342A;
}
.item-img-placeholder.dark{background:#0F0D0A;}
.item-body{padding:22px 22px 26px; flex:1; display:flex; flex-direction:column;}
.item-top{display:flex; justify-content:space-between; align-items:flex-start; gap:10px; margin-bottom:10px;}
.item-top h3{font-family:var(--font-mono); font-weight:800; font-size:15px; letter-spacing:0.3px; line-height:1.3;}
.avail{
  font-size:10px; letter-spacing:0.5px; color:var(--green); font-weight:700;
  display:flex; align-items:center; gap:5px; white-space:nowrap; margin-top:3px;
}
.avail i{width:6px; height:6px; border-radius:50%; background:var(--green); display:inline-block;}
.item-body p{color:var(--muted); font-size:13px; flex:1; margin-bottom:16px;}
.price{font-family:var(--font-mono); font-weight:800; font-size:17px; color:var(--accent);}

/* ===== SCHÜLERMENÜ ===== */
.schueler-grid{display:grid; grid-template-columns:1fr; gap:52px; margin-top:20px;}
@media(min-width:900px){.schueler-grid{grid-template-columns:1fr 1fr;}}
.lead{font-size:15px; color:#C9C3B6; max-width:480px; margin-bottom:34px; line-height:1.7;}
.price-box{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  border:1px solid #3A352B; padding:22px; margin-bottom:16px;
  transition:border-color .2s ease;
}
.price-box:hover{border-color:var(--accent);}
.price-box h3{font-size:14px; letter-spacing:0.5px; color:var(--white); margin-bottom:6px;}
.price-box p{font-size:12px; color:#948D7D;}
.price-box-price{
  font-family:var(--font-mono); font-weight:800; color:var(--accent); font-size:19px;
  display:flex; align-items:center; gap:8px; white-space:nowrap;
}
.dot-green{width:7px; height:7px; border-radius:50%; background:var(--green); display:inline-block;}
.schueler-photo{position:relative;}
.schueler-photo img{width:100%; height:100%; object-fit:cover; min-height:320px;}
.photo-tag{
  position:absolute; left:20px; bottom:20px;
  font-size:10px; letter-spacing:2px; font-weight:700; color:var(--white);
  background:rgba(0,0,0,0.55); padding:8px 12px; backdrop-filter:blur(4px);
}

/* ===== RATING ===== */
.rating-summary{display:flex; align-items:baseline; gap:18px; flex-wrap:wrap; margin-bottom:44px;}
.rating-num{font-family:var(--font-display); font-size:64px; color:var(--accent); line-height:1;}
.rating-stars{color:var(--accent); font-size:22px; letter-spacing:2px;}
.rating-count{font-size:12px; color:var(--muted);}
.review-grid{display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:1px; background:var(--line); border:1px solid var(--line);}
.review-card{background:var(--white); padding:26px;}
.stars{color:var(--accent); font-size:14px; letter-spacing:2px; margin-bottom:14px;}
.stars .dim{color:var(--line);}
.review-card p{font-style:italic; font-size:14px; margin-bottom:18px; line-height:1.6;}
.reviewer{font-size:11px; letter-spacing:1px; color:var(--muted); font-weight:700;}

/* ===== PRESS ===== */
.press-grid{display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:24px;}
.press-card{background:var(--white); border:1px solid var(--line); padding:26px;}
.press-tag{
  display:inline-block; font-size:10px; letter-spacing:1px; font-weight:700;
  border:1px solid var(--accent); color:var(--accent); padding:5px 9px; margin-bottom:16px;
}
.press-tag em{font-style:normal; color:var(--muted); font-weight:500; margin-left:8px;}
.press-card h3{font-family:var(--font-mono); font-size:18px; font-weight:800; margin-bottom:12px; line-height:1.3;}
.press-card p{color:var(--muted); font-size:13px; margin-bottom:18px; line-height:1.6;}
.link-read{font-size:11px; font-weight:700; letter-spacing:1px; border-bottom:1px solid var(--text); padding-bottom:2px;}

/* ===== DER MACH'ER ===== */
.macher-grid{display:grid; grid-template-columns:1fr; gap:60px;}
@media(min-width:960px){.macher-grid{grid-template-columns:0.85fr 1.15fr;}}
.macher-photos{display:flex; flex-direction:column; gap:16px; position:sticky; top:100px; align-self:start;}
.macher-portrait{position:relative;}
.macher-portrait img{width:100%; aspect-ratio:4/5; object-fit:cover;}
.macher-portrait-tag{
  position:absolute; left:0; right:0; bottom:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  padding:18px 18px 14px; color:var(--white);
  display:flex; flex-direction:column; gap:2px;
}
.macher-portrait-tag strong{font-family:var(--font-display); font-size:20px;}
.macher-portrait-tag span{font-size:11px; color:#D8D3C6;}
.macher-dough img{width:100%; aspect-ratio:16/11; object-fit:cover;}

.timeline{display:flex; flex-direction:column; gap:44px;}
.timeline-item{
  border-left:2px solid var(--accent); padding-left:26px; position:relative;
}
.timeline-year{font-family:var(--font-mono); font-weight:800; color:var(--accent); font-size:14px;}
.timeline-item h3{font-family:var(--font-mono); font-weight:800; font-size:20px; margin:8px 0 10px; letter-spacing:0.3px;}
.timeline-item p{color:var(--muted); font-size:14px; max-width:520px; line-height:1.7;}

/* ===== SPLIT (MEHR ALS EIN TRUCK) ===== */
.section-split{
  display:grid; grid-template-columns:1fr; padding:0;
}
@media(min-width:900px){.section-split{grid-template-columns:1fr 1fr;}}
.truck-photo{min-height:340px;}
.truck-photo img{width:100%; height:100%; object-fit:cover; min-height:340px;}
.truck-copy{
  background:var(--cream); padding:90px 6vw; display:flex; flex-direction:column; justify-content:center;
}
.truck-copy .lead{color:var(--muted); max-width:480px;}
.truck-stats{display:flex; gap:40px; margin-top:36px; flex-wrap:wrap;}
.truck-stats span{display:block; font-family:var(--font-display); font-size:34px; color:var(--accent);}
.truck-stats small{font-size:10px; letter-spacing:1px; color:var(--muted);}

/* ===== STANDORT ===== */
.section-standort{
  display:grid; grid-template-columns:1fr; padding:0;
}
@media(min-width:900px){.section-standort{grid-template-columns:1.15fr 0.85fr;}}
.standort-map{min-height:420px; background:#2b2b2b;}
.standort-info{padding:90px 5vw;}
.standort-address{font-size:15px; margin-bottom:36px; line-height:1.6; color:var(--cream);}
.standort-address span{font-size:12px; color:#9C9585;}
.hours-title{font-size:12px; letter-spacing:1.5px; color:var(--accent); margin-bottom:16px; font-weight:700;}
.hours ul{border-top:1px solid var(--line-dark);}
.hours li{
  display:flex; justify-content:space-between; padding:11px 0;
  border-bottom:1px solid var(--line-dark); font-size:13px; color:#B9B3A5;
}
.hours li.today{color:var(--accent); font-weight:700;}
.hours li.today span:first-child::after{content:" · Heute";}
.standort-cta{display:flex; gap:14px; flex-wrap:wrap; margin:34px 0 20px;}
.standort-footnote{font-size:11px; letter-spacing:1px; color:#6B6558;}

/* ===== FOOTER ===== */
.footer{background:var(--ink); color:var(--cream); padding:34px 6vw 40px; border-top:1px solid var(--line-dark);}
.footer-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; flex-wrap:wrap; gap:12px;}
.back-top{font-size:11px; letter-spacing:1px; color:#9C9585;}
.footer-links{font-size:11px; color:#736D5F; display:flex; flex-wrap:wrap; gap:8px;}
.footer-links a{color:#9C9585;}
.footer-links a:hover{color:var(--accent);}
.footer-sep{color:#4A453A;}

/* ===== RESPONSIVE ===== */
@media(max-width:720px){
  .section{padding:80px 6vw 70px;}
  .topbar{padding:14px 20px;}
  .hero-inner{padding:0 6vw 70px;}
}