:root {
  --site-width: 1600px;
  --ink: #050505;
  --paper: #f5f3ee;
  --brand-light: #ffffff;
  --accent: #e32926;
  --accent-hot: #ff4a43;
  --line: rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--brand-light);
  font-family: Arial, Helvetica, sans-serif;
}
body > main,
body > .site-header,
body > .site-footer {
  margin-inline: auto;
  max-width: var(--site-width);
  width: 100%;
}
a { color: inherit; text-decoration: none; }
.ui-icon {
  display: inline-block;
  fill: none;
  flex: 0 0 auto;
  height: 1.1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  vertical-align: -0.18em;
  width: 1.1em;
}

/* Bildgrößen für die eigenständige HTML-Version */
.hero-visual > img,
.hero-detail img,
.product-card-real img,
.story-image img,
.gallery-item img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero {
  animation: hero-background-drift 18s ease-in-out infinite alternate;
  height: 100svh;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 48%),
    url("assets/video/hero-poster.webp?v=30") center / cover no-repeat;
}
.hero::before {
  background: linear-gradient(90deg, var(--accent) 0 6px, transparent 6px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--site-width);
  min-height: 76px;
  padding: 0 48px;
  position: relative;
  transition: background-color 240ms ease, min-height 240ms ease, padding 240ms ease, border-color 240ms ease, transform 280ms ease;
  z-index: 5;
}
.hero .site-header {
  left: 50%;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
.brand img { transition: height 280ms ease, transform 280ms ease; }
body.is-scrolled .hero .site-header {
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  min-height: 66px;
}
body.is-scrolled .hero .brand img { height: 48px; }
body.header-hidden .hero .site-header { transform: translate(-50%, -110%); }
.brand { align-items: center; display: flex; width: fit-content; }
.brand img { height: 56px; object-fit: contain; width: auto; }
.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(24px, 2.6vw, 42px);
  justify-self: start;
  margin-left: clamp(34px, 4.2vw, 68px);
}
.nav-links a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-left: 12px;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}
.nav-links a::before {
  background: var(--accent);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}
.nav-links a::after {
  background: var(--accent);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}
.nav-links a:hover, .nav-links a:focus-visible { color: #ffffff; transform: translateY(-1px); }
.nav-links a:hover::after, .nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.header-order {
  align-items: center;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 14px;
  justify-self: end;
  letter-spacing: 0.08em;
  padding: 13px 18px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}
.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}
.menu-toggle span {
  background: currentColor;
  height: 2px;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 19px;
}
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-order:hover, .header-order:focus-visible {
  background: var(--accent-hot);
  transform: translateY(-2px);
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--site-width);
  padding: clamp(92px, 12svh, 128px) 48px clamp(92px, 11svh, 118px);
  position: relative;
  width: 100%;
  z-index: 2;
}
h1, h2, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Arial Black", Impact, sans-serif;
  font-weight: 900;
}
h1 {
  color: #ffffff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(44px, 4.7vw, 76px);
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin-bottom: 32px;
  max-width: 780px;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 0; }
h1 em {
  color: var(--accent);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
}
.hero-copy {
  border-left: 3px solid var(--accent);
  display: grid;
  gap: 8px;
  margin: clamp(24px, 3.5svh, 34px) 0 0;
  max-width: 610px;
  padding: 3px 0 3px 20px;
}
.hero-copy strong {
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-copy span {
  color: rgba(220, 220, 219, 0.76);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4.2svh, 40px); }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 28px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-width: 195px;
  padding: 20px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button-primary { background: var(--accent); color: #ffffff; }
.button-primary:hover, .button-primary:focus-visible {
  background: var(--accent-hot);
  transform: translateY(-3px);
}
.button-secondary { border: 1px solid rgba(220, 220, 219, 0.34); }
.button-secondary:hover, .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 220, 219, 0.66);
  transform: translateY(-3px);
}
.hero-facts {
  bottom: clamp(28px, 4svh, 42px);
  color: rgba(220, 220, 219, 0.56);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  gap: 26px;
  letter-spacing: 0.12em;
  left: 48px;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
}
.hero-facts span:not(:last-child)::after {
  color: var(--accent);
  content: "•";
  margin-left: 26px;
}
.js .hero h1,
.js .hero .hero-copy,
.js .hero .hero-actions,
.js .hero .hero-facts,
.js .hero .scroll-cue {
  animation: hero-content-in 760ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.js .hero .hero-copy { animation-delay: 100ms; }
.js .hero .hero-actions { animation-delay: 190ms; }
.js .hero .hero-facts { animation-delay: 280ms; }
.js .hero .scroll-cue { animation-delay: 380ms; }

.button span,
.header-order span,
.location-order span {
  display: inline-block;
  transition: transform 200ms ease;
}
.button:hover span,
.button:focus-visible span,
.header-order:hover span,
.header-order:focus-visible span,
.location-order:hover span,
.location-order:focus-visible span { transform: translateX(4px); }

.hero-visual {
  aspect-ratio: 1;
  border: 1px solid rgba(227, 41, 38, 0.62);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  right: -7vw;
  top: 18%;
  width: min(48vw, 760px);
  z-index: 1;
}
.hero-visual::before, .hero-visual::after {
  border: 1px solid rgba(227, 41, 38, 0.22);
  border-radius: inherit;
  content: "";
  position: absolute;
}
.hero-visual::before { inset: 6%; }
.hero-visual::after { inset: 14%; }
.hero-visual > img {
  border-radius: 50%;
  object-fit: cover;
  padding: 7%;
}
.hero-image-label {
  align-items: center;
  background: var(--accent);
  bottom: 13%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  position: absolute;
  right: 3%;
  text-transform: uppercase;
  transform: rotate(-4deg);
  z-index: 3;
}
.hero-image-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.hero-image-label strong {
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.hero-detail {
  animation: float 4s ease-in-out infinite;
  background: #0c0c0c;
  border: 8px solid #0c0c0c;
  bottom: 7%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  height: 220px;
  left: -2%;
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform: rotate(5deg);
  width: 160px;
  z-index: 4;
}
.hero-detail img {
  object-fit: cover;
}
.hero-orbit {
  border: 1px solid rgba(227, 41, 38, 0.72);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}
.hero-orbit-one { height: 18px; right: 33%; top: 23%; width: 18px; }
.hero-orbit-two { bottom: 18%; height: 10px; right: 10%; width: 10px; }
.scroll-cue {
  align-items: center;
  bottom: 28px;
  color: rgba(220, 220, 219, 0.5);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 14px;
  right: 48px;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-cue i {
  align-items: center;
  border: 1px solid rgba(220, 220, 219, 0.25);
  border-radius: 50%;
  display: flex;
  font-style: normal;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.scroll-cue svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
  animation: discover-pulse 1.8s ease-in-out infinite;
}
@keyframes discover-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(-2px); }
  50% { opacity: 1; transform: translateY(3px); }
}

.menu-section {
  background: var(--paper);
  color: var(--ink);
  padding: 120px max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.menu-preview-section {
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 680px;
}
.menu-preview-image {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}
.menu-preview-image::after {
  border: 1px solid rgba(255, 255, 255, 0.62);
  content: "";
  inset: 22px;
  pointer-events: none;
  position: absolute;
}
.menu-preview-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  position: absolute;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}
.menu-preview-image:hover img { transform: scale(1.035); }
.menu-preview-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(44px, 7vw, 120px);
}
.menu-preview-copy h2 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(44px, 5.2vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 16px 0 28px;
  text-transform: uppercase;
}
.menu-preview-copy > p:not(.section-kicker) {
  color: #5d5d58;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}
.subpage-header {
  background: #050505;
  max-width: var(--site-width);
  padding-left: max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
  padding-right: max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.menu-page .menu-section {
  padding-top: 100px;
}
.section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-heading {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.35fr 0.65fr;
  margin-bottom: 56px;
}
.section-heading h2,
.story-copy h2,
.gallery-heading h2,
.reviews-section h2,
.locations-section h2 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(42px, 6.8vw, 96px);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 0;
  text-transform: uppercase;
}
.section-heading > p {
  color: #5d5d58;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 520px;
}
.product-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card {
  aspect-ratio: 1 / 0.84;
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  position: relative;
}
.product-card-real {
  grid-column: span 2;
}
.product-card-real img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card-real:hover img { transform: scale(1.035); }
.product-card-real figcaption {
  background: rgba(17, 16, 15, 0.88);
  bottom: 16px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  left: 16px;
  letter-spacing: 0.12em;
  padding: 12px 14px;
  position: absolute;
  text-transform: uppercase;
}
.product-placeholder,
.gallery-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 54%),
    repeating-linear-gradient(-45deg, #101010, #101010 12px, #171717 12px, #171717 24px);
  color: var(--brand-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.product-placeholder::before,
.gallery-placeholder::before {
  border: 1px solid rgba(255, 255, 255, 0.38);
  content: "+";
  display: grid;
  font-size: 20px;
  height: 42px;
  left: 24px;
  place-items: center;
  position: absolute;
  top: 24px;
  width: 42px;
}
.product-placeholder span,
.gallery-placeholder span {
  color: rgba(220, 220, 219, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.product-placeholder strong,
.gallery-placeholder strong {
  color: white;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -0.04em;
  margin-top: 7px;
  text-transform: uppercase;
}

.menu-category-nav {
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 86px;
  padding: 18px 0;
}
.menu-category-nav a {
  border: 1px solid rgba(5, 5, 5, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 13px 16px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.menu-category-nav a:hover,
.menu-category-nav a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}
.menu-category {
  scroll-margin-top: 24px;
}
.menu-category + .menu-category {
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  margin-top: 100px;
  padding-top: 100px;
}
.menu-category-heading {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 34px;
}
.menu-category-heading > div {
  align-items: baseline;
  display: flex;
  gap: 16px;
}
.menu-category-heading span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.menu-category-heading h3 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}
.menu-category-heading p {
  color: #62625d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.menu-items-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.menu-items-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.menu-item {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.13);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 230px;
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.menu-items-grid-three .menu-item {
  grid-template-columns: 1fr;
}
.menu-item:hover {
  border-color: rgba(227, 41, 38, 0.6);
  box-shadow: 0 18px 50px rgba(31, 14, 12, 0.12);
  transform: translateY(-4px);
}
.menu-photo-placeholder {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(227, 41, 38, 0.22), transparent 62%),
    repeating-linear-gradient(-45deg, #111111, #111111 12px, #191919 12px, #191919 24px);
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  justify-content: center;
  min-height: 180px;
  overflow: hidden;
  position: relative;
}
.menu-photo-placeholder::before {
  border: 1px solid rgba(227, 41, 38, 0.7);
  content: "+";
  display: grid;
  font-size: 22px;
  height: 42px;
  place-items: center;
  position: absolute;
  top: 24px;
  width: 42px;
}
.menu-photo-placeholder span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 62px;
  text-transform: uppercase;
}
.menu-item-copy {
  display: flex;
  flex-direction: column;
  padding: 46px 24px 24px;
  position: relative;
}
.menu-item-copy h4,
.compact-menu-grid h4 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.menu-item-copy > p {
  color: #66615c;
  font-size: 14px;
  line-height: 1.55;
  margin: 13px 0 24px;
}
.product-allergens {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  position: absolute;
  right: 12px;
  text-decoration: none;
  top: 12px;
  z-index: 2;
}
.product-allergens span {
  align-items: center;
  background: #f3ede7;
  border: 1px solid #ded4cb;
  color: var(--accent);
  display: inline-flex;
  font-size: 7px;
  font-weight: 900;
  height: 17px;
  justify-content: center;
  width: 17px;
}
.product-allergens:hover span,
.product-allergens:focus-visible span {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.product-allergens:focus-visible,
.compact-allergens:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.compact-allergens {
  color: #77716c;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  position: absolute;
  right: 10px;
  text-decoration: none;
  top: 9px;
}
.compact-allergens:hover { color: var(--accent); }
.menu-prices {
  display: flex;
  gap: 20px;
  margin-top: auto;
}
.menu-prices > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.menu-prices small,
.compact-menu-grid small {
  color: #76706a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-prices strong,
.menu-price strong,
.compact-menu-grid strong {
  color: var(--accent);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 20px;
  white-space: nowrap;
}
.menu-price {
  margin-top: auto;
}
.compact-menu-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-menu-grid article {
  align-items: center;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 94px;
  padding: 20px 22px;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.compact-menu-grid h4 { min-width: 0; }
.compact-menu-grid .menu-drink-card h4 {
  font-size: clamp(18px, 1.1vw, 22px);
  overflow-wrap: normal;
}
.compact-menu-grid .menu-drink-card h4 span { white-space: nowrap; }
.compact-menu-grid article:hover {
  box-shadow: 0 14px 38px rgba(31, 14, 12, 0.1);
  transform: translateY(-3px);
}
.compact-menu-grid article > div {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-self: end;
  text-align: right;
}
.menu-page .menu-section {
  background: var(--paper);
  padding-top: 100px;
}
.menu-page .section-heading {
  margin-bottom: 48px;
}
.menu-page .section-heading h2 {
  font-size: clamp(42px, 6.8vw, 96px);
}
.menu-page .menu-category-nav {
  background: var(--paper);
  border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  margin-bottom: 56px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.menu-combo-banner {
  background: #090909;
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  margin-bottom: 100px;
  min-height: 300px;
  overflow: hidden;
}
.menu-combo-banner figure {
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
.menu-combo-banner img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.menu-combo-banner > div {
  align-items: flex-start;
  border-left: 6px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(32px, 5vw, 72px);
}
.combo-sticker {
  color: #ff7771;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-combo-banner h3 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 20px 0 18px;
  max-width: 700px;
  text-transform: uppercase;
}
.menu-combo-banner p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 650px;
}
.menu-page .menu-category + .menu-category {
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  margin-top: 100px;
  padding-top: 100px;
}
.menu-page .menu-category-heading > div > span {
  color: var(--accent);
}
.menu-page .menu-category-heading h3 {
  font-size: clamp(34px, 5vw, 66px);
}
.menu-page .menu-items-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.menu-page .menu-items-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.menu-page .menu-item {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.13);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 250px;
}
.menu-page .menu-items-grid-three .menu-item {
  display: flex;
  flex-direction: column;
}
.menu-page .menu-item:hover {
  border-color: rgba(227, 41, 38, 0.62);
  box-shadow: 0 18px 50px rgba(31, 14, 12, 0.12);
  transform: translateY(-4px);
}
.menu-page .menu-photo-placeholder {
  background:
    linear-gradient(145deg, rgba(227, 41, 38, 0.22), transparent 62%),
    repeating-linear-gradient(-45deg, #111111, #111111 12px, #191919 12px, #191919 24px);
  border-bottom: 0;
  min-height: 180px;
}
.menu-page .menu-photo-placeholder::before {
  background: transparent;
  border: 1px solid rgba(227, 41, 38, 0.7);
  border-radius: 0;
  box-shadow: none;
  content: "+";
  height: 42px;
  top: 24px;
  width: 42px;
}
.menu-page .menu-photo-placeholder span {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 62px;
}
.menu-page .menu-item-copy {
  min-height: 0;
  padding: 58px 24px 24px;
}
.menu-page .side-item .menu-item-copy {
  min-height: 150px;
  padding: 32px 24px 24px;
}
.menu-page .side-item .menu-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.menu-page .side-item .menu-price small {
  color: #76706a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 3px;
  text-transform: uppercase;
}
.menu-page .side-item-drink h4 {
  font-size: clamp(18px, 1.35vw, 22px);
}
.menu-page .side-item-drink h4 span { white-space: nowrap; }
.menu-page .menu-prices {
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  gap: 14px;
  padding-top: 16px;
}
.menu-page .menu-prices > span {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.menu-page .menu-prices em {
  background: var(--accent);
  color: #ffffff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  margin-top: 5px;
  padding: 6px 8px;
  text-align: center;
  white-space: nowrap;
}
.menu-price-pair {
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  padding-top: 16px;
}
.menu-price-pair > span {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.menu-price-pair small {
  color: #76706a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-price-pair strong {
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 20px;
  margin-top: 4px;
  white-space: nowrap;
}
.menu-price-pair .combo-price {
  background: var(--accent);
  padding: 10px;
}
.menu-price-pair .combo-price small,
.menu-price-pair .combo-price strong {
  color: #ffffff;
}
.menu-page .compact-menu-grid article {
  background: #ffffff;
  border: 0;
  border-left: 4px solid var(--accent);
  border-radius: 0;
}
.allergen-panel {
  background: #ffffff;
  border-left: 6px solid var(--accent);
  margin-top: 22px;
  scroll-margin-top: 24px;
}
.allergen-panel summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  list-style: none;
  min-height: 116px;
  padding: 26px 32px;
}
.allergen-panel summary::-webkit-details-marker { display: none; }
.allergen-panel summary > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.allergen-panel summary small {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.allergen-panel summary strong {
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}
.allergen-panel-action {
  align-items: center;
  color: #68635e;
  display: flex;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.allergen-panel-action i {
  height: 18px;
  position: relative;
  width: 18px;
}
.allergen-panel-action i::before,
.allergen-panel-action i::after {
  background: var(--accent);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}
.allergen-panel-action i::before { height: 2px; width: 18px; }
.allergen-panel-action i::after { height: 18px; width: 2px; }
.allergen-panel[open] .allergen-panel-action i::after { transform: translate(-50%, -50%) rotate(90deg); }
.allergen-panel-content {
  border-top: 1px solid #e4e0db;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.65fr 1fr 1.65fr;
  padding: 38px 32px 34px;
}
.allergen-panel-content h4 {
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 17px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.allergen-basics p {
  color: #5f5a55;
  font-size: 14px;
  line-height: 1.55;
  margin: 5px 0;
}
.allergen-basics p strong { color: var(--ink); }
.allergen-legend,
.additive-legend {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.additive-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.allergen-legend li,
.additive-legend li {
  align-items: flex-start;
  color: #5f5a55;
  display: flex;
  font-size: 13px;
  gap: 9px;
  line-height: 1.4;
}
.allergen-legend b,
.additive-legend b {
  color: var(--accent);
  flex: 0 0 20px;
  font-weight: 900;
}
.allergen-note {
  border-top: 1px solid #e4e0db;
  color: #68635e;
  font-size: 12px;
  grid-column: 1 / -1;
  line-height: 1.6;
  margin: 0;
  padding-top: 20px;
}
.allergen-panel summary:focus-visible {
  outline: 3px solid rgba(237, 34, 34, 0.35);
  outline-offset: 4px;
}
.kids-menu-section {
  align-items: center;
  background: #090909;
  border-left: 6px solid var(--accent);
  color: #ffffff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr) auto;
  margin-top: 100px;
  padding: 52px;
  position: relative;
  scroll-margin-top: 24px;
}
.kids-menu-badge {
  color: #ff7771;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.kids-menu-section h3 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 8px 0 14px;
  text-transform: uppercase;
}
.kids-menu-section p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}
.kids-menu-section .product-allergens { margin: 0; }
.kids-menu-section .product-allergens span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ff7771;
}
.kids-menu-section > strong {
  color: #ffffff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  white-space: nowrap;
}
.story-section {
  align-items: center;
  background: #090909;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  min-height: 880px;
  padding: 120px max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.story-copy h2 { color: #ffffff; font-size: clamp(42px, 5.2vw, 74px); }
.story-section .section-kicker,
.locations-section .section-kicker { color: #ff7771; }
.story-text {
  color: rgba(220, 220, 219, 0.68);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
  max-width: 590px;
}
.story-founder {
  align-items: end;
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: minmax(0, 1fr) clamp(104px, 10vw, 138px);
  margin-top: 34px;
  max-width: 720px;
}
.founder-caricature {
  align-self: end;
  margin: 0;
  width: 100%;
}
.founder-caricature img {
  display: block;
  height: auto;
  width: 100%;
}
.story-image {
  aspect-ratio: 2 / 3;
  margin: 0;
  max-height: 690px;
  overflow: hidden;
  position: relative;
}
.story-image::after {
  border: 1px solid rgba(227, 41, 38, 0.7);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}
.story-image img {
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.story-image:hover img { transform: scale(1.035); }

.gallery-section {
  background: var(--paper);
  color: var(--ink);
  padding: 120px max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.gallery-heading { margin-bottom: 54px; max-width: 900px; }
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-placeholder { min-height: 250px; }

.reviews-section {
  background: #deded9;
  color: var(--ink);
  padding: 110px max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.reviews-heading {
  max-width: 1050px;
}
.review-controls {
  display: flex;
  gap: 10px;
}
.review-control {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 52px;
}
.review-control:hover,
.review-control:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.review-control .ui-icon { height: 18px; width: 18px; }
.review-track {
  cursor: grab;
  display: flex;
  gap: 14px;
  margin-top: 52px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 1px 1px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) rgba(17, 16, 15, 0.12);
  scrollbar-width: auto;
  user-select: none;
}
.review-track::-webkit-scrollbar { height: 8px; }
.review-track::-webkit-scrollbar-track { background: rgba(17, 16, 15, 0.12); }
.review-track::-webkit-scrollbar-thumb { background: var(--accent); }
.review-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.review-placeholder {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(17, 16, 15, 0.16);
  display: flex;
  flex: 0 0 calc((100% - 28px) / 3);
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 30px;
  scroll-snap-align: start;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.review-placeholder:hover {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(227, 41, 38, 0.45);
  transform: translateY(-4px);
}
.review-placeholder blockquote {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 42px;
}
.review-placeholder strong {
  color: var(--accent);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  gap: 6px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.review-placeholder strong span {
  color: rgba(17, 16, 15, 0.5);
  font-size: 8px;
  letter-spacing: 0.08em;
}
.review-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.review-footer > p {
  align-items: center;
  color: rgba(17, 16, 15, 0.62);
  display: flex;
  font-size: 11px;
  gap: 14px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}
.review-footer > p strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.locations-section {
  background: #050505;
  padding: 120px max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.locations-section h2 { color: white; }
.locations-section > h2 { font-size: clamp(38px, 5vw, 72px); }
.location-grid {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
}
.location-card {
  align-self: start;
  border: 1px solid rgba(220, 220, 219, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px;
  transition: background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
  width: 100%;
}
.location-card:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(227, 41, 38, 0.7);
  transform: translateY(-5px);
}
.location-card h3 {
  color: white;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(26px, 2.25vw, 36px);
  letter-spacing: -0.05em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.location-card p { color: rgba(220, 220, 219, 0.64); line-height: 1.7; margin-bottom: 28px; }
.location-card a { color: #ff7771; font-size: 18px; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.location-contact {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}
.location-card .location-address {
  align-items: flex-start;
  color: rgba(220, 220, 219, 0.64);
  display: flex;
  font-size: 15px;
  font-weight: 400;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.7;
  text-decoration: none;
  transition: color 180ms ease;
}
.location-card .location-address:hover,
.location-card .location-address:focus-visible { color: #ffffff; }
.location-card .location-address .navigation-icon {
  color: #ff7771;
  height: 18px;
  margin-top: 4px;
  width: 18px;
}
.location-card .location-phone {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 11px;
  gap: 12px;
  justify-content: flex-start;
  min-height: 30px;
  text-decoration: none;
  width: fit-content;
}
.location-card .location-phone span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.location-card .location-phone strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.location-card .location-phone:hover strong,
.location-card .location-phone:focus-visible strong { color: #ff7771; }
.location-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}
.location-card .location-call,
.location-card .location-order {
  align-items: center;
  display: flex;
  font-size: 10px;
  gap: 22px;
  justify-content: space-between;
  letter-spacing: 0.09em;
  min-height: 48px;
  padding: 14px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 100%;
}
.location-card .location-call {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.location-card .location-call b {
  color: #ffffff;
  font-size: 10px;
  white-space: nowrap;
}
.location-card .location-call:hover,
.location-card .location-call:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
  transform: translateY(-2px);
}
.location-card .location-call:hover b,
.location-card .location-call:focus-visible b { color: #050505; }
.location-card .location-order {
  background: var(--accent);
  color: #ffffff;
}
.location-card .location-order:hover,
.location-card .location-order:focus-visible {
  background: var(--accent-hot);
  transform: translateY(-2px);
}
.location-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
}
.location-hours-title {
  color: #ffffff;
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.location-hours > div { display: grid; gap: 7px; padding-top: 16px; }
.location-hours p {
  align-items: center;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  margin: 0;
}
.location-hours p span { color: rgba(255, 255, 255, 0.58); }
.location-hours p strong { color: rgba(255, 255, 255, 0.9); font-size: 11px; }
.location-main { background: #190706; border-color: rgba(227, 41, 38, 0.78); }
.location-main:hover { background: #210908; }

.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 max(24px, calc((min(100vw, var(--site-width)) - 1504px) / 2));
}
.footer-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.91) 46%, rgba(0, 0, 0, 0.7) 100%),
    url("assets/photos/flame-grill.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: clamp(56px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  margin-top: 64px;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(58px, 6vw, 84px) clamp(38px, 5vw, 72px);
  position: relative;
}
.footer-cta::before {
  background: var(--accent);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.footer-cta-content { padding: 0; }
.footer-cta p {
  color: #ff7771;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-cta h2 {
  color: #ffffff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(42px, 4.4vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
  max-width: 600px;
  text-transform: uppercase;
}
.footer-cta-copy {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 500px;
}
.footer-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.footer-cta-benefits span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 9px 11px;
  text-transform: uppercase;
}
.footer-order-options {
  display: grid;
  gap: 10px;
}
.footer-order-options a {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px 22px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.footer-order-options a:hover,
.footer-order-options a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(5px);
}
.footer-order-options a > span { display: grid; gap: 6px; }
.footer-order-options small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-order-options strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.footer-order-options b {
  align-items: center;
  color: #ff7771;
  display: inline-flex;
  font-size: 10px;
  gap: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-order-options a:hover b,
.footer-order-options a:focus-visible b {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-grid {
  display: grid;
  gap: clamp(30px, 4vw, 64px);
  grid-template-columns: minmax(220px, 1.1fr) minmax(130px, 0.55fr) minmax(220px, 0.9fr) minmax(130px, 0.55fr);
  padding: 68px 0 62px;
}
.footer-socials .social-links { margin-top: 0; }
.footer-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-column h3 {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
  transition: color 180ms ease;
}
.footer-column a:hover,
.footer-column a:focus-visible { color: #ff7771; }
.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 40px;
}
.social-links a:hover,
.social-links a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}
.social-links svg { fill: currentColor; height: 20px; width: 20px; }
.social-links a:last-child svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-links a:last-child .social-icon-fill { fill: currentColor; stroke: none; }
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.44);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 24px 0 30px;
}
.footer-bottom div { display: flex; gap: 28px; }
.footer-credit {
  align-items: center;
  color: rgba(255, 255, 255, 0.56);
  display: inline-flex;
  font-size: 11px;
  gap: 5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.footer-credit svg {
  fill: none;
  height: 13px;
  stroke: #ffffff;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 13px;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible { color: #ff7771; }

.order-dialog {
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  margin: auto;
  max-height: calc(100svh - 32px);
  max-width: 940px;
  overscroll-behavior: contain;
  overflow: auto;
  padding: clamp(34px, 5vw, 58px);
  width: calc(100% - 32px);
}
.order-dialog.order-dialog-single {
  max-width: 620px;
  padding: clamp(34px, 4vw, 48px);
}
.order-dialog::backdrop { backdrop-filter: blur(7px); background: rgba(0, 0, 0, 0.76); }
.order-dialog-close {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}
.order-dialog-close:hover,
.order-dialog-close:focus-visible { background: var(--accent); border-color: var(--accent); }
.order-dialog h2 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 12px 60px 42px 0;
  max-width: 100%;
  overflow-wrap: break-word;
  text-transform: uppercase;
}
.order-dialog-single h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 32px;
  overflow-wrap: normal;
  word-break: normal;
}
.order-location-list { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.order-dialog-single .order-location-list { grid-template-columns: 1fr; }
.order-dialog-single .order-location-list > article { min-height: 220px; }
.order-location-list > article[hidden] { display: none; }
.order-location-list > article {
  background: #ffffff;
  border-bottom: 4px solid var(--accent);
  color: #050505;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 25px 20px 20px;
}
.order-location-head { display: flex; flex-direction: column; gap: 7px; }
.order-location-head strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.order-location-head small { color: #6c6660; font-size: 11px; }
.order-location-actions { display: grid; gap: 8px; margin-top: 26px; }
.order-location-actions a {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 45px;
  padding: 12px 13px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.order-location-actions a:hover,
.order-location-actions a:focus-visible { transform: translateY(-2px); }
.order-call { background: var(--accent); color: #ffffff; }
.order-call:hover,
.order-call:focus-visible { background: var(--accent-hot); }
.order-call b { color: #ffffff; font-size: 10px; white-space: nowrap; }
.order-online { border: 1px solid rgba(5, 5, 5, 0.2); color: #050505; }
.order-online .ui-icon { color: var(--accent); height: 16px; width: 16px; }
.order-online b { color: var(--accent); font-size: 14px; }
.order-online:hover,
.order-online:focus-visible { border-color: #050505; background: #050505; color: #ffffff; }

.mobile-nav-kicker,
.mobile-nav-order,
.mobile-nav-meta { display: none; }

/* Einheitliches typografisches System für alle zentralen Bereichsüberschriften */
.menu-preview-copy h2,
.section-heading h2,
.story-copy h2,
.gallery-heading h2,
.reviews-section h2,
.locations-section > h2 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}
.menu-preview-copy > p:not(.section-kicker),
.story-copy > p:not(.section-kicker),
.section-heading > p {
  font-size: 16px;
  line-height: 1.65;
}

.legal-page {
  background: #050505;
  color: #ffffff;
  min-height: 100svh;
  padding: 70px max(24px, calc((min(100vw, var(--site-width)) - 1000px) / 2)) 120px;
}
.legal-back {
  color: rgba(255, 255, 255, 0.64);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 100px;
}
.legal-back:hover,
.legal-back:focus-visible { color: #ffffff; }
.legal-page h1 {
  font-size: clamp(54px, 10vw, 120px);
  margin-bottom: 60px;
}
.legal-notice {
  border: 1px solid rgba(255, 255, 255, 0.24);
  max-width: 760px;
  padding: 32px;
}
.legal-notice strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legal-notice p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
  margin: 20px 0 0;
}
.legal-intro {
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 70px;
  padding-bottom: 34px;
}
.legal-intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  margin: 0;
  max-width: 760px;
}
.legal-intro span {
  color: #ff7771;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-content { max-width: 900px; }
.legal-content-compact { margin-top: 38px; }
.legal-content section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 0 54px;
}
.legal-content section + section { padding-top: 54px; }
.legal-content h2 {
  color: #ffffff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.legal-content h2::before {
  background: var(--accent);
  content: "";
  display: inline-block;
  height: 0.76em;
  margin-right: 14px;
  width: 4px;
}
.legal-content p,
.legal-content li,
.legal-content address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
}
.legal-content p { margin: 16px 0 0; }
.legal-content address { font-style: normal; margin: 0; }
.legal-content address strong { color: #ffffff; }
.legal-content ul { margin: 18px 0 0; padding-left: 21px; }
.legal-content li + li { margin-top: 5px; }
.legal-content a {
  color: #ff7771;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.legal-content a:hover,
.legal-content a:focus-visible { color: #ffffff; }
.legal-content .legal-highlight {
  background: #180706;
  border: 1px solid rgba(237, 34, 34, 0.65);
  margin: 54px 0 0;
  padding: 38px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.reveal-left { transform: translateX(-28px); }
.js .reveal.reveal-right { transform: translateX(28px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.js .location-card.reveal.is-visible:hover,
.js .review-placeholder.reveal.is-visible:hover { transform: translateY(-5px); }

@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-background-drift {
  from { background-position: 0 0, 0 0, 48% 50%; }
  to { background-position: 0 0, 0 0, 52% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@media (max-width: 1050px) {
  .site-header { gap: 12px; grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    background: rgba(5, 5, 5, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 24px;
    margin-left: 0;
    opacity: 0;
    padding: 12px 22px;
    pointer-events: none;
    position: absolute;
    right: 24px;
    top: calc(100% + 1px);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }
  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .nav-links a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0 18px 14px;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { bottom: 10px; width: 34px; }
  .hero-content { padding-top: 86px; }
  .menu-preview-section { grid-template-columns: 1fr 1fr; }
  .menu-preview-copy { padding: 70px 42px; }
  .menu-items-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-items-grid-three .menu-item { grid-template-columns: 150px minmax(0, 1fr); }
  .menu-page .menu-items-grid,
  .menu-page .menu-items-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-section { gap: 50px; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr); }
  .footer-grid { grid-template-columns: 1.1fr 0.55fr 0.9fr 0.55fr; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 760px) {
  .section-heading { align-items: start; grid-template-columns: 1fr; }
  .menu-preview-section { grid-template-columns: 1fr; }
  .menu-preview-image { min-height: 460px; }
  .menu-preview-copy { padding: 76px 28px 86px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-real { grid-column: span 1; }
  .menu-category-nav { margin-bottom: 66px; }
  .menu-category + .menu-category { margin-top: 76px; padding-top: 76px; }
  .menu-category-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .menu-items-grid,
  .menu-items-grid-three { grid-template-columns: 1fr; }
  .menu-items-grid-three .menu-item { grid-template-columns: 150px minmax(0, 1fr); }
  .menu-page .menu-items-grid,
  .menu-page .menu-items-grid-three,
  .menu-page #exclusives .menu-items-grid,
  .menu-page #bowls .menu-items-grid,
  .menu-page #veggie .menu-items-grid { grid-template-columns: 1fr; }
  .menu-combo-banner { grid-template-columns: 1fr; }
  .menu-combo-banner figure { min-height: 300px; }
  .kids-menu-section { grid-template-columns: auto 1fr; }
  .kids-menu-section > strong { grid-column: 2; }
  .story-section { grid-template-columns: 1fr; min-height: auto; }
  .story-image { max-height: 620px; }
  .gallery-grid { grid-auto-rows: 210px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-wide { grid-column: span 2; }
  .review-placeholder { flex-basis: calc((100% - 14px) / 2); min-height: 240px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 240px; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta { gap: 42px; margin-top: 32px; min-height: 0; padding: 58px 40px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  html { overflow-x: clip; scroll-padding-top: 72px; }
  body {
    overflow-x: clip;
  }
  button, a, summary { -webkit-tap-highlight-color: rgba(227, 41, 38, 0.24); }
  .site-header { gap: 8px; min-height: 66px; padding: 0 16px; }
  .brand img { height: 46px; }
  .header-order { font-size: 10px; gap: 6px; min-height: 44px; padding: 10px 11px; }
  .menu-toggle { height: 42px; width: 42px; }
  .nav-links {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.48);
    left: 12px;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    padding: 8px 18px;
    right: 12px;
  }
  .nav-links a { min-height: 52px; padding: 18px 0 16px 14px; }
  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    background-position: 58% center;
  }
  .hero-content {
    height: auto;
    justify-content: center;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 94px 20px 34px;
  }
  h1 {
    font-size: clamp(34px, 10.2vw, 46px);
    letter-spacing: -0.052em;
    line-height: 0.94;
    max-width: 10.5em;
  }
  .hero-copy { gap: 6px; margin-top: 22px; padding-left: 14px; }
  .hero-copy strong { font-size: 10px; }
  .hero-copy span { font-size: 15px; line-height: 1.45; }
  .hero-actions {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    width: 100%;
  }
  .button {
    font-size: 10px;
    gap: 10px;
    min-height: 50px;
    min-width: 0;
    padding: 14px;
    width: 100%;
  }
  .hero-facts {
    bottom: auto;
    display: grid;
    font-size: 8px;
    gap: 9px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: auto;
    margin-top: 28px;
    position: static;
    width: 100%;
  }
  .hero-facts span { align-items: center; display: flex; gap: 7px; line-height: 1.25; }
  .hero-facts span::before { background: var(--accent); content: ""; flex: 0 0 4px; height: 4px; }
  .hero-facts span::after { display: none; }
  .scroll-cue { display: none; }
  .menu-section, .story-section, .gallery-section, .reviews-section, .locations-section {
    padding: 72px 20px;
  }
  .subpage-header { padding-left: 20px; padding-right: 20px; }
  .section-kicker { font-size: 10px; line-height: 1.4; }
  .menu-preview-copy h2,
  .section-heading h2,
  .story-copy h2,
  .gallery-heading h2,
  .reviews-section h2,
  .locations-section > h2 {
    font-size: clamp(34px, 10.4vw, 44px);
    letter-spacing: -0.048em;
    line-height: 0.98;
  }
  .story-section { gap: 38px; }
  .story-text { font-size: 16px; line-height: 1.65; }
  .story-founder { margin-top: 24px; }
  .story-image { aspect-ratio: 4 / 5; max-height: none; }
  .menu-preview-image { min-height: 320px; }
  .menu-preview-image::after { inset: 14px; }
  .menu-preview-copy { padding: 58px 20px 68px; }
  .menu-preview-copy h2 { margin: 13px 0 21px; }
  .menu-preview-copy > p:not(.section-kicker) { font-size: 15px; line-height: 1.6; margin-bottom: 26px; }
  .gallery-heading { margin-bottom: 34px; }
  .gallery-grid {
    display: grid;
    gap: 8px;
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item,
  .gallery-wide,
  .gallery-tall { aspect-ratio: 1; grid-column: auto; grid-row: auto; }
  .gallery-wide { grid-column: span 2; aspect-ratio: 16 / 9; }
  .gallery-placeholder { display: none; }
  .review-track { margin-right: -20px; padding-right: 20px; }
  .review-placeholder { flex-basis: min(82vw, 330px); min-height: 210px; padding: 24px; }
  .review-placeholder blockquote { font-size: 17px; margin-bottom: 28px; }
  .review-footer { align-items: flex-end; }
  .review-footer > p { align-items: flex-start; flex-direction: column; gap: 5px; }
  .review-control { height: 48px; width: 48px; }
  .menu-category-nav {
    background: rgba(245, 243, 238, 0.97);
    box-shadow: 0 8px 24px rgba(5, 5, 5, 0.08);
    flex-wrap: nowrap;
    margin-left: -20px;
    margin-right: -20px;
    overflow-x: auto;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .menu-category-nav::-webkit-scrollbar { display: none; }
  .menu-category-nav a { flex: 0 0 auto; min-height: 48px; padding: 15px 14px; }
  .menu-page .menu-section { padding-top: 58px; }
  .menu-page .section-heading { gap: 20px; margin-bottom: 34px; }
  .menu-page .section-heading > p { font-size: 15px; line-height: 1.55; }
  .menu-page .menu-category-nav { margin-bottom: 42px; top: 0; }
  .menu-combo-banner { margin-bottom: 72px; }
  .menu-combo-banner figure { min-height: 200px; }
  .menu-combo-banner > div { border-left: 0; border-top: 5px solid var(--accent); padding: 30px 20px 34px; }
  .menu-combo-banner h3 { font-size: clamp(30px, 9vw, 40px); margin: 15px 0 14px; }
  .menu-combo-banner p { font-size: 14px; }
  .menu-page .menu-category + .menu-category { margin-top: 68px; padding-top: 68px; }
  .menu-category-heading { margin-bottom: 24px; }
  .menu-category-heading h3,
  .menu-page .menu-category-heading h3 { font-size: clamp(32px, 9.5vw, 42px); }
  .menu-category-heading p { font-size: 10px; line-height: 1.4; }
  .menu-category-heading > div { gap: 10px; }
  .menu-item,
  .menu-items-grid-three .menu-item { grid-template-columns: 1fr; }
  .menu-page .menu-items-grid,
  .menu-page .menu-items-grid-three,
  .menu-page #exclusives .menu-items-grid,
  .menu-page #bowls .menu-items-grid,
  .menu-page #veggie .menu-items-grid { grid-template-columns: 1fr; }
  .menu-page .menu-item { grid-template-columns: 1fr; }
  .menu-photo-placeholder { min-height: 150px; }
  .menu-page .menu-photo-placeholder { min-height: 150px; }
  .menu-item-copy { min-height: 0; padding: 48px 18px 20px; }
  .menu-item-copy h4 { font-size: 20px; line-height: 1.08; }
  .menu-item-copy > p { font-size: 13px; line-height: 1.5; margin: 10px 0 20px; }
  .menu-page .menu-item-copy { padding: 48px 18px 20px; }
  .menu-page .side-item .menu-item-copy { min-height: 120px; padding: 28px 18px 18px; }
  .menu-prices { gap: 10px; }
  .menu-page .menu-prices { justify-content: space-between; }
  .menu-prices strong, .menu-price strong, .compact-menu-grid strong { font-size: 18px; }
  .menu-page .menu-prices em { font-size: 8px; padding: 6px; }
  .compact-menu-grid { grid-template-columns: 1fr; }
  .compact-menu-grid article { min-height: 80px; padding: 18px; }
  .menu-page .menu-item-copy { min-height: 0; }
  .allergen-panel summary { align-items: flex-start; padding: 24px 20px; }
  .allergen-panel-action { font-size: 0; gap: 0; margin-top: 4px; }
  .allergen-panel-content { grid-template-columns: 1fr; gap: 26px; padding: 28px 20px; }
  .additive-legend { grid-template-columns: 1fr; }
  .kids-menu-section { gap: 24px; grid-template-columns: 1fr; margin-top: 68px; padding: 38px 22px 30px; }
  .kids-menu-section h3 { font-size: clamp(30px, 9vw, 40px); }
  .kids-menu-section > strong { grid-column: auto; }
  .product-card { min-height: 250px; }
  .locations-section { padding-bottom: 82px; }
  .location-grid { gap: 12px; margin-top: 34px; }
  .location-card { min-height: 0; padding: 24px 20px; }
  .location-card h3 { font-size: 28px; margin-bottom: 12px; }
  .location-card p { font-size: 14px; margin-bottom: 22px; }
  .location-card .location-call,
  .location-card .location-order { min-height: 50px; padding: 14px; }
  .location-hours { margin-top: 18px; padding-top: 16px; }
  .location-hours summary { min-height: 34px; }
  .site-footer { padding: 0 20px; }
  .footer-cta { gap: 30px; margin-top: 20px; padding: 44px 18px 18px; }
  .footer-cta h2 { font-size: clamp(34px, 10vw, 44px); }
  .footer-cta-copy { font-size: 15px; }
  .footer-cta-benefits { gap: 7px; margin-top: 20px; }
  .footer-cta-benefits span { font-size: 8px; padding: 8px; }
  .footer-order-options { gap: 8px; }
  .footer-order-options a { min-height: 72px; padding: 14px; }
  .footer-order-options strong { font-size: 19px; }
  .footer-order-options b { max-width: 80px; text-align: right; }
  .footer-grid { gap: 34px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 50px 0 44px; }
  .footer-column { gap: 12px; }
  .footer-column h3 { margin-bottom: 5px; }
  .footer-column a { font-size: 13px; overflow-wrap: anywhere; }
  .footer-socials { grid-column: 2; }
  .social-links a { height: 46px; width: 46px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; padding-bottom: 24px; }
  .footer-bottom div { gap: 20px; }
  .footer-credit { white-space: normal; }
  .order-dialog {
    border: 0;
    border-radius: 18px 18px 0 0;
    bottom: 0;
    margin: auto 0 0;
    max-height: min(88dvh, 760px);
    padding: 54px 16px calc(16px + env(safe-area-inset-bottom));
    width: 100%;
  }
  .order-dialog.order-dialog-single { padding: 54px 16px 16px; }
  .order-dialog-close { height: 36px; right: 14px; top: 14px; width: 36px; }
  .order-dialog .section-kicker {
    font-size: 9px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin: 0;
    max-width: calc(100% - 46px);
  }
  .order-dialog h2,
  .order-dialog-single h2 {
    font-size: clamp(28px, 9vw, 34px);
    margin: 18px 0 24px;
    overflow-wrap: break-word;
  }
  .order-location-list { grid-template-columns: 1fr; }
  .order-location-list > article,
  .order-dialog-single .order-location-list > article {
    min-height: 0;
    padding: 22px 16px 16px;
  }
  .order-location-head strong { font-size: 19px; }
  .order-location-actions { margin-top: 24px; }
  .order-location-actions a { min-height: 50px; }
  .legal-page { padding: 42px 20px 88px; }
  .legal-back { margin-bottom: 72px; }
  .legal-page h1 { margin-bottom: 44px; }
  .legal-intro { align-items: flex-start; flex-direction: column; margin-bottom: 52px; }
  .legal-content section { padding-bottom: 42px; }
  .legal-content section + section { padding-top: 42px; }
  .legal-content h2 { display: flex; }
  .legal-content h2::before { flex: 0 0 4px; margin-top: 0.14em; }
  .legal-content .legal-highlight { margin-top: 42px; padding: 26px 20px; }
  .js .reveal,
  .js .reveal.reveal-left,
  .js .reveal.reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero-content { justify-content: flex-start; padding-bottom: 26px; padding-top: 84px; }
  .hero h1 { font-size: clamp(30px, 8.8vw, 40px); }
  .hero-copy { gap: 5px; margin-top: 16px; }
  .hero-copy span { font-size: 14px; line-height: 1.4; }
  .hero-actions { margin-top: 18px; }
  .hero-actions .button { padding-bottom: 14px; padding-top: 14px; }
  .hero-facts { font-size: 7px; gap: 6px 10px; margin-top: 18px; }
}

@media (max-width: 380px) {
  .site-header { padding-left: 12px; padding-right: 12px; }
  .brand img { height: 42px; }
  .header-order { font-size: 9px; padding-left: 9px; padding-right: 9px; }
  .menu-toggle { height: 40px; width: 40px; }
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button-secondary { display: none; }
  .menu-section, .story-section, .gallery-section, .reviews-section, .locations-section { padding-left: 16px; padding-right: 16px; }
  .menu-category-nav { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
  .site-footer { padding-left: 16px; padding-right: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-socials { grid-column: auto; }
  .menu-prices { flex-direction: column; }
}

/* Mobile-first redesign */
@media (max-width: 760px) {
  html { overflow-x: clip; scroll-padding-top: 74px; }
  body { overflow-x: clip; }
  body.mobile-menu-open { overflow: hidden; }

  .site-header,
  .subpage-header {
    background: rgba(5, 5, 5, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    grid-template-columns: 1fr auto;
    left: 0;
    min-height: 72px;
    padding: 0 20px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 50;
  }
  .hero .site-header { left: 0; transform: none; }
  body.header-hidden .hero .site-header { transform: translateY(-110%); }
  body.mobile-menu-open .site-header,
  body.mobile-menu-open.header-hidden .hero .site-header { transform: none; }
  .brand,
  .menu-toggle { position: relative; z-index: 53; }
  .site-header.menu-open { z-index: 1000; }
  .site-header.menu-open .brand,
  .site-header.menu-open .menu-toggle { z-index: 1002; }
  .brand img,
  body.is-scrolled .hero .brand img { height: 48px; }
  .header-order { display: none; }
  .menu-toggle {
    border-color: rgba(255, 255, 255, 0.42);
    display: inline-flex;
    height: 46px;
    width: 46px;
  }

  .nav-links {
    align-items: stretch;
    background:
      radial-gradient(circle at 92% 9%, rgba(227, 41, 38, 0.22), transparent 30%),
      #050505;
    border: 0;
    bottom: 0;
    box-shadow: none;
    display: flex;
    gap: 0;
    height: 100dvh;
    justify-content: flex-start;
    left: 0;
    margin: 0;
    max-height: none;
    opacity: 0;
    overflow-y: auto;
    padding: calc(104px + env(safe-area-inset-top)) 22px calc(26px + env(safe-area-inset-bottom));
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 220ms ease;
    visibility: hidden;
    width: 100%;
    z-index: 1001;
  }
  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .mobile-nav-kicker {
    color: #ff7771;
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.17em;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .nav-links > a:not(.mobile-nav-order) {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    font-family: "Arial Black", Impact, sans-serif;
    font-size: clamp(34px, 10vw, 48px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
    min-height: 76px;
    padding: 16px 0;
    text-transform: uppercase;
  }
  .nav-links > a:not(.mobile-nav-order)::before,
  .nav-links > a:not(.mobile-nav-order)::after { display: none; }
  .mobile-nav-order {
    align-items: center;
    background: var(--accent);
    border: 0;
    color: #ffffff;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: space-between;
    letter-spacing: 0.1em;
    margin-top: 28px;
    min-height: 58px;
    padding: 18px;
    text-transform: uppercase;
    width: 100%;
  }
  .mobile-nav-order::before,
  .mobile-nav-order::after { display: none; }
  .mobile-nav-meta {
    align-items: center;
    color: rgba(255, 255, 255, 0.48);
    display: flex;
    font-size: 10px;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: 0.1em;
    margin-top: auto;
    padding-top: 28px;
    text-transform: uppercase;
  }
  .mobile-nav-meta a {
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    min-height: 44px;
    padding: 15px 0;
  }
  .mobile-nav-meta a::before,
  .mobile-nav-meta a::after { display: none; }

  .hero {
    animation: none;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.42) 34%, rgba(5, 5, 5, 0.96) 88%, #050505 100%),
      url("assets/photos/flame-grill.webp") 62% center / cover no-repeat;
    height: auto;
    min-height: max(740px, 100dvh);
  }
  .hero::before { background: linear-gradient(90deg, var(--accent) 0 4px, transparent 4px); }
  .hero-content {
    height: auto;
    justify-content: flex-end;
    min-height: max(740px, 100dvh);
    padding: 118px 20px 42px;
  }
  .hero h1 {
    font-size: clamp(36px, 11vw, 56px);
    letter-spacing: -0.055em;
    line-height: 0.92;
    max-width: 9.6em;
  }
  .hero-copy {
    gap: 7px;
    margin-top: 24px;
    max-width: 100%;
    padding: 2px 0 2px 14px;
  }
  .hero-copy strong { font-size: 9px; letter-spacing: 0.14em; }
  .hero-copy span { font-size: 15px; line-height: 1.45; }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
    width: 100%;
  }
  .hero-actions .button,
  .hero-actions .button-secondary {
    display: flex;
    font-size: 11px;
    min-height: 54px;
    padding: 17px 18px;
    width: 100%;
  }
  .hero-facts {
    display: grid;
    font-size: 8px;
    gap: 9px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    position: static;
    width: 100%;
  }
  .hero-facts span { line-height: 1.3; }

  .menu-section,
  .story-section,
  .gallery-section,
  .reviews-section,
  .locations-section { padding: 68px 20px; }
  .story-section,
  .menu-preview-section { grid-template-columns: 1fr; }
  .story-section { gap: 34px; }
  .story-image { aspect-ratio: 4 / 5; width: 100%; }
  .menu-preview-image { min-height: 300px; }
  .menu-preview-copy { padding: 56px 20px 66px; }
  .menu-preview-copy .button { width: 100%; }
  .section-heading,
  .menu-category-heading { align-items: flex-start; display: flex; flex-direction: column; gap: 18px; }
  .menu-preview-copy h2,
  .section-heading h2,
  .story-copy h2,
  .gallery-heading h2,
  .reviews-section h2,
  .locations-section > h2 {
    font-size: clamp(34px, 10.2vw, 46px);
    overflow-wrap: anywhere;
  }
  .gallery-grid { gap: 8px; }
  .review-track { margin-top: 34px; }
  .review-placeholder { flex-basis: min(86vw, 350px); }
  .review-footer > p span { display: none; }
  .location-grid { margin-top: 34px; }
  .location-card { min-height: 0; padding: 24px 20px; }
  .location-card .location-call,
  .location-card .location-order { min-height: 54px; width: 100%; }

  .footer-cta { gap: 30px; margin-top: 20px; padding: 44px 18px 18px; }
  .footer-order-options a { min-height: 72px; width: 100%; }
  .footer-grid { gap: 34px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }

  .menu-page { padding-top: 72px; }
  .menu-page .menu-section { padding-top: 54px; }
  .menu-page .menu-items-grid,
  .menu-page .menu-items-grid-three,
  .compact-menu-grid { grid-template-columns: 1fr; }
  .menu-page .menu-item,
  .menu-page .menu-items-grid-three .menu-item { grid-template-columns: 1fr; }
  .menu-page .menu-photo-placeholder { min-height: 168px; }
  .menu-page .menu-item-copy { padding: 48px 18px 20px; }
  .menu-page .menu-prices { flex-direction: column; gap: 12px; }
  .menu-page .menu-prices > span { width: 100%; }
  .menu-page .menu-prices em { width: 100%; }
  .menu-combo-banner { grid-template-columns: 1fr; }

  .order-dialog {
    border-radius: 18px 18px 0 0;
    bottom: 0;
    margin: auto 0 0;
    max-height: min(90dvh, 780px);
    padding: 56px 18px calc(18px + env(safe-area-inset-bottom));
    width: 100%;
  }
  .order-location-actions a { min-height: 52px; }
}

@media (max-width: 380px) {
  .site-header,
  .subpage-header { padding-left: 16px; padding-right: 16px; }
  .nav-links { padding-left: 16px; padding-right: 16px; }
  .nav-links > a:not(.mobile-nav-order) { font-size: 32px; min-height: 68px; }
  .hero { min-height: 720px; }
  .hero-content { min-height: 720px; padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: 34px; }
  .menu-section,
  .story-section,
  .gallery-section,
  .reviews-section,
  .locations-section { padding-left: 16px; padding-right: 16px; }
  .menu-preview-copy { padding-left: 16px; padding-right: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.reveal-left,
  .js .reveal.reveal-right {
    opacity: 1;
    transform: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive system: one final source of truth for spacing, type and layout */
:root {
  --page-gutter: clamp(24px, 4vw, 48px);
  --section-space: clamp(88px, 8vw, 120px);
  --content-width: 1504px;
}

html { text-size-adjust: 100%; }
body { min-width: 0; }
img { display: block; max-width: 100%; }
button, a, summary { touch-action: manipulation; }
:focus-visible { outline: 3px solid #ff7771; outline-offset: 4px; }

.story-section,
.gallery-section,
.reviews-section,
.locations-section {
  padding-bottom: var(--section-space);
  padding-left: max(var(--page-gutter), calc((min(100vw, var(--site-width)) - var(--content-width)) / 2));
  padding-right: max(var(--page-gutter), calc((min(100vw, var(--site-width)) - var(--content-width)) / 2));
  padding-top: var(--section-space);
}

.location-card,
.review-placeholder,
.footer-order-options a,
.button { border-radius: 2px; }

/* Keep the official place spelling visible; CSS uppercasing would turn ß into SS. */
.location-card h3,
.footer-order-options strong,
.order-location-head strong,
.order-dialog-single h2 { text-transform: none; }

@media (min-width: 1200px) {
  .hero-content { padding-left: var(--page-gutter); padding-right: var(--page-gutter); }
  .story-section { min-height: 780px; }
  .menu-preview-section { min-height: 620px; }
  .location-card { min-height: 350px; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  :root {
    --page-gutter: 32px;
    --section-space: 84px;
  }
  .site-header { padding-left: 32px; padding-right: 32px; }
  .hero-content { padding-left: 32px; padding-right: 32px; }
  .hero h1 { font-size: clamp(52px, 7vw, 72px); max-width: 760px; }
  .hero-copy { max-width: 540px; }
  .hero-facts { left: 32px; }
  .scroll-cue { right: 32px; }
  .story-section { gap: 44px; min-height: 680px; }
  .story-copy h2 { font-size: clamp(42px, 6vw, 62px); }
  .menu-preview-section { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); min-height: 580px; }
  .menu-preview-image { min-height: 500px; }
  .menu-preview-copy { padding: 64px 38px; }
  .gallery-grid { grid-auto-rows: 210px; }
  .review-placeholder { flex-basis: calc((100% - 14px) / 2); }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 7px); }
  .footer-cta { gap: 44px; grid-template-columns: 0.9fr 1.1fr; padding: 52px 40px; }
  .footer-grid { grid-template-columns: 1fr 0.6fr 0.9fr 0.6fr; }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: clamp(18px, 5vw, 24px);
    --section-space: clamp(64px, 17vw, 80px);
  }

  html { scroll-padding-top: 72px; }
  .site-header,
  .subpage-header {
    min-height: 72px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .brand img,
  body.is-scrolled .hero .brand img { height: 46px; }
  .menu-toggle { border-radius: 2px; height: 46px; width: 46px; }

  .nav-links {
    padding: calc(94px + env(safe-area-inset-top)) var(--page-gutter) calc(22px + env(safe-area-inset-bottom));
  }
  .mobile-nav-kicker { margin-bottom: 12px; }
  .nav-links > a:not(.mobile-nav-order) {
    font-size: clamp(30px, 9.2vw, 42px);
    min-height: clamp(64px, 17vw, 76px);
    overflow-wrap: normal;
    padding: 13px 0;
  }
  .mobile-nav-order { margin-top: 22px; min-height: 56px; padding: 17px 18px; }
  .mobile-nav-meta { padding-top: 18px; }

  .hero {
    background-position: 61% center;
    min-height: 100svh;
  }
  .hero-content {
    justify-content: flex-end;
    min-height: 100svh;
    padding: calc(94px + env(safe-area-inset-top)) var(--page-gutter) clamp(32px, 6vh, 52px);
  }
  .hero h1 {
    font-size: clamp(35px, 10.6vw, 50px);
    letter-spacing: -0.05em;
    line-height: 0.94;
    max-width: 9.8em;
  }
  .hero-copy { margin-top: 20px; padding-left: 13px; }
  .hero-copy strong { font-size: 9px; line-height: 1.35; }
  .hero-copy span { font-size: clamp(14px, 3.9vw, 16px); line-height: 1.48; }
  .hero-actions { gap: 9px; margin-top: 22px; }
  .hero-actions .button,
  .hero-actions .button-secondary {
    font-size: 11px;
    min-height: 54px;
    padding: 16px 18px;
  }
  .hero-facts {
    font-size: 8px;
    gap: 8px 14px;
    margin-top: 22px;
  }

  .story-section,
  .gallery-section,
  .reviews-section,
  .locations-section {
    padding: var(--section-space) var(--page-gutter);
  }
  .story-section { gap: 30px; }
  .story-text { font-size: 15px; line-height: 1.65; }
  .story-founder { margin-top: 20px; }
  .story-image { aspect-ratio: 5 / 6; }
  .story-image::after,
  .menu-preview-image::after { inset: 12px; }
  .menu-preview-image { min-height: 280px; }
  .menu-preview-copy { padding: var(--section-space) var(--page-gutter); }
  .menu-preview-copy h2 { margin: 12px 0 20px; }
  .menu-preview-copy > p:not(.section-kicker) { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
  .menu-preview-copy .button { min-height: 54px; }
  .menu-preview-copy h2,
  .section-heading h2,
  .story-copy h2,
  .gallery-heading h2,
  .reviews-section h2,
  .locations-section > h2 {
    font-size: clamp(32px, 9.8vw, 44px);
    hyphens: manual;
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
  }
  .gallery-heading { margin-bottom: 30px; }
  .gallery-grid { gap: 7px; }

  .review-track {
    gap: 10px;
    margin-left: 0;
    margin-right: calc(-1 * var(--page-gutter));
    margin-top: 30px;
    padding-bottom: 12px;
    padding-right: var(--page-gutter);
  }
  .review-placeholder {
    flex-basis: min(84vw, 340px);
    min-height: 208px;
    padding: 22px;
  }
  .review-placeholder blockquote { font-size: 16px; line-height: 1.48; margin-bottom: 24px; }
  .review-footer { margin-top: 14px; }

  .location-grid { gap: 10px; margin-top: 30px; }
  .location-card { padding: 22px 18px; }
  .location-card h3 { font-size: 27px; margin-bottom: 14px; }
  .location-contact { gap: 10px; margin-bottom: 22px; }
  .location-card .location-address { font-size: 14px; gap: 12px; }
  .location-card .location-phone { min-height: 38px; }
  .location-hours { margin-top: 0; padding-top: 16px; }
  .location-hours > div { gap: 9px; padding-top: 13px; }
  .location-hours p,
  .location-hours p strong { font-size: 10px; }

  .site-footer { padding: 0 var(--page-gutter); }
  .footer-cta {
    gap: 26px;
    margin-top: 18px;
    padding: 40px 16px 16px;
  }
  .footer-cta h2 { font-size: clamp(32px, 9.5vw, 42px); }
  .footer-cta-copy { font-size: 14px; margin-top: 18px; }
  .footer-cta-benefits { margin-top: 18px; }
  .footer-order-options a { gap: 12px; min-height: 68px; padding: 13px 14px; }
  .footer-order-options strong { font-size: 18px; }
  .footer-order-options b { font-size: 9px; }
  .footer-grid { gap: 30px 20px; padding: 46px 0 40px; }
  .footer-bottom { padding: 22px 0 calc(24px + env(safe-area-inset-bottom)); }

  .order-dialog {
    max-height: min(92dvh, 760px);
    padding: 52px var(--page-gutter) calc(18px + env(safe-area-inset-bottom));
  }
  .order-dialog h2,
  .order-dialog-single h2 { font-size: clamp(27px, 8.7vw, 34px); margin: 16px 0 22px; }
  .order-location-list { gap: 8px; }
  .order-location-list > article,
  .order-dialog-single .order-location-list > article { padding: 18px 14px 14px; }
  .order-location-actions { gap: 7px; margin-top: 18px; }
  .order-location-actions a { min-height: 50px; padding: 12px; }

  .menu-page { padding-top: 72px; }
  .menu-page .menu-section { padding: 52px var(--page-gutter) var(--section-space); }
  .menu-page .menu-category-nav {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .menu-page .menu-photo-placeholder { min-height: 156px; }
  .menu-page .menu-item-copy { padding: 44px 16px 18px; }
  .menu-page .side-item .menu-item-copy { padding: 26px 16px 18px; }
  .compact-menu-grid article { padding: 16px; }
  .allergen-panel summary { padding: 22px 18px; }
  .allergen-panel-content { padding: 26px 18px; }
  .kids-menu-section { padding: 34px 20px 28px; }
  .legal-page { padding-left: var(--page-gutter); padding-right: var(--page-gutter); }
}

@media (max-width: 390px) {
  :root { --page-gutter: 16px; }
  .hero-content { padding-bottom: 28px; }
  .hero h1 { font-size: clamp(32px, 10vw, 38px); }
  .hero-actions .button,
  .hero-actions .button-secondary { min-height: 50px; padding: 14px 15px; }
  .hero-facts { font-size: 7px; }
  .nav-links > a:not(.mobile-nav-order) { font-size: 30px; min-height: 62px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-socials { grid-column: auto; }
}

@media (max-width: 760px) and (max-height: 680px) {
  .hero-content { justify-content: flex-start; padding-top: 92px; }
  .hero h1 { font-size: clamp(31px, 9vw, 38px); }
  .hero-copy { margin-top: 16px; }
  .hero-actions { margin-top: 18px; }
  .hero-facts { margin-top: 18px; }
  .nav-links { padding-top: calc(82px + env(safe-area-inset-top)); }
  .nav-links > a:not(.mobile-nav-order) { font-size: 28px; min-height: 56px; }
  .mobile-nav-order { margin-top: 16px; }
}

/* Premium mobile refinement: spacious, soft and high-contrast */
@media (max-width: 760px) {
  :root {
    --mobile-radius-sm: 14px;
    --mobile-radius: 20px;
    --mobile-radius-lg: 28px;
    --mobile-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  }

  body { font-size: 16px; }

  .site-header,
  .subpage-header {
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
    background: rgba(8, 8, 8, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
    left: 12px;
    min-height: 78px;
    padding: 10px 12px 10px 16px;
    right: 12px;
    top: calc(10px + env(safe-area-inset-top));
    width: auto;
  }
  .hero .site-header { left: 12px; width: auto; }
  body.is-scrolled .hero .site-header {
    background: rgba(8, 8, 8, 0.86);
    min-height: 70px;
  }
  body.header-hidden .hero .site-header { transform: translateY(calc(-125% - env(safe-area-inset-top))); }
  body.mobile-menu-open .site-header,
  body.mobile-menu-open.header-hidden .hero .site-header { transform: none; }
  .brand img,
  body.is-scrolled .hero .brand img { height: 50px; }
  .menu-toggle {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    height: 50px;
    width: 50px;
  }
  .menu-toggle span { border-radius: 999px; width: 20px; }

  .nav-links {
    background:
      radial-gradient(circle at 90% 4%, rgba(227, 41, 38, 0.2), transparent 31%),
      linear-gradient(180deg, #090909 0%, #050505 100%);
    padding: calc(122px + env(safe-area-inset-top)) 22px calc(26px + env(safe-area-inset-bottom));
  }
  .mobile-nav-kicker { font-size: 12px; letter-spacing: 0.15em; }
  .nav-links > a:not(.mobile-nav-order) {
    border-bottom-color: rgba(255, 255, 255, 0.11);
    font-size: clamp(34px, 10vw, 44px);
    min-height: 78px;
    padding: 17px 2px;
  }
  .mobile-nav-order {
    border-radius: 17px;
    box-shadow: 0 12px 30px rgba(227, 41, 38, 0.28);
    font-size: 13px;
    min-height: 60px;
    padding: 19px 20px;
  }
  .mobile-nav-meta { font-size: 11px; }
  .mobile-nav-meta a { font-size: 12px; }

  .hero-content {
    padding-top: calc(126px + env(safe-area-inset-top));
    padding-bottom: clamp(38px, 7vh, 64px);
  }
  .hero h1 {
    font-size: clamp(39px, 11.5vw, 54px);
    letter-spacing: -0.052em;
    line-height: 0.95;
  }
  .hero-copy {
    border-left-width: 4px;
    gap: 9px;
    margin-top: 26px;
    padding: 4px 0 4px 16px;
  }
  .hero-copy strong { font-size: 11px; letter-spacing: 0.13em; }
  .hero-copy span { font-size: clamp(16px, 4.25vw, 18px); line-height: 1.5; }
  .hero-actions { gap: 11px; margin-top: 28px; }
  .hero-actions .button,
  .hero-actions .button-secondary {
    border-radius: 17px;
    font-size: 12px;
    min-height: 60px;
    padding: 19px 20px;
  }
  .hero-actions .button-primary { box-shadow: 0 14px 32px rgba(227, 41, 38, 0.3); }
  .hero-actions .button-secondary {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
  }
  .hero-facts {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin-top: 26px;
  }
  .hero-facts span {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(12, 12, 12, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 9px;
    min-height: 34px;
    padding: 9px 11px;
  }
  .hero-facts span::before { border-radius: 50%; height: 5px; width: 5px; }

  .section-kicker { font-size: 11px; letter-spacing: 0.14em; }
  .menu-preview-copy h2,
  .section-heading h2,
  .story-copy h2,
  .gallery-heading h2,
  .reviews-section h2,
  .locations-section > h2 { font-size: clamp(36px, 10.6vw, 48px); line-height: 1; }
  .story-text,
  .menu-preview-copy > p:not(.section-kicker),
  .menu-page .section-heading > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .story-image,
  .menu-preview-image,
  .gallery-item {
    border-radius: var(--mobile-radius-lg);
    box-shadow: var(--mobile-shadow);
  }
  .story-image::after,
  .menu-preview-image::after {
    border-radius: 19px;
    inset: 10px;
  }
  .menu-preview-section { padding: 14px; }
  .menu-preview-copy {
    border-radius: var(--mobile-radius-lg);
    padding-left: 10px;
    padding-right: 10px;
  }
  .menu-preview-copy .button {
    border-radius: 17px;
    font-size: 12px;
    min-height: 58px;
    padding: 18px 20px;
  }
  .gallery-grid { gap: 10px; }

  .review-placeholder {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(17, 16, 15, 0.1);
    border-radius: var(--mobile-radius);
    box-shadow: 0 12px 32px rgba(22, 20, 18, 0.08);
    min-height: 226px;
    padding: 25px;
  }
  .review-placeholder blockquote { font-size: 18px; line-height: 1.5; }
  .review-placeholder strong { font-size: 12px; }
  .review-placeholder strong span { font-size: 10px; }
  .review-control { border-radius: 15px; height: 52px; width: 52px; }

  .location-card {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: var(--mobile-radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    padding: 26px 22px;
  }
  .location-main {
    background: linear-gradient(145deg, rgba(227, 41, 38, 0.17), rgba(255, 255, 255, 0.035));
    border-color: rgba(227, 41, 38, 0.5);
  }
  .location-card h3 { font-size: 31px; }
  .location-card .location-address { font-size: 16px; line-height: 1.6; }
  .location-card .location-phone { font-size: 12px; }
  .location-card .location-phone span { font-size: 10px; }
  .location-card .location-phone strong { font-size: 15px; }
  .location-hours-title { font-size: 11px; }
  .location-hours p,
  .location-hours p strong { font-size: 12px; }

  .footer-cta {
    border-radius: var(--mobile-radius-lg);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    padding: 44px 18px 18px;
  }
  .footer-cta::before { border-radius: var(--mobile-radius-lg) var(--mobile-radius-lg) 0 0; }
  .footer-cta-copy { font-size: 16px; line-height: 1.65; }
  .footer-cta-benefits span { border-radius: 999px; font-size: 9px; padding: 9px 11px; }
  .footer-order-options a {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 17px;
    min-height: 76px;
    padding: 16px;
  }
  .footer-order-options strong { font-size: 20px; }
  .social-links a { border-radius: 14px; }

  .order-dialog {
    background: rgba(12, 12, 12, 0.96);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.38);
  }
  .order-dialog-close { border-radius: 13px; height: 42px; width: 42px; }
  .order-dialog .section-kicker { font-size: 11px; }
  .order-dialog h2,
  .order-dialog-single h2 { font-size: clamp(31px, 9vw, 38px); }
  .order-location-list > article,
  .order-dialog-single .order-location-list > article {
    border-bottom: 0;
    border-radius: var(--mobile-radius);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    padding: 22px 18px 18px;
  }
  .order-location-head strong { font-size: 22px; }
  .order-location-head small { font-size: 13px; }
  .order-location-actions a { border-radius: 14px; font-size: 11px; min-height: 54px; }

  .menu-page .menu-category-nav {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: rgba(245, 243, 238, 0.88);
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .menu-page .menu-category-nav a { border-radius: 999px; font-size: 11px; min-height: 44px; padding: 13px 16px; }
  .menu-combo-banner,
  .menu-page .menu-item,
  .compact-menu-grid article,
  .allergen-panel,
  .kids-menu-section {
    border-radius: var(--mobile-radius);
    overflow: hidden;
  }
  .menu-page .menu-item { box-shadow: 0 12px 34px rgba(20, 18, 16, 0.08); }
  .menu-item-copy h4 { font-size: 22px; }
  .menu-item-copy > p { font-size: 15px; line-height: 1.55; }
  .menu-prices strong,
  .menu-price strong,
  .compact-menu-grid strong { font-size: 20px; }
  .compact-menu-grid h4 { font-size: 16px; }
  .allergen-panel summary { min-height: 72px; }
}

@media (max-width: 390px) {
  .site-header,
  .subpage-header { left: 8px; right: 8px; top: calc(8px + env(safe-area-inset-top)); }
  .hero .site-header { left: 8px; }
  .brand img,
  body.is-scrolled .hero .brand img { height: 46px; }
  .menu-toggle { height: 46px; width: 46px; }
  .hero h1 { font-size: clamp(35px, 10.7vw, 42px); }
  .hero-copy span { font-size: 16px; }
  .hero-facts span { min-height: 32px; }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero-content { justify-content: flex-start; padding-top: calc(112px + env(safe-area-inset-top)); }
  .hero h1 { font-size: clamp(33px, 9.5vw, 42px); }
  .hero-copy { margin-top: 18px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button,
  .hero-actions .button-secondary { min-height: 54px; padding-bottom: 16px; padding-top: 16px; }
  .hero-facts { margin-top: 18px; }
  .hero-facts span { min-height: 30px; padding-bottom: 7px; padding-top: 7px; }
  .nav-links { padding-top: calc(104px + env(safe-area-inset-top)); }
  .nav-links > a:not(.mobile-nav-order) { font-size: 30px; min-height: 60px; padding-bottom: 12px; padding-top: 12px; }
  .mobile-nav-order { margin-top: 16px; min-height: 54px; }
}

/* Contemporary restaurant UI: editorial imagery, direct actions, restrained surfaces */
@media (max-width: 760px) {
  .site-header,
  .subpage-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(5, 5, 5, 0.96);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    box-shadow: none;
    left: 0;
    min-height: 72px;
    padding: 8px 18px;
    right: 0;
    top: 0;
    width: 100%;
  }
  .hero .site-header { left: 0; width: 100%; }
  body.is-scrolled .hero .site-header {
    background: rgba(5, 5, 5, 0.98);
    min-height: 66px;
  }
  body.header-hidden .hero .site-header { transform: translateY(-110%); }
  .brand img,
  body.is-scrolled .hero .brand img { height: 48px; }
  .menu-toggle {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.38);
    border-radius: 5px;
    height: 46px;
    width: 46px;
  }

  .nav-links {
    background: #050505;
    padding: calc(98px + env(safe-area-inset-top)) 20px calc(24px + env(safe-area-inset-bottom));
  }
  .mobile-nav-kicker { font-size: 11px; margin-bottom: 12px; }
  .nav-links > a:not(.mobile-nav-order) {
    font-size: clamp(32px, 9.4vw, 42px);
    min-height: 70px;
    padding: 14px 0;
  }
  .mobile-nav-order {
    border-radius: 5px;
    box-shadow: none;
    font-size: 12px;
    min-height: 56px;
    padding: 17px 18px;
  }

  .hero-content {
    padding-bottom: clamp(34px, 6vh, 54px);
    padding-top: calc(104px + env(safe-area-inset-top));
  }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero-copy { margin-top: 22px; }
  .hero-copy span { font-size: clamp(16px, 4.1vw, 18px); }
  .hero-actions { gap: 9px; margin-top: 24px; }
  .hero-actions .button,
  .hero-actions .button-secondary {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 5px;
    box-shadow: none;
    min-height: 56px;
    padding: 17px 18px;
  }
  .hero-actions .button-secondary { background: rgba(5, 5, 5, 0.66); }
  .hero-facts {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    gap: 10px 18px;
    margin-top: 26px;
    padding-top: 18px;
  }
  .hero-facts span {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 9px;
    min-height: 0;
    padding: 0;
  }

  .story-image,
  .menu-preview-image,
  .gallery-item {
    border-radius: 4px;
    box-shadow: none;
  }
  .story-image::after,
  .menu-preview-image::after {
    border-radius: 1px;
    inset: 12px;
  }
  .menu-preview-section { padding: 0; }
  .menu-preview-copy {
    border-radius: 0;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .menu-preview-copy .button {
    border-radius: 5px;
    box-shadow: none;
    min-height: 56px;
  }

  .review-placeholder {
    background: rgba(255, 255, 255, 0.34);
    border-radius: 4px;
    box-shadow: none;
    padding: 24px;
  }
  .review-control { border-radius: 4px; }

  .location-card,
  .location-main {
    background: transparent;
    border-radius: 4px;
    box-shadow: none;
  }
  .location-main {
    background: #190706;
    border-color: rgba(227, 41, 38, 0.78);
  }

  .footer-cta {
    border-radius: 4px;
    box-shadow: none;
  }
  .footer-cta::before { border-radius: 0; }
  .footer-cta-benefits span { border-radius: 3px; }
  .footer-order-options a {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(8, 8, 8, 0.9);
    border-radius: 4px;
  }
  .social-links a { border-radius: 4px; }

  .order-dialog {
    background: #090909;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
  }
  .order-dialog-close { border-radius: 4px; }
  .order-location-list > article,
  .order-dialog-single .order-location-list > article {
    border-radius: 4px;
    box-shadow: none;
  }
  .order-location-actions a { border-radius: 4px; }

  .menu-page .menu-category-nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #f5f3ee;
  }
  .menu-page .menu-category-nav a { border-radius: 3px; }
  .menu-combo-banner,
  .menu-page .menu-item,
  .compact-menu-grid article,
  .allergen-panel,
  .kids-menu-section {
    border-radius: 4px;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .menu-preview-image {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
}

/* Hero video loop */
.hero-video,
.hero-video-shade {
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.hero-video {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.24) 78%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 50%);
  z-index: 1;
}
.hero::before { z-index: 2; }
.hero-content { z-index: 3; }

@media (max-width: 760px) {
  .hero-video-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.38) 34%, rgba(5, 5, 5, 0.94) 88%, #050505 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

@media (max-width: 390px) {
  .site-header,
  .subpage-header { left: 0; right: 0; top: 0; }
  .hero .site-header { left: 0; }
}

/* Two-location hierarchy and responsive product photography */
.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.location-grid > :only-child,
.footer-order-options > :only-child {
  grid-column: 1 / -1;
}
.location-card .location-role {
  color: #ff7771;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.location-main .location-role {
  color: #ffffff;
}
.footer-order-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-page .menu-photo-real {
  align-self: start;
  aspect-ratio: 1;
  background: #111111;
  display: block;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  width: 100%;
}
.menu-page .menu-photo-real img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.menu-page .menu-item:not(.menu-item-text-only) {
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
}
.menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
  display: flex;
  flex-direction: column;
}
.menu-page .menu-item-text-only {
  display: block;
  min-height: 0;
}
.menu-page .menu-item-text-only .menu-item-copy {
  min-height: 220px;
  padding: 36px 24px 24px;
}
.menu-page .side-item.menu-item-text-only .menu-item-copy {
  min-height: 150px;
}

@media (max-width: 960px) {
  .menu-page .menu-item:not(.menu-item-text-only),
  .menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
    display: grid;
    grid-template-columns: 1fr;
  }
  .menu-page .menu-photo-real {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .location-grid,
  .footer-order-options {
    grid-template-columns: 1fr;
  }
  .menu-page .menu-photo-real {
    aspect-ratio: 1;
  }
  .menu-page .menu-item-text-only .menu-item-copy,
  .menu-page .side-item.menu-item-text-only .menu-item-copy {
    min-height: 0;
    padding: 28px 20px 22px;
  }
}

/* Final responsive media and control sizing */
.story-copy,
.menu-preview-copy,
.footer-cta-content,
.footer-order-options,
.order-location-list,
.order-location-head,
.menu-item-copy,
.location-card {
  min-width: 0;
}

.story-image-team {
  aspect-ratio: 2 / 3;
  justify-self: end;
  max-height: 690px;
  max-width: 460px;
  width: 100%;
}
.story-image-team img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gallery-grid-kitchen {
  grid-auto-rows: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-grid-kitchen .gallery-item {
  aspect-ratio: 2 / 3;
  min-height: 0;
}
.gallery-grid-kitchen .gallery-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.menu-combo-banner figure {
  aspect-ratio: 1;
  min-height: 0;
}
.menu-page .menu-items-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.menu-page .menu-item:not(.menu-item-text-only) {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(190px, 40%) minmax(0, 1fr);
}
.menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
  display: flex;
  flex-direction: column;
}
.menu-page .menu-photo-real {
  align-self: stretch;
  aspect-ratio: 1;
  height: auto;
  margin: 0;
  width: 100%;
}
.menu-page .menu-photo-real img {
  object-fit: cover;
}

.button,
.header-order,
.mobile-nav-order,
.footer-order-options a,
.order-location-actions a,
.location-address,
.location-phone,
.menu-toggle,
.review-control {
  box-sizing: border-box;
  max-width: 100%;
}
.button,
.header-order,
.mobile-nav-order,
.footer-order-options a,
.order-location-actions a {
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: break-word;
  white-space: normal;
}
.button .ui-icon,
.header-order .ui-icon,
.mobile-nav-order .ui-icon,
.footer-order-options .ui-icon,
.order-location-actions .ui-icon {
  flex: 0 0 auto;
}
.footer-order-options a > span,
.footer-order-options a > b,
.order-location-actions a > span,
.order-location-actions a > b {
  min-width: 0;
}

@media (max-width: 1100px) {
  .gallery-grid-kitchen {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-order-options {
    grid-template-columns: 1fr;
  }
  .menu-page .menu-items-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-page .menu-item:not(.menu-item-text-only),
  .menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .story-image-team {
    justify-self: stretch;
    max-width: none;
  }
  .gallery-grid-kitchen {
    gap: 10px;
  }
  .menu-page .menu-items-grid-three {
    grid-template-columns: 1fr;
  }
  .menu-page .menu-item:not(.menu-item-text-only),
  .menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }
  .menu-page .menu-photo-real {
    aspect-ratio: 1;
    height: auto;
    margin: 0;
    width: 100%;
  }
  .menu-page .menu-item:not(.menu-item-text-only) .menu-item-copy {
    align-self: stretch;
    padding: 48px 20px 22px;
    width: 100%;
  }
  .button,
  .mobile-nav-order,
  .footer-order-options a,
  .order-location-actions a {
    gap: 16px;
    min-height: 54px;
    padding: 16px 18px;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .footer-order-options a,
  .order-location-actions a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Final brand polish and responsive alignment */
html,
body { overflow-x: clip; }

.gallery-section {
  background: #050505;
  color: #ffffff;
}
.gallery-section .section-kicker { color: #ff7771; }
.gallery-grid-kitchen {
  grid-auto-rows: 210px;
  grid-template-areas:
    "a a b c"
    "a a d c"
    "e f f g"
    "e h h g";
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-grid-kitchen .gallery-item { aspect-ratio: auto; min-height: 0; }
.gallery-grid-kitchen .gallery-item:nth-child(1) { grid-area: a; }
.gallery-grid-kitchen .gallery-item:nth-child(2) { grid-area: b; }
.gallery-grid-kitchen .gallery-item:nth-child(3) { grid-area: c; }
.gallery-grid-kitchen .gallery-item:nth-child(4) { grid-area: d; }
.gallery-grid-kitchen .gallery-item:nth-child(5) { grid-area: e; }
.gallery-grid-kitchen .gallery-item:nth-child(6) { grid-area: f; }
.gallery-grid-kitchen .gallery-item:nth-child(7) { grid-area: g; }
.gallery-grid-kitchen .gallery-item:nth-child(8) { grid-area: h; }
.gallery-item img,
.gallery-item:hover img { transform: none; transition: none; }

.location-card .location-maps-link {
  align-items: center;
  color: #ffffff;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  text-decoration: none;
}
.location-card .location-maps-link h3 { margin-bottom: 18px; }
.location-card .location-maps-link .navigation-icon {
  color: #ff7771;
  height: 20px;
  width: 20px;
}
.location-card .location-address {
  margin: 0;
  width: 100%;
}
.location-card .location-address:hover,
.location-card .location-address:focus-visible { color: rgba(220, 220, 219, 0.64); }

.footer-order-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  width: 100%;
}
.footer-order-options a {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}
.footer-order-options strong {
  font-size: clamp(21px, 1.75vw, 28px);
  overflow-wrap: anywhere;
}
.footer-order-options b { justify-self: end; white-space: nowrap; }

.order-dialog > .section-kicker,
.order-dialog > h2 { margin-left: auto; margin-right: auto; text-align: center; }
.order-location-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 780px;
  width: 100%;
}
.order-dialog-single .order-location-list { max-width: 440px; }
.order-location-list > article { min-height: 230px; }

.menu-page .menu-items-grid,
.menu-page .menu-items-grid-three { gap: 18px; }
.menu-page .menu-items-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(190px, 40%) minmax(0, 1fr);
}
.menu-page .menu-item:not(.menu-item-text-only) { min-height: 280px; }
.menu-page .menu-item-copy { padding: 50px 26px 28px; }
.menu-page .menu-item-copy > p { font-size: 15px; line-height: 1.65; }
.menu-page .menu-photo-real { background: #0a0a0a; overflow: hidden; }
.menu-page .menu-photo-real img {
  object-fit: cover;
  transform: scale(0.94);
  transition: none;
}

.button,
.header-order,
.mobile-nav-order,
.footer-order-options a,
.order-location-actions a,
.menu-toggle,
.order-dialog-close,
.social-links a {
  transform: none;
  transition: none;
}
.button-primary:hover,
.button-primary:focus-visible,
.header-order:hover,
.header-order:focus-visible,
.mobile-nav-order:hover,
.mobile-nav-order:focus-visible,
.footer-order-options a:hover,
.footer-order-options a:focus-visible,
.order-call:hover,
.order-call:focus-visible,
.order-online:hover,
.order-online:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.order-dialog-close:hover,
.order-dialog-close:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #ffffff;
  transform: none;
}
.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #ffffff;
  transform: none;
}
.footer-order-options a:hover b,
.footer-order-options a:focus-visible b { color: #ffffff; transform: none; }

.button,
.header-order,
.mobile-nav-order,
.menu-toggle,
.story-image,
.menu-preview-image,
.gallery-item,
.review-placeholder,
.location-card,
.footer-cta,
.footer-cta-benefits span,
.footer-order-options a,
.social-links a,
.order-dialog,
.order-dialog-close,
.order-location-list > article,
.order-location-actions a,
.menu-combo-banner,
.menu-page .menu-item,
.compact-menu-grid article,
.allergen-panel,
.kids-menu-section,
.menu-page .menu-category-nav a,
.product-allergens span,
.hero-facts span {
  border-radius: 5px;
}

/* September refinement: consistent geometry and clearer content density */
.button,
.header-order,
.mobile-nav-order,
.menu-toggle,
.story-image,
.menu-preview-image,
.gallery-item,
.review-placeholder,
.location-card,
.footer-cta,
.footer-cta-benefits span,
.footer-order-options a,
.social-links a,
.order-dialog,
.order-dialog-close,
.order-location-list > article,
.order-location-actions a,
.menu-combo-banner,
.menu-page .menu-item,
.compact-menu-grid article,
.allergen-panel,
.kids-menu-section,
.menu-page .menu-category-nav a,
.product-allergens span,
.hero-facts span,
.legal-notice,
.legal-content .legal-highlight { border-radius: 5px; }

.gallery-grid-kitchen .gallery-item:nth-child(2) img { object-position: center 62%; }
.gallery-grid-kitchen .gallery-item:nth-child(4) img { object-position: center 70%; }
.gallery-grid-kitchen .gallery-item:nth-child(6) img { object-position: center 66%; }
.gallery-grid-kitchen .gallery-item:nth-child(8) img { object-position: center 58%; }

.footer-cta {
  gap: clamp(42px, 5vw, 76px);
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1.18fr);
}
.footer-order-options { grid-template-columns: 1fr; }
.footer-order-options strong {
  overflow-wrap: normal;
  word-break: normal;
}

/* Keep the same restrained corner treatment on the actual menu imagery. */
.menu-page .menu-photo-real,
.menu-page .menu-photo-real img,
.menu-page .menu-photo-placeholder,
.menu-page .menu-photo-placeholder img {
  border-radius: 5px;
}

.menu-page .section-heading h1 {
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin-bottom: 0;
  text-transform: uppercase;
}

.side-size-options {
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 18px;
}
.side-size-options > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.side-size-options small {
  color: #77716c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.side-size-options strong {
  color: var(--accent);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 20px;
  white-space: nowrap;
}
.side-items-grid {
  grid-template-areas:
    "pommes jalapommes"
    "salad drink";
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.side-item-pommes { grid-area: pommes; }
.side-item-jalapommes { grid-area: jalapommes; }
.side-item-salad { grid-area: salad; }
.side-item-drink { grid-area: drink; }
.menu-page .side-items-grid .side-item.menu-item-text-only .menu-item-copy {
  min-height: 210px;
  padding: clamp(28px, 3vw, 42px);
}
.side-items-grid .side-item .menu-price { margin-top: auto; }
.side-item-salad .menu-price,
.side-item-drink .menu-price {
  border-top: 1px solid rgba(5, 5, 5, 0.12);
  padding-top: 18px;
  width: 100%;
}

.kids-menu-section {
  border: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 310px;
  padding-bottom: 64px;
  padding-top: 64px;
  text-align: left;
}
.kids-menu-badge {
  color: var(--accent-hot);
  grid-column: 1 / -1;
  margin-bottom: -20px;
}
.kids-menu-section h3 { text-align: left; }
.nowrap { white-space: nowrap; }
.compact-menu-grid article { border-left: 1px solid rgba(5, 5, 5, 0.13); }

.legal-site .legal-page { min-height: auto; }
.legal-site .site-footer { margin-top: 0; }
.legal-site .legal-footer { padding-top: 0; }
.legal-site .legal-footer .footer-grid { border-top: 0; }

@media (max-width: 1100px) {
  .gallery-grid-kitchen {
    grid-auto-rows: 210px;
    grid-template-areas:
      "a b"
      "a c"
      "d d"
      "e f"
      "g g"
      "h h";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-order-options { grid-template-columns: 1fr; }
  .footer-cta { grid-template-columns: 1fr; }
  .menu-page .menu-items-grid-three .menu-item:not(.menu-item-text-only) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-page .section-heading h1 {
    font-size: clamp(36px, 10.6vw, 48px);
    line-height: 1;
  }
  .gallery-grid-kitchen { grid-auto-rows: clamp(145px, 42vw, 190px); }
  .footer-order-options a {
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .footer-order-options strong { font-size: clamp(20px, 7vw, 27px); }
  .order-location-list { grid-template-columns: 1fr; }
  .order-location-list > article { min-height: 210px; }
  .menu-page .menu-items-grid-three { grid-template-columns: 1fr; }
  .menu-page .menu-item-copy { padding: 48px 20px 24px; }
  .side-items-grid {
    grid-template-areas:
      "pommes"
      "jalapommes"
      "salad"
      "drink";
    grid-template-columns: 1fr;
  }
  .menu-page .side-items-grid .side-item.menu-item-text-only .menu-item-copy {
    min-height: 176px;
    padding: 24px 20px;
  }
  .kids-menu-section {
    grid-template-columns: 1fr;
    min-height: 360px;
    padding-bottom: 52px;
    padding-top: 52px;
  }
  .kids-menu-badge { grid-column: auto; margin-bottom: 0; }
  .legal-site .legal-page { padding-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue svg { animation: none; }
}

@media (max-width: 390px) {
  .footer-order-options a { grid-template-columns: 1fr; }
  .footer-order-options b { justify-self: start; }
}

/* Final mobile presentation: stable video crop, readable type and consistent spacing */
@media (max-width: 760px) {
  :root {
    --mobile-gutter-final: clamp(18px, 5.2vw, 24px);
    --mobile-section-final: clamp(68px, 18vw, 84px);
  }

  html { scroll-padding-top: 74px; }
  body { font-size: 16px; }

  .site-header,
  .subpage-header {
    min-height: 72px;
    padding: 8px var(--mobile-gutter-final);
  }
  .brand img,
  body.is-scrolled .hero .brand img { height: 48px; }
  .menu-toggle {
    height: 46px;
    width: 46px;
  }
  .nav-links {
    padding: calc(96px + env(safe-area-inset-top)) var(--mobile-gutter-final) calc(24px + env(safe-area-inset-bottom));
  }
  .mobile-nav-kicker {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .nav-links > a:not(.mobile-nav-order) {
    font-size: clamp(32px, 9.5vw, 42px);
    min-height: 68px;
    padding: 13px 0;
  }
  .mobile-nav-order {
    font-size: 13px;
    min-height: 58px;
    padding: 18px 20px;
  }
  .mobile-nav-meta,
  .mobile-nav-meta a { font-size: 12px; }

  .hero {
    background: #050505 url("assets/video/hero-poster-mobile.webp?v=29") center / cover no-repeat;
    height: auto;
    min-height: max(700px, 100svh);
  }
  .hero-video {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.01);
    width: 100%;
  }
  .hero-video-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.2) 28%, rgba(5, 5, 5, 0.62) 58%, rgba(5, 5, 5, 0.97) 100%);
  }
  .hero-content {
    height: auto;
    justify-content: flex-end;
    min-height: max(700px, 100svh);
    padding: calc(100px + env(safe-area-inset-top)) var(--mobile-gutter-final) clamp(68px, 9svh, 82px);
  }
  .hero h1 {
    font-size: clamp(40px, 11.8vw, 54px);
    letter-spacing: -0.055em;
    line-height: 0.93;
    max-width: 9.5em;
  }
  .hero-copy {
    border-left-width: 2px;
    gap: 7px;
    margin-top: 20px;
    padding-left: 14px;
  }
  .hero-copy strong {
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }
  .hero-copy span {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-actions .button,
  .hero-actions .button-secondary {
    font-size: 13px;
    min-height: 58px;
    padding: 18px 20px;
  }
  .hero-facts {
    border-top-color: rgba(255, 255, 255, 0.22);
    font-size: 11px;
    gap: 10px 16px;
    letter-spacing: 0.06em;
    margin-top: 22px;
    padding-top: 16px;
  }
  .hero-facts span {
    line-height: 1.35;
    min-height: 0;
    padding: 0;
  }
  .scroll-cue {
    bottom: calc(20px + env(safe-area-inset-bottom));
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    font-size: 11px;
    gap: 10px;
    letter-spacing: 0.12em;
    right: var(--mobile-gutter-final);
  }
  .scroll-cue svg {
    height: 18px;
    width: 18px;
  }

  .menu-section,
  .story-section,
  .gallery-section,
  .reviews-section,
  .locations-section {
    padding: var(--mobile-section-final) var(--mobile-gutter-final);
  }
  .section-kicker {
    font-size: 12px;
    line-height: 1.45;
  }
  .menu-preview-copy h2,
  .section-heading h1,
  .section-heading h2,
  .story-copy h2,
  .gallery-heading h2,
  .reviews-section h2,
  .locations-section > h2 {
    font-size: clamp(38px, 10.8vw, 50px);
    line-height: 0.98;
    overflow-wrap: normal;
  }
  .story-text,
  .menu-preview-copy > p:not(.section-kicker),
  .section-heading > p {
    font-size: 16px;
    line-height: 1.65;
  }
  .story-founder { margin-top: 24px; }
  .story-section { gap: 32px; }
  .story-image {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
  .menu-preview-image {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
  .menu-preview-copy {
    padding: 54px var(--mobile-gutter-final) 66px;
  }
  .menu-preview-copy h2 { margin: 14px 0 22px; }
  .menu-preview-copy > p:not(.section-kicker) { margin-bottom: 28px; }
  .menu-preview-copy .button {
    font-size: 13px;
    min-height: 58px;
    padding: 18px 20px;
    width: 100%;
  }
  .gallery-heading { margin-bottom: 34px; }
  .gallery-grid-kitchen { gap: 8px; }

  .review-track { margin-top: 32px; }
  .review-placeholder {
    flex-basis: calc(100vw - 40px);
    min-height: 240px;
    padding: 24px 22px;
  }
  .review-placeholder blockquote {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 34px;
  }
  .review-placeholder strong { font-size: 12px; }

  .location-grid {
    gap: 12px;
    margin-top: 32px;
  }
  .location-card,
  .location-main { padding: 24px 20px; }
  .location-card h3 { font-size: clamp(28px, 8.5vw, 36px); }
  .location-card .location-address { font-size: 16px; }
  .location-card .location-phone { min-height: 44px; }
  .location-card .location-phone span { font-size: 11px; }
  .location-card .location-phone strong { font-size: 15px; }
  .location-hours p,
  .location-hours p strong { font-size: 13px; }

  .footer-cta {
    gap: 28px;
    margin-top: 20px;
    padding: 46px var(--mobile-gutter-final) 20px;
  }
  .footer-cta h2 {
    font-size: clamp(36px, 10.5vw, 46px);
    line-height: 0.98;
  }
  .footer-cta-copy { font-size: 16px; }
  .footer-cta-benefits span { font-size: 11px; }
  .footer-order-options a {
    min-height: 78px;
    padding: 17px 18px;
  }
  .footer-order-options small { font-size: 11px; }
  .footer-order-options b { font-size: 12px; }
  .site-footer { padding-left: var(--mobile-gutter-final); padding-right: var(--mobile-gutter-final); }
  .footer-column h3 { font-size: 12px; }
  .footer-column a { font-size: 15px; }

  .menu-page { padding-top: 72px; }
  .menu-page .menu-section { padding-top: 50px; }
  .menu-page .section-heading { gap: 20px; margin-bottom: 38px; }
  .menu-page .menu-category-nav {
    margin-left: calc(-1 * var(--mobile-gutter-final));
    margin-right: calc(-1 * var(--mobile-gutter-final));
    padding-left: var(--mobile-gutter-final);
    padding-right: var(--mobile-gutter-final);
  }
  .menu-page .menu-category-nav a {
    font-size: 14px;
    min-height: 46px;
    padding: 14px 16px;
  }
  .menu-page .menu-item-copy { padding: 46px 20px 24px; }
  .menu-category-heading p {
    font-size: 14px;
    line-height: 1.5;
  }
  .menu-item-copy h4 { font-size: 26px; }
  .menu-page .menu-item-copy > p {
    font-size: 18px;
    line-height: 1.6;
  }
  .menu-prices small,
  .menu-price-pair small,
  .menu-page .side-item .menu-price small,
  .compact-menu-grid small,
  .side-size-options small {
    font-size: 13px;
    line-height: 1.35;
  }
  .menu-page .menu-prices em {
    font-size: 13px;
    line-height: 1.3;
    padding: 6px 8px;
  }
  .menu-prices strong,
  .menu-price strong,
  .menu-price-pair strong,
  .compact-menu-grid strong,
  .side-size-options strong { font-size: 22px; }
  .product-allergens span {
    font-size: 9px;
    min-height: 22px;
    min-width: 22px;
  }
  .compact-menu-grid h4 { font-size: 20px; }
  .compact-menu-grid article { min-height: 80px; }
  .kids-menu-section {
    min-height: 0;
    padding: 46px 20px;
  }
  .kids-menu-section p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.55;
  }

  .order-dialog {
    max-height: min(92dvh, 780px);
    padding-left: var(--mobile-gutter-final);
    padding-right: var(--mobile-gutter-final);
  }
  .order-dialog .section-kicker { font-size: 12px; }
  .order-dialog h2,
  .order-dialog-single h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1;
  }
  .order-location-head small { font-size: 14px; }
  .order-location-actions a {
    font-size: 13px;
    min-height: 56px;
    padding: 17px 18px;
  }

  .legal-page { padding-left: var(--mobile-gutter-final); padding-right: var(--mobile-gutter-final); }
  .legal-content p,
  .legal-content li { font-size: 16px; line-height: 1.65; }
}

@media (max-width: 390px) {
  .hero,
  .hero-content { min-height: max(680px, 100svh); }
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: clamp(37px, 11.2vw, 44px); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .mobile-nav-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .review-placeholder { flex-basis: calc(100vw - 32px); }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero,
  .hero-content { min-height: 700px; }
  .hero-content {
    justify-content: flex-end;
    padding-bottom: 68px;
    padding-top: calc(92px + env(safe-area-inset-top));
  }
  .hero h1 { font-size: clamp(36px, 10vw, 44px); }
  .hero-copy,
  .hero-actions { margin-top: 18px; }
  .hero-facts { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .hero-video { display: none; }
}

/* Final interface alignment: translucent hero navigation and consistent menu spacing */
.hero .site-header,
body.is-scrolled .hero .site-header {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
  :root {
    --mobile-gutter-final: 20px;
    --mobile-section-final: 72px;
    --mobile-content-gap: 32px;
  }

  .hero .site-header,
  body.is-scrolled .hero .site-header {
    background: rgba(5, 5, 5, 0.8);
  }

  .hero-content,
  .menu-section,
  .story-section,
  .gallery-section,
  .reviews-section,
  .locations-section,
  .site-footer {
    padding-left: var(--mobile-gutter-final);
    padding-right: var(--mobile-gutter-final);
  }

  .story-section { gap: var(--mobile-content-gap); }
  .location-grid { gap: 16px; }
  .gallery-grid-kitchen { gap: 8px; }

  .menu-preview-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .menu-preview-image,
  .menu-preview-copy {
    max-width: none;
    width: 100%;
  }
  .menu-preview-copy { order: 1; }
  .menu-preview-image { order: 2; }

  .scroll-cue {
    bottom: calc(18px + env(safe-area-inset-bottom));
    justify-content: center;
    left: 0;
    right: 0;
    width: 100%;
    white-space: nowrap;
  }

  .menu-page .menu-item-copy,
  .menu-page .menu-item-text-only .menu-item-copy,
  .menu-page .side-item .menu-item-copy,
  .menu-page .side-items-grid .side-item.menu-item-text-only .menu-item-copy,
  .compact-menu-grid article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-allergens {
    right: 12px;
    top: 12px;
  }
  .product-allergens span {
    font-size: 9px;
    height: 20px;
    min-height: 20px;
    min-width: 20px;
    width: 20px;
  }
  .compact-allergens {
    font-size: 8px;
    right: 10px;
    top: 10px;
  }
}

/* Menu pricing: one clear surcharge overview, product cards show item prices only */
.menu-upgrades {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 180px));
  margin-top: 24px;
  width: 100%;
}

.menu-upgrade {
  background: #ffffff;
  border-left: 4px solid var(--accent-hot);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
}

.menu-upgrade small,
.product-card-price small {
  color: #6f6b66;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.menu-upgrade strong {
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.product-card-price {
  align-items: flex-start;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 16px;
}

.menu-page .menu-prices > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 760px) {
  .menu-page .menu-prices {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-page .menu-prices > span {
    min-width: 0;
    width: auto;
  }

  .menu-upgrades {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .menu-upgrade {
    min-width: 0;
    padding: 14px 12px;
  }

  .menu-upgrade small,
  .product-card-price small {
    font-size: 12px;
  }

  .menu-upgrade strong { font-size: 20px; }
}

/* Plattformübergreifend konsistente Typografie ohne schmale Ersatzschrift */
:root {
  --font-ui: Arial, Helvetica, sans-serif;
  --font-display: "Arial Black", Arial, Helvetica, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-ui);
  font-stretch: normal;
  font-synthesis: weight style;
}

h1,
h2,
h3,
h4,
.product-placeholder strong,
.gallery-placeholder strong,
.menu-prices strong,
.menu-price strong,
.compact-menu-grid strong,
.menu-price-pair strong,
.allergen-panel summary strong,
.kids-menu-section > strong,
.footer-order-options strong,
.order-location-head strong,
.side-size-options strong,
.menu-upgrade strong {
  font-family: var(--font-display);
  font-stretch: normal;
}

@media (max-width: 760px) {
  h1,
  h2,
  h3,
  h4,
  .product-placeholder strong,
  .gallery-placeholder strong,
  .nav-links > a:not(.mobile-nav-order),
  .menu-prices strong,
  .menu-price strong,
  .compact-menu-grid strong,
  .menu-price-pair strong,
  .allergen-panel summary strong,
  .kids-menu-section > strong,
  .footer-order-options strong,
  .order-location-head strong,
  .side-size-options strong,
  .menu-upgrade strong {
    letter-spacing: -0.025em;
  }

  .hero h1,
  .menu-preview-copy h2,
  .section-heading h1,
  .section-heading h2,
  .story-copy h2,
  .gallery-heading h2,
  .reviews-section h2,
  .locations-section > h2,
  .menu-category-heading h3,
  .menu-combo-banner h3,
  .kids-menu-section h3,
  .footer-cta h2,
  .order-dialog h2 {
    font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 9.6vw, 44px);
    letter-spacing: -0.055em;
    line-height: 1.08;
  }

  .hero h1 {
    font-size: clamp(36px, 10.4vw, 48px);
  }
}

/* Ruhige Oberfläche: keine Bewegungs-, Zoom- oder Verschiebeeffekte */
html { scroll-behavior: auto; }

*,
*::before,
*::after {
  animation: none !important;
  scroll-behavior: auto !important;
  transition-delay: 0ms !important;
  transition-property: color, background-color, border-color, fill, stroke !important;
  transition-duration: 160ms !important;
  transition-timing-function: ease !important;
}

.js .hero h1,
.js .hero .hero-copy,
.js .hero .hero-actions,
.js .hero .hero-facts,
.js .hero .scroll-cue,
.js .reveal,
.js .reveal.reveal-left,
.js .reveal.reveal-right,
.js .reveal.is-visible {
  animation: none !important;
  opacity: 1;
  transform: none;
}

.hero .site-header,
body.header-hidden .hero .site-header {
  transform: translateX(-50%);
}

body.is-scrolled .hero .site-header {
  min-height: 76px;
}

body.is-scrolled .hero .brand img { height: 56px; }

.nav-links a:hover,
.nav-links a:focus-visible,
.header-order:hover,
.header-order:focus-visible,
.button:hover,
.button:focus-visible,
.button:hover span,
.button:focus-visible span,
.header-order:hover span,
.header-order:focus-visible span,
.location-order:hover span,
.location-order:focus-visible span,
.menu-category-nav a:hover,
.menu-category-nav a:focus-visible,
.menu-item:hover,
.menu-page .menu-item:hover,
.compact-menu-grid article:hover,
.review-control:hover,
.review-control:focus-visible,
.review-placeholder:hover,
.location-card:hover,
.location-card .location-call:hover,
.location-card .location-call:focus-visible,
.location-card .location-order:hover,
.location-card .location-order:focus-visible,
.footer-order-options a:hover,
.footer-order-options a:focus-visible,
.footer-order-options a:hover b,
.footer-order-options a:focus-visible b,
.social-links a:hover,
.social-links a:focus-visible,
.order-location-actions a:hover,
.order-location-actions a:focus-visible,
.js .location-card.reveal.is-visible:hover,
.js .review-placeholder.reveal.is-visible:hover {
  transform: none !important;
}

.menu-preview-image:hover img,
.product-card-real:hover img,
.story-image:hover img,
.gallery-item:hover img {
  transform: none !important;
}

.menu-item:hover,
.menu-page .menu-item:hover,
.compact-menu-grid article:hover {
  box-shadow: none;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--accent-hot); }

.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(0); }

@media (max-width: 1050px) {
  .hero .site-header,
  body.header-hidden .hero .site-header { transform: none; }
}

@media (max-width: 760px) {
  body.is-scrolled .hero .site-header { min-height: 72px; }
  body.is-scrolled .hero .brand img { height: 48px; }
}

/* Desktop footer begins where the former Burger One logo column started. */
.footer-grid {
  gap: clamp(24px, 3vw, 48px);
  grid-template-columns:
    minmax(140px, 0.8fr)
    minmax(190px, 1.1fr)
    minmax(140px, 0.85fr)
    minmax(100px, 0.55fr)
    minmax(60px, 0.3fr);
  width: 100%;
}

.footer-socials .social-links { margin-top: 0; }

.brand .burger-one-logo {
  display: block;
  height: 56px;
  max-width: 52px;
  object-fit: contain;
  width: auto;
}

.halal-certified-logo {
  aspect-ratio: 960 / 949;
  display: block;
  height: auto;
  object-fit: contain;
  width: clamp(48px, 4vw, 60px);
}

.footer-certification {
  align-items: flex-end;
  justify-self: end;
}

@media (max-width: 1050px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-certification { justify-self: start; }
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand .burger-one-logo { height: 48px; max-width: 44px; }
  .footer-socials { grid-column: auto; }
  .halal-certified-logo { width: 50px; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-certification { justify-self: start; }
  .halal-certified-logo { width: 46px; }
}

/* Founder accent at the section boundary */
.story-section { position: relative; }
.story-founder {
  display: block;
  margin-top: 34px;
  max-width: 590px;
}
.founder-caricature {
  bottom: 0;
  left: max(var(--page-gutter), calc((min(100vw, var(--site-width)) - var(--content-width)) / 2));
  margin: 0;
  pointer-events: none;
  position: absolute;
  width: clamp(135px, 10.4vw, 172px);
  z-index: 2;
}

/* Single-location ordering */
.order-dialog.order-dialog-compact {
  max-width: 520px;
  padding: 38px 30px 30px;
}
.order-dialog-compact h2,
.order-dialog-compact.order-dialog-single h2 {
  font-size: clamp(30px, 3.7vw, 42px);
  line-height: 1;
  margin: 12px auto 16px;
  max-width: 430px;
}
.order-dialog-location {
  color: #ff7771;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.order-dialog-actions {
  background: #ffffff;
  border-radius: 5px;
  margin-top: 24px;
  padding: 16px;
}
.order-dialog-actions a {
  border-radius: 5px;
  font-size: 12px;
  min-height: 54px;
  padding: 15px 16px;
}
.order-dialog-actions .order-call b { font-size: 12px; }
.footer-order-actions {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.footer-order-actions a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 22px;
}
.footer-order-actions span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-order-actions strong {
  font-size: 14px;
  text-align: right;
}
.footer-order-call { background: var(--accent); border-color: var(--accent) !important; }
.footer-order-call:hover,
.footer-order-call:focus-visible { background: var(--accent-hot); border-color: var(--accent-hot) !important; }
.footer-order-online { background: rgba(8, 8, 8, 0.84); }
.footer-order-online:hover,
.footer-order-online:focus-visible { background: #ffffff; border-color: #ffffff !important; color: #050505; }

@media (max-width: 760px) {
  .story-section { padding-bottom: calc(var(--mobile-section-final) + 118px); }
  .story-founder { margin-top: 24px; }
  .founder-caricature {
    left: var(--mobile-gutter-final);
    width: 135px;
  }
  .order-dialog.order-dialog-compact {
    border-radius: 5px 5px 0 0;
    max-height: min(76dvh, 520px);
    padding: 48px var(--mobile-gutter-final) calc(20px + env(safe-area-inset-bottom));
  }
  .order-dialog-compact h2,
  .order-dialog-compact.order-dialog-single h2 {
    font-size: clamp(29px, 8.8vw, 36px);
    margin: 10px auto 12px;
  }
  .order-dialog-actions { margin-top: 20px; padding: 12px; }
  .order-dialog-actions a { font-size: 12px; min-height: 54px; padding: 14px; }
  .footer-order-actions { gap: 10px; }
  .footer-order-actions a {
    min-height: 58px;
    padding: 15px 16px;
  }
  .footer-order-actions span,
  .footer-order-actions strong { font-size: 12px; }
}

@media (max-width: 390px) {
  .footer-order-actions a {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .footer-order-actions strong { text-align: left; }
}

/* Static IONOS 404 page */
.error-page {
  background: #050505;
  color: #ffffff;
  min-height: 100svh;
}
.error-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin-inline: auto;
  min-height: 100svh;
  max-width: var(--site-width);
  padding: 0 max(24px, calc((min(100vw, var(--site-width)) - var(--content-width)) / 2));
  position: relative;
}
.error-shell::before {
  background: var(--accent);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.error-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  min-height: 94px;
}
.error-brand img {
  display: block;
  height: 58px;
  object-fit: contain;
  width: auto;
}
.error-nav {
  display: flex;
  gap: 28px;
}
.error-nav a,
.error-footer a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.error-nav a:focus-visible,
.error-footer a:focus-visible { outline: 3px solid #ffffff; outline-offset: 4px; }
.error-content {
  align-self: center;
  max-width: 1000px;
  padding: clamp(70px, 11vh, 130px) 0;
}
.error-content h1 {
  color: #ffffff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(54px, 8vw, 126px);
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 18px 0 0;
  text-transform: uppercase;
}
.error-content > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  margin: 32px 0 0;
  max-width: 610px;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.error-actions .button {
  border-radius: 5px;
  justify-content: center;
  min-height: 56px;
}
.error-actions .button:hover { transform: none; }
.error-actions .button:focus-visible { outline: 3px solid #ffffff; outline-offset: 3px; }
.error-footer {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.54);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  min-height: 78px;
}
.error-footer nav { display: flex; gap: 26px; }

@media (max-width: 760px) {
  .error-shell { padding: 0 var(--mobile-gutter-final); }
  .error-header { min-height: 78px; }
  .error-brand img { height: 48px; }
  .error-nav { gap: 16px; }
  .error-nav a { font-size: 11px; }
  .error-content { padding: 64px 0; }
  .error-content h1 { font-size: clamp(44px, 14vw, 68px); line-height: 0.92; }
  .error-content > p:not(.section-kicker) { margin-top: 26px; }
  .error-actions { display: grid; margin-top: 30px; width: 100%; }
  .error-actions .button { width: 100%; }
  .error-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding: 22px 0;
  }
}
