:root {
  --ink: #090806;
  --charcoal: #15110d;
  --red: #b7191c;
  --red-deep: #7e1012;
  --cream: #fff4df;
  --warm-white: #fff4df;
  --paper: #f4e4c6;
  --gold: #d9a94b;
  --muted: #b8a68b;
  --line: rgba(255, 244, 223, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --motion-duration-xs: 120ms;
  --motion-duration-s: 180ms;
  --motion-duration-m: 280ms;
  --motion-duration-l: 480ms;
  --motion-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-reveal-distance: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(9, 8, 6, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 244, 223, 0.12);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background-color var(--motion-duration-m) var(--motion-ease-standard),
    border-color var(--motion-duration-m) var(--motion-ease-standard),
    box-shadow var(--motion-duration-m) var(--motion-ease-standard);
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(9, 8, 6, 0.92);
  border-bottom-color: rgba(255, 244, 223, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  height: auto;
  width: clamp(136px, 12vw, 164px);
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
}

nav a {
  color: rgba(255, 244, 223, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.4vw, 28px);
}

.language-switcher {
  align-items: center;
  background: rgba(255, 244, 223, 0.08);
  border: 1px solid rgba(255, 244, 223, 0.18);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  min-height: 40px;
  padding: 3px 4px 3px 12px;
}

.language-switcher span {
  color: rgba(255, 244, 223, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher select {
  appearance: none;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  min-height: 32px;
  min-width: 64px;
  padding: 8px 24px 8px 12px;
}

.language-switcher button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 244, 223, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1;
  min-width: 30px;
  padding: 7px 8px;
}

.language-switcher button.is-active {
  background: var(--red);
  color: var(--cream);
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 244, 223, 0.1);
  border: 1px solid rgba(255, 244, 223, 0.2);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--cream);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 18px;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-logo {
  display: block;
  height: auto;
  margin-bottom: 28px;
  max-width: min(300px, 72vw);
  width: 300px;
}

.section-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-width: 220px;
  width: 220px;
}

.section-logo.dark {
  margin-bottom: 22px;
}

.franchise-logo {
  margin-bottom: 26px;
}

.hero {
  background: var(--ink);
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-poster,
.hero-image,
.hero-video {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image,
.hero-video {
  object-fit: cover;
  object-position: var(--hero-focus-desktop, 64% 52%);
  transform: scale(var(--hero-scale-desktop, 1.08));
}

.hero-video {
  display: none;
}

.hero-media[data-media-mode="video"] .hero-video {
  display: block;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.97) 0%, rgba(9, 8, 6, 0.80) 32%, rgba(9, 8, 6, 0.22) 56%, rgba(9, 8, 6, 0.02) 82%),
    linear-gradient(0deg, rgba(9, 8, 6, 0.56) 0%, transparent 32%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.18) 0%, transparent 26%);
  inset: 0;
  position: absolute;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 132px 0 72px clamp(22px, 7vw, 92px);
  position: relative;
  width: min(700px, 52%);
  z-index: 1;
}

.kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 7.4vw, 96px);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: 980px;
}

.hero h1 {
  color: #fffaf0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(56px, 5.5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin-bottom: 26px;
  max-width: 620px;
  text-transform: none;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 244, 223, 0.82);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.hero-secondary {
  border-bottom: 1px solid rgba(255, 244, 223, 0.48);
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 0 9px;
}

.hero-secondary-arrow {
  color: var(--red);
  margin-left: 8px;
}

.hero-proof {
  color: rgba(255, 244, 223, 0.48);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.hero-actions .button.primary {
  border-radius: 2px;
  transition: box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.hero-actions .button.primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.hero-actions .button.primary:active { box-shadow: none; filter: brightness(0.94); transform: translateY(1px); }
.hero-actions .button.primary:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }
.hero-actions .hero-secondary:hover { border-color: var(--cream); color: #fffaf0; }
.hero-actions .hero-secondary:focus-visible { outline: 2px solid var(--cream); outline-offset: 4px; }

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes hero-settle {
  from { opacity: 0.82; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes motion-reveal-y {
  from {
    opacity: 0;
    transform: translate3d(0, var(--motion-reveal-distance), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-reveal-opacity {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes motion-reveal-scale {
  from { transform: scale(1.02); }
  to { transform: scale(1); }
}

@keyframes motion-menu-open {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-media { animation: hero-settle 900ms ease-out both; }
.hero-content > * { animation: hero-enter 520ms ease-out both; }
.hero-content > :first-child { animation-delay: 40ms; }
.hero-content > :nth-child(2) { animation-delay: 120ms; }
.hero-content > :nth-child(3) { animation-delay: 220ms; }
.hero-content > :nth-child(4) { animation-delay: 300ms; }
.hero-content > :nth-child(5) { animation-delay: 360ms; }

.motion-reveal {
  --motion-delay: 0ms;
}

.section-heading .motion-reveal,
.hungry-cta > .motion-reveal,
.visit-cta > .motion-reveal,
.social-follow > div:first-child.motion-reveal,
.franchise-hero > .motion-reveal,
#menu .full-menu-panel.motion-reveal {
  --motion-reveal-distance: 16px;
}

.motion-reveal.is-motion-active {
  animation:
    motion-reveal-y
    var(--motion-duration-l)
    var(--motion-ease-standard)
    var(--motion-delay)
    backwards;
}

.social .reel.motion-reveal.is-motion-active {
  animation:
    motion-reveal-opacity
    var(--motion-duration-l)
    var(--motion-ease-standard)
    var(--motion-delay)
    backwards;
  transform: none;
}

.motion-reveal.is-motion-settled {
  opacity: 1;
  transform: none;
}

.motion-reveal.is-motion-active:focus-within {
  animation: none;
  opacity: 1;
  transform: none;
}

.motion-delay-1 { --motion-delay: 60ms; }
.motion-delay-2 { --motion-delay: 120ms; }
.motion-delay-3 { --motion-delay: 180ms; }

#craft .craft-card:nth-child(4n + 2),
#menu .menu-card:nth-child(4n + 2) { --motion-delay: 60ms; }

#craft .craft-card:nth-child(4n + 3),
#menu .menu-card:nth-child(4n + 3) { --motion-delay: 120ms; }

#craft .craft-card:nth-child(4n),
#menu .menu-card:nth-child(4n) { --motion-delay: 180ms; }

#locations .location-card:nth-child(3n + 2) { --motion-delay: 60ms; }
#locations .location-card:nth-child(3n) { --motion-delay: 120ms; }

.social .reel { --motion-delay: 0ms; }

@media (min-width: 681px) {
  #menu .menu-card.motion-reveal.is-motion-active .menu-photo {
    animation:
      motion-reveal-scale
      var(--motion-duration-l)
      var(--motion-ease-standard)
      var(--motion-delay)
      backwards;
  }
}

.button,
.card-actions a {
  border: 1px solid rgba(255, 244, 223, 0.38);
  border-radius: 4px;
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  min-width: 118px;
  padding: 14px 18px;
  text-transform: uppercase;
}

.button.primary,
.card-actions a:first-child {
  background: var(--red);
  border-color: var(--red);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 1160px;
}

.section-heading h2 {
  max-width: 900px;
}

.split {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.text-link {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  flex: 0 0 auto;
  font-weight: 800;
  margin-bottom: 24px;
}

.site-header nav a,
.language-switcher select,
.menu-toggle,
.text-link,
.full-menu-panel .button,
.journey-cta .button,
.social-actions .button,
.franchise .button,
.location-card .card-actions a,
.legal-links a,
.mobile-sticky-cta a {
  transition:
    background-color var(--motion-duration-s) var(--motion-ease-standard),
    border-color var(--motion-duration-s) var(--motion-ease-standard),
    color var(--motion-duration-s) var(--motion-ease-standard),
    box-shadow var(--motion-duration-s) var(--motion-ease-standard),
    transform var(--motion-duration-s) var(--motion-ease-standard);
}

@media (hover: hover) and (pointer: fine) {
  .full-menu-panel .button:hover,
  .journey-cta .button:hover,
  .social-actions .button:hover,
  .franchise .button:hover {
    transform: translateY(-1px);
  }

  .location-card.motion-reveal:not(.is-motion-active):hover {
    border-color: rgba(183, 25, 28, 0.26);
    box-shadow: 0 16px 42px rgba(47, 27, 8, 0.1);
    transform: translateY(-2px);
  }

  .location-card.motion-reveal:not(.is-motion-active):hover .store-image {
    transform: scale(1.02);
  }
}

.full-menu-panel .button:active,
.journey-cta .button:active,
.social-actions .button:active,
.franchise .button:active,
.mobile-sticky-cta a:active {
  transform: translateY(1px);
  transition-duration: var(--motion-duration-xs);
}

.craft {
  background: linear-gradient(180deg, var(--ink), #1a120c);
}

.craft-grid,
.menu-grid,
.location-grid,
.support-grid,
.reels-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1160px;
}

.craft-grid {
  grid-template-columns: repeat(4, 1fr);
}

.craft-card {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 45% 18%, rgba(255, 244, 223, 0.3), transparent 18%),
    linear-gradient(135deg, #372317, #0c0907 58%, #5a1414);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.craft-card::before {
  background: url("public/assets/craft-ai/craft-noodles.jpg") center / cover;
  content: "";
  filter: saturate(1.18) contrast(1.08) brightness(1.1);
  inset: 0;
  opacity: 0.95;
  position: absolute;
  z-index: 0;
}

.craft-card.broth::before {
  background-image: url("public/assets/craft-ai/craft-broth.jpg");
}

.craft-card.tare::before {
  background-image: url("public/assets/craft-ai/craft-tare.jpg");
}

.craft-card.bowl::before {
  background-image: url("public/assets/craft-ai/craft-bowl.jpg");
}

.craft-card::after {
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.18), rgba(9, 8, 6, 0.32) 42%, rgba(9, 8, 6, 0.86)),
    radial-gradient(circle at 80% 14%, rgba(183, 25, 28, 0.18), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.craft-card > * {
  position: relative;
  z-index: 2;
}

.kanji,
.kanji-art {
  display: block;
}

.kanji {
  color: rgba(255, 244, 223, 0.52);
  font-family: "Yuji Syuku", "Yuji Boku", "HanziPen SC", "Klee One", "Hiragino Mincho ProN", "YuMincho", serif;
  font-size: clamp(86px, 7vw, 118px);
  margin-bottom: 92px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.66);
}

.kanji-art {
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.72));
  height: 116px;
  margin: -6px 0 auto -8px;
  object-fit: contain;
  object-position: left top;
  opacity: 0.9;
  width: min(210px, 74%);
}

.craft-card.broth .kanji-art {
  height: 132px;
}

.craft-card.tare .kanji-art,
.craft-card.bowl .kanji-art {
  height: 118px;
}

.craft-card h3 {
  margin-top: auto;
}

.craft-card p {
  min-height: 84px;
}

.craft-card p,
.menu-card p,
.location-body p,
.franchise-hero p,
.support-grid p {
  color: rgba(255, 244, 223, 0.72);
  line-height: 1.65;
}

.menu {
  background: #120f0c;
}

.menu-grid {
  grid-template-columns: repeat(4, 1fr);
}

.menu-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.menu-card > :not(.menu-photo) {
  position: relative;
  z-index: 1;
}

.menu-photo {
  aspect-ratio: 4 / 3;
  background: #0c0907;
  border-radius: 0;
  display: block;
  height: auto;
  margin: 0 0 24px;
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
}

.menu-card h3,
.menu-card p,
.menu-card .jp,
.menu-note {
  margin-left: 24px;
  margin-right: 24px;
}

.menu-card h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  margin-bottom: 12px;
}

.menu-card p:not(.jp) {
  min-height: 78px;
}

.menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 24px 18px;
}

.menu-badge {
  align-items: center;
  border: 1px solid rgba(255, 244, 223, 0.18);
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  min-height: 30px;
  padding: 8px 10px;
  text-transform: uppercase;
  white-space: normal;
}

.menu-badge.bestseller {
  background: rgba(202, 159, 65, 0.18);
  border-color: rgba(202, 159, 65, 0.42);
  color: #ffd976;
}

.menu-badge.popular,
.menu-badge.spice {
  background: rgba(183, 25, 28, 0.2);
  border-color: rgba(230, 58, 51, 0.42);
  color: #ffb1a7;
}

.menu-badge.signature,
.menu-badge.staff {
  background: rgba(255, 244, 223, 0.12);
  border-color: rgba(255, 244, 223, 0.28);
  color: var(--cream);
}

.menu-badge.rich {
  background: rgba(149, 82, 29, 0.28);
  border-color: rgba(214, 139, 72, 0.42);
  color: #ffc08a;
}

.menu-badge.vegan {
  background: rgba(70, 139, 72, 0.24);
  border-color: rgba(117, 186, 105, 0.46);
  color: #b8ef9a;
}

.menu-badge.mild {
  background: rgba(255, 244, 223, 0.18);
  border-color: rgba(255, 244, 223, 0.3);
  color: #ffe8bd;
}

.menu-note {
  border-top: 1px solid var(--line);
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 20px;
  padding: 18px 0 24px;
  text-transform: uppercase;
}

.full-menu-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(162, 17, 27, 0.22), rgba(9, 8, 6, 0.76)),
    url("public/assets/menu-categories-uploaded/tonkotsu-ramen-web.webp") center 42% / cover;
  border: 1px solid rgba(237, 198, 91, 0.24);
  border-radius: 8px;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 32px;
  min-height: 190px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

#craft .full-menu-panel {
  margin: clamp(52px, 7vw, 88px) auto 0;
  max-width: 1160px;
  width: 100%;
}

.full-menu-panel::before {
  background: rgba(9, 8, 6, 0.5);
  content: "";
  inset: 0;
  position: absolute;
}

.full-menu-panel > * {
  position: relative;
  z-index: 1;
}

.full-menu-panel h3 {
  color: var(--warm-white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin: 6px 0 12px;
  max-width: 780px;
}

.full-menu-panel p:not(.kicker) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
  max-width: 680px;
}

.full-menu-panel .button {
  flex: 0 0 auto;
}

.journey-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.9), rgba(183, 25, 28, 0.2) 56%, rgba(9, 8, 6, 0.72)),
    url("public/assets/social-feed/social-night.jpg") center 50% / cover;
  border-top: 1px solid rgba(255, 244, 223, 0.12);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.journey-cta.visit-cta {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.92), rgba(9, 8, 6, 0.62)),
    url("public/assets/location-covers/reutlingen.jpg") center / cover;
}

.journey-cta h2 {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 10px;
}

.journey-cta p:not(.kicker) {
  color: rgba(255, 244, 223, 0.76);
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
  max-width: 660px;
}

.pdf-viewer-page {
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.82), rgba(9, 8, 6, 0.96)),
    url("public/assets/hero/hakata-tonkotsu-mainz-desktop.webp") center / cover fixed;
}

.pdf-hero {
  padding-top: 160px;
}

.pdf-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}

.pdf-card {
  background: rgba(19, 15, 12, 0.82);
  border: 1px solid rgba(255, 246, 229, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.pdf-card-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 246, 229, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 20px 22px;
}

.pdf-card-header h2 {
  color: var(--warm-white);
  font-size: clamp(24px, 3vw, 38px);
  margin: 0;
}

.pdf-card-header .text-link {
  white-space: nowrap;
}

.pdf-frame {
  background: #1a1714;
  border: 0;
  display: block;
  height: min(78vh, 920px);
  width: 100%;
}

.jp {
  color: var(--gold);
  font-weight: 900;
}

details {
  border-top: 1px solid var(--line);
  bottom: 22px;
  left: 22px;
  padding-top: 16px;
  position: absolute;
  right: 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

ul {
  color: rgba(255, 244, 223, 0.78);
  line-height: 1.8;
  padding-left: 18px;
}

.locations {
  background: var(--paper);
  color: var(--ink);
}

.locations .kicker,
.locations .text-link {
  color: var(--red);
}

.location-grid {
  align-items: stretch;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
  background:
    linear-gradient(180deg, #fff9ed, #f7ecdc);
  border: 1px solid rgba(9, 8, 6, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(47, 27, 8, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition:
    border-color var(--motion-duration-m) var(--motion-ease-standard),
    box-shadow var(--motion-duration-m) var(--motion-ease-standard),
    transform var(--motion-duration-m) var(--motion-ease-standard);
}

.store-image {
  aspect-ratio: 16 / 9;
  background: #100d0b;
  filter: saturate(1.08) contrast(1.04);
  min-height: 0;
  position: relative;
  text-decoration: none;
  transform: scale(1);
  transition: transform var(--motion-duration-m) var(--motion-ease-standard);
  width: 100%;
}

.store-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.store-image::after {
  background: linear-gradient(90deg, rgba(183, 25, 28, 0.2), transparent 46%);
  box-shadow: inset 0 0 0 1px rgba(255, 244, 223, 0.16);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.store-image.berlin {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/dortmund.jpg");
}

.store-image.duesseldorf {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/kaiserslautern.jpg");
}

.store-image.amsterdam {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/goettingen.jpg");
}

.store-image.mg {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/mg.jpg");
}

.store-image.wuppertal {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/wuppertal.jpg");
}

.store-image.braunschweig {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/braunschweig.jpg");
}

.store-image.kassel {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/kassel.jpg");
}

.store-image.maastricht {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/maastricht.jpg");
}

.store-image.ingolstadt {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/ingolstadt-storefront-20260604.jpg");
}

.store-image.hamburg {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/logo-cover.jpg");
}

.store-image.reutlingen {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/reutlingen.jpg");
}

.store-image.mainz {
  background-image:
    linear-gradient(180deg, rgba(9, 8, 6, 0.06), rgba(9, 8, 6, 0.72)),
    url("public/assets/location-covers/mainz.jpg");
}

.store-image.duesseldorf {
  background-position: 66% 50%;
}

.store-image.amsterdam {
  background-position: 34% 56%;
}

.store-image.mg,
.store-image.kassel,
.store-image.hamburg,
.store-image.mainz {
  background-position: 50% 42%;
}

.store-image.wuppertal,
.store-image.maastricht {
  background-position: 62% 54%;
}

.store-image.reutlingen {
  background-position: 48% 44%;
}

.store-image.braunschweig,
.store-image.ingolstadt {
  background-position: 44% 50%;
}

.location-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.location-body h3 {
  color: #130d09;
  font-size: clamp(30px, 2.4vw, 40px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.location-body p {
  color: rgba(9, 8, 6, 0.72);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
  margin-bottom: 18px;
  min-height: 48px;
}

.location-body .location-tag {
  align-items: center;
  background: #14100c;
  border: 1px solid rgba(9, 8, 6, 0.12);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(47, 27, 8, 0.12);
  color: var(--cream);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 12px;
  min-height: 30px;
  padding: 8px 10px;
  text-transform: uppercase;
  width: fit-content;
}

.quick-info {
  display: grid;
  gap: 0;
  margin: 4px 0 18px;
}

.quick-info div {
  align-items: start;
  background: transparent;
  border-bottom: 1px solid rgba(9, 8, 6, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: 94px 1fr;
  padding: 12px 0;
}

.quick-info dt {
  align-items: center;
  color: rgba(9, 8, 6, 0.52);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-info dd {
  color: rgba(9, 8, 6, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.location-card .card-actions a {
  color: var(--ink);
  justify-content: center;
  min-height: 46px;
  min-width: 0;
}

.location-card .card-actions a[data-action="view"],
.location-card .card-actions a:first-child {
  color: var(--cream);
}

.location-card .card-actions {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
}

.location-card .card-actions a[data-action="view"] {
  grid-column: 1 / -1;
}

.location-card .card-actions a[data-action="reserve"],
.location-card .card-actions a[data-action="order"] {
  background: #211a14;
  border-color: #211a14;
  color: var(--cream);
}

.location-card .card-actions a[data-action="call"] {
  background: transparent;
  border-color: rgba(9, 8, 6, 0.18);
}

.location-card.coming-soon .card-actions a:first-child {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.location-grid {
  gap: 22px;
}

.location-card {
  background: #fff8ec;
  border-color: rgba(9, 8, 6, 0.1);
  box-shadow: none;
  transition:
    border-color var(--motion-duration-m) var(--motion-ease-standard),
    box-shadow var(--motion-duration-m) var(--motion-ease-standard),
    transform var(--motion-duration-m) var(--motion-ease-standard);
}

.store-image {
  aspect-ratio: 4 / 3;
}

.store-image::after {
  background: linear-gradient(180deg, transparent 62%, rgba(9, 8, 6, 0.2));
}

.location-body {
  padding: 20px;
}

.location-body h3 {
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.location-body > p,
.location-body .location-tag {
  display: none;
}

.quick-info {
  margin: 0 0 18px;
}

.quick-info div {
  border-bottom: 0;
  display: block;
  padding: 0 0 10px;
}

.quick-info dt {
  color: rgba(9, 8, 6, 0.60);
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.quick-info dd {
  color: rgba(9, 8, 6, 0.76);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
  text-align: left;
}

.location-card .card-actions {
  align-items: center;
  border-top: 1px solid rgba(9, 8, 6, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  grid-template-columns: none;
  padding-top: 16px;
}

.location-card .card-actions a {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(9, 8, 6, 0.72);
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
}

.location-card .card-actions a[data-action="view"],
.location-card .card-actions a:first-child {
  background: transparent;
  border: 0;
  color: var(--red);
  grid-column: auto;
}

.location-card .card-actions a[data-action="reserve"],
.location-card .card-actions a[data-action="order"],
.location-card .card-actions a[data-action="call"] {
  display: none;
}

.social {
  background: #100d0b;
}

.store-page {
  background: var(--charcoal);
  color: var(--cream);
}

.store-hero-detail {
  align-items: end;
  display: grid;
  min-height: 82vh;
  padding: 150px clamp(18px, 5vw, 72px) 72px;
  position: relative;
}

.store-hero-bg {
  background: #090806;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.store-hero-bg img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.store-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.9) 0%, rgba(9, 8, 6, 0.54) 48%, rgba(9, 8, 6, 0.2)),
    linear-gradient(180deg, rgba(9, 8, 6, 0.08), rgba(9, 8, 6, 0.78));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.store-hero-copy {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.store-hero-copy h1 {
  font-size: clamp(68px, 12vw, 164px);
  line-height: 0.88;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.store-hero-copy > p:not(.kicker) {
  color: rgba(255, 244, 223, 0.82);
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.35;
  max-width: 760px;
}

.store-hero-copy .hero-actions {
  flex-wrap: wrap;
}

.store-detail-section {
  background: var(--paper);
  color: var(--ink);
}

.store-detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  margin-bottom: 42px;
}

.store-contact-card {
  background: #fff9ed;
  border: 1px solid rgba(9, 8, 6, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(47, 27, 8, 0.1);
  padding: clamp(24px, 3vw, 36px);
}

.store-contact-card h2 {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.95;
  margin-bottom: 22px;
}

.store-contact-card > p:not(.kicker) {
  color: rgba(9, 8, 6, 0.72);
  font-size: 20px;
  line-height: 1.55;
}

.store-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.gallery-tile {
  align-items: end;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.02), rgba(9, 8, 6, 0.76)),
    var(--gallery-image) center / cover;
  border: 1px solid rgba(255, 244, 223, 0.18);
  border-radius: 8px;
  display: flex;
  min-height: 320px;
  overflow: hidden;
  padding: 22px;
}

.gallery-tile.main {
  aspect-ratio: auto;
}

.gallery-tile span {
  background: rgba(9, 8, 6, 0.72);
  border-radius: 6px;
  color: var(--cream);
  font-size: 18px;
  font-weight: 900;
  padding: 10px 12px;
}

.reels-grid {
  grid-template-columns: repeat(6, 1fr);
}

.reel {
  align-items: end;
  aspect-ratio: 9 / 16;
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.02), rgba(9, 8, 6, 0.24) 45%, rgba(9, 8, 6, 0.78)),
    var(--reel-image) center / cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  min-height: 260px;
  padding: 16px;
}

.reel span {
  background: rgba(9, 8, 6, 0.62);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 10px;
}

.reel.guest { --reel-image: url("public/assets/social-feed/social-guest-ramen.jpg"); }
.reel.noodles { --reel-image: url("public/assets/social-feed/social-noodle-craft.jpg"); }
.reel.tonkotsu { --reel-image: url("public/assets/social-feed/social-tonkotsu.jpg"); }
.reel.broth { --reel-image: url("public/assets/social-feed/social-broth.jpg"); }
.reel.kitchen { --reel-image: url("public/assets/social-feed/social-kitchen.jpg"); }
.reel.drinks { --reel-image: url("public/assets/social-feed/social-drinks.jpg"); }
.reel.gyoza { --reel-image: url("public/assets/social-feed/social-gyoza.jpg"); }
.reel.karaage-don { --reel-image: url("public/assets/social-feed/social-karaage-don.jpg"); }
.reel.spicy-miso { --reel-image: url("public/assets/social-feed/social-spicy-miso.jpg"); }
.reel.takoyaki { --reel-image: url("public/assets/social-feed/social-takoyaki.jpg"); }
.reel.service { --reel-image: url("public/assets/social-feed/social-service.jpg"); }
.reel.night { --reel-image: url("public/assets/social-feed/social-night.jpg"); }

.social-follow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 26px auto 0;
  max-width: 1160px;
  padding: 24px;
}

.social-follow h3 {
  margin-bottom: 0;
}

.social-actions {
  display: flex;
  gap: 12px;
}

.franchise {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.9), rgba(9, 8, 6, 0.64)),
    url("public/assets/ramen-hero-night.png") center / cover;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.franchise-hero {
  align-self: center;
}

.franchise-hero h2 {
  max-width: 620px;
}

.franchise-hero p {
  font-size: 18px;
  max-width: 560px;
}

.support-grid {
  grid-template-columns: repeat(2, 1fr);
}

.support-grid article {
  background: rgba(21, 17, 13, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.support-grid span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 42px;
}

.site-footer {
  align-items: center;
  background: #050403;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.footer-copy {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.site-footer img {
  display: block;
  max-width: min(280px, 58vw);
  width: 280px;
}

.site-footer p {
  color: rgba(255, 244, 223, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.mobile-sticky-cta {
  display: none;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  color: rgba(255, 244, 223, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--cream);
}

.brand:focus-visible,
.site-header nav a:focus-visible,
.language-switcher select:focus-visible,
.menu-toggle:focus-visible,
.text-link:focus-visible,
.full-menu-panel .button:focus-visible,
.journey-cta .button:focus-visible,
.social-actions .button:focus-visible,
.franchise .button:focus-visible,
.legal-links a:focus-visible,
.mobile-sticky-cta a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.location-card .card-actions a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.store-image:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.legal-page {
  background: #100d0b;
}

.legal-content {
  background: var(--warm-white);
  color: #17100c;
  padding: 150px clamp(22px, 7vw, 92px) 80px;
}

.legal-content article {
  margin: 0 auto;
  max-width: 920px;
}

.legal-content h1 {
  color: #17100c;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.92;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

.legal-content [data-legacy-legal-source] > h1 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
}

.legal-content h2 {
  color: #17100c;
  font-size: clamp(24px, 4vw, 40px);
  margin-top: 44px;
  overflow-wrap: anywhere;
}

.legal-content h3 {
  overflow-wrap: anywhere;
}

.legal-content p,
.legal-content li {
  color: rgba(23, 16, 12, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content a {
  color: #b81018;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.legal-note {
  background: rgba(184, 16, 24, 0.08);
  border-left: 4px solid #b81018;
  padding: 16px 18px;
}

.validation {
  background: var(--ink);
}

.validation ul {
  columns: 2;
  max-width: 980px;
}

.subpage-hero {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.95), rgba(9, 8, 6, 0.58)),
    url("public/assets/ramen-hero-night.png") center / cover;
  min-height: 72vh;
  padding: 150px clamp(22px, 7vw, 92px) 80px;
}

.subpage-hero p {
  color: rgba(255, 244, 223, 0.78);
  font-size: 20px;
  line-height: 1.65;
  max-width: 720px;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin: 28px auto 0;
  max-width: 980px;
}

.timeline article {
  background: rgba(255, 244, 223, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 86px 1fr;
  padding: 22px;
}

.timeline article::before {
  color: var(--gold);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 28px;
  font-weight: 900;
}

.compact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1160px;
}

.compact-grid article {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.franchise-page {
  background: #100d0b;
}

.franchise-lead-hero {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.94), rgba(9, 8, 6, 0.62) 48%, rgba(9, 8, 6, 0.22)),
    url("public/assets/location-covers/reutlingen.jpg") center / cover;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.franchise-hero-shade {
  background:
    radial-gradient(circle at 70% 72%, rgba(183, 25, 28, 0.22), transparent 28%),
    linear-gradient(0deg, #100d0b 0%, rgba(16, 13, 11, 0) 34%);
  inset: 0;
  position: absolute;
}

.franchise-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 120px clamp(22px, 7vw, 92px) 80px;
  position: relative;
  width: min(880px, 100%);
  z-index: 1;
}

.franchise-lead-copy h1 {
  font-size: clamp(58px, 9.4vw, 132px);
  line-height: 0.88;
}

.franchise-lead-copy > p:not(.kicker) {
  color: rgba(255, 244, 223, 0.82);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  max-width: 760px;
}

.franchise-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scroll-indicator {
  bottom: 34px;
  color: rgba(255, 244, 223, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  text-transform: uppercase;
  z-index: 2;
}

.section-intro {
  color: rgba(255, 244, 223, 0.72);
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 420px;
}

.franchise-proof {
  background: #100d0b;
}

.why-grid,
.support-system,
.store-proof-grid,
.opening-steps,
.trust-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1160px;
}

.proof-assets {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin: 0 auto;
  max-width: 1160px;
}

.proof-assets img {
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.proof-copy {
  display: grid;
  gap: 14px;
}

.proof-copy article {
  background: rgba(255, 244, 223, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
}

.proof-copy strong {
  color: var(--cream);
  display: block;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.proof-copy p {
  color: rgba(255, 244, 223, 0.72);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.franchise-why {
  background: linear-gradient(180deg, #100d0b, #17100c);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid article,
.store-proof-grid article {
  background: rgba(255, 244, 223, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.why-grid img,
.store-proof-grid img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.why-grid div,
.store-proof-grid div {
  padding: 22px;
}

.why-grid span,
.opening-steps span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.why-grid p,
.support-system p,
.partner-copy p,
.store-proof-grid p,
.opening-steps p,
.inquiry-copy p {
  color: rgba(255, 244, 223, 0.72);
  line-height: 1.6;
}

.franchise-mid-cta,
.franchise-final-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(183, 25, 28, 0.28), rgba(9, 8, 6, 0.9)),
    url("public/assets/social-feed/social-noodle-craft.jpg") center / cover;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.franchise-final-cta {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.92), rgba(9, 8, 6, 0.62)),
    url("public/assets/location-covers/ingolstadt-storefront-20260604.jpg") center / cover;
}

.franchise-mid-cta h2,
.franchise-final-cta h2 {
  font-size: clamp(34px, 5vw, 70px);
  margin-bottom: 0;
}

.franchise-final-cta p:not(.kicker) {
  color: rgba(255, 244, 223, 0.76);
  font-size: 20px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.inquiry-copy a {
  color: var(--gold);
  font-weight: 900;
}

.franchise-support {
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.84), rgba(9, 8, 6, 0.94)),
    url("public/assets/social-feed/social-kitchen.jpg") center / cover;
}

.support-system {
  grid-template-columns: repeat(4, 1fr);
}

.support-system article,
.opening-steps article {
  background: rgba(9, 8, 6, 0.72);
  border: 1px solid rgba(255, 244, 223, 0.18);
  border-radius: 8px;
  min-height: 170px;
  padding: 24px;
}

.support-system span {
  color: var(--cream);
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

.partner-section {
  align-items: center;
  background: var(--warm-white);
  color: #17100c;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.05fr 0.95fr;
}

.partner-section h2,
.partner-section .kicker {
  color: #17100c;
}

.partner-copy p {
  color: rgba(23, 16, 12, 0.74);
  font-size: 20px;
}

.partner-list {
  display: grid;
  gap: 14px;
}

.partner-list span {
  background: #17100c;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  color: var(--cream);
  font-size: 22px;
  font-weight: 900;
  padding: 22px 24px;
}

.expansion-section {
  background: #100d0b;
}

.market-opportunities {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1.1fr 1fr;
  margin: 0 auto;
  max-width: 1160px;
}

.market-panel,
.market-focus {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.market-panel {
  background: rgba(255, 244, 223, 0.06);
}

.market-panel h3,
.market-focus h3 {
  color: var(--cream);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.market-focus {
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.22), rgba(9, 8, 6, 0.82)),
    url("public/assets/location-covers/reutlingen.jpg") center / cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}

.market-focus p:not(.kicker) {
  color: rgba(255, 244, 223, 0.72);
  line-height: 1.7;
  margin: 0;
}

.market-city-list,
.market-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.market-city-list span,
.market-type-list span {
  background: rgba(255, 244, 223, 0.09);
  border: 1px solid rgba(255, 244, 223, 0.14);
  border-radius: 4px;
  color: rgba(255, 244, 223, 0.82);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  padding: 9px 10px;
}

.market-city-list span {
  color: var(--cream);
}

.real-stores {
  background: #17100c;
}

.store-proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.how-section {
  background: #100d0b;
}

.opening-steps {
  grid-template-columns: repeat(5, 1fr);
}

.inquiry-section {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.94), rgba(9, 8, 6, 0.76)),
    url("public/assets/location-covers/mainz.jpg") center / cover;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.75fr 1.25fr;
}

.inquiry-section.franchise-neutral {
  background: var(--charcoal);
}

.franchise-neutral .inquiry-unavailable,
.franchise-neutral .inquiry-unavailable strong,
.franchise-neutral .inquiry-unavailable p {
  opacity: 1;
  visibility: visible;
}

.inquiry-form {
  background: var(--warm-white);
  border-radius: 8px;
  color: #17100c;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px;
}

.inquiry-form label {
  color: rgba(23, 16, 12, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: #fffaf0;
  border: 1px solid rgba(23, 16, 12, 0.18);
  border-radius: 4px;
  color: #17100c;
  display: block;
  font: inherit;
  margin-top: 8px;
  min-height: 48px;
  padding: 12px;
  width: 100%;
}

.message-field,
.consent,
.inquiry-form button,
.form-success {
  grid-column: 1 / -1;
}

.consent {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.consent input {
  min-height: 0;
  width: auto;
}

.form-success {
  background: rgba(30, 112, 62, 0.12);
  border: 1px solid rgba(30, 112, 62, 0.22);
  border-radius: 6px;
  color: #1e703e;
  display: none;
  font-weight: 900;
  margin: 0;
  padding: 14px;
}

.inquiry-form.is-submitted .form-success {
  display: block;
}

.inquiry-unavailable {
  align-self: stretch;
  background: var(--warm-white);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  color: #17100c;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.inquiry-unavailable strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.inquiry-unavailable p {
  color: rgba(23, 16, 12, 0.74);
  line-height: 1.55;
  margin: 0;
}

.trust-section {
  background: #100d0b;
}

.trust-grid {
  grid-template-columns: repeat(6, 1fr);
}

.trust-grid img {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1200px) {
  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .craft-grid,
  .menu-grid,
  .location-grid,
  .reels-grid,
  .store-gallery,
  .franchise,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card {
    min-height: 390px;
  }

  .split {
    align-items: flex-start;
    flex-direction: column;
  }

  .full-menu-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-cta,
  .social-follow,
  .franchise-mid-cta,
  .franchise-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    margin-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    align-items: flex-start;
    text-align: left;
  }

  .legal-links {
    flex-wrap: wrap;
  }

  .why-grid,
  .support-system,
  .store-proof-grid,
  .opening-steps,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-opportunities,
  .partner-section,
  .inquiry-section,
  .proof-assets,
  .store-detail-grid {
    grid-template-columns: 1fr;
  }

  .market-panel,
  .market-focus {
    min-height: 300px;
  }

  .opening-steps {
    align-items: stretch;
  }

  #craft .craft-card:nth-child(n),
  #menu .menu-card:nth-child(n),
  #locations .location-card:nth-child(n),
  .support-grid article:nth-child(n) {
    --motion-delay: 0ms;
  }

  #craft .craft-card:nth-child(2n),
  #menu .menu-card:nth-child(2n),
  #locations .location-card:nth-child(2n) {
    --motion-delay: 60ms;
  }
}

@media (max-width: 820px) {
  body:has(> .mobile-sticky-cta) {
    padding-bottom: 74px;
  }

  .site-header {
    align-items: center;
    min-height: 68px;
    padding: 12px 16px;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
  }

  .site-header:has(.menu-toggle) nav {
    background: rgba(9, 8, 6, 0.96);
    border: 1px solid rgba(255, 244, 223, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 16px;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: calc(100% + 8px);
    width: auto;
  }

  .site-header.is-open:has(.menu-toggle) nav {
    animation:
      motion-menu-open
      var(--motion-duration-m)
      var(--motion-ease-standard);
    display: flex;
  }

  .site-header:has(.menu-toggle) nav a {
    border-radius: 6px;
    font-size: 16px;
    min-height: 48px;
    padding: 14px 12px;
  }

  .language-switcher {
    min-height: 44px;
    padding-left: 10px;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher select {
    min-height: 36px;
    min-width: 66px;
    padding-right: 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-sticky-cta {
    background: rgba(9, 8, 6, 0.94);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 244, 223, 0.14);
    bottom: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 20;
  }

  .mobile-sticky-cta a {
    align-items: center;
    background: rgba(255, 244, 223, 0.1);
    border: 1px solid rgba(255, 244, 223, 0.18);
    border-radius: 6px;
    color: var(--cream);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 10px 8px;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--red);
    border-color: var(--red);
  }
}

@media (max-width: 680px) {
  body:has(> .mobile-sticky-cta) {
    padding-bottom: 74px;
  }

  .site-header {
    align-items: center;
    min-height: 68px;
    padding: 12px 16px;
  }

  .header-actions {
    gap: 8px;
    margin-left: auto;
  }

  #craft .craft-card:nth-child(n),
  #menu .menu-card:nth-child(n),
  #locations .location-card:nth-child(n),
  .support-grid article:nth-child(n),
  .social .reel:nth-child(n) {
    --motion-delay: 0ms;
  }

  .site-header:has(.menu-toggle) nav {
    background: rgba(9, 8, 6, 0.96);
    border: 1px solid rgba(255, 244, 223, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 16px;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: calc(100% + 8px);
    width: auto;
  }

  .site-header.is-open:has(.menu-toggle) nav {
    display: flex;
  }

  .site-header:has(.menu-toggle) nav a {
    border-radius: 6px;
    font-size: 16px;
    min-height: 48px;
    padding: 14px 12px;
  }

  .language-switcher {
    min-height: 44px;
    padding-left: 10px;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher select {
    min-height: 36px;
    min-width: 66px;
    padding-right: 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-sticky-cta {
    background: rgba(9, 8, 6, 0.94);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 244, 223, 0.14);
    bottom: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 20;
  }

  .mobile-sticky-cta a {
    align-items: center;
    background: rgba(255, 244, 223, 0.1);
    border: 1px solid rgba(255, 244, 223, 0.18);
    border-radius: 6px;
    color: var(--cream);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 10px 8px;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--red);
    border-color: var(--red);
  }

  .hero-logo {
    margin-bottom: 22px;
    width: min(190px, 54vw);
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-image,
  .hero-video {
    object-position: var(--hero-focus-mobile, 68% 50%);
    transform: scale(var(--hero-scale-mobile, 1.08)) translateY(var(--hero-mobile-shift, -5%));
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 8, 6, 0.97) 0%, rgba(9, 8, 6, 0.68) 48%, rgba(9, 8, 6, 0.16) 78%, rgba(9, 8, 6, 0.06) 100%),
      linear-gradient(90deg, rgba(9, 8, 6, 0.46), rgba(9, 8, 6, 0.02));
  }

  .section-logo {
    max-width: 180px;
    width: 180px;
  }

  .hero-content {
    justify-content: flex-end;
    min-height: calc(100svh - 68px);
    padding: 104px 18px 54px;
    text-align: left;
    width: 100%;
  }

  h1 {
    font-size: clamp(42px, 12vw, 76px);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero h1 {
    font-size: clamp(48px, 14.8vw, 68px);
    line-height: 0.96;
    margin-bottom: 22px;
    max-width: 360px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.48;
    margin-bottom: 24px;
    max-width: 340px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
    width: 100%;
  }

  .card-actions,
  .social-actions,
  .franchise-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .franchise-hero-actions {
    grid-template-columns: 1fr;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: min(100%, 354px);
  }

  .hero-secondary {
    min-height: 44px;
  }

  .hero-proof {
    font-size: 9px;
    line-height: 1.5;
    max-width: 330px;
  }

  .card-actions a,
  .social-actions .button,
  .franchise-hero-actions .button,
  .inquiry-form button,
  .journey-cta .button,
  .franchise-mid-cta .button,
  .franchise-final-cta .button {
    min-height: 48px;
    width: 100%;
  }

  .section {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .location-body,
  .store-contact-card,
  .inquiry-form {
    padding: 20px;
  }

  .menu-card {
    min-height: 0;
  }

  .menu-card p:not(.jp) {
    min-height: 0;
  }

  .menu-badges {
    margin-bottom: 16px;
  }

  .menu-badge {
    max-width: 100%;
    min-height: 32px;
  }

  .full-menu-panel {
    padding: 26px;
  }

  .full-menu-panel .button,
  .pdf-card-header .text-link {
    width: 100%;
  }

  .pdf-hero {
    padding-top: 190px;
  }

  .pdf-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdf-frame {
    height: 72vh;
  }

  .craft-grid,
  .menu-grid,
  .location-grid,
  .reels-grid,
  .store-gallery,
  .franchise,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .store-hero-detail {
    min-height: 72vh;
    padding-top: 132px;
  }

  .store-hero-copy h1 {
    font-size: clamp(56px, 18vw, 88px);
  }

  .quick-info div {
    grid-template-columns: 1fr;
  }

  .quick-info dd {
    text-align: left;
  }

  .gallery-tile,
  .gallery-tile.main {
    aspect-ratio: 4 / 5;
    min-height: 260px;
  }

  .craft-card {
    min-height: 290px;
  }

  .kanji {
    margin-bottom: 58px;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reel {
    min-height: 220px;
  }

  dl div {
    display: block;
  }

  dd {
    text-align: left;
  }

  .validation ul {
    columns: 1;
  }

  .timeline article,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .franchise-lead-copy {
    justify-content: flex-end;
    padding-top: 160px;
  }

  .franchise-lead-copy h1 {
    font-size: clamp(46px, 15vw, 72px);
    line-height: 0.94;
  }

  .franchise-lead-copy > p:not(.kicker) {
    font-size: 21px;
  }

  .why-grid,
  .support-system,
  .store-proof-grid,
  .opening-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .partner-section {
    padding-top: 88px;
  }

  .partner-list span {
    font-size: 18px;
  }

  .market-focus {
    min-height: 360px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 720px) and (max-height: 640px) {
  .hero-content { padding: 70px 14px 66px; }
  .hero-logo { margin-bottom: 8px; width: 135px; }
  .hero h1 { font-size: 40px; margin-bottom: 10px; max-width: 275px; }
  .hero-copy { font-size: 14px; line-height: 1.35; margin-bottom: 10px; }
  .hero-actions { gap: 2px; margin-bottom: 8px; }
  .hero-actions .button { min-height: 44px; }
  .hero-secondary { min-height: 40px; }
  .hero-proof { font-size: 8px; line-height: 1.3; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-content > *,
  .motion-reveal.is-motion-active,
  #menu .menu-card.motion-reveal.is-motion-active .menu-photo,
  .site-header.is-open:has(.menu-toggle) nav {
    animation: none;
  }

  .motion-reveal,
  .motion-reveal.is-motion-active,
  .motion-reveal.is-motion-settled {
    --motion-delay: 0ms;
    opacity: 1;
    transform: none;
  }

  .site-header,
  .site-header nav a,
  .language-switcher select,
  .menu-toggle,
  .menu-toggle span,
  .text-link,
  .full-menu-panel .button,
  .journey-cta .button,
  .social-actions .button,
  .franchise .button,
  .location-card,
  .store-image,
  .location-card .card-actions a,
  .legal-links a,
  .mobile-sticky-cta a {
    transition-duration: 0s;
  }

  .location-card:hover,
  .location-card:hover .store-image,
  .location-card.motion-reveal:not(.is-motion-active):hover,
  .location-card.motion-reveal:not(.is-motion-active):hover .store-image,
  .full-menu-panel .button:hover,
  .full-menu-panel .button:active,
  .journey-cta .button:hover,
  .journey-cta .button:active,
  .social-actions .button:hover,
  .social-actions .button:active,
  .franchise .button:hover,
  .franchise .button:active,
  .mobile-sticky-cta a:active {
    transform: none;
  }

  .hero-media[data-media-mode="video"] .hero-video {
    display: none;
  }
}

.location-card .card-actions {
  width: auto;
}

.location-card .card-actions a {
  min-height: 44px;
  width: auto;
}

/* Immersive Storyboard Phase 1 — Batch 1 */
.hero-continue {
  align-items: center;
  animation: hero-continue-enter var(--motion-duration-l) var(--motion-ease-standard) both;
  bottom: 24px;
  color: rgba(255, 244, 223, 0.78);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  left: 50%;
  letter-spacing: 0.1em;
  min-height: 44px;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-continue:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

@keyframes hero-continue-enter {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.chapter-index {
  align-items: stretch;
  background: #100d0b;
  border-bottom: 1px solid rgba(255, 244, 223, 0.1);
  border-top: 1px solid rgba(255, 244, 223, 0.1);
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.chapter-index a {
  align-items: center;
  border-bottom: 2px solid transparent;
  color: rgba(255, 244, 223, 0.62);
  display: inline-flex;
  flex: 0 1 190px;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 58px;
  padding: 10px 16px;
  text-transform: uppercase;
}

.chapter-index a[aria-current="location"] {
  border-bottom-color: var(--red);
  color: var(--cream);
}

.chapter-index a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: -4px;
}

.chapter-index__number {
  color: var(--gold);
  font-size: 10px;
}

.menu-rail {
  margin: 0 auto;
  max-width: 1200px;
  width: min(100%, calc(48vw + 516px));
}

.editorial-rail__track {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.has-rail-enhancement .editorial-rail__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 20px;
  scroll-padding-inline: 0;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--red) rgba(255, 244, 223, 0.12);
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
}

.menu-panel {
  min-height: 590px;
}

.has-rail-enhancement .menu-panel {
  flex-basis: clamp(620px, 52vw, 760px);
  flex-grow: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.menu-media {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: #0c0907;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.menu-media .menu-photo {
  aspect-ratio: auto;
  height: 100%;
  margin: 0;
  max-width: 588px;
  object-fit: cover;
  object-position: 50% 50%;
  width: min(100%, 588px);
}

.editorial-rail__controls {
  align-items: center;
  border-top: 1px solid var(--line);
  display: none;
  gap: 16px;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  margin-top: 4px;
  padding-top: 16px;
}

.has-rail-enhancement .editorial-rail__controls {
  display: grid;
}

.editorial-rail__controls button {
  background: transparent;
  border: 1px solid rgba(255, 244, 223, 0.34);
  border-radius: 2px;
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 16px;
}

.editorial-rail__controls button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.editorial-rail__controls button:focus-visible,
.menu-panel:focus-visible,
.editorial-rail__track:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

.editorial-rail__status {
  color: rgba(255, 244, 223, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .menu-rail {
    max-width: 900px;
    width: 100%;
  }

  .has-rail-enhancement .menu-panel {
    --menu-panel-width: min(68vw, 680px);
    flex-basis: var(--menu-panel-width);
  }
}

@media (max-width: 1023px) {
  .menu-rail {
    max-width: 100%;
  }

  .has-rail-enhancement .menu-panel {
    --menu-panel-width: 76vw;
  }
}

@media (max-width: 820px) {
  .chapter-index {
    display: none;
  }
}

@media (max-width: 767px) {
  .menu-rail {
    max-width: 450px;
  }

  .editorial-rail__track {
    grid-template-columns: 1fr;
  }

  .has-rail-enhancement .menu-panel {
    --menu-panel-width: min(80%, 360px);
    flex-basis: var(--menu-panel-width);
    min-height: 0;
  }

  .menu-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) and (max-height: 640px) {
  .hero-continue {
    bottom: 8px;
    font-size: 9px;
    min-height: 36px;
    padding-block: 4px;
  }

  .editorial-rail__controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-rail__status {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .editorial-rail__controls button {
    grid-row: 2;
    width: 100%;
  }
}

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

[data-storyboard-reduced-motion] .hero-continue {
  animation: none;
}

/* Immersive Storyboard Phase 1 — Batch 2 People and Kitchen */
.people-composition {
  margin: 0 auto;
  max-width: 1160px;
}

.people-collage {
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  grid-template-columns: repeat(13, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  height: clamp(680px, 64vw, 780px);
  isolation: isolate;
}

.people-collage-card {
  background: #090806;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.people-collage-card--phone {
  grid-column: 1 / 7;
  grid-row: 1 / 9;
}

.people-collage-card--dough {
  grid-column: 7 / 10;
  grid-row: 1 / 5;
}

.people-collage-card--food-1 {
  grid-column: 10 / 14;
  grid-row: 2 / 7;
}

.people-collage-card--food-2 {
  grid-column: 7 / 10;
  grid-row: 5 / 10;
}

.people-collage-card--food-4 {
  grid-column: 10 / 14;
  grid-row: 7 / 11;
}

.people-collage-card--food-5 {
  border: clamp(7px, 0.8vw, 10px) solid #090806;
  grid-column: 3 / 7;
  grid-row: 8 / 11;
  transform: translateY(clamp(8px, 1vw, 14px));
  z-index: 2;
}

.people-collage-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.people-collage-card--phone img { object-position: 50% 48%; }
.people-collage-card--dough img { object-position: 52% 50%; }
.people-collage-card--food-1 img,
.people-collage-card--food-2 img { object-position: 50% 48%; }
.people-collage-card--food-4 img,
.people-collage-card--food-5 img { object-position: 50% 50%; }

.people-composition .motion-reveal.is-motion-active {
  animation:
    motion-reveal-opacity
    var(--motion-duration-l)
    var(--motion-ease-standard)
    var(--motion-delay)
    backwards;
  transform: none;
}

.people-actions .button:first-child {
  min-width: 180px;
}

@media (max-width: 980px) {
  .people-collage {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(10, minmax(0, 1fr));
    height: clamp(700px, 98vw, 790px);
  }

  .people-collage-card--phone {
    grid-column: 1 / 6;
    grid-row: 1 / 8;
  }

  .people-collage-card--dough {
    grid-column: 6 / 9;
    grid-row: 1 / 4;
  }

  .people-collage-card--food-1 {
    grid-column: 6 / 9;
    grid-row: 4 / 8;
  }

  .people-collage-card--food-2 {
    grid-column: 1 / 4;
    grid-row: 8 / 11;
  }

  .people-collage-card--food-4 {
    grid-column: 4 / 7;
    grid-row: 7 / 10;
  }

  .people-collage-card--food-5 {
    grid-column: 6 / 9;
    grid-row: 8 / 11;
  }
}

@media (max-width: 680px) {
  .people-composition {
    max-width: 520px;
  }

  .people-collage {
    gap: 8px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(12, minmax(0, 1fr));
    height: clamp(500px, 118vw, 640px);
    overflow: hidden;
  }

  .people-collage-card--phone {
    aspect-ratio: auto;
    grid-column: 1 / 5;
    grid-row: 1 / 7;
    width: auto;
  }

  .people-collage-card--dough {
    aspect-ratio: auto;
    grid-column: 5 / 7;
    grid-row: 2 / 6;
    width: auto;
  }

  .people-collage-card--food-1 {
    aspect-ratio: auto;
    border: 6px solid #090806;
    grid-column: 4 / 7;
    grid-row: 6 / 10;
    margin-top: -8px;
    width: auto;
    z-index: 2;
  }

  .people-collage-card--food-2 {
    aspect-ratio: auto;
    grid-column: 1 / 4;
    grid-row: 7 / 11;
    margin-top: 0;
    width: auto;
  }

  .people-collage-card--food-4 {
    aspect-ratio: auto;
    border: 6px solid #090806;
    grid-column: 3 / 7;
    grid-row: 10 / 13;
    margin-top: -8px;
    width: auto;
    z-index: 2;
  }

  .people-collage-card--food-5 {
    aspect-ratio: auto;
    border-width: 6px;
    grid-column: 1 / 3;
    grid-row: 10 / 13;
    margin-top: -2px;
    transform: none;
    width: auto;
    z-index: 3;
  }

  .social-follow {
    margin-top: 18px;
  }

  .people-actions {
    width: 100%;
  }

  .people-actions .button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .people-composition .motion-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Immersive Storyboard Phase 1 — Batch 3 Location Discovery */
#locations {
  isolation: isolate;
  position: relative;
  z-index: 1;
}

.location-discovery {
  margin: 0 auto;
  max-width: 1160px;
}

.location-discovery__bar {
  align-items: center;
  border-bottom: 1px solid rgba(9, 8, 6, 0.14);
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.all-locations-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  min-height: 44px;
  padding: 12px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.all-locations-link--after {
  display: none;
}

.location-list {
  min-height: 680px;
  padding-right: min(62%, 720px);
  position: relative;
}

.location-disclosure {
  border-bottom: 1px solid rgba(9, 8, 6, 0.12);
  border-top: 0;
  bottom: auto;
  left: auto;
  padding-top: 0;
  position: static;
  right: auto;
}

.location-disclosure__summary {
  align-items: center;
  color: rgba(9, 8, 6, 0.72);
  cursor: pointer;
  display: flex;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  min-height: 44px;
  padding: 10px 4px;
}

.location-disclosure__summary::-webkit-details-marker {
  display: none;
}

.location-disclosure__summary:focus-visible,
.all-locations-link:focus-visible,
.location-detail .store-image:focus-visible,
.location-detail .card-actions a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.location-disclosure[open] .location-disclosure__summary {
  color: var(--red);
}

.location-disclosure:not([open]) > .location-detail {
  display: none;
}

.location-disclosure__indicator {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.location-disclosure[open] .location-disclosure__indicator {
  transform: rotate(45deg);
}

.location-detail {
  background: #f4ead6;
  border: 1px solid rgba(9, 8, 6, 0.12);
  display: block;
  padding: clamp(18px, 2.5vw, 32px);
  position: absolute;
  right: 0;
  top: 0;
  width: min(60%, 690px);
}

.location-detail .store-image {
  aspect-ratio: 2 / 1;
  display: block;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  min-height: 0;
}

.location-detail .store-image img {
  object-fit: cover;
}

.location-disclosure[data-store="dortmund"] .store-image {
  aspect-ratio: 16 / 9;
}

.location-disclosure[data-store="ingolstadt"] .store-image {
  aspect-ratio: 16 / 9;
}

.location-disclosure[data-store="ingolstadt"] .store-image img {
  object-position: 50% 15%;
}

.location-disclosure[data-store="goettingen"] .store-image {
  aspect-ratio: 16 / 9;
}

.location-disclosure[data-store="goettingen"] .store-image img {
  object-position: 50% 0%;
}

.location-disclosure[data-store="kassel"] .store-image img {
  object-position: 50% 0%;
}

.location-detail__content {
  min-width: 0;
}

.location-detail__content > p {
  color: rgba(9, 8, 6, 0.68);
  line-height: 1.65;
  margin: 0 0 22px;
}

.location-detail .quick-info {
  display: grid;
  gap: 0;
  margin: 0;
}

.location-detail .quick-info div {
  border-bottom: 1px solid rgba(9, 8, 6, 0.1);
  display: block;
  padding: 12px 0;
}

.location-detail .quick-info dt,
.location-detail .quick-info dd {
  text-align: left;
}

.location-detail .card-actions {
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
  padding-top: 0;
}

.location-detail .card-actions a {
  align-items: center;
  color: rgba(9, 8, 6, 0.72);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  min-height: 44px;
  text-decoration: none;
}

.location-detail .card-actions a[data-action="view"] {
  color: var(--cream);
}

.location-detail .card-actions a[data-action="directions"] {
  color: var(--red);
}

@media (max-width: 1200px) {
  .location-list {
    padding-right: min(60%, 650px);
  }

  .location-detail {
    width: min(58%, 620px);
  }
}

@media (max-width: 820px) {
  .location-list {
    min-height: 640px;
    padding-right: min(57%, 440px);
  }

  .location-detail {
    display: block;
    width: min(54%, 420px);
  }

  .location-detail .store-image {
    aspect-ratio: 2 / 1;
    min-height: 0;
    margin-bottom: 18px;
  }
}

@media (max-width: 680px) {
  .location-discovery__bar {
    justify-content: flex-start;
  }

  .location-list {
    min-height: 0;
    padding-right: 0;
  }

  .location-disclosure__summary {
    font-size: 18px;
    padding: 10px 2px;
  }

  .location-detail {
    background: rgba(255, 255, 255, 0.3);
    border: 0;
    border-top: 1px solid rgba(9, 8, 6, 0.1);
    display: block;
    padding: 16px 0 24px;
    position: static;
    width: 100%;
  }

  .location-detail .store-image {
    aspect-ratio: 2 / 1;
    margin-bottom: 18px;
  }

  .location-detail__content > p {
    margin-bottom: 12px;
  }

  .location-detail .card-actions {
    margin-top: 14px;
  }

  .all-locations-link--after {
    display: inline-flex;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-disclosure__indicator {
    transition: none;
  }
}

[data-storyboard-reduced-motion] .location-disclosure__indicator {
  transition: none;
}

/* Immersive Storyboard Phase 1 — Batch 4 Craft State B */
.craft-state-b {
  display: grid;
  gap: clamp(42px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1160px;
}

.craft-material {
  align-self: stretch;
  background:
    linear-gradient(145deg, rgba(255, 244, 223, 0.055), transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 244, 223, 0.018) 0 1px, transparent 1px 9px);
  border-bottom: 1px solid rgba(255, 244, 223, 0.18);
  border-top: 1px solid rgba(255, 244, 223, 0.18);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.craft-material::before {
  background: var(--red);
  content: "";
  height: 84px;
  left: clamp(24px, 4vw, 54px);
  opacity: 0.88;
  position: absolute;
  top: clamp(28px, 5vw, 64px);
  width: 3px;
}

.craft-material__mark {
  position: absolute;
}

.craft-material__mark img {
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
  height: 100%;
  object-fit: contain;
  opacity: 0.86;
  width: 100%;
}

.craft-material__mark--noodles {
  height: 190px;
  left: 15%;
  top: 18%;
  transform: rotate(-4deg);
  width: 156px;
}

.craft-material__mark--broth {
  height: 260px;
  right: 9%;
  top: 7%;
  transform: rotate(3deg);
  width: 126px;
}

.craft-material__mark--tare {
  bottom: 8%;
  height: 218px;
  left: 10%;
  transform: rotate(2deg);
  width: 112px;
}

.craft-material__mark--bowl {
  bottom: 11%;
  height: 192px;
  right: 12%;
  transform: rotate(-5deg);
  width: 125px;
}

.craft-sequence {
  list-style: none;
  margin: 0;
  padding: 0;
}

.craft-step {
  border-top: 1px solid rgba(255, 244, 223, 0.18);
  display: grid;
  gap: clamp(18px, 3vw, 36px);
  grid-template-columns: 44px minmax(0, 1fr);
  padding: clamp(22px, 3vw, 34px) 0;
}

.craft-step:last-child {
  border-bottom: 1px solid rgba(255, 244, 223, 0.18);
}

.craft-step__number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding-top: 5px;
}

.craft-step h3 {
  font-size: clamp(22px, 2.3vw, 32px);
  margin: 0 0 8px;
}

.craft-step p {
  color: rgba(255, 244, 223, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

@media (max-width: 980px) {
  .craft-state-b {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .craft-material {
    min-height: 220px;
  }

  .craft-material__mark--noodles {
    height: 116px;
    left: 15%;
    top: 24%;
    width: 94px;
  }

  .craft-material__mark--broth {
    height: 160px;
    right: 31%;
    top: 7%;
    width: 78px;
  }

  .craft-material__mark--tare {
    bottom: 6%;
    height: 132px;
    left: 45%;
    width: 68px;
  }

  .craft-material__mark--bowl {
    bottom: 10%;
    height: 126px;
    right: 10%;
    width: 82px;
  }
}

@media (max-width: 680px) {
  .craft-state-b {
    gap: 26px;
  }

  .craft-material {
    min-height: 144px;
  }

  .craft-material::before {
    height: 52px;
    left: 18px;
    top: 22px;
  }

  .craft-material__mark--noodles {
    height: 82px;
    left: 12%;
    top: 28%;
    width: 68px;
  }

  .craft-material__mark--broth {
    height: 108px;
    right: 34%;
    top: 8%;
    width: 54px;
  }

  .craft-material__mark--tare {
    bottom: 5%;
    height: 88px;
    left: 47%;
    width: 46px;
  }

  .craft-material__mark--bowl {
    bottom: 12%;
    height: 82px;
    right: 8%;
    width: 54px;
  }

  .craft-step {
    gap: 14px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px 0;
  }

  .craft-step h3 {
    font-size: 22px;
  }

  .craft-step p {
    font-size: 15px;
  }
}

/* Immersive Storyboard Phase 1 — Batch 4 Franchise State B */
.franchise.franchise-state-b {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.04) 0%, rgba(8, 7, 6, 0.08) 48%, rgba(8, 7, 6, 0.5) 100%),
    url("public/assets/franchise/franchise-sun-background.webp") center / cover no-repeat;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  min-height: clamp(400px, 32vw, 500px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.franchise-state-b__copy {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

.franchise-state-b__copy h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  margin: 0 0 clamp(22px, 3vw, 38px);
}

.franchise-email {
  color: var(--cream);
  display: inline-block;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: color var(--motion-duration-s) ease;
}

.franchise-email:hover {
  color: var(--gold);
}

.franchise-email:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--cream);
  outline-offset: 5px;
}

.franchise-state-b__media {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.franchise-state-b__media::after {
  background: linear-gradient(90deg, transparent 64%, rgba(18, 15, 12, 0.36));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.franchise-state-b__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  width: 100%;
}

@media (max-width: 980px) {
  .franchise.franchise-state-b {
    background-position: 42% center;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr);
  }

  .franchise-state-b__copy {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .franchise.franchise-state-b {
    align-items: end;
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.08) 0%, rgba(8, 7, 6, 0.28) 52%, rgba(8, 7, 6, 0.86) 100%),
      url("public/assets/franchise/franchise-sun-background.webp") 35% center / cover no-repeat;
    gap: 24px;
    grid-template-columns: 1fr;
    min-height: 460px;
    padding-bottom: 44px;
    padding-top: 44px;
  }

  .franchise-state-b__copy {
    align-self: end;
    grid-column: 1;
    width: 100%;
  }

  .franchise-state-b__copy h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

}
