/* ===== Pizza Blitz Bremen — Konzept-Website ===== */
:root{
  --red:#d93a2b; --red-dark:#b02a1d; --yellow:#ffd500;
  /* --muted-2: von #a39c8f abgedunkelt — alter Wert hatte nur 2,6:1 Kontrast
     auf Cream/Weiß, WCAG verlangt 4,5:1 für Fließtext (#777063 = 4,6/4,9:1) */
  --cream:#faf8f3; --ink:#23201b; --muted:#6f6a61; --muted-2:#777063;
  --green:#177a45; /* "bezahlt"-Grün, 5,4:1 auf Weiß (vorher #1c9d57 = 3,5:1) */
  --red-text:#cf3122; /* Rot für TEXT auf Cream (4,8:1) — Flächen-Rot (--red) hatte dort nur 4,3:1 */
  --muted-on-dark:#a39c8f; /* gedämpfter Text auf Ink (6,0:1) — --muted-2 hatte dort nur 3,3:1 */
  --line:rgba(35,32,27,.1); --card:#fff;
  --serif:'Source Serif 4',Georgia,serif;
  --sans:'Instrument Sans',system-ui,-apple-system,sans-serif;
  --shadow:0 18px 40px -24px rgba(35,32,27,.4);
  --radius:16px;
  --max:1220px; --pad:24px;
  --curve:clamp(34px,7vw,72px); /* Tiefe der gebogenen Hero-Unterkante */
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--sans);background:var(--cream);color:var(--ink);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:var(--red-text);text-decoration:none}
h1,h2,h3{font-family:var(--serif);font-weight:600;line-height:1.12;letter-spacing:-.01em}
section[id]{scroll-margin-top:92px}
:focus-visible{outline:3px solid var(--red);outline-offset:2px;border-radius:6px}
.wrap{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}

/* ---- Skip-Link (nur bei Tastatur-Fokus sichtbar) ---- */
.skip-link{position:fixed;top:-48px;left:16px;z-index:200;background:var(--ink);color:var(--cream);
  padding:11px 18px;border-radius:0 0 10px 10px;font-weight:600;font-size:14px;transition:top .15s ease}
.skip-link:focus{top:0}

/* ---- Buttons ---- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:var(--sans);
  font-weight:600;font-size:15.5px;border:1px solid transparent;border-radius:11px;padding:14px 28px;
  cursor:pointer;transition:transform .12s ease,background .15s ease,border-color .15s ease,box-shadow .15s ease;white-space:nowrap}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--red);color:#fff}
.btn-primary:hover{background:var(--red-dark);color:#fff}
.btn-ghost{background:#fff;color:var(--ink);border-color:rgba(35,32,27,.16)}
.btn-ghost:hover{border-color:var(--ink)}
.btn-sm{min-height:44px;padding:11px 20px;font-size:14px;border-radius:10px}
.btn-block{width:100%}
.btn:disabled{background:#e8e2d6;color:var(--muted-2);cursor:not-allowed}
.eyebrow{display:inline-block;font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--red-text)}

/* ---- Header ---- */
.site-header{position:sticky;top:0;z-index:60;background:rgba(250,248,243,.9);
  backdrop-filter:blur(12px);border-bottom:1px solid var(--line);transition:box-shadow .2s ease}
.site-header.scrolled{box-shadow:0 8px 24px -18px rgba(35,32,27,.5)}
.header-inner{max-width:var(--max);margin:0 auto;padding:0 var(--pad);min-height:78px;
  display:flex;align-items:center;gap:22px}
.brand img{height:52px;width:auto}
.nav-desktop{display:flex;align-items:center;gap:2px;margin-left:auto;flex-wrap:nowrap}
.nav-link{display:inline-flex;align-items:center;min-height:44px;padding:9px 13px;border-radius:8px;font-size:14px;font-weight:500;color:#55504a;transition:color .15s,background .15s}
.nav-link:hover{color:var(--red-dark)}
.nav-link.active{color:var(--red-dark);background:rgba(217,58,43,.08)}
.header-cta{display:flex;align-items:center;gap:16px}
.header-phone{display:inline-flex;align-items:center;min-height:44px;font-size:13.5px;font-weight:500;color:var(--muted);white-space:nowrap}
.header-phone:hover{color:var(--red)}
.legal-back{margin-left:auto;display:inline-flex;align-items:center;min-height:44px;gap:7px;font-size:14px;font-weight:600;color:var(--muted)}
.legal-back:hover{color:var(--red)}
.header-phone-mobile{display:none;width:44px;height:44px;border-radius:12px;align-items:center;justify-content:center;
  color:var(--ink);border:1px solid var(--line);background:#fff;margin-left:auto;flex-shrink:0}
.header-phone-mobile:hover{color:var(--red);border-color:var(--red)}
.nav-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;min-width:44px;min-height:44px;background:none;border:none;padding:10px;cursor:pointer}
.nav-toggle span{width:24px;height:2.5px;background:var(--ink);border-radius:2px;transition:transform .25s ease,opacity .2s ease}
body.nav-open .nav-toggle span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
body.nav-open .nav-toggle span:nth-child(2){opacity:0}
body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

/* ---- Mobile nav ---- */
.mobile-nav{position:fixed;top:0;right:0;height:100dvh;width:min(80vw,320px);background:var(--cream);
  z-index:70;transform:translateX(100%);transition:transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow:-20px 0 50px -30px rgba(0,0,0,.5);padding:96px 28px 40px;overflow-y:auto}
body.nav-open .mobile-nav{transform:translateX(0)}
.mobile-nav nav{display:flex;flex-direction:column;gap:4px}
.m-link{padding:14px 8px;font-size:18px;font-weight:500;color:var(--ink);border-bottom:1px solid var(--line)}
.m-link:hover{color:var(--red)}
.m-phone{margin-top:20px;padding:14px;text-align:center;background:var(--red);color:#fff;border-radius:11px;font-weight:600}
.m-phone:hover{color:#fff}
.scrim{position:fixed;inset:0;background:rgba(35,32,27,.4);z-index:65;opacity:0;transition:opacity .3s;pointer-events:none}
body.nav-open .scrim,body.cart-open .scrim{opacity:1;pointer-events:auto}
body.cart-open .scrim{z-index:75} /* über Nav (70), unter Cart-Drawer (80) */

/* ---- Hero ---- */
.hero{position:relative;overflow:hidden;z-index:2;
  background:radial-gradient(120% 80% at 50% 6%,#fff4dd 0%,rgba(255,244,221,0) 60%),
             linear-gradient(180deg,#fbf6ec 0%,var(--cream) 100%)}
/* Echte SVG-Bezierkurve statt border-radius-Ellipse — an beiden Rändern exakt
   vertikal verankert (Kontrollpunkte auf gleicher x-Position wie die Endpunkte),
   dadurch garantiert glatt statt von der Ellipsen-Näherung des Browsers abhängig. */
.hero-curve{position:absolute;left:0;right:0;bottom:-1%;width:100%;display:block;z-index:2}
/* z-index:2, höher als .hero-pizza-wrap (1): die Welle muss ÜBER der Pizza malen,
   sonst deckt die Pizza die Welle zu und wird nur noch gerade (nicht wellenförmig)
   von hero's overflow:hidden abgeschnitten — dadurch stand sie sichtbar über. */
.hero-curve path{fill:var(--ink)}
.hero-glow{position:absolute;bottom:-4%;left:50%;transform:translateX(-50%);width:620px;height:520px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,213,0,.26),rgba(255,213,0,0) 70%);pointer-events:none}
.bolt-bg{position:absolute;left:-40px;bottom:-30px;width:220px;height:220px;opacity:.06;pointer-events:none;
  background:conic-gradient(from 0deg,var(--red),var(--yellow),var(--red));
  clip-path:polygon(55% 0,20% 55%,48% 55%,38% 100%,80% 40%,52% 40%);}
.hero-inner{position:relative;z-index:2;max-width:820px;margin:0 auto;padding:54px var(--pad) 4px;text-align:center}
.hero-copy{display:flex;flex-direction:column;gap:22px}
.hero-copy .badge{align-self:center}
.badge{align-self:flex-start;display:inline-flex;align-items:center;gap:9px;background:#fff;
  border:1px solid var(--line);color:var(--muted);font-size:12px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;padding:8px 15px;border-radius:999px}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--red);animation:pulse 2.2s infinite}
.hero h1{font-size:clamp(38px,5.6vw,66px);letter-spacing:-.015em}
.hl-word{position:relative;display:inline-block;color:var(--red)}
.hl-word .underline{position:absolute;left:0;bottom:-8px;width:100%;height:12px}
.hl-word .underline path{stroke-dasharray:320;stroke-dashoffset:320;animation:draw 1s ease .5s forwards}
.hero-sub{font-size:clamp(16px,2vw,18px);color:var(--muted);max-width:52ch;margin:0 auto}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.hero-trust{font-size:13.5px;color:var(--muted-2)}
.hero-pizza-wrap{position:relative;z-index:1;width:min(560px,92vw);aspect-ratio:1;
  margin-top:26px;margin-left:auto;margin-right:auto;
  /* Fester statt breitenabhängiger Überlapp: das dunkle Stats-Band darunter ist nur
     ~150-165px hoch, ein prozentualer Wert (vorher -50%) ragte bei 560px Pizzabreite
     ~280px tief und lief unten aus dem Band heraus in die Ticker-Zeile hinein. */
  margin-bottom:-128px}
.hero-pizza{display:block;width:100%;height:100%;object-fit:contain;will-change:transform;
  filter:drop-shadow(0 26px 30px rgba(35,32,27,.28))}
/* Effekte um die Pizza — vorerst deaktiviert (Markup in index.html ebenfalls auskommentiert)
.steam{position:absolute;top:-22px;left:0;right:0;display:flex;justify-content:center;gap:24px;z-index:3;pointer-events:none}
.steam span{width:10px;height:64px;border-radius:50%;background:linear-gradient(180deg,rgba(255,255,255,.85),rgba(255,255,255,0));
  filter:blur(3px);opacity:0;animation:steam 3.4s ease-in-out infinite}
.steam span:nth-child(2){animation-delay:.9s}
.steam span:nth-child(3){animation-delay:1.7s}
.float-deco{position:absolute;width:52px;height:52px;background-size:contain;background-repeat:no-repeat;z-index:3;animation:floaty 5.5s ease-in-out infinite}
.deco-basil{top:1%;left:-1%;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 4C10 8 6 20 8 34c14 2 26-6 28-20-8-2-12 4-16 10-2-8 0-14 0-20z' fill='%233fa653'/%3E%3Cpath d='M12 30c6-6 10-12 10-18' stroke='%232c7d3e' stroke-width='1.4' fill='none'/%3E%3C/svg%3E")}
.deco-tomato{top:9%;right:-1%;width:46px;height:46px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='22' r='15' fill='%23d93a2b'/%3E%3Ccircle cx='20' cy='22' r='15' fill='none' stroke='%23b02a1d' stroke-width='2'/%3E%3Cpath d='M20 8l-4-3m4 3l4-3m-4 3v4' stroke='%233fa653' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E")}
.deco-bolt{top:-9%;left:43%;width:48px;height:48px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpolygon points='24,3 9,23 19,23 15,37 31,15 21,15' fill='%23ffd500' stroke='%23e0b400' stroke-width='1.5'/%3E%3C/svg%3E")}
*/

/* ---- Stats + ticker ---- */
.stats-band{background:var(--ink);color:var(--cream);
  margin-top:calc(-1 * var(--curve));padding-top:var(--curve)} /* schiebt sich hinter die Hero-Kurve */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;padding:38px var(--pad)}
.stat{text-align:center}
.stat-num{display:block;font-family:var(--serif);font-weight:700;font-size:clamp(28px,3.4vw,40px);color:var(--yellow)}
.stat-label{font-size:13.5px;color:#c9c3b6}
.ticker{background:var(--red);color:#fff;overflow:hidden;padding:12px 0;white-space:nowrap}
.ticker-track{display:inline-flex;gap:0;animation:marquee 26s linear infinite;will-change:transform}
.ticker-item{font-weight:600;font-size:14px;letter-spacing:.02em;padding:0 26px;position:relative}
.ticker-item::after{content:"";position:absolute;right:-7px;top:50%;transform:translateY(-50%);width:12px;height:14px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6l1-8z' fill='%23ffd500'/%3E%3C/svg%3E") center/contain no-repeat}

/* ---- Sections ---- */
.section{padding:clamp(56px,8vw,96px) 0}
.highlights{background:var(--cream)}
.section-head{max-width:640px;margin:0 auto 44px;text-align:center}
.section-head h2{font-size:clamp(28px,4vw,44px);margin:10px 0 12px}
.section-lead{color:var(--muted);font-size:16.5px}

/* ---- Highlights ---- */
/* Flex statt Grid: unvollständige Reihen zentrieren sich automatisch */
.highlight-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:26px}
.hl-card{flex:1 1 270px;max-width:380px;background:var(--card);border:1px solid var(--line);border-radius:22px;padding:26px;text-align:center;
  box-shadow:var(--shadow);transition:transform .2s ease}
.hl-card:hover{transform:translateY(-6px)}
.hl-pizza{width:190px;height:190px;margin:0 auto 18px;will-change:transform}
.hl-pizza svg,.hl-pizza img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 14px 20px rgba(35,32,27,.22))}
.hl-name{font-family:var(--serif);font-size:23px;font-weight:600}
.hl-desc{color:var(--muted);font-size:14.5px;margin:8px 0 16px;min-height:44px}
.hl-foot{display:flex;align-items:center;justify-content:space-between;gap:12px}
.hl-price{font-weight:700;font-size:20px;font-family:var(--serif)}

.scroll-hint{display:flex;flex-direction:column;align-items:center;gap:4px;
  width:fit-content;margin:44px auto 0;color:var(--muted);font-weight:600;font-size:13.5px;
  letter-spacing:.02em;text-align:center;transition:color .15s ease}
.scroll-hint:hover{color:var(--red)}
.scroll-hint svg{width:20px;height:20px;animation:hintBounce 1.8s ease-in-out infinite}

/* ---- Steps ---- */
.steps-section{background:#fff}
.steps{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:10px}
.steps-line{position:absolute;top:34px;left:12%;width:76%;height:4px;z-index:0}
.step{position:relative;z-index:1;text-align:center;padding:0 10px}
.step-num{display:inline-flex;align-items:center;justify-content:center;width:70px;height:70px;border-radius:50%;
  background:var(--red);color:#fff;font-family:var(--serif);font-weight:700;font-size:28px;margin-bottom:18px;
  box-shadow:0 0 0 8px rgba(217,58,43,.1)}
.step h3{font-size:20px;margin-bottom:8px}
.step p{color:var(--muted);font-size:15px}

/* ---- Menu ---- */
.menu-section{background:var(--cream)}
.menu-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:18px}
.diet-filters{display:flex;gap:8px;flex-wrap:wrap}
.chip{border:1px solid rgba(35,32,27,.16);background:#fff;color:#55504a;border-radius:10px;min-height:44px;
  padding:13px 18px;font-size:13.5px;font-weight:600;cursor:pointer;transition:all .15s ease}
.chip:hover{border-color:var(--ink)}
.chip.is-active{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.menu-search{flex:1;min-width:200px;max-width:320px;margin-left:auto}
.menu-search input{width:100%;border:1px solid var(--line);background:#fff;border-radius:10px;
  padding:12px 16px;font-family:var(--sans);font-size:16px;color:var(--ink)}
.menu-search input::placeholder{color:var(--muted-2)}
.cat-chips{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:30px}
.cat-chip{background:#fff;border:1px solid var(--line);color:var(--muted);border-radius:999px;min-height:44px;
  padding:12px 16px;font-size:13px;font-weight:600;cursor:pointer;transition:all .15s ease}
.cat-chip:hover{background:var(--yellow);border-color:var(--yellow);color:var(--ink)}
.menu-cat{margin-bottom:40px;scroll-margin-top:100px}
.cat-head{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;border-bottom:2px solid var(--line);padding-bottom:12px;margin-bottom:16px}
.cat-head h3{font-size:24px}
.cat-note{color:var(--muted-2);font-size:13.5px}
.menu-items{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:12px}
.m-item{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid var(--line);
  border-radius:14px;padding:15px 17px;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease}
.m-item:hover{border-color:rgba(35,32,27,.2);box-shadow:0 10px 22px -18px rgba(35,32,27,.5)}
.m-item:focus-visible{outline:3px solid var(--red);outline-offset:2px}
.mi-info{flex:1;min-width:0}
.mi-name{font-weight:600;font-size:15.5px;display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.mi-tag{font-size:10.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;padding:2px 7px;border-radius:5px}
.mi-tag.veg{background:#e7f4e9;color:#2c7d3e}
.mi-tag.vegan{background:#e4f0ff;color:#2b62c9}
.mi-desc{color:var(--muted);font-size:13.5px;margin-top:3px}
.mi-alg{color:var(--muted-2);font-size:11px}
.mi-side{display:flex;flex-direction:column;align-items:flex-end;gap:8px}
.mi-price{font-weight:700;font-size:15.5px;white-space:nowrap}
.mi-add{width:44px;height:44px;border-radius:11px;border:none;background:var(--red);color:#fff;
  font-size:22px;line-height:1;cursor:pointer;transition:background .15s,transform .12s}
.mi-add:hover{background:var(--red-dark)}
.mi-add:active{transform:scale(.9)}
.menu-empty{text-align:center;color:var(--muted);padding:30px;font-size:16px}
.allergen-legend{margin-top:28px;padding-top:18px;border-top:1px solid var(--line);color:var(--muted-2);font-size:12px;line-height:1.6}

/* ---- Produkt-Detail-Modal ---- */
.product-backdrop{position:fixed;inset:0;background:rgba(35,32,27,.45);z-index:85}
.product-modal{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%) scale(.94);z-index:90;
  width:min(92vw,440px);max-height:88vh;overflow-y:auto;background:#fff;border-radius:20px;
  box-shadow:0 30px 80px -30px rgba(0,0,0,.5);opacity:0;pointer-events:none;transition:opacity .2s ease,transform .2s ease}
.product-modal[aria-hidden="false"]{opacity:1;transform:translate(-50%,-50%) scale(1);pointer-events:auto}
.product-close{position:absolute;top:10px;right:10px;width:44px;height:44px;border-radius:50%;border:none;
  background:rgba(255,255,255,.9);color:var(--ink);font-size:22px;line-height:1;cursor:pointer;z-index:2;
  box-shadow:0 4px 10px rgba(0,0,0,.15)}
.product-media{aspect-ratio:4/3;background:var(--cream);border-radius:20px 20px 0 0;overflow:hidden}
.product-media img{width:100%;height:100%;object-fit:cover}
.product-body{padding:22px 24px 26px}
.product-tags{display:flex;gap:8px;margin-bottom:8px}
.product-tags:empty{display:none}
.product-modal h3{font-family:var(--serif);font-size:22px;margin-bottom:8px}
.product-desc{color:var(--muted);font-size:14.5px;line-height:1.6}
.product-alg{color:var(--muted-2);font-size:12px;margin-top:10px}
.product-alg:empty{display:none}
.product-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:20px}
.product-price{font-family:var(--serif);font-weight:700;font-size:22px}
@media (max-width:560px){
  .product-modal{top:auto;bottom:0;left:0;transform:translateY(12px);width:100%;max-height:92vh;
    border-radius:22px 22px 0 0}
  .product-modal[aria-hidden="false"]{transform:translateY(0)}
  .product-media{border-radius:22px 22px 0 0}
}

/* ---- About: "Ofenbogen" — die vier Fakten liegen wie im Steinofen-Mund,
   eine "Seit 1990"-Plakette sitzt als Schlussstein auf dem Bogenscheitel ---- */
.about-section{background:#fff}

.about-oven-wrap{position:relative;max-width:900px;margin:64px auto 0}
.oven-seal{position:absolute;top:-30px;left:50%;transform:translateX(-50%) rotate(-3deg);
  width:78px;height:78px;z-index:3;filter:drop-shadow(0 4px 8px rgba(35,32,27,.32))}
.oven-seal svg{width:100%;height:100%}

.about-oven{position:relative;overflow:hidden;
  background:var(--ink); /* dasselbe Dunkel wie Stats-Band & Footer, statt eigenem Ember-Ton */
  border-radius:50% 50% 22px 22px / clamp(56px,9vw,120px) clamp(56px,9vw,120px) 22px 22px;
  padding-top:clamp(64px,9vw,96px);
  box-shadow:0 40px 90px -42px rgba(35,32,27,.55)}

.about-facts{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr}
.about-fact{padding:26px clamp(20px,4vw,34px) 32px;text-align:left}
.about-fact:nth-child(1){border-right:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}
.about-fact:nth-child(2){border-bottom:1px solid rgba(255,255,255,.12)}
.about-fact:nth-child(3){border-right:1px solid rgba(255,255,255,.12)}
.about-fact-mark{display:block;width:30px;height:3px;background:var(--yellow);border-radius:2px;margin-bottom:16px}
.about-fact h3{font-size:18.5px;color:var(--cream);margin-bottom:8px}
.about-fact p{color:#c9c3b6;font-size:14px;line-height:1.6} /* gleicher Grauton wie Footer/Stats-Labels */

/* ---- Tracker ---- */
.tracker-section{background:var(--cream)}
.tracker-card{max-width:820px;margin:0 auto;background:#fff;border:1px solid var(--line);
  border-radius:22px;padding:34px 30px 30px;box-shadow:var(--shadow)}
.tracker-orderno{display:inline-block;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12px;
  font-weight:700;color:var(--muted-2);background:var(--cream);border:1px solid var(--line);
  border-radius:100px;padding:3px 12px;margin-bottom:16px;letter-spacing:.02em}
.tracker-status{display:flex;align-items:center;gap:14px;margin-bottom:34px}
.status-dot{width:14px;height:14px;border-radius:50%;background:var(--muted-2);flex-shrink:0;transition:background .3s}
.tracker-status strong{display:block;font-family:var(--serif);font-size:18px}
.tracker-status span{color:var(--muted);font-size:14px}
.status-eta{display:block;margin-top:3px;color:var(--red-text) !important;font-weight:600;font-size:13px !important}
.status-eta:empty{display:none}
/* Tracker: Bestellnummer-Eingabe / kein-Bestellung */
.tracker-lookup{max-width:560px;margin:0 auto;text-align:center}
.tracker-form{display:flex;gap:10px;margin-bottom:12px}
#trackerInput{flex:1;min-width:0;font-family:var(--sans);font-size:16px;color:var(--ink);
  border:1px solid var(--line);border-radius:12px;padding:13px 15px;background:#fff;letter-spacing:.02em}
#trackerInput:focus{outline:2px solid var(--red);outline-offset:1px;border-color:transparent}
.tracker-form .btn{white-space:nowrap}
.tracker-error{background:#fdecea;color:var(--red-dark);border-radius:9px;padding:9px 12px;
  font-size:13px;font-weight:600;margin:0 0 12px}
.tracker-nostart{font-size:14px;color:var(--muted)}
.link-arrow{color:var(--red-text);font-weight:600;text-decoration:none}
.link-arrow:hover{text-decoration:underline}
/* Tracker-Karte: Kopf + Anruf-CTA */
.tracker-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}
.tracker-card-top .tracker-orderno{margin-bottom:0}
.tracker-change{background:none;border:1px solid var(--line);border-radius:100px;min-height:44px;padding:10px 15px;
  font-family:var(--sans);font-size:12.5px;font-weight:600;color:var(--muted);cursor:pointer;transition:all .15s}
.tracker-change:hover{border-color:var(--red);color:var(--red)}
.tracker-items{margin:22px 2px 0;padding-top:18px;border-top:1px solid var(--line)}
.tracker-call{margin-top:20px;padding:16px;background:#fdf0e7;border:1px solid #f6d9c6;border-radius:14px;text-align:center}
.tracker-call p{margin:0 0 12px;font-size:14px;color:var(--ink);line-height:1.5}
.tracker-call .btn{width:100%}
@media (max-width:520px){.tracker-form{flex-direction:column}.tracker-form .btn{width:100%}}
.tracker-rail{position:relative;height:96px;margin:0 8px 26px}
.rail-bg,.rail-fill{position:absolute;top:12px;left:0;height:5px;border-radius:5px}
.rail-bg{width:100%;background:#ece6da}
.rail-fill{width:0;background:linear-gradient(90deg,var(--red),var(--yellow));transition:width 1.2s ease}
.rail-token{position:absolute;top:2px;left:0;width:26px;height:26px;border-radius:50%;background:var(--yellow);
  transform:translateX(-50%);display:flex;align-items:center;justify-content:center;box-shadow:0 4px 10px rgba(224,180,0,.6);transition:left 1.2s ease}
@media (prefers-reduced-motion:reduce){.rail-fill,.rail-token{transition:none}}
.rail-token::before{content:"";width:13px;height:15px;background:var(--ink);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6l1-8z'/%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 24 24'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6l1-8z'/%3E%3C/svg%3E") center/contain no-repeat}
.stations{position:absolute;top:0;left:0;width:100%;height:100%}
.station{position:absolute;top:26px;transform:translateX(-50%);width:112px;text-align:center}
/* Erste/letzte Station: nicht auf 0%/100% zentrieren (sonst ragt die halbe Box —
   56px — über den Rand der Leiste hinaus, bis in/über die Card-Padding). Stattdessen
   an der Leistenkante ausrichten (Text + Punkt bündig), mittlere Stationen bleiben zentriert. */
.station:first-child{transform:translateX(0);text-align:left}
.station:first-child .st-dot{margin-left:0}
.station:last-child{transform:translateX(-100%);text-align:right}
.station:last-child .st-dot{margin-right:0;margin-left:auto}
.st-dot{width:22px;height:22px;border-radius:50%;margin:0 auto;background:var(--cream);border:1px solid rgba(35,32,27,.2);transition:all .2s}
.station.done .st-dot{background:var(--yellow);border-color:var(--yellow);box-shadow:0 0 0 4px rgba(255,213,0,.25)}
.st-label{display:block;margin-top:10px;font-weight:600;font-size:12.5px;color:var(--muted-2);transition:color .2s}
.station.done .st-label{color:var(--ink)}
.st-sub{display:block;font-size:11px;color:var(--muted-2);font-weight:400}

/* ---- Reviews ---- */
.reviews-section{background:#fff}
/* Flex statt Grid: unvollständige Reihen zentrieren sich */
.review-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px}
.review-card{flex:1 1 300px;max-width:380px;background:var(--cream);border:1px solid var(--line);border-radius:18px;padding:24px}
.rv-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.rv-avatar{width:44px;height:44px;border-radius:50%;background:var(--red);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;font-family:var(--serif)}
.rv-name{font-weight:600;font-size:15px}
.rv-when{color:var(--muted-2);font-size:12.5px}
.rv-stars{color:var(--yellow);-webkit-text-stroke:.6px #8a6d00;paint-order:stroke fill;letter-spacing:2px;font-size:15px;margin-bottom:8px}
.rv-text{color:#4a463f;font-size:14.5px}

/* ---- Contact ---- */
.contact-section{background:var(--cream)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:start}
.contact-info h2{font-size:clamp(26px,3.4vw,38px);margin:10px 0 20px}
.contact-list{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:24px}
.contact-list li{display:flex;flex-direction:column;gap:2px;font-size:15.5px}
.contact-list strong{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-2);font-weight:600}
.contact-list em{color:var(--muted-2);font-style:normal;font-size:13px}
.contact-list a{padding:10px 0;margin:-10px 0} /* Hit-Area ≥44px, Layout bleibt */
.map-card{position:relative;border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow)}
.map-frame{width:100%;height:clamp(240px,32vw,320px);border:0;display:block}
.map-consent{width:100%;min-height:clamp(240px,32vw,320px);display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:10px;text-align:center;background:repeating-linear-gradient(45deg,#f3f0e8 0 14px,#eeeadf 14px 28px);padding:20px 20px 48px;color:var(--muted)}
  /* min-height statt fester Höhe + Platz unten: sonst rutscht der Google-Maps-Link auf schmalen Screens hinter das Pin-Label */
.map-consent p{font-size:13.5px;line-height:1.5;max-width:40ch;margin:0}
.map-consent strong{color:var(--ink)}
.map-alt{display:inline-block;padding:12px 6px;font-size:12.5px;font-weight:600}
.map-pin-label{position:absolute;left:12px;bottom:12px;background:#fff;border-radius:8px;padding:6px 12px;
  font-size:12.5px;font-weight:600;box-shadow:0 6px 14px -8px rgba(0,0,0,.4)}
.contact-form{background:#fff;border:1px solid var(--line);border-radius:20px;padding:30px;
  display:flex;flex-direction:column;gap:14px;box-shadow:var(--shadow)}
.contact-form h3{font-size:22px;margin-bottom:4px}
.contact-form label{display:flex;flex-direction:column;gap:6px;font-size:13.5px;font-weight:600;color:#4a463f}
.contact-form input,.contact-form textarea{font-family:var(--sans);font-size:16px;color:var(--ink);
  border:1px solid var(--line);border-radius:10px;padding:12px 14px;background:var(--cream);resize:vertical}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:var(--muted-2)}
.contact-form .consent{flex-direction:row;align-items:flex-start;gap:10px;font-weight:400;font-size:13px;line-height:1.5;color:#4a463f;cursor:pointer}
.contact-form .consent input{flex:0 0 auto;width:22px;height:22px;margin:2px 0 0;padding:0;accent-color:var(--red);cursor:pointer}
.contact-form .consent a{font-weight:600;text-decoration:underline}
.form-success{background:#e7f4e9;color:#2c7d3e;border-radius:10px;padding:12px 14px;font-weight:600;font-size:14px}

/* ---- Footer ---- */
.site-footer{background:var(--ink);color:#c9c3b6}
.footer-inner{display:grid;grid-template-columns:2fr 1fr 1fr;gap:32px;padding:56px var(--pad) 36px}
.footer-brand img{height:50px; width:auto;margin-bottom:14px}
.footer-brand p{max-width:34ch;font-size:14.5px}
.footer-col strong{display:block;color:var(--cream);font-family:var(--serif);font-size:16px;margin-bottom:12px}
.footer-col a,.footer-col p{display:block;color:#c9c3b6;font-size:14.5px;margin-bottom:8px}
.footer-col a{padding:10.5px 0;margin-bottom:0} /* ≥44px Touch-Target */
.footer-col a:hover{color:var(--yellow)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding:20px var(--pad);
  display:flex;justify-content:space-between;align-items:center;gap:14px 24px;flex-wrap:wrap;font-size:12.5px;color:var(--muted-on-dark);
  max-width:var(--max);margin:0 auto}
.footer-legal{display:flex;gap:16px}
.footer-legal a{display:inline-block;padding:12px 0;color:var(--muted-on-dark);font-size:12.5px}
.footer-legal a:hover{color:var(--yellow)}

/* ---- Rechtstexte (Impressum, Datenschutz) ---- */
.legal-page{background:var(--cream);padding:56px 0 90px;min-height:55vh}
.legal-wrap{max-width:740px}
.legal-page h1{font-size:clamp(32px,5vw,46px);margin:10px 0 32px}
.legal-page h2{font-family:var(--serif);font-weight:600;font-size:21px;margin:38px 0 12px;color:var(--ink)}
.legal-page h2:first-of-type{margin-top:0}
.legal-page p{color:#4a463f;font-size:15px;line-height:1.75;margin-bottom:4px}
.legal-page a{font-weight:600}
.legal-meta{margin-top:44px;padding-top:20px;border-top:1px solid var(--line);color:var(--muted-2);font-size:13px}

/* ---- Analytics-Consent-Dialog (injiziert von elyesferchichi.com/analytics/tracker.js)
   im Website-Stil neu gestaltet. Struktur/Logik kommt vom Skript, hier wird nur die
   Optik überschrieben — daher !important, da die Skript-eigenen Styles erst zur
   Laufzeit nachgeladen werden und sonst später im Quelltext stünden. ---- */
#_acb-card{
  background:#fff !important;
  border:1px solid var(--line) !important;
  border-radius:20px !important;
  box-shadow:var(--shadow) !important;
  font-family:var(--sans) !important;
  color:var(--ink) !important}
#_acb-card::before{background:radial-gradient(circle,rgba(255,213,0,.18),rgba(0,0,0,0) 68%) !important}
#_acb-head{display:flex !important;align-items:center !important;gap:12px !important}
#_acb-ico{
  background:var(--yellow) !important;
  color:var(--ink) !important;
  border-radius:10px !important;
  display:flex !important;align-items:center !important;justify-content:center !important}
#_acb-ico svg{stroke:var(--ink) !important}
#_acb-ttl{
  font-family:var(--serif) !important;
  font-weight:600 !important;
  color:var(--ink) !important}
#_acb-sub{color:var(--muted) !important;font-family:var(--sans) !important}
#_acb-sub b{color:var(--ink) !important}
#_acb-chips span{
  background:var(--cream) !important;
  border:1px solid var(--line) !important;
  color:var(--muted) !important;
  border-radius:999px !important;
  font-family:var(--sans) !important}
#_acbdeny{
  background:#fff !important;
  border:1px solid rgba(35,32,27,.16) !important;
  color:var(--ink) !important;
  border-radius:10px !important;
  font-family:var(--sans) !important;
  font-weight:600 !important;
  cursor:pointer !important}
#_acbdeny:hover{border-color:var(--ink) !important}
#_acbaccept{
  background:var(--red) !important;
  border:none !important;
  color:#fff !important;
  border-radius:10px !important;
  font-family:var(--sans) !important;
  font-weight:600 !important;
  cursor:pointer !important}
#_acbaccept:hover{background:var(--red-dark) !important}
#_acb-foot{color:var(--muted-2) !important;font-family:var(--sans) !important}
#_acb-foot a{color:var(--red) !important;font-weight:600 !important}

/* ---- Cart ---- */
.cart-fab{position:fixed;right:22px;bottom:22px;z-index:55;width:60px;height:60px;border-radius:50%;
  background:var(--red);color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 30px -10px rgba(217,58,43,.7);transition:transform .15s ease}
.cart-fab:hover{transform:scale(1.06)}
.cart-count{position:absolute;top:-4px;right:-4px;min-width:24px;height:24px;padding:0 6px;border-radius:999px;
  background:var(--yellow);color:var(--ink);font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center}
.cart-drawer{position:fixed;top:0;right:0;height:100dvh;width:min(92vw,400px);background:#fff;z-index:80;
  transform:translateX(100%);transition:transform .3s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;
  box-shadow:-20px 0 60px -30px rgba(0,0,0,.5)}
body.cart-open .cart-drawer{transform:translateX(0)}
.cart-head{display:flex;align-items:center;justify-content:space-between;padding:22px 24px;border-bottom:1px solid var(--line)}
.cart-head h3{font-size:20px}
.cart-close{background:none;border:none;font-size:30px;line-height:1;color:var(--muted);cursor:pointer;width:44px;height:44px;padding:0;margin:-7px -10px -7px 0;display:flex;align-items:center;justify-content:center;border-radius:10px}
.cart-items{flex:1;overflow-y:auto;padding:16px 24px}
.ci-row{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid var(--line)}
.ci-info{flex:1;min-width:0}
.ci-name{font-weight:600;font-size:14.5px}
.ci-price{color:var(--muted);font-size:13px}
.ci-qty{display:flex;align-items:center;gap:10px}
.ci-qty button{width:40px;height:40px;border-radius:10px;border:1px solid var(--line);background:#fff;
  font-size:18px;cursor:pointer;color:var(--ink);position:relative}
.ci-qty button::after{content:"";position:absolute;inset:-4px} /* Hit-Area auf 48px */
.ci-qty button:hover{border-color:var(--ink)}
.ci-qty span{min-width:18px;text-align:center;font-weight:600}
.cart-empty-msg{padding:30px 24px;color:var(--muted);text-align:center}
.cart-summary{border-top:1px solid var(--line);padding:20px 24px;display:flex;flex-direction:column;gap:10px}
.mode-toggle{display:flex;background:var(--cream);border-radius:10px;padding:4px;margin-bottom:6px}
.mode-btn{flex:1;border:none;background:none;min-height:44px;padding:10px;border-radius:8px;font-weight:600;font-size:13.5px;color:var(--muted);cursor:pointer;transition:all .15s}
.mode-btn.is-active{background:var(--ink);color:var(--cream)}
.sum-row{display:flex;justify-content:space-between;font-size:14.5px;color:var(--muted)}
.sum-total{font-size:18px;font-weight:700;color:var(--ink);font-family:var(--serif)}
.min-note{background:#fdf0e7;color:var(--red-dark);border-radius:8px;padding:9px 12px;font-size:12.5px;font-weight:600}
.closed-note{background:#f1efe9;color:#5a554c;border:1px solid #e2ddd1;border-radius:8px;padding:9px 12px;font-size:12.5px;font-weight:600;text-align:center}

/* ---- Größenwahl (Pizza) ---- */
.size-backdrop{position:fixed;inset:0;background:rgba(35,32,27,.45);z-index:85}
.size-modal{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%) scale(.94);z-index:90;
  width:min(92vw,400px);background:#fff;border-radius:20px;padding:26px 24px 22px;box-shadow:0 30px 80px -30px rgba(0,0,0,.5);
  opacity:0;pointer-events:none;transition:opacity .2s ease,transform .2s ease}
.size-modal[aria-hidden="false"]{opacity:1;transform:translate(-50%,-50%) scale(1);pointer-events:auto}
.size-modal h3{font-size:21px}
.size-item{color:var(--muted);font-size:14.5px;margin:2px 0 16px}
.size-options{display:flex;flex-direction:column;gap:10px}
.size-opt{display:flex;align-items:center;justify-content:space-between;gap:14px;width:100%;
  background:var(--cream);border:1.5px solid var(--line);border-radius:13px;padding:14px 16px;cursor:pointer;
  font-family:var(--sans);font-size:15px;transition:border-color .15s ease,background .15s ease}
.size-opt:hover{border-color:var(--red);background:#fff}
.so-label{font-weight:600;color:var(--ink);text-align:left}
.so-info{display:block;font-weight:400;font-size:12.5px;color:var(--muted-2)}
.so-price{font-weight:700;color:var(--ink);white-space:nowrap}
.size-cancel{margin-top:14px;width:100%;min-height:44px;background:none;border:none;color:var(--muted);font-family:var(--sans);
  font-size:14px;font-weight:600;padding:10px;cursor:pointer;border-radius:9px}
.size-cancel:hover{color:var(--ink);background:var(--cream)}
@media (max-width:620px){
  .size-modal{top:auto;bottom:0;left:0;transform:translateY(12px);width:100%;border-radius:22px 22px 0 0;padding-bottom:calc(22px + env(safe-area-inset-bottom))}
  .size-modal[aria-hidden="false"]{transform:translateY(0)}
}

/* ---- Checkout-Modal ---- */
.checkout-modal{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%) scale(.94);z-index:90;
  width:min(94vw,440px);max-height:90vh;overflow-y:auto;background:#fff;border-radius:20px;padding:26px 24px 22px;
  box-shadow:0 30px 80px -30px rgba(0,0,0,.5);opacity:0;pointer-events:none;transition:opacity .2s ease,transform .2s ease}
.checkout-modal[aria-hidden="false"]{opacity:1;transform:translate(-50%,-50%) scale(1);pointer-events:auto}
.checkout-modal h3{font-size:21px;padding-right:30px}
.co-mode{display:inline-block;font-size:12.5px;font-weight:700;letter-spacing:.02em;color:var(--red);
  background:#fdf0e7;border-radius:100px;padding:4px 12px;margin:6px 0 16px}
#checkoutForm{display:flex;flex-direction:column;gap:12px}
#checkoutForm label{display:flex;flex-direction:column;gap:5px;font-size:13px;font-weight:600;color:#4a463f}
.co-opt{font-weight:400;color:var(--muted-2)}
#checkoutForm input,#checkoutForm textarea{font-family:var(--sans);font-size:16px;color:var(--ink);
  border:1px solid var(--line);border-radius:10px;padding:11px 13px;background:var(--cream);resize:vertical}
#checkoutForm input:focus,#checkoutForm textarea:focus{outline:2px solid var(--red);outline-offset:1px;border-color:transparent}
.co-row{display:flex;gap:10px}
.co-row label{flex:1;min-width:0}
.co-delivery{display:flex;flex-direction:column;gap:12px}
.co-summary{border-top:1px solid var(--line);margin-top:6px;padding-top:12px;display:flex;flex-direction:column;gap:7px}
.co-error{background:#fdecea;color:var(--red-dark);border-radius:9px;padding:9px 12px;font-size:13px;font-weight:600;margin:0}
#coPayBtn{margin-top:4px}
.co-secure{text-align:center;font-size:11.5px;color:var(--muted-2);margin:2px 0 0}
@media (max-width:620px){
  .checkout-modal{top:auto;bottom:0;left:0;transform:translateY(12px);width:100%;max-height:94vh;
    border-radius:22px 22px 0 0;padding-bottom:calc(20px + env(safe-area-inset-bottom))}
  .checkout-modal[aria-hidden="false"]{transform:translateY(0)}
}

/* ---- Bestätigung nach Zahlung ---- */
.confirm-modal{text-align:center}
.confirm-modal h3{padding-right:0}
.confirm-check{width:56px;height:56px;margin:2px auto 12px}
.cc-circle{stroke:var(--green);stroke-width:2;stroke-dasharray:151;stroke-dashoffset:151}
.cc-tick{stroke:var(--green);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:44;stroke-dashoffset:44}
.confirm-modal[aria-hidden="false"] .cc-circle{animation:draw .5s ease forwards}
.confirm-modal[aria-hidden="false"] .cc-tick{animation:draw .35s .42s ease forwards}
.confirm-sub{color:#6a655c;font-size:14px;line-height:1.55;margin:0 0 16px}
.confirm-items{list-style:none;margin:0 0 12px;padding:0;display:flex;flex-direction:column;gap:7px;text-align:left}
.oi-row{display:flex;align-items:baseline;gap:9px;font-size:13.5px;color:var(--ink)}
.oi-qty{font-weight:700;color:var(--red);min-width:26px;flex-shrink:0}
.oi-name{flex:1;min-width:0}
.oi-price{font-weight:600;font-variant-numeric:tabular-nums;flex-shrink:0}
.confirm-details{border:1px solid var(--line);border-radius:12px;padding:12px 15px;display:flex;
  flex-direction:column;gap:9px;text-align:left;margin:0 0 14px}
.cd-row{display:flex;justify-content:space-between;align-items:center;gap:12px;font-size:13px;color:#6a655c}
.cd-row strong{font-size:14px;color:var(--ink);font-weight:700}
#confirmOid{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.01em}
.cd-status{color:var(--green) !important;text-transform:capitalize}
.confirm-note{font-size:12px;color:var(--muted-2);line-height:1.55;margin:0 0 15px}
@media (prefers-reduced-motion:reduce){
  .confirm-modal[aria-hidden="false"] .cc-circle,
  .confirm-modal[aria-hidden="false"] .cc-tick{animation:none;stroke-dashoffset:0}
}

.ico{width:1.05em;height:1.05em;flex-shrink:0;vertical-align:-.15em}

/* ---- Konzept-Hinweis ---- */
.concept-modal{text-align:center}
.concept-badge{display:inline-block;background:var(--yellow);color:var(--ink);font-size:11.5px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;border-radius:100px;padding:5px 14px;margin-bottom:12px}
.concept-modal h3{padding-right:0;margin-bottom:10px}
.concept-text{font-size:14.5px;color:var(--muted);line-height:1.6;margin:0 0 12px}
.concept-text strong{color:var(--ink)}
.concept-actions{display:flex;flex-direction:column;gap:9px;margin-top:16px}

/* ===== Keyframes ===== */
@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.5);opacity:.55}}
@keyframes draw{to{stroke-dashoffset:0}}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}
@keyframes steam{0%{opacity:0;transform:translateY(6px) scaleY(.7)}30%{opacity:.7}100%{opacity:0;transform:translateY(-34px) scaleY(1.3)}}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes hintBounce{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}

/* ===== Responsive ===== */
@media (max-width:980px){
  .contact-grid{grid-template-columns:1fr;gap:28px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:24px}
}
@media (max-width:1120px){
  .nav-desktop,.header-cta{display:none}
  .header-phone-mobile{display:inline-flex}
  .nav-toggle{display:flex}
}
@media (max-width:860px){
  .brand img{height:46px}
  .steps{grid-template-columns:1fr;gap:26px}
  .steps-line{display:none}
}
@media (max-width:620px){
  :root{--pad:18px}
  .stats{grid-template-columns:repeat(2,1fr);gap:24px 12px}
  .menu-items{grid-template-columns:1fr}
  .menu-search{margin-left:0;max-width:none}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px}
  .station{width:76px}
  .st-sub{display:none}
  .st-label{font-size:11px}
  .hero h1{font-size:clamp(32px,9vw,44px)}
  .btn{padding:13px 22px}
  .about-facts{grid-template-columns:1fr}
  .about-fact:nth-child(1),.about-fact:nth-child(3){border-right:none}
  .about-fact:nth-child(3){border-bottom:1px solid rgba(255,255,255,.12)}
  .about-fact:nth-child(4){border-bottom:none}
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  html{scroll-behavior:auto}
  .hl-word .underline path{stroke-dashoffset:0}
}
