:root {
  --bg: #0b0a09;
  --bg-soft: #12100e;
  --panel: #171411;
  --panel-2: #211b16;
  --text: #f7efe6;
  --muted: #c8b9a8;
  --dim: #8f8173;
  --line: rgba(255, 239, 220, 0.12);
  --line-strong: rgba(255, 130, 40, 0.38);
  --orange: #ff7628;
  --orange-2: #ff9a3d;
  --wolt: #10a7f5;
  --bolt: #39d987;
  --radius: 14px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --nav-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 118, 40, 0.12), transparent 34rem),
    radial-gradient(circle at 10% 25%, rgba(140, 38, 5, 0.18), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 500ms ease;
}

body.page-ready {
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  font: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.5rem, 13vw, 10rem);
  overflow-wrap: anywhere;
}

h1 small {
  display: block;
  color: var(--orange);
  font-size: clamp(2.3rem, 5.5vw, 4.75rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(255, 118, 40, 0);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 118, 40, 0.2);
}

.btn:active,
.menu-card-order:active,
.category-tab:active,
.fries-variant:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--orange);
  color: #160b05;
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.header,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  min-height: var(--nav-height);
  overflow: visible;
  border: none !important;
  background: rgba(0, 0, 0, 0.92) !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.navbar.scrolled,
.navbar:focus-within {
  border: none;
  background: rgba(8, 8, 8, 0.06) !important;
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-container,
.navbar-inner {
  width: min(1240px, calc(100% - 28px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: translateY(2px);
  transition: transform 220ms ease, filter 220ms ease;
}

.nav-logo:hover img,
.nav-logo:focus-visible img {
  transform: translateY(2px) scale(1.04);
  filter: drop-shadow(0 0 16px rgba(255, 122, 0, 0.32));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-inline: auto;
}

.nav-menu a {
  position: relative;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 154, 61, 0), rgba(255, 154, 61, 1), rgba(255, 154, 61, 0));
  opacity: 0;
  transform: scaleX(0.6);
  box-shadow: 0 0 0 rgba(255, 154, 61, 0);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange-2);
  text-shadow: 0 0 18px rgba(255, 154, 61, 0.22);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 16px rgba(255, 154, 61, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 999px;
  color: var(--text);
  background: rgba(10, 8, 6, 0.72);
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 28px rgba(0, 0, 0, 0.24);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.language-toggle:hover,
.language-switcher.active .language-toggle {
  border-color: rgba(255, 122, 0, 0.68);
  background: rgba(255, 118, 40, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.14), 0 12px 30px rgba(0, 0, 0, 0.32), 0 0 24px rgba(255, 122, 0, 0.12);
}

.language-toggle:hover {
  transform: translateY(-2px);
}

.language-toggle-flag {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 18px;
  background: rgba(10, 8, 6, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.language-switcher.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-size: 1.28rem;
  line-height: 1;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.language-option:hover,
.language-option:focus-visible {
  border-color: rgba(255, 122, 0, 0.48);
  background: rgba(255, 122, 0, 0.11);
  transform: translateY(-1px);
}

.language-option.active {
  border-color: #ff7a00;
  background: rgba(255, 122, 0, 0.14);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.14), 0 0 22px rgba(255, 122, 0, 0.16);
}

.nav-toggle {
  display: none;
}

.nav-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative !important;
  height: 100vh !important;
  min-height: 100vh !important;
  padding-top: var(--nav-height);
  display: grid;
  align-items: end;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 100, 0, 0.08), transparent 45%),
    #050505;
}

.hero--collage {
  min-height: 100vh;
}

.hero--collage::before,
.hero--collage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--collage::before {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.32) 42%,
      rgba(0, 0, 0, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.44) 100%
    );
}

.hero--collage::after {
  z-index: 2;
  background:
    radial-gradient(circle at 28% 58%, rgba(255, 100, 0, 0.14), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(255, 80, 0, 0.12), transparent 45%);
}

.hero-bg-image {
  position: absolute !important;
  inset: 0 !important;
  top: 56px !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0;
  transform: none !important;
  transition: transform 220ms ease-out;
  will-change: transform;
}

.hero-sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.75;
  mix-blend-mode: screen;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.52);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.96), rgba(11, 10, 9, 0.68) 44%, rgba(11, 10, 9, 0.26)),
    linear-gradient(0deg, var(--bg), transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  height: calc(100vh - var(--nav-height));
  min-height: calc(100vh - var(--nav-height));
  align-items: center;
  padding: 5.5rem 0 4rem;
}

.hero-copy {
  position: relative;
  max-width: 700px;
  margin-left: clamp(5rem, 11vw, 10rem);
  transform: translateY(-1.4rem);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -2rem -2.5rem -2.2rem -1.8rem;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 42%, rgba(11, 10, 9, 0.72) 0%, rgba(11, 10, 9, 0.48) 34%, rgba(11, 10, 9, 0.2) 60%, transparent 82%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.42), rgba(11, 10, 9, 0.18) 48%, transparent 100%);
}

.hero .container,
.hero-content {
  position: relative;
  z-index: 4;
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.82);
}

.hero-title {
  max-width: 11ch;
  line-height: 0.92;
  font-size: clamp(4rem, 11vw, 8.8rem);
}

.hero-title small {
  white-space: normal;
  font-size: clamp(1.8rem, 4.4vw, 3.8rem);
}

.hero-intro {
  max-width: 34ch;
  margin-top: 1.35rem;
  color: #f7e7d2;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
  white-space: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.15rem;
  transform: translateY(-18px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-proof li {
  min-width: 140px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(23, 20, 17, 0.72);
}

.hero-proof strong {
  display: block;
  color: var(--orange-2);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

/*
  Kapana Art Section — editorial storytelling block:
  left copy (label + Bebas Neue display title + 2 paragraphs),
  right side a two-image overlapping editorial collage.
  Dark BG with a soft top-right orange glow, 24px rounded images
  with a subtle orange border + glow. Mobile stacks copy first.
*/
.kapana-art-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 118, 40, 0.12), transparent 26rem),
    radial-gradient(circle at 6% 90%, rgba(140, 38, 5, 0.16), transparent 22rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  border-block: 1px solid var(--line);
}

.kapana-art-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.kapana-art-copy {
  max-width: 560px;
}

.kapana-art-copy h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 0.98;
}

.kapana-art-text {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.7;
}

.kapana-art-text:last-child {
  margin-bottom: 0;
}

.kapana-art-media {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: clamp(380px, 38vw, 540px);
}

.kapana-art-img {
  position: absolute;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 118, 40, 0.08),
    0 18px 50px rgba(255, 118, 40, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kapana-art-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kapana-art-img--primary {
  top: 0;
  right: 0;
  width: 76%;
  aspect-ratio: 4 / 5;
  z-index: 1;
}

.kapana-art-img--accent {
  left: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  border-color: rgba(255, 154, 61, 0.5);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 154, 61, 0.22),
    0 20px 60px rgba(255, 118, 40, 0.32);
}

.kapana-art-img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 154, 61, 0.28),
    0 22px 70px rgba(255, 118, 40, 0.34);
}

@media (max-width: 880px) {
  .kapana-art-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .kapana-art-copy {
    max-width: none;
  }

  .kapana-art-media {
    aspect-ratio: 5 / 4;
    min-height: 0;
    height: clamp(340px, 72vw, 520px);
    margin-inline: auto;
    width: min(100%, 520px);
  }
}

@media (max-width: 520px) {
  .kapana-art-img--primary {
    width: 82%;
  }

  .kapana-art-img--accent {
    width: 62%;
  }
}

.story-band {
  background: #100e0c;
  border-block: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.story-grid > div:last-child > p {
  max-width: 680px;
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.proof-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.proof-grid span {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.8rem;
}

.proof-grid h3 {
  margin: 0.45rem 0;
  font-size: 1.5rem;
}

.order-strip {
  padding-block: 4rem;
  background: var(--panel);
}

.order-strip-inner,
.visit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/*
  Homepage order-strip platform buttons — clickable logo images.
  Fixed 120×120 transparent wrapper per platform so all three buttons
  have IDENTICAL visual size regardless of the source aspect ratio.
  Image inside is capped at 100×100 with object-fit: contain so it
  never crops, never stretches, and stays centered. Subtle translateY
  on hover for affordance. The order.html cards (.order-platform-card.*)
  keep their own image+overlay overrides and are unaffected.
*/
.platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  overflow: visible;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(255, 122, 0, 0.2));
}

.platform-link-logo {
  display: block;
  width: 72px;
  height: 72px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.platform-link:hover .platform-link-logo,
.platform-link:focus-visible .platform-link-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 0 16px rgba(255, 122, 0, 0.18));
}

.platform-card {
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0b;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.platform-card-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.platform-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-card-logo {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 52%;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.platform-card.wolt {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, #00b6f0 0%, #0096d6 45%, #0077b6 100%);
  box-shadow: 0 0 30px rgba(0, 182, 240, 0.18);
}

.platform-card.takeaway {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(135deg, #ff9b21 0%, #ff6b00 58%, #d94c00 100%);
}

.platform-card.bolt {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.14), transparent 48%),
    linear-gradient(135deg, #4be477 0%, #24c85a 54%, #10933d 100%);
}

.page-hero {
  padding: calc(var(--nav-height) + 5rem) 0 4rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 118, 40, 0.18), transparent 38rem),
    var(--bg-soft);
}

body[data-page="order"] .page-hero {
  background-image:
    linear-gradient(135deg, rgba(255, 118, 40, 0.18), transparent 38rem),
    url('../assets/images/back.delivery.png');
  background-size: auto, cover;
  background-position: 0 0, center;
  background-repeat: no-repeat, no-repeat;
}

.menu-hero {
  position: relative;
  padding-bottom: 3.25rem;
  border-bottom: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../assets/images/menuback.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.menu-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.35) 55%,
    #050505 100%
  );
}

.menu-hero .container {
  position: relative;
  z-index: 1;
}

.menu-hero .eyebrow {
  display: none;
}

.menu-hero h1 {
  max-width: 760px;
  color: var(--orange);
}

.menu-hero p:not(.eyebrow) {
  color: rgba(255,255,255,.9);
  text-shadow: 0 3px 16px rgba(0,0,0,.55);
}

.contact-hero {
  position: relative;
  border-bottom: 0;
  overflow: hidden;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.42),
      rgba(0, 0, 0, 0.28)
    ),
    radial-gradient(
      circle at 12% 28%,
      rgba(255, 120, 0, 0.13) 0%,
      rgba(255, 120, 0, 0.06) 30%,
      rgba(255, 120, 0, 0) 62%
    ),
    url('../assets/images/contact-hero-kapana.png');
  background-size: auto, auto, cover;
  background-position: 0 0, 0 0, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.28) 55%,
    #050505 100%
  );
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 1rem;
  font-size: 1.08rem;
}

.menu-intro-section {
  padding: 1.25rem 0 0;
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.72), rgba(11, 10, 9, 0));
}

.menu-intro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  background: rgba(18, 15, 12, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.menu-intro-card .eyebrow {
  margin-bottom: 0.35rem;
}

.menu-intro-card strong {
  flex: 0 0 auto;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 999px;
  color: var(--orange-2);
  background: rgba(255, 118, 40, 0.11);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toolbar,
.menu-filters,
.category-filters {
  position: static;
  top: auto;
  z-index: auto;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 10, 9, 0.95);
  backdrop-filter: blur(16px);
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.08), 0 0 18px rgba(255, 122, 0, 0.1);
}

.category-tab.active {
  border-color: var(--orange);
  background: rgba(255, 118, 40, 0.16);
  color: var(--orange-2);
}

.menu-note {
  margin-top: 0.75rem;
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-section {
  padding-top: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

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

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 154, 61, 0.46);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 118, 40, 0.1),
    0 0 28px rgba(255, 118, 40, 0.14);
}

.menu-card-media {
  position: relative;
  width: calc(100% + 2px);
  margin: -1px -1px 0;
  aspect-ratio: 4 / 3;
  background: var(--panel-2);
  overflow: hidden;
}

.menu-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 420ms ease, filter 420ms ease;
}

.menu-card[data-category="drinks"] .menu-card-media {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 122, 0, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(33, 27, 22, 0.98), rgba(14, 11, 9, 1));
}

.menu-card[data-category="drinks"] .menu-card-media img {
  padding: 1rem;
  object-fit: contain;
  object-position: center;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.04);
}

.menu-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
  min-width: 0;
}

.menu-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.menu-card-category {
  color: var(--orange-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.menu-card-badges span {
  padding: 0.22rem 0.48rem;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 999px;
  color: var(--orange-2);
  background: rgba(255, 118, 40, 0.1);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card h2 {
  margin-top: 0.45rem;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.menu-card p {
  margin-top: 0.35rem;
  font-size: 0.94rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.price-grid.single-price {
  grid-template-columns: 1fr;
}

.price-grid span {
  padding: 0.78rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.09), transparent 70%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 20px rgba(255, 122, 0, 0.035);
}

.price-grid strong {
  display: block;
  color: var(--orange-2);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.12rem;
  text-transform: uppercase;
}

.ingredients,
.allergens {
  margin-top: 0.9rem;
}

.ingredients h3,
.allergens h3 {
  color: var(--orange-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ingredients ul,
.allergens ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0.5rem 0 0;
  list-style: none;
}

.ingredients li,
.allergens li {
  padding: 0.28rem 0.52rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.ingredients li:hover {
  border-color: rgba(255, 154, 61, 0.42);
  background: rgba(255, 118, 40, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 118, 40, 0.08), 0 0 18px rgba(255, 118, 40, 0.12);
  transform: translateY(-1px);
}

.allergens {
  margin-top: 0.75rem;
}

.allergens h3 {
  color: var(--dim);
}

.allergens li {
  color: var(--dim);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.7rem;
}

.menu-card-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #160b05;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(255, 118, 40, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.menu-card-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 118, 40, 0.32), 0 0 24px rgba(255, 118, 40, 0.16);
}

.loaded-fries-card {
  background:
    linear-gradient(135deg, rgba(255, 118, 40, 0.06), transparent 44%),
    var(--panel);
}

.loaded-fries-card:hover {
  transform: translateY(-4px);
}

.loaded-fries-media {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 153, 54, 0.14), transparent 48%),
    linear-gradient(145deg, #20130b 0%, #090706 54%, #030303 100%);
  box-shadow: inset 0 0 45px rgba(255, 122, 0, 0.08);
}

.loaded-fries-image {
  object-fit: cover;
  object-position: center;
  transition: opacity 220ms ease, transform 360ms ease;
}

.loaded-fries-card:hover .loaded-fries-image {
  transform: scale(1.04);
}

.loaded-fries-image.is-switching {
  opacity: 0;
}

.loaded-fries-price {
  max-width: none;
}

.fries-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.fries-variant {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fries-variant:hover,
.fries-variant.active {
  border-color: var(--orange);
  color: var(--orange-2);
  background: rgba(255, 118, 40, 0.13);
}

.fries-variant.active {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.13), 0 0 24px rgba(255, 122, 0, 0.16);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.order-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.order-platform-card {
  padding: 0;
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.order-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.order-platform-card span:not(.platform-card-media) {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

.order-platform-card strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visit-section {
  padding-top: 0;
}

.visit-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.map-panel {
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.visit-card:hover,
.contact-panel:hover {
  border-color: rgba(255, 154, 61, 0.3);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 118, 40, 0.06);
}

.map-panel:hover {
  border-color: rgba(255, 154, 61, 0.36);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 118, 40, 0.08);
}

.contact-list {
  margin: 1.25rem 0 1.75rem;
}

.contact-list div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.contact-list dd a {
  color: var(--text);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.contact-list dd a:hover,
.contact-list dd a:focus-visible {
  color: var(--orange-2);
  text-shadow: 0 0 14px rgba(255, 154, 61, 0.24);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 0.85rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  opacity: .9;
  transition: transform 250ms ease, opacity 250ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
}

.social-links img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: filter 250ms ease;
}

.social-links a:hover img,
.social-links a:focus-visible img {
  filter: drop-shadow(0 0 16px rgba(255, 122, 0, 0.22));
}

.map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  filter: grayscale(0.28) invert(0.9) hue-rotate(180deg) brightness(0.86);
}

.directions {
  margin-top: 1rem;
}

.directions p {
  margin-top: 0.45rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #080706;
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer img {
  width: 112px;
  height: auto;
  margin-bottom: 0.75rem;
  mix-blend-mode: screen;
}

.footer nav {
  display: grid;
  gap: 0.5rem;
}

.footer a {
  color: var(--muted);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer a:hover {
  color: var(--orange-2);
  text-shadow: 0 0 12px rgba(255, 154, 61, 0.2);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.85rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--delay, 0s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1 !important;
  }

  .hero-bg-image {
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .btn:hover,
  .category-tab:hover,
  .menu-card:hover,
  .menu-card-order:hover,
  .loaded-fries-card:hover,
  .order-platform-card:hover,
  .platform-link:hover,
  .social-links a:hover,
  .language-toggle:hover,
  .language-option:hover,
  .ingredients li:hover,
  .nav-logo:hover img {
    transform: none !important;
  }
}

@media (max-width: 1020px) {
  .container {
    width: min(1180px, calc(100% - 48px));
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .order-platform-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-hero {
    margin-top: 0;
    padding-top: calc(var(--nav-height) + 2.25rem);
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 70px;
  }

  .navbar {
    height: var(--nav-height);
    min-height: var(--nav-height);
    max-height: 70px;
  }

  .nav-container,
  .navbar-inner {
    width: min(100% - 24px, 1240px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-menu {
    position: fixed;
    inset: var(--nav-height) 0 auto;
    display: grid;
    justify-items: start;
    gap: 1.2rem;
    padding: 1.5rem 24px 2rem;
    border-bottom: 1px solid rgba(255, 120, 0, 0.08);
    background: rgba(8, 8, 8, 0.58);
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.36),
      0 0 30px rgba(255, 120, 0, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(calc(-100% - var(--nav-height)));
    transition: transform 180ms ease, background 0.35s ease, backdrop-filter 0.35s ease;
    margin-inline: 0;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
    width: 42px;
    height: 42px;
  }

  .language-toggle {
    width: 42px;
    height: 42px;
  }

  .language-dropdown {
    position: fixed;
    top: 70px;
    right: 12px;
    left: auto;
    max-width: calc(100vw - 24px);
    z-index: 9999;
    transform-origin: top right;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-logo img {
    width: auto;
    height: 52px;
    max-height: 52px;
    object-fit: contain;
    transform: translateY(2px);
  }

  .hero {
    min-height: min(720px, 88vh);
  }

  .hero-bg-image {
    top: 0 !important;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--bg), rgba(11, 10, 9, 0.7) 44%, rgba(11, 10, 9, 0.3)),
      linear-gradient(90deg, rgba(11, 10, 9, 0.88), rgba(11, 10, 9, 0.42));
  }

  .hero-grid {
    min-height: calc(min(720px, 88vh) - var(--nav-height));
    padding-bottom: 3rem;
  }

  .hero-copy {
    max-width: 720px;
    margin-left: 0;
    transform: none;
  }

  .hero-copy::before {
    inset: -1.2rem -1rem -1.4rem;
  }

  .hero-title small {
    font-size: clamp(2rem, 8vw, 2.3rem);
  }

  .hero-actions,
  .order-strip-inner,
  .visit-card {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .hero-proof li {
    min-width: 0;
    padding: 0.7rem;
  }

  .hero-proof strong {
    font-size: 1.55rem;
  }

  .hero-proof span {
    font-size: 0.7rem;
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .menu-hero {
    padding-top: 1.65rem;
    padding-bottom: 1.4rem;
  }

  .menu-hero .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
  }

  .menu-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.9rem, 14vw, 4.25rem);
    line-height: 0.9;
  }

  .menu-hero p:not(.eyebrow) {
    max-width: 31ch;
    margin-top: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .menu-intro-section {
    padding-top: 0.85rem;
  }

  .menu-intro-card {
    display: grid;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
  }

  .menu-intro-card p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .menu-intro-card strong {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    font-size: 0.72rem;
    text-align: center;
  }

  .menu-toolbar {
    padding: 0.68rem 0;
  }

  .category-tabs {
    gap: 0.5rem;
    padding-bottom: 0;
  }

  .category-tab {
    min-height: 42px;
    padding: 0.62rem 0.95rem;
    font-size: 0.76rem;
  }

  .menu-grid,
  .compact-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-card {
    display: flex;
    border-radius: 18px;
  }

  .loaded-fries-card {
    display: flex;
  }

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

  .fries-variants {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .fries-variant {
    width: 100%;
    min-height: 44px;
    padding-inline: 0.65rem;
  }

  .menu-card:hover {
    transform: none;
  }

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

  .menu-card-content {
    padding: 1rem;
  }

  .menu-card-price {
    display: none;
  }

  .menu-card h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .menu-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .price-grid span {
    min-height: 58px;
    padding: 0.65rem;
    font-size: 0.84rem;
  }

  .ingredients li,
  .allergens li {
    padding: 0.34rem 0.58rem;
    font-size: 0.76rem;
  }

  .allergens li {
    font-size: 0.7rem;
  }

  .menu-card-order {
    min-height: 52px;
    margin-top: 1.05rem;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .order-platform-card {
    min-height: 160px;
  }

  .map-panel iframe {
    height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .menu-card-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }
}
