:root {
  --ink: #0a0a09;
  --ink-2: #151513;
  --paper: #f8f4ec;
  --bone: #ebe3d6;
  --line: rgba(10, 10, 9, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --ember: #f05a24;
  --ember-dark: #cc3f12;
  --gold: #f3a51f;
  --muted: #706c64;
  --white: #fffdf8;
  --display: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Medium", Impact, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
  --pad: clamp(24px, 5vw, 80px);
  --radius: 22px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection { color: var(--ink); background: var(--gold); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Header */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px var(--pad);
  color: var(--white);
  background: rgba(10, 10, 9, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, background .25s ease;
}

.topbar.is-scrolled {
  min-height: 72px;
  background: rgba(10, 10, 9, .97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keeps the older subpage logo markup intentional and compact. */
.topbar > .brand > .brand-logo-img {
  width: 58px;
  height: 58px;
  padding: 2px;
  object-fit: cover;
  background: var(--white);
  border-radius: 50%;
}

.brand-name { display: grid; line-height: 1; }
.brand-name strong {
  font-family: var(--display);
  font-size: 25px;
  font-stretch: condensed;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand-name small {
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .04em;
}

.nav a:not(.nav-order)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav .nav-order,
.nav a[href$="bestellen.html"] {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--ember);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav .nav-order:hover,
.nav a[href$="bestellen.html"]:hover { color: var(--ink); background: var(--gold); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Shared elements */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--ember);
}

.eyebrow-dark { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 26px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .025em;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s var(--ease);
}

.btn:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.btn-primary { color: var(--white); background: var(--ember); border-color: var(--ember); }
.btn-primary:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.btn-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn-light:hover { background: var(--gold); border-color: var(--gold); }
.btn-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Homepage hero */
.page-v2 { overflow-x: hidden; background: var(--paper); }

.home-hero {
  display: grid;
  grid-template-columns: minmax(480px, .88fr) minmax(0, 1.12fr);
  min-height: min(900px, 100vh);
  color: var(--white);
  background: var(--ink);
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 150px clamp(36px, 5.6vw, 106px) 72px var(--pad);
}

.home-hero h1,
.home-section h2,
.craft-section h2,
.menu-feature h2,
.review-section h2,
.visit-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 126px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.home-hero h1 { max-width: 750px; font-size: clamp(58px, 5vw, 100px); }

.home-hero h1 em,
.home-section h2 em,
.craft-section h2 em,
.menu-feature h2 em,
.visit-section h2 em {
  color: var(--ember);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 34px 0 30px;
  color: rgba(255,255,255,.7);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  max-width: 600px;
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
}

.hero-facts div { display: grid; gap: 3px; padding: 19px 0; }
.hero-facts div + div { padding-left: 26px; border-left: 1px solid var(--line-light); }
.hero-facts span { color: rgba(255,255,255,.45); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-facts strong { font-size: 14px; }

.home-hero-media { position: relative; min-width: 0; min-height: 680px; overflow: hidden; }
.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,9,.2), transparent 35%), linear-gradient(0deg, rgba(10,10,9,.35), transparent 42%);
  pointer-events: none;
}
.home-hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; transition: transform 1s var(--ease); }
.home-hero:hover .home-hero-media > img { transform: scale(1.018); }

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 145px;
  right: clamp(25px, 4vw, 70px);
  display: grid;
  place-items: center;
  width: clamp(118px, 10vw, 158px);
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(7deg);
}
.hero-stamp::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(10,10,9,.48); border-radius: inherit; }
.hero-stamp span, .hero-stamp small { position: relative; z-index: 1; font-size: 9px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero-stamp strong { position: relative; z-index: 1; margin: -12px 0; font-family: var(--display); font-size: clamp(36px, 3.5vw, 56px); line-height: 1; }

.hero-location {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 6px;
  min-width: min(360px, 78%);
  padding: 24px 30px;
  color: var(--ink);
  background: var(--white);
  transition: color .2s ease, background .2s ease;
}
.hero-location span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-location strong { display: flex; justify-content: space-between; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.hero-location i { font-style: normal; }
.hero-location:hover { background: var(--gold); }

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  background: var(--paper);
}
.proof-bar > div { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; padding: 32px 4vw; border-bottom: 1px solid var(--line); }
.proof-bar > div:first-child { padding-left: 0; }
.proof-bar > div:last-child { padding-right: 0; }
.proof-bar > div + div { border-left: 1px solid var(--line); }
.proof-bar span { grid-row: span 2; align-self: center; color: var(--ember); font-family: var(--display); font-size: 28px; font-weight: 900; }
.proof-bar strong { font-family: var(--display); font-size: 18px; line-height: 1.1; text-transform: uppercase; }
.proof-bar small { color: var(--muted); font-size: 12px; }

/* Homepage sections */
.home-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 160px) var(--pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}
.section-heading h2 { font-size: clamp(58px, 7vw, 104px); }
.section-heading > p { max-width: 420px; margin: 0 0 8px; color: var(--muted); font-size: 17px; }

.food-grid {
  display: grid;
  grid-template-columns: 1.12fr .9fr .9fr;
  grid-template-rows: 345px 345px;
  gap: 14px;
}
.food-card { position: relative; min-width: 0; overflow: hidden; background: var(--ink); }
.food-card-large { grid-row: 1 / 3; }
.food-card-wide { grid-column: 2 / 4; }
.food-card a { display: block; width: 100%; height: 100%; }
.food-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; transition: transform .65s var(--ease); }
.food-card-large img { object-position: center 44%; }
.food-card-wide img { object-position: center 68%; }
.food-card::after { content: ""; position: absolute; inset: 28% 0 0; background: linear-gradient(0deg, rgba(5,5,4,.92), transparent); pointer-events: none; }
.food-card:hover img { transform: scale(1.045); }
.food-number { position: absolute; z-index: 2; top: 20px; left: 20px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--ink); background: var(--gold); border-radius: 50%; font-family: var(--display); font-size: 15px; font-weight: 900; }
.food-card-copy { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; color: var(--white); }
.food-card-copy span { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.food-card-copy h3 { margin: 4px 0 0; font-family: var(--display); font-size: clamp(25px, 2.2vw, 38px); line-height: 1; text-transform: uppercase; }
.food-card-copy > strong { white-space: nowrap; color: var(--gold); font-family: var(--display); font-size: 23px; }
.section-action { display: flex; justify-content: flex-end; margin-top: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 850; }
.text-link span { color: var(--ember); font-size: 20px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.craft-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 820px;
  color: var(--white);
  background: var(--ink);
}
.craft-photo { position: relative; min-height: 720px; overflow: hidden; }
.craft-photo::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(0deg, rgba(10,10,9,.6), transparent); }
.craft-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 37%; }
.photo-note { position: absolute; z-index: 2; bottom: 30px; left: var(--pad); padding-left: 15px; color: rgba(255,255,255,.72); border-left: 2px solid var(--ember); font-size: 11px; font-weight: 750; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; }
.craft-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px); }
.craft-copy h2 { font-size: clamp(62px, 7vw, 108px); }
.craft-intro { max-width: 600px; margin: 34px 0; color: rgba(255,255,255,.66); font-size: 17px; }
.craft-list { margin: 0 0 38px; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.craft-list li { display: grid; grid-template-columns: 42px 1fr; gap: 0 14px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.craft-list span { grid-row: span 2; color: var(--ember); font-family: var(--display); font-size: 22px; font-weight: 900; }
.craft-list strong { font-family: var(--display); font-size: 18px; text-transform: uppercase; }
.craft-list small { color: rgba(255,255,255,.5); }
.craft-copy .btn { align-self: flex-start; }

.order-section { padding-bottom: clamp(100px, 11vw, 170px); }
.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.order-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 24px; min-height: 265px; padding: 30px; overflow: hidden; color: var(--white); background: var(--ink); transition: transform .28s var(--ease); }
.order-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -75px; top: -80px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 24px rgba(255,255,255,.03), 0 0 0 48px rgba(255,255,255,.025); }
.order-card:hover { transform: translateY(-7px); }
.order-lieferando { background: #f46618; }
.order-uber { background: #20221f; }
.order-pickup { background: #9a3c1d; }
.order-index { align-self: start; font-family: var(--display); font-size: 18px; font-weight: 900; opacity: .65; }
.order-card div { display: grid; gap: 7px; }
.order-card small { font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; opacity: .65; }
.order-card strong { font-family: var(--display); font-size: clamp(30px, 3vw, 46px); line-height: .95; text-transform: uppercase; }
.order-arrow { display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); background: var(--white); border-radius: 50%; font-size: 22px; transition: transform .25s ease; }
.order-card:hover .order-arrow { transform: rotate(10deg) scale(1.08); }

.menu-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 830px;
  color: var(--white);
  background: var(--ink);
}
.menu-feature-photo { position: relative; min-height: 700px; overflow: hidden; }
.menu-feature-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 53%; }
.menu-feature-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,9,.45), transparent 45%); }
.menu-photo-label { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; color: rgba(255,255,255,.75); font-size: 10px; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.menu-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 118px); }
.menu-feature-copy h2 { font-size: clamp(62px, 7vw, 108px); }
.mini-menu { margin: 34px 0; border-top: 1px solid var(--line-light); }
.mini-menu a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-light); transition: padding .2s ease, color .2s ease; }
.mini-menu a:hover { padding-left: 8px; color: var(--gold); }
.mini-menu a > span { display: grid; }
.mini-menu strong { font-family: var(--display); font-size: 19px; text-transform: uppercase; }
.mini-menu small { color: rgba(255,255,255,.46); font-size: 11px; }
.mini-menu b { white-space: nowrap; color: var(--gold); font-family: var(--display); font-size: 20px; }
.menu-feature-copy .btn { align-self: flex-start; }

.review-section {
  display: grid;
  grid-template-columns: 1fr .72fr;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) var(--pad);
}
.review-main { padding-right: 8vw; }
.review-main h2 { font-size: clamp(64px, 8vw, 120px); }
.review-main > p:not(.eyebrow) { max-width: 600px; margin: 26px 0 32px; color: var(--muted); font-size: 17px; }
.review-mark { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 380px; color: var(--ink); background: var(--gold); transform: rotate(2deg); }
.review-mark span { letter-spacing: .25em; }
.review-mark strong { margin: 20px 0 5px; font-family: var(--display); font-size: clamp(60px, 7vw, 104px); line-height: .9; text-transform: uppercase; }
.review-mark small { font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }

.visit-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 720px;
  color: var(--white);
  background: var(--ink);
}
.visit-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 130px) var(--pad); }
.visit-copy h2 { font-size: clamp(60px, 6.6vw, 104px); }
.visit-copy address { display: grid; margin: 32px 0 24px; color: rgba(255,255,255,.72); font-size: 17px; }
.visit-hours { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 560px; margin-bottom: 34px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.visit-hours div { display: grid; gap: 4px; padding: 16px 0; }
.visit-hours div + div { padding-left: 24px; border-left: 1px solid var(--line-light); }
.visit-hours span { color: rgba(255,255,255,.48); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.visit-hours strong { font-family: var(--display); font-size: 20px; }

.visit-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--ink);
  background-color: var(--bone);
  background-image: radial-gradient(rgba(10,10,9,.14) 1px, transparent 1px);
  background-size: 18px 18px;
}
.map-street { position: absolute; display: block; height: 34px; background: var(--paper); border: 1px solid rgba(10,10,9,.12); transform-origin: center; }
.map-street-one { width: 140%; top: 37%; left: -20%; transform: rotate(-13deg); }
.map-street-two { width: 110%; top: 64%; left: 5%; transform: rotate(28deg); }
.map-street-three { width: 85%; top: 20%; left: 35%; transform: rotate(82deg); }
.map-pin { position: absolute; z-index: 2; top: 48%; left: 47%; display: grid; justify-items: center; padding: 17px 26px 15px; color: var(--white); background: var(--ink); border-radius: 12px; box-shadow: 0 20px 50px rgba(10,10,9,.25); transform: translate(-50%,-50%); }
.map-pin::after { content: ""; position: absolute; bottom: -12px; border: 7px solid transparent; border-top-color: var(--ink); }
.map-pin i { position: absolute; top: -24px; width: 28px; height: 28px; background: var(--ember); border: 6px solid var(--paper); border-radius: 50%; }
.map-pin strong { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.map-pin small { color: rgba(255,255,255,.6); font-size: 9px; }
.map-open { position: absolute; right: 22px; bottom: 20px; padding: 11px 17px; color: var(--white); background: var(--ink); border-radius: 999px; font-size: 11px; font-weight: 800; }

/* Homepage footer */
.site-footer { color: var(--white); background: var(--ink); border-top: 1px solid var(--line-light); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 60px; max-width: var(--max); margin: 0 auto; padding: 64px var(--pad); }
.footer-main p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-order { display: inline-flex; align-items: center; gap: 26px; padding: 16px 22px; background: var(--ember); border-radius: 999px; font-size: 13px; font-weight: 850; }
.footer-order:hover { color: var(--ink); background: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; max-width: var(--max); margin: 0 auto; padding: 48px var(--pad); border-top: 1px solid var(--line-light); }
.footer-links > div { display: grid; align-content: start; gap: 7px; }
.footer-links strong { margin-bottom: 8px; color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a { justify-self: start; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; max-width: var(--max); margin: 0 auto; padding: 22px var(--pad) 28px; color: rgba(255,255,255,.34); border-top: 1px solid var(--line-light); font-size: 11px; }
.footer-bottom > span:last-child { display: flex; gap: 22px; }
.mobile-order-bar { display: none; }

/* Shared styling for inner pages */
body:not(.page-home) main { padding-top: 0; }
body:not(.page-home) .hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: 170px var(--pad) 90px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
body:not(.page-home) .hero::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -5%;
  width: 650px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012);
}
.hero-inner { position: relative; z-index: 1; width: min(100%, var(--max)); margin: 0 auto; }
body:not(.page-home) .hero h1 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(62px, 9vw, 132px); line-height: .84; letter-spacing: -.055em; text-transform: uppercase; }
body:not(.page-home) .hero p:last-child { max-width: 640px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 18px; }
body:not(.page-home) main > section:not(.hero) { width: min(100%, var(--max)); margin: 0 auto; padding: 90px var(--pad); }
.section-head { display: grid; grid-template-columns: 1fr minmax(260px, 500px); align-items: end; gap: 50px; margin-bottom: 38px; }
.section-head h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5vw, 76px); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; }
.section-head p { margin: 0; color: var(--muted); }

/* Inner-page cards and grids */
.grid, .platform-grid, .deal-grid, .mini-offer-grid, .route-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); min-width: 0; gap: 14px; }
.platform-grid, .deal-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card, .panel, .platform, .deal, .visit-card, .quick-info {
  min-width: 0;
  padding: clamp(26px, 3vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
}
.card h2, .panel h2, .platform h2, .deal h2, .visit-card h2, .quick-info h2 { margin: 0 0 12px; font-family: var(--display); font-size: 32px; line-height: 1; text-transform: uppercase; }
.card p, .panel p, .platform p, .deal p, .visit-card p, .quick-info p { color: var(--muted); }
.platform { display: flex; flex-direction: column; min-height: 350px; overflow: hidden; }
.platform p { flex: 1; }
.platform .btn { align-self: flex-start; }
.platform-logo { display: inline-flex; align-self: flex-start; margin-bottom: 42px; padding: 9px 13px; color: var(--white); background: var(--ink); border-radius: 7px; font-size: 12px; font-weight: 900; }
.platform-logo.lieferando { background: #f46618; }
.platform-logo.uber { background: #20221f; }
.platform-logo.wolt { background: #12aee5; }
.availability-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }

/* Online order page: the conversion choices stay in the first viewport. */
.page-order .hero { min-height: 690px; align-items: center; }
.page-order .order-hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}
.order-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.order-hero-actions .text-link { margin-left: 8px; color: var(--white); }
#plattformen { scroll-margin-top: 88px; }
.deal-label, .offer-kicker { display: block; margin-bottom: 24px; color: var(--ember); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.coupon { display: grid; margin-top: 25px; padding-top: 20px; border-top: 1px dashed var(--line); }
.coupon span { font-family: var(--display); font-size: 28px; font-weight: 900; }
.coupon small { color: var(--muted); }

/* Favorites */
.page-favorites .grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.page-favorites .card { padding: 0; overflow: hidden; }
.page-favorites .card img { width: 100%; aspect-ratio: .82; object-fit: cover; }
.page-favorites .card .body { padding: 23px; }
.page-favorites .card h2 { font-size: 27px; }
.price { display: inline-flex; margin-top: 10px; color: var(--ember); font-family: var(--display); font-size: 25px; font-weight: 900; }
.cta { padding: clamp(36px, 6vw, 85px) !important; color: var(--white); background: var(--ink) !important; }
.cta h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 6vw, 82px); line-height: .9; text-transform: uppercase; }
.cta p { max-width: 560px; color: rgba(255,255,255,.62); }

/* Menu page */
.menu { display: block; column-count: 2; column-gap: 18px; }
.group { display: inline-block; width: 100%; margin: 0 0 18px; overflow: hidden; background: var(--white); border: 1px solid var(--line); break-inside: avoid; }
.group h2 { margin: 0; padding: 24px 27px; color: var(--white); background: var(--ink); font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.group .row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 15px 26px; border-bottom: 1px solid var(--line); }
.group .row:last-child { border-bottom: 0; }
.group .row h3 { margin: 0; font-size: 14px; line-height: 1.3; }
.group .row p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.35; }
.group .row > strong { white-space: nowrap; color: var(--ember); font-family: var(--display); font-size: 18px; }
.menu-legend { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; padding-top: 0 !important; }
.menu-legend article { min-width: 0; padding: clamp(28px, 4vw, 50px); color: var(--white); background: var(--ink); }
.menu-legend h2 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(28px, 3vw, 44px); text-transform: uppercase; }
.menu-legend p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.8; }
.menu-legend p strong { color: var(--gold); }
.note { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; color: var(--white); background: var(--ink); }
.note > div { display: grid; gap: 6px; }
.note span { color: rgba(255,255,255,.58); }

/* Offers */
.offer-showcase { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.offer-card { position: relative; min-height: 540px; padding: clamp(35px, 5vw, 70px); overflow: hidden; color: var(--white); background: var(--ink); }
.offer-slice { background: var(--ember-dark); }
.offer-summer { color: var(--ink); background: var(--gold); }
.offer-copy { position: relative; z-index: 2; max-width: 380px; }
.offer-card h2 { margin: 0; font-family: var(--display); font-size: clamp(56px, 7vw, 96px); line-height: .84; text-transform: uppercase; }
.offer-card p { max-width: 330px; opacity: .72; }
.offer-price { display: block; margin: 24px 0 6px; font-family: var(--display); font-size: clamp(56px, 7vw, 92px); line-height: 1; }
.offer-card small { display: block; margin-bottom: 28px; opacity: .66; }
.pizza-slice, .pizza-round { position: absolute; right: -55px; bottom: -55px; width: 270px; height: 270px; border: 30px solid rgba(255,255,255,.14); border-radius: 50%; }
.pizza-slice { border-radius: 50% 12px 50% 50%; transform: rotate(-18deg); }
.rules { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; color: var(--white); background: var(--ink); }
.rules h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5vw, 72px); line-height: .9; text-transform: uppercase; }
.rules p { color: rgba(255,255,255,.58); }
.rule-list { border-top: 1px solid var(--line-light); }
.rule { display: grid; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.rule span { color: rgba(255,255,255,.5); font-size: 13px; }

/* Poster strip retained on the order page */
body:not(.page-home) main > .poster-section { width: 100%; max-width: none; padding: 100px var(--pad); text-align: center; color: var(--white); background: var(--ink); }
.poster-logo { width: 100px; height: 100px; margin: 0 auto 26px; object-fit: cover; background: var(--white); border-radius: 50%; }
.poster-strip { display: grid; grid-template-columns: repeat(4,1fr); max-width: var(--max); height: 210px; margin: 0 auto 35px; overflow: hidden; }
.poster-strip img { width: 100%; height: 100%; object-fit: cover; }
.poster-section > p { margin: 0; color: rgba(255,255,255,.55); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.poster-section > h2 { margin: 7px 0; color: var(--ember); font-family: var(--display); font-size: clamp(60px, 9vw, 126px); line-height: .9; text-transform: uppercase; }
.poster-section > span { color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.mini-offer { min-height: 260px; padding: 32px; color: var(--white); background: var(--ink); }
.mini-offer span, .mini-offer strong, .mini-offer em { display: block; }
.mini-offer span { font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.mini-offer strong { margin: 25px 0 5px; font-family: var(--display); font-size: 40px; line-height: .9; text-transform: uppercase; }
.mini-offer em { color: var(--gold); font-family: var(--display); font-size: 56px; font-style: normal; font-weight: 900; }
.mini-offer-red { background: var(--ember-dark); }
.mini-offer-paper { color: var(--ink); background: var(--gold); }
.mini-offer-paper em { color: var(--ink); }

/* Contact, route, jobs and forms */
.list, .visit-list { display: grid; margin: 25px 0; border-top: 1px solid var(--line); }
.list > div, .visit-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.list strong, .visit-list strong { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.list span, .visit-list span { color: var(--muted); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.map, .map-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background-color: var(--bone);
  background-image: linear-gradient(27deg, transparent 47%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.9) 54%, transparent 55%), linear-gradient(-18deg, transparent 45%, rgba(255,255,255,.85) 46%, rgba(255,255,255,.85) 52%, transparent 53%), radial-gradient(rgba(10,10,9,.16) 1px, transparent 1px);
  background-size: auto, auto, 18px 18px;
}
.map-label { position: absolute; right: 22px; bottom: 22px; left: 22px; display: grid; padding: 20px; color: var(--white); background: var(--ink); }
.map-label strong { font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.map-label span { color: rgba(255,255,255,.58); font-size: 12px; }
.application { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; color: var(--white); background: var(--ink); }
.application h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 80px); line-height: .9; text-transform: uppercase; }
.application p { color: rgba(255,255,255,.6); }
.apply-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.apply-form label { display: grid; gap: 6px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.apply-form label:last-of-type { grid-column: 1 / -1; }
.apply-form input, .apply-form select, .apply-form textarea { width: 100%; min-width: 0; max-width: 100%; min-height: 52px; padding: 12px 14px; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid var(--line-light); border-radius: 0; outline: 0; }
.apply-form textarea { min-height: 130px; resize: vertical; }
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus { border-color: var(--gold); }
.apply-form .btn { justify-self: start; }
.panel.green { color: var(--white); background: #31472d; }
.quick { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.quick > div { display: grid; gap: 5px; padding: 28px; background: var(--white); border: 1px solid var(--line); }
.quick span { color: var(--muted); }

/* Legal */
.legal-page { min-height: 100vh; padding: 160px var(--pad) 90px; color: var(--ink); background: var(--paper); }
.legal-content { min-width: 0; max-width: 900px; margin: 0 auto; padding: clamp(28px, 5vw, 70px); overflow-wrap: anywhere; background: var(--white); border: 1px solid var(--line); }
.legal-eyebrow { color: var(--muted); }
.legal-content h1 { margin: 0 0 35px; font-family: var(--display); font-size: clamp(56px, 8vw, 100px); line-height: .9; text-transform: uppercase; }
.legal-content h2 { margin-top: 38px; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.legal-content p, .legal-content li { color: #4c4943; }

/* Standard footer on inner pages */
body:not(.page-home) > footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 32px var(--pad);
  color: rgba(255,255,255,.5);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  font-size: 12px;
}
body:not(.page-home) > footer a:hover { color: var(--gold); }

@media (max-width: 1180px) {
  .home-hero { grid-template-columns: .94fr 1.06fr; }
  .home-hero-copy { padding-right: 45px; }
  .home-hero h1 { font-size: clamp(60px, 7.5vw, 92px); }
  .food-grid { grid-template-rows: 300px 300px; }
  .craft-copy, .menu-feature-copy { padding: 70px 6vw; }
  .page-favorites .grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px) {
  :root { --pad: clamp(20px, 4.5vw, 48px); }
  .topbar { min-height: 74px; }
  .brand-mark, .topbar > .brand > .brand-logo-img { width: 50px; height: 50px; }
  .brand-name strong { font-size: 21px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 30px var(--pad) 110px;
    background: rgba(10,10,9,.985);
    visibility: visible;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px 0; font-family: var(--display); font-size: clamp(28px, 7vw, 48px); line-height: 1; text-transform: uppercase; border-bottom: 1px solid var(--line-light); }
  .nav .nav-order, .nav a[href$="bestellen.html"] { justify-content: space-between; min-height: 62px; margin-top: 20px; padding: 0 22px; border-bottom: 0; border-radius: 0; font-size: 22px; }

  .home-hero { grid-template-columns: 1fr; min-height: 0; }
  .home-hero-copy { min-height: 730px; padding: 145px var(--pad) 70px; }
  .home-hero-media { min-height: 680px; }
  .proof-bar { padding: 0 var(--pad); }
  .proof-bar > div { padding: 24px 2.5vw; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .food-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: 520px 300px 360px; }
  .food-card-large { grid-column: 1 / 3; grid-row: auto; }
  .food-card-wide { grid-column: 1 / 3; }
  .craft-section, .menu-feature, .visit-section { grid-template-columns: 1fr; }
  .craft-photo, .menu-feature-photo { min-height: 700px; }
  .craft-copy, .menu-feature-copy, .visit-copy { padding: 90px var(--pad); }
  .menu-feature-photo { order: 2; }
  .order-grid { grid-template-columns: 1fr; }
  .order-card { min-height: 210px; }
  .review-section { grid-template-columns: 1fr; gap: 60px; }
  .review-mark { min-height: 330px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main p { display: none; }

  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .platform-grid, .deal-grid { grid-template-columns: 1fr; }
  .platform { min-height: 290px; }
  .menu { column-count: 1; }
  .menu-legend { grid-template-columns: 1fr; }
  .application, .rules { grid-template-columns: 1fr; gap: 45px; }
  .offer-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .brand-name { display: none; }
  .home-hero-copy { min-height: 650px; padding-top: 125px; }
  .home-hero h1 { font-size: clamp(46px, 13vw, 64px); line-height: .88; }
  .hero-lead { margin: 25px 0; font-size: 16px; }
  .actions .btn { width: 100%; }
  .hero-facts { margin-top: 34px; }
  .hero-facts strong { font-size: 12px; }
  .home-hero-media { min-height: 520px; }
  .home-hero-media > img { object-position: 48% 50%; }
  .hero-stamp { top: 25px; right: 20px; width: 112px; }
  .hero-location { min-width: 82%; padding: 20px 22px; }
  .hero-location strong { font-size: 21px; }

  .proof-bar { grid-template-columns: 1fr; }
  .proof-bar > div, .proof-bar > div:first-child, .proof-bar > div:last-child { padding: 20px 0; border-left: 0; }
  .proof-bar > div + div { border-left: 0; }
  .proof-bar span { font-size: 22px; }

  .home-section { padding-top: 85px; padding-bottom: 85px; }
  .home-section h2, .craft-section h2, .menu-feature h2, .visit-section h2 { font-size: clamp(51px, 15vw, 74px); }
  .section-heading { margin-bottom: 34px; }
  .section-heading > p { font-size: 15px; }
  .food-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .food-card, .food-card-large, .food-card-wide { grid-column: auto; grid-row: auto; min-height: 450px; }
  .food-card-wide { min-height: 340px; }
  .food-card-copy { right: 18px; bottom: 18px; left: 18px; }
  .food-card-copy h3 { font-size: 28px; }
  .craft-photo, .menu-feature-photo { min-height: 560px; }
  .craft-copy, .menu-feature-copy, .visit-copy { padding: 75px var(--pad); }
  .craft-intro { font-size: 15px; }
  .order-card { min-height: 180px; padding: 24px; }
  .order-card strong { font-size: 34px; }
  .order-arrow { width: 42px; height: 42px; }
  .mini-menu a { align-items: flex-end; }
  .review-section { padding-top: 80px; padding-bottom: 80px; }
  .review-main { padding-right: 0; }
  .review-mark { min-height: 270px; }
  .visit-map { min-height: 480px; }
  .visit-hours { grid-template-columns: 1fr; }
  .visit-hours div + div { padding-left: 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-order { justify-content: space-between; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 76px; }
  .mobile-order-bar { position: fixed; z-index: 90; right: 10px; bottom: 10px; left: 10px; display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 20px; color: var(--white); background: var(--ember); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 16px 40px rgba(10,10,9,.4); font-size: 12px; }
  .mobile-order-bar strong { font-size: 13px; }

  body:not(.page-home) .hero { min-height: 430px; padding-top: 135px; padding-bottom: 60px; }
  body:not(.page-home) .hero h1 { font-size: clamp(46px, 13.5vw, 68px); }
  body:not(.page-home) .hero p:last-child { font-size: 15px; }
  body:not(.page-home) main > section:not(.hero) { padding-top: 65px; padding-bottom: 65px; }
  .grid, .route-grid, .mini-offer-grid, .note, .quick { grid-template-columns: 1fr; }
  .page-favorites .grid { grid-template-columns: 1fr; }
  .list > div, .visit-list > div { grid-template-columns: 1fr; gap: 2px; }
  .apply-form { grid-template-columns: 1fr; }
  .apply-form label:last-of-type { grid-column: auto; }
  .offer-card { min-height: 470px; }
  .poster-strip { grid-template-columns: repeat(2,1fr); height: 340px; }
  .poster-strip img:nth-child(n+3) { display: none; }
  .poster-section > h2 { font-size: clamp(42px, 13vw, 58px); }
  .legal-content h1 { font-size: clamp(40px, 13vw, 58px); }
  body:not(.page-home) > footer { flex-direction: column; padding-bottom: 95px; }
  .page-order .hero { min-height: 720px; align-items: flex-start; }
  .page-order .order-hero-copy { font-size: 15px; }
  .order-hero-actions { align-items: stretch; }
  .order-hero-actions .btn { width: 100%; }
  .order-hero-actions .text-link { align-self: flex-start; margin: 8px 0 0; }
}

/* Unser Döner – interactive process page and homepage teaser */
.process-teaser {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  min-height: 660px;
  color: var(--white);
  background: var(--ember-dark);
}

.process-teaser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(70px, 8vw, 130px) var(--pad);
}

.process-teaser h2,
.process-hero h1,
.process-qr-welcome h2,
.process-heading h2,
.process-panel h2,
.process-film h2,
.social-gallery h2,
.process-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

#process-film-title,
#process-gallery-title,
#home-gallery-title {
  scroll-margin-top: 96px;
}

.process-teaser h2 { font-size: clamp(52px, 4.7vw, 84px); }
.process-teaser h2 em,
.process-hero h1 em,
.process-qr-welcome h2 em,
.process-heading h2 em,
.process-film h2 em,
.social-gallery h2 em,
.process-cta h2 em { color: var(--gold); font-style: normal; }

.process-teaser-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.process-teaser-copy .btn { align-self: flex-start; }

.process-teaser-photo {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
}

.process-teaser-photo::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(0deg, rgba(10,10,9,.78), transparent);
}

.process-teaser-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: transform .65s var(--ease);
}

.process-teaser-photo:hover > img { transform: scale(1.035); }

.process-teaser-photo > span {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 24px;
  color: var(--white);
}

.process-teaser-photo small { grid-column: 1; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.process-teaser-photo strong { grid-column: 1; font-family: var(--display); font-size: clamp(22px, 2vw, 32px); text-transform: uppercase; }
.process-teaser-photo i { grid-column: 2; grid-row: 1 / 3; display: grid; place-items: center; width: 54px; height: 54px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: 23px; font-style: normal; }

.page-process { background: var(--paper); }

body.page-process main > section.process-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: none;
  height: min(900px, 100vh);
  height: min(900px, 100svh);
  min-height: 720px;
  max-height: 900px;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.process-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 150px clamp(42px, 6vw, 104px) 80px var(--pad);
}

.process-hero h1 { max-width: 760px; font-size: clamp(56px, 4.7vw, 94px); }
.process-hero-copy > p:not(.eyebrow) { max-width: 610px; margin: 34px 0 30px; color: rgba(255,255,255,.68); font-size: 18px; }
.process-story-link { align-self: flex-start; margin-top: 27px; color: var(--gold); }
.process-story-link:hover span,
.process-qr-welcome .text-link:hover span { transform: translateY(4px); }

.process-hero-photo { position: relative; min-width: 0; min-height: 700px; overflow: hidden; }
.process-hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,9,.35), transparent 46%); }
.process-hero-photo img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

.process-hero-badge {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 68px);
  bottom: clamp(28px, 5vw, 72px);
  display: grid;
  place-items: center;
  width: clamp(132px, 12vw, 190px);
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(5deg);
}

.process-hero-badge::before { content: ""; position: absolute; inset: 9px; border: 1px dashed rgba(10,10,9,.5); border-radius: inherit; }
.process-hero-badge span, .process-hero-badge small { position: relative; z-index: 1; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.process-hero-badge strong { position: relative; z-index: 1; margin: -11px 0; font-family: var(--display); font-size: clamp(42px, 4vw, 65px); }

.page-process main > .process-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.process-principles > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 30px clamp(18px, 2.6vw, 42px);
  border-bottom: 1px solid var(--line);
}
.process-principles > div:first-child { padding-left: 0; }
.process-principles > div:last-child { padding-right: 0; }
.process-principles > div + div { border-left: 1px solid var(--line); }
.process-principles span { grid-row: span 2; align-self: center; color: var(--ember); font-family: var(--display); font-size: 28px; font-weight: 900; }
.process-principles strong { font-family: var(--display); font-size: 18px; line-height: 1.1; text-transform: uppercase; }
.process-principles small { color: var(--muted); font-size: 12px; }

.page-process main > .process-explorer {
  width: min(100%, var(--max));
  max-width: var(--max);
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(100px, 11vw, 170px);
}

#zubereitung,
#prozess-start { scroll-margin-top: 92px; }

.process-qr-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  margin-bottom: clamp(90px, 10vw, 150px);
  padding: clamp(42px, 6vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(243,165,31,.18), transparent 29%),
    var(--ink);
  border-top: 6px solid var(--gold);
  box-shadow: 0 28px 80px rgba(10,10,9,.12);
}
.process-qr-welcome h2 { max-width: 700px; font-size: clamp(48px, 5.5vw, 82px); }
.process-qr-welcome > div:first-child > p:not(.eyebrow) { max-width: 700px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.process-qr-actions { display: grid; gap: 12px; }
.process-qr-actions .btn { width: 100%; }
.process-qr-actions .text-link { justify-self: start; margin-top: 10px; color: var(--gold); }

.process-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}
.process-heading > *,
.process-cta > * { min-width: 0; }
.process-heading h2 { font-size: clamp(58px, 7vw, 104px); }
.process-heading h2 em { color: var(--ember); }
.process-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.process-swipe-hint { display: none; }

.process-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-bottom: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-tab {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 20px 16px;
  color: var(--muted);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.process-tab:last-child { border-right: 0; }
.process-tab span { color: var(--ember); font-family: var(--display); font-size: 18px; font-weight: 900; }
.process-tab strong { font-family: var(--display); font-size: 13px; text-transform: uppercase; }
.process-tab:hover { color: var(--ink); background: var(--bone); }
.process-tab.is-active { color: var(--white); background: var(--ink); }
.process-tab.is-active span { color: var(--gold); }

.process-panels { min-width: 0; background: var(--ink); }
.process-panel[hidden] { display: none !important; }
.process-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 660px; color: var(--white); }
.process-panel figure { position: relative; min-width: 0; min-height: 620px; margin: 0; overflow: hidden; }
.process-panel figure::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(0deg, rgba(10,10,9,.55), transparent); }
.process-panel figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.process-panel--poster figure { background: var(--ink-2); }
.process-panel--poster figure img { object-position: center; }
.process-panel:nth-child(1) figure img { object-position: center 50%; }
.process-panel:nth-child(3) figure img { object-position: 76% center; }
.process-panel:nth-child(4) figure img { object-position: center 42%; }
.process-panel:nth-child(5) figure img { object-position: center 50%; }
.process-panel:nth-child(6) figure img { object-position: center 48%; }
.process-panel figure > span { position: absolute; z-index: 2; bottom: 26px; left: 28px; color: var(--white); font-family: var(--display); font-size: 26px; font-weight: 900; }

.process-photo-credit {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: rgba(255,255,255,.88);
  background: rgba(10,10,9,.74);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.process-photo-credit:hover { color: var(--ink); background: var(--gold); }

.process-cold-visual {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 34px;
  padding: 54px 38px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(39,153,204,.34), transparent 42%),
    #0b1d26;
  background-size: 34px 34px, 34px 34px, auto, auto;
}
.process-cold-visual::after { inset: 45% 0 0; background: linear-gradient(0deg, rgba(5,11,14,.72), transparent); }
.cold-gauge,
.cold-copy { position: relative; z-index: 1; }
.cold-gauge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: min(72%, 310px);
  aspect-ratio: 1;
  padding-top: 48px;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(255,255,255,.045), 0 0 70px rgba(70,188,234,.22);
}
.cold-gauge span { margin-right: 8px; color: #83d5f5; font-size: 36px; }
.cold-gauge strong { font-family: var(--display); font-size: clamp(54px, 5.2vw, 76px); line-height: .8; text-transform: uppercase; }
.cold-copy { display: grid; gap: 3px; }
.cold-copy small,
.cold-copy span { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.cold-copy strong { color: var(--white); font-family: var(--display); font-size: clamp(27px, 3vw, 42px); line-height: 1; text-transform: uppercase; }

.process-panel-copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: clamp(48px, 6vw, 92px); }
.process-kicker { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.process-panel h2 { font-size: clamp(50px, 4.6vw, 82px); }
.process-panel-copy > p:not(.process-kicker) { max-width: 520px; margin: 30px 0 38px; color: rgba(255,255,255,.64); font-size: 17px; }

.process-next {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  gap: 26px;
  min-width: 215px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.process-next:hover { color: var(--white); background: var(--ember); transform: translateY(-3px); }
.process-next span { font-size: 19px; }

.process-transparency {
  display: grid;
  grid-template-columns: minmax(150px, .25fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 22px;
  padding: 28px 30px;
  color: var(--white);
  background: var(--ember-dark);
}
.process-transparency strong { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.process-transparency p { max-width: 900px; margin: 0; color: rgba(255,255,255,.72); }

.page-process main > section.process-film {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(90px, 10vw, 150px) var(--pad);
  color: var(--white);
  background: var(--ink);
}
.process-film-copy { min-width: 0; }
.process-film h2 { max-width: 850px; font-size: clamp(58px, 7vw, 108px); }
.process-film h2 em { color: var(--ember); }
.process-film-copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0; color: rgba(255,255,255,.68); font-size: 17px; }
.process-film .text-link { color: var(--gold); }
.process-film-frame { display: grid; justify-items: center; gap: 15px; min-width: 0; margin: 0; }
.process-film-frame video {
  display: block;
  width: min(100%, 440px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
}
.process-film-frame figcaption { max-width: 440px; color: rgba(255,255,255,.46); font-size: 11px; line-height: 1.5; text-align: center; }

.page-process main > section.social-gallery,
.page-home main > section.social-gallery {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(90px, 10vw, 150px) var(--pad);
}
.social-gallery--process { color: var(--white); background: var(--ember-dark); }
.social-gallery--home { color: var(--ink); background: var(--bone); }
.social-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: end;
  gap: 70px;
  max-width: var(--max);
  margin: 0 auto 52px;
}
.social-gallery-heading h2 { font-size: clamp(58px, 7vw, 104px); }
.social-gallery--home h2 em { color: var(--ember); }
.social-gallery-heading > p { margin: 0 0 8px; color: inherit; opacity: .68; font-size: 17px; }
.social-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 265px;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}
.social-photo {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.social-photo--tall { grid-row: span 2; }
.social-photo--wide { grid-column: span 8; }
.social-photo-grid--home .social-photo:nth-child(5) { grid-column: span 12; }
.social-gallery--process .social-photo:nth-child(5),
.social-gallery--process .social-photo:nth-child(6) { grid-column: span 6; }
.social-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(5,5,4,.88), transparent); pointer-events: none; }
.social-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s var(--ease); }
.social-photo:hover img { transform: scale(1.04); }
.social-photo > span { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; font-size: 12px; font-weight: 850; }
.social-photo--video > span { display: flex; align-items: center; gap: 10px; }
.social-photo--video i { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: 12px; font-style: normal; }
.social-gallery-action { display: flex; justify-content: flex-end; max-width: var(--max); margin: 28px auto 0; }

.page-process main > .process-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(90px, 10vw, 150px) var(--pad);
  color: var(--white);
  background: var(--ember-dark);
}
.process-cta h2 { max-width: 1000px; font-size: clamp(58px, 7vw, 108px); }
.process-cta > div > p:not(.eyebrow) { margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.process-cta .actions { justify-content: flex-end; }

@media (max-width: 1040px) {
  .process-teaser,
  body.page-process main > section.process-hero,
  .process-panel { grid-template-columns: 1fr; }
  body.page-process main > section.process-hero { height: auto; min-height: 0; max-height: none; }
  .process-teaser-photo { min-height: 700px; }
  .process-hero-copy { min-height: 700px; padding: 145px var(--pad) 80px; }
  .process-hero-photo { min-height: 700px; }
  .process-heading { grid-template-columns: 1fr; gap: 24px; }
  .process-qr-welcome { grid-template-columns: 1fr; }
  .page-process main > .process-principles { grid-template-columns: repeat(2, 1fr); }
  .process-principles > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .process-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .process-swipe-hint { display: block; margin: -10px 0 14px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
  .process-tab { flex: 0 0 158px; scroll-snap-align: start; }
  .process-panel figure { min-height: 620px; }
  .process-panel-copy { min-height: 520px; }
  .process-transparency { grid-template-columns: 1fr; }
  .page-process main > section.process-film { grid-template-columns: 1fr; }
  .process-film-frame video { width: min(100%, 520px); }
  .social-gallery-heading { grid-template-columns: 1fr; gap: 24px; }
  .social-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 440px; }
  .social-photo,
  .social-photo--wide,
  .social-photo-grid--home .social-photo:nth-child(5),
  .social-gallery--process .social-photo:nth-child(5),
  .social-gallery--process .social-photo:nth-child(6) { grid-column: auto; }
  .social-photo--tall { grid-row: auto; }
  .page-process main > .process-cta { grid-template-columns: 1fr; align-items: start; }
  .process-cta .actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .process-teaser-copy { padding: 75px var(--pad); }
  .process-teaser h2 { font-size: clamp(48px, 14vw, 68px); }
  .process-teaser-copy > p:not(.eyebrow) { font-size: 15px; }
  .process-teaser-copy .btn { width: 100%; }
  .process-teaser-photo { min-height: 520px; }
  .process-teaser-photo > span { right: 20px; bottom: 20px; left: 20px; }

  .process-hero-copy { min-height: 650px; padding: 125px var(--pad) 70px; }
  .process-hero h1 { font-size: clamp(42px, 11.4vw, 56px); }
  .process-hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .process-hero-copy .btn { width: 100%; }
  .process-hero-photo { min-height: 540px; }
  .process-hero-badge { width: 128px; }

  .page-process main > .process-principles { grid-template-columns: 1fr; padding: 0 var(--pad); }
  .process-principles > div,
  .process-principles > div:first-child,
  .process-principles > div:last-child { padding: 20px 0; border-left: 0; }
  .process-principles > div + div { border-top: 0; border-left: 0; }

  .page-process main > .process-explorer { padding-top: 80px; padding-bottom: 90px; }
  .process-qr-welcome { gap: 34px; margin-bottom: 80px; padding: 42px 20px; }
  .process-qr-welcome h2 { font-size: clamp(40px, 11.2vw, 56px); }
  .process-qr-welcome > div:first-child > p:not(.eyebrow) { font-size: 15px; }
  .process-qr-actions .text-link { font-size: 12px; }
  .process-heading { margin-bottom: 32px; }
  .process-heading h2 { font-size: clamp(40px, 11.2vw, 56px); }
  .process-heading > p { font-size: 15px; }
  .process-tab { flex-basis: 138px; padding: 17px 14px; }
  .process-panel figure { min-height: 440px; }
  .process-photo-credit { top: 12px; left: 12px; font-size: 8px; }
  .cold-gauge { width: min(65vw, 250px); padding-top: 40px; }
  .process-panel-copy { min-height: 470px; padding: 48px 16px; }
  .process-panel h2 { font-size: clamp(28px, 9vw, 48px); }
  .process-panel-copy > p:not(.process-kicker) { font-size: 15px; }
  .process-next { width: 100%; }

  .process-transparency { gap: 8px; padding: 24px 20px; }
  .process-transparency p { font-size: 14px; }
  .page-process main > section.process-film,
  .page-process main > section.social-gallery,
  .page-home main > section.social-gallery { padding-top: 80px; padding-bottom: 90px; }
  .process-film h2,
  .social-gallery-heading h2 { font-size: clamp(40px, 11.5vw, 58px); }
  .process-film-copy > p:not(.eyebrow),
  .social-gallery-heading > p { font-size: 15px; }
  .process-film-frame video { width: 100%; max-height: 680px; }
  .social-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 245px; gap: 8px; }
  .social-photo--tall { grid-row: span 2; }
  .social-photo--wide { grid-column: span 2; }
  .social-photo-grid--home .social-photo:nth-child(5) { grid-column: span 2; }
  .social-gallery--process .social-photo:nth-child(5),
  .social-gallery--process .social-photo:nth-child(6) { grid-column: span 1; }
  .social-photo > span { right: 12px; bottom: 11px; left: 12px; font-size: 10px; }
  .social-gallery-action .btn { width: 100%; }

  .page-process main > .process-cta { padding-top: 80px; padding-bottom: 90px; }
  .process-cta h2 { font-size: clamp(40px, 11.5vw, 58px); }
  .process-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
