/* ============================================================
   DIGGI KEBAB — Cala Millor, Mallorca
   Dark luxury · gold & black · German street food, refined
   ============================================================ */

:root {
  /* ---- Color ---- */
  --black:        #0A0A08;
  --black-2:      #100F0C;
  --black-3:      #16140F;
  --ink:          #1C1A14;
  --cream:        #F0EBE0;
  --cream-dim:    #9A958A;
  --cream-faint:  #5C5950;

  --gold:         #C99A4B;
  --gold-bright:  #E7C277;
  --gold-deep:    #8C6A2E;
  --ember:        #B5471F;
  --ember-soft:   rgba(181, 71, 31, 0.35);

  --line:         rgba(201, 154, 75, 0.22);
  --line-soft:    rgba(240, 235, 224, 0.08);

  /* ---- Type ---- */
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --mono:    "DM Mono", "Courier New", monospace;
  --body:    "Barlow Condensed", "Helvetica Neue", sans-serif;

  /* ---- Wood grain (dark walnut), generated, no images ---- */
  --wood:
    repeating-linear-gradient(
      92deg,
      #15110b 0px, #15110b 3px,
      #1c160d 3px, #1c160d 5px,
      #120e09 5px, #120e09 9px,
      #1f180e 9px, #1f180e 11px,
      #14100a 11px, #14100a 16px
    );
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Reusable type ---- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.mono { font-family: var(--mono); }

.gold { color: var(--gold); }
.gold-grad {
  background: linear-gradient(180deg, var(--gold-bright) 8%, var(--gold) 52%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- Layout shell ---- */
.wrap { width: min(1240px, 90vw); margin-inline: auto; }
section { position: relative; }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-dot  { width: 6px;  height: 6px;  background: var(--gold-bright); }
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(231, 194, 119, 0.6);
  transition: width .25s cubic-bezier(.2,.7,.2,1),
              height .25s cubic-bezier(.2,.7,.2,1),
              background .25s, border-color .25s;
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  background: rgba(231, 194, 119, 0.08);
  border-color: var(--gold-bright);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,8,0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo b { color: var(--gold); font-weight: 400; }
.nav-logo-img {
  width: 36px; height: 36px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-links {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px);
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.nav-links a { color: var(--cream-dim); transition: color .25s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

/* language switch */
.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em;
  overflow: hidden;
}
.lang button {
  background: none; border: 0; cursor: pointer;
  color: var(--cream-dim); padding: 7px 13px;
  font: inherit; letter-spacing: inherit; text-transform: uppercase;
  transition: color .25s, background .25s;
}
.lang button.active { color: var(--black); background: var(--gold); }

/* Higher specificity than .btn to correctly hide at mobile/tablet */
.nav-links .nav-cta { display: none; }
@media (min-width: 880px) { .nav-links .nav-cta { display: inline-flex; } }

/* small reusable button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 22px; border: 1px solid var(--gold);
  color: var(--gold-bright); background: transparent;
  cursor: pointer; transition: background .3s, color .3s, box-shadow .3s;
}
.btn:hover {
  background: var(--gold); color: var(--black);
  box-shadow: 0 0 34px -6px var(--ember-soft);
}
.btn.solid { background: var(--gold); color: var(--black); }
.btn.solid:hover { background: var(--gold-bright); box-shadow: 0 0 40px -4px rgba(231,194,119,.5); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 120px 20px 90px;
}
/* real food photo behind the wordmark */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: brightness(0.22) saturate(0.6);
  transform: scale(1.04);
}

/* warm vignette + ember glow from below */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 50% 118%, rgba(201,154,75,0.16), transparent 55%),
    radial-gradient(90% 60% at 50% 0%, rgba(181,71,31,0.07), transparent 60%);
}
.hero-grain {
  position: absolute; inset: -50%; z-index: 4; opacity: 0.055;
  background-image:
    repeating-radial-gradient(circle at 30% 40%, rgba(240,235,224,.5) 0 1px, transparent 1px 3px);
  pointer-events: none;
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)} 40%{transform:translate(3%,-2%)}
  60%{transform:translate(-2%,4%)} 80%{transform:translate(4%,2%)} 100%{transform:translate(0,0)}
}
#emberCanvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

/* flickering grill-ember light column behind the wordmark */
.hero-glow {
  position: absolute; z-index: 1; left: 50%; top: 52%; transform: translate(-50%,-50%);
  width: min(640px, 72vw); height: 128%;
  background:
    radial-gradient(46% 42% at 50% 58%, rgba(231,194,119,0.22), transparent 70%),
    radial-gradient(38% 58% at 50% 82%, rgba(181,71,31,0.20), transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  animation: heroGlow 6.5s ease-in-out infinite;
}
@keyframes heroGlow {
  0%,100% { opacity: .72; transform: translate(-50%,-50%) scaleY(1); }
  50%     { opacity: 1;  transform: translate(-50%,-52%) scaleY(1.07); }
}

/* oversized, cropped DIGGI watermark for depth */
.hero-ghost {
  position: absolute; z-index: 0; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--display); font-weight: 400; line-height: .8;
  font-size: min(44vw, 660px); letter-spacing: 0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(201,154,75,0.06);
  white-space: nowrap; pointer-events: none; user-select: none;
  will-change: transform;
}

.hero-inner {
  position: relative; z-index: 3; will-change: transform;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}
.hero-inner .kicker      { margin-bottom: 24px; }
.hero-inner .hero-tag    { margin-top: 32px; }
.hero-inner .hero-sub    { margin-top: 10px; }
.hero-inner .hero-order  { margin-top: 28px; }

/* ============================================================
   DÖNER SPIT — stylized rotating kebab behind the wordmark
   ============================================================ */
.spit {
  display: none;
}
/* steel skewer rod, sticking out top & bottom */
.spit .skewer {
  position: absolute; left: 50%; top: -3%; transform: translateX(-50%);
  width: 9px; height: 106%; border-radius: 5px;
  background: linear-gradient(90deg, #2c2c2c, #d8d8d8 42%, #8f8f8f 58%, #232323);
  box-shadow: 0 0 14px rgba(0,0,0,0.6);
}
.spit .skewer::before, .spit .skewer::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 18px; height: 7px; border-radius: 2px;
  background: linear-gradient(90deg, #1a1a1a, #4a4a4a 40%, #2e2e2e 60%, #111);
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.spit .skewer::before { top: -10px; }
.spit .skewer::after  { bottom: -10px; }
/* the stacked-meat body */
.spit .meat {
  position: absolute; left: 50%; top: 9%; transform: translateX(-50%);
  width: 100%; height: 80%;
  border-radius: 46% 46% 44% 44% / 14% 14% 30% 30%;
  /* cylindrical shading + horizontal stacked layers */
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.20) 0 6px, rgba(255,198,122,0.06) 6px 14px),
    linear-gradient(90deg, #170c04 0%, #532f14 20%, #92592a 46%, #b3742f 52%, #532f14 80%, #170c04 100%);
  box-shadow: inset 0 0 70px rgba(0,0,0,0.55), 0 0 70px -12px rgba(201,154,75,0.42);
  overflow: hidden;
  animation: spitBreathe 7s ease-in-out infinite;
}
/* charred outer edges */
.spit .meat::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 16px 0 34px -12px rgba(0,0,0,0.75), inset -16px 0 34px -12px rgba(0,0,0,0.75);
  z-index: 2;
}
/* grilled highlight that sweeps across = rotation */
.spit .meat::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, transparent 28%, rgba(231,194,119,0.5) 50%, transparent 72%);
  animation: spitTurn 7s ease-in-out infinite;
}
@keyframes spitTurn { 0%,100% { transform: translateX(-26%); } 50% { transform: translateX(26%); } }
@keyframes spitBreathe { 0%,100% { transform: translateX(-50%) scaleX(1); } 50% { transform: translateX(-50%) scaleX(0.97); } }
/* glowing grill / coals at the base */
.spit .grill {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 138%; height: 16%;
  background: radial-gradient(ellipse at center, rgba(231,194,119,0.55), rgba(181,71,31,0.28) 44%, transparent 72%);
  filter: blur(10px);
  animation: pool 5s ease-in-out infinite;
}
.hero .kicker { margin-bottom: 30px; opacity: 1; animation: fadeUp .9s .2s both; }

.hero-word {
  font-family: var(--display);
  line-height: 0.8;
  text-transform: uppercase;
}
.hero-word { position: relative; }
.hero-word .l1 {
  display: block; position: relative; z-index: 2;
  font-size: clamp(5.6rem, 23vw, 21rem);
  color: var(--cream);
  letter-spacing: 0.06em;       /* final (visible-by-default) state */
  transform: translateX(0.03em);
  opacity: 1;
  animation: heroTrack 1.5s cubic-bezier(.16,.8,.2,1) .35s both;
}
.hero-word .l2 {
  display: block; position: relative; z-index: 2;
  font-size: clamp(3.5rem, 14.5vw, 12.5rem);
  letter-spacing: 0.30em;       /* final (visible-by-default) state */
  transform: translateX(0.15em);
  margin-top: 0.04em;
  opacity: 1;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.55)) drop-shadow(0 6px 30px rgba(201,154,75,0.28));
  animation: heroTrack2 1.5s cubic-bezier(.16,.8,.2,1) .55s both;
}
@keyframes heroTrack {
  0%   { opacity: 0; letter-spacing: 0.62em; filter: blur(6px); }
  100% { opacity: 1; letter-spacing: 0.06em; filter: blur(0); transform: translateX(0.03em); }
}
@keyframes heroTrack2 {
  0%   { opacity: 0; letter-spacing: 0.5em; filter: blur(6px); }
  100% { opacity: 1; letter-spacing: 0.30em; filter: blur(0); transform: translateX(0.15em); }
}

.hero-tag {
  margin-top: 38px;
  font-family: var(--mono);
  font-size: clamp(0.88rem, 1.5vw, 1.1rem);
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 18px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
  opacity: 1; animation: fadeUp 1s 1.2s both;
}
.hero-tag b { color: var(--gold); font-weight: 400; }

.hero-sub {
  margin-top: 14px;
  font-family: var(--body); font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 16px rgba(0,0,0,0.95), 0 0 32px rgba(0,0,0,0.8);
  opacity: 1; animation: fadeUp 1s 1.4s both;
}

/* coastline silhouette */
.coast {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  width: 100%; height: 120px; opacity: 0.5;
  color: var(--black);
  pointer-events: none;
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 4;
  display: grid; justify-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream-faint);
  opacity: 1; animation: fadeUp 1s 1.7s both;
}
.scroll-cue .arrow {
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  animation: cue 2.2s ease-in-out infinite;
}
.scroll-cue .arrow::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 7px; height: 7px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: translate(-50%, 3px) rotate(45deg);
}
@keyframes cue { 0%,100%{ transform: translateY(0); opacity:.5 } 50%{ transform: translateY(7px); opacity:1 } }
@media (max-height: 760px){ .scroll-cue { display: none; } }

/* ============================================================
   MARQUEE — kinetic gold ticker
   ============================================================ */
.marquee {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--black-2), var(--black));
  padding: clamp(16px, 2.4vw, 28px) 0;
  --mq-speed: 34s;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 16%; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--black), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--black), transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: clamp(1.6rem, 3vw, 3rem);
  white-space: nowrap; will-change: transform;
  animation: marquee var(--mq-speed) linear infinite;
}
.marquee-item {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream);
}
.marquee-item.alt { color: transparent; -webkit-text-stroke: 1px var(--gold); }
.marquee-star { color: var(--gold); font-size: clamp(0.9rem, 1.8vw, 1.4rem); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee.tight { --mq-speed: 40s; }

/* ============================================================
   CALZÖNER SHOWPIECE
   ============================================================ */
.showpiece {
  padding: clamp(70px, 9vh, 110px) clamp(20px, 6vw, 80px);
  overflow: visible;
}
.showpiece::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 72% 54%, rgba(201,154,75,0.12), transparent 68%);
  pointer-events: none;
}

/* two-column split */
.showpiece-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
  /* limit height so circle doesn't create huge gap below */
  grid-auto-rows: minmax(0, auto);
}
@media (max-width: 860px) {
  .showpiece-split { grid-template-columns: 1fr; }
}

/* LEFT column */
.showpiece-text {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; gap: 0;
}
.showpiece-text .kicker { margin-bottom: 16px; }
.showpiece-title {
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.86;
  margin-bottom: 28px;
}
.showpiece-desc {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 38ch;
  margin-bottom: 28px;
}
.showpiece-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.showpiece-tags span {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--line); padding: 6px 12px;
  background: rgba(201,154,75,0.06);
}

.stage {
  position: relative;
  width: min(380px, 86vw);
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  transform-style: preserve-3d;
  justify-self: center;
  overflow: visible;
}
/* ember pool under the food = the light source */
.stage::after {
  content: ""; position: absolute; bottom: 4%; left: 50%;
  width: 78%; height: 26%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(231,194,119,0.5), rgba(181,71,31,0.18) 45%, transparent 72%);
  filter: blur(22px);
  z-index: 0;
  animation: pool 5.5s ease-in-out infinite;
}
@keyframes pool { 0%,100%{ opacity:.7; transform: translateX(-50%) scaleX(1) } 50%{ opacity:1; transform: translateX(-50%) scaleX(1.08) } }

.calzoner {
  position: relative; z-index: 2;
  width: 74%; height: 74%;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: breathe 7s ease-in-out infinite;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.8),
    0 0 0 1px rgba(201,154,75,0.25),
    0 0 90px -10px rgba(201,154,75,0.35);
}
.calzoner image-slot { width: 100%; height: 100%; }
.calzoner-video {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  position: relative;
}
.calzoner-video video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75) brightness(0.88) contrast(1.08) sepia(0.18);
  mix-blend-mode: normal;
}
/* warm gold overlay */
.calzoner-video::after {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(181,71,31,0.32), transparent 65%),
    radial-gradient(ellipse at 50% 0%, rgba(201,154,75,0.14), transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.calzoner::before { /* gold rim light */
  content:""; position:absolute; inset:-2px; border-radius:50%;
  background: conic-gradient(from 210deg, transparent, rgba(231,194,119,.55), transparent 40%);
  z-index:-1; filter: blur(6px);
}
@keyframes breathe {
  0%,100% { transform: scale(1)    rotateX(6deg); }
  50%     { transform: scale(1.04) rotateX(6deg); }
}
/* sway via wrapper so breathe(scale) and sway compose cleanly */
.calzoner-sway { animation: sway 16s ease-in-out infinite; transform-style: preserve-3d; width:100%; height:100%; display:grid; place-items:center; }
@keyframes sway {
  0%,100% { transform: rotateY(-9deg); }
  50%     { transform: rotateY(9deg); }
}

/* heat shimmer above the food */
.shimmer {
  position: absolute; z-index: 3; left: 50%; top: 2%;
  width: 60%; height: 40%; transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(231,194,119,0.10), transparent);
  filter: url(#heat);
  opacity: 0.6;
}

/* floating ingredient labels */
.ingredient {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; opacity: 0;
}
.ing-body {
  display: flex; flex-direction: column; gap: 2px;
}
.ing-name {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream); line-height: 1;
}
.ingredient small {
  font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); line-height: 1;
}
.ingredient .dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold), 0 0 4px var(--gold-bright);
}
/* right-side labels: body then dot, text right-aligned */
.ing-2, .ing-4 { flex-direction: row-reverse; }
.ing-2 .ing-body, .ing-4 .ing-body { align-items: flex-end; }

.ingredient.in { animation: fadeUp .8s forwards; }

.ing-1 { top: 6%;    left: -4%;  }
.ing-2 { top: 22%;   right: -14%; }
.ing-3 { bottom: 22%; left: -4%; }
.ing-4 { bottom: 6%; right: -14%; }

.ing-line {
  position: absolute; z-index: 3; height: 1px;
  background: linear-gradient(90deg, rgba(201,154,75,0.35), transparent);
  transform-origin: left;
}

/* single-column layout: clamp labels inside viewport */
@media (max-width: 860px){
  .ing-2 { right: 0; }
  .ing-4 { right: 0; }
}
@media (max-width: 480px){
  .ing-name { font-size: 0.9rem; }
  .ing-1 { left: 0; } .ing-2 { right: 0; }
  .ing-3 { left: 0; } .ing-4 { right: 0; }
}

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: clamp(90px, 12vh, 150px) 0; position: relative; }

/* giant watermark behind grid */
.menu::after {
  content: "KARTE";
  position: absolute; left: 50%; top: 38%; transform: translate(-50%,-50%);
  font-family: var(--display); font-size: clamp(12rem, 28vw, 26rem);
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(201,154,75,0.05);
  pointer-events: none; user-select: none; z-index: 0;
}
.menu .wrap { position: relative; z-index: 1; }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head h2 { font-size: clamp(4rem, 10vw, 9rem); margin-top: 12px; }
.section-head p { color: var(--cream-dim); font-weight: 300; margin-top: 10px; }

.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 56px;
}
.menu-tabs button {
  font-family: var(--display); font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-dim); background: transparent;
  border: 1px solid var(--line-soft); padding: 10px 22px; cursor: pointer;
  transition: color .25s, border-color .25s, background .25s, transform .2s;
}
.menu-tabs button:hover { color: var(--gold-bright); border-color: var(--line); transform: translateY(-2px); }
.menu-tabs button.active {
  color: var(--black); background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 28px -6px rgba(201,154,75,0.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* card — 3D tilt via JS class, CSS handles the base */
.card {
  position: relative;
  background: var(--wood);
  border: 1px solid var(--line);
  padding: 28px 26px 24px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
  will-change: transform;
}
.card::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(10,10,8,0.62), rgba(10,10,8,0.88));
  z-index:0;
}
/* ember flash on hover */
.card::after {
  content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(ellipse at 50% 110%, rgba(181,71,31,0.22), transparent 65%);
  opacity: 0; transition: opacity .4s;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.95), 0 0 56px -8px rgba(181,71,31,0.4);
}

.card-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem); letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream); line-height: 0.92;
}
.card .price {
  font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2.4rem); letter-spacing: 0.02em;
  color: var(--gold-bright); white-space: nowrap; line-height: 1;
  text-shadow: 0 0 30px rgba(231,194,119,0.35);
}
.card .desc {
  font-family: var(--mono); font-size: 0.72rem; line-height: 1.75;
  color: var(--cream-dim); letter-spacing: 0.02em;
}
.card .tag {
  display: inline-block; margin-top: 18px;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-bright); border: 1px solid rgba(201,154,75,0.4); padding: 5px 10px;
  background: rgba(201,154,75,0.07);
}

.card.feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; padding: 0; }
.card.feature .card-body { padding: 36px 34px; align-self: center; }
.card.feature image-slot { width: 100%; height: 100%; min-height: 280px; }
@media (max-width: 720px){
  .card.feature { grid-template-columns: 1fr; }
  .card.feature image-slot { min-height: 220px; }
}

/* ============================================================
   STORY
   ============================================================ */
.story { padding: clamp(90px, 13vh, 160px) 0; }
.story-grid { display: grid; grid-template-columns: 1.4fr 0.65fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
@media (max-width: 1000px){
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px){ .story-grid { grid-template-columns: 1fr; } }

.story-img {
  position: relative; border: 1px solid var(--line); overflow: hidden;
  aspect-ratio: 3/4;
}
.story-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.story-img:hover img { transform: scale(1.04); }
.story h2 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); margin: 16px 0 0; line-height: 1.0; }
.story .lead {
  font-family: var(--body); font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.6;
  color: var(--cream); margin-top: 22px; text-wrap: pretty; max-width: 44ch;
}
.story .lead b { color: var(--gold); font-weight: 500; }
.story p.body { color: var(--cream-dim); font-weight: 300; margin-top: 16px; max-width: 48ch; font-size: 1rem; line-height: 1.65; }

.badges { display: grid; gap: 14px; }
.badge {
  display: flex; align-items: center; gap: 18px;
  border: 1px solid var(--line); background: var(--black-2);
  padding: 20px 24px; border-radius: 4px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.badge:hover { border-color: var(--gold); box-shadow: 0 0 40px -14px var(--ember-soft); transform: translateX(4px); }
.badge .num { font-family: var(--display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.badge .t { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.badge .s { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; color: var(--cream-dim); text-transform: uppercase; margin-top: 3px; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { padding: clamp(90px, 12vh, 150px) 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: stretch; }
@media (max-width: 860px){ .loc-grid { grid-template-columns: 1fr; } }

.loc-card {
  border: 1px solid var(--line); background: var(--black-2);
  padding: clamp(30px, 4vw, 50px);
  display: flex; flex-direction: column; gap: 26px;
}
.loc-block .label { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.loc-block .val { font-family: var(--body); font-weight: 300; font-size: 1.2rem; margin-top: 8px; color: var(--cream); line-height: 1.5; }
.hours { display: grid; gap: 8px; margin-top: 8px; }
.hours .row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.82rem; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.hours .row.closed { color: var(--ember); }
.hours .row.closed .d { color: var(--ember); }
.hours .d { color: var(--cream-dim); letter-spacing: 0.06em; }
.hours .h { color: var(--cream); letter-spacing: 0.06em; }
.hours .row.today { color: var(--gold-bright); }
.hours .row.today .d, .hours .row.today .h { color: var(--gold-bright); }

.map-wrap { position: relative; border: 1px solid var(--line); overflow: hidden; min-height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(1) invert(0.9) contrast(0.9) sepia(0.3) hue-rotate(5deg); }
.map-consent-placeholder {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 30px;
  background: var(--black-2);
}
.map-consent-placeholder .ico { font-size: 2rem; color: var(--gold); }
.map-consent-placeholder p { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); max-width: 220px; line-height: 1.5; }
.map-consent-placeholder small { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.10em; color: var(--cream-faint); }
.map-consent-placeholder .btn { margin-top: 8px; font-size: 0.62rem; padding: 10px 16px; }
.map-consent-placeholder.hidden { display: none; }
.map-consent-placeholder:not(.hidden) ~ .map-pin { display: none; }
.map-pin {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  background: linear-gradient(transparent, rgba(10,10,8,0.92));
  padding: 22px 26px 20px; pointer-events: none;
  display: flex; align-items: center; gap: 14px;
}
.map-pin .ico { color: var(--gold); font-size: 1.4rem; }
.map-pin .t { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.map-pin .s { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; color: var(--cream-dim); }

.ig-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.14em; color: var(--gold-bright); border-bottom: 1px solid var(--gold); padding-bottom: 4px; align-self: flex-start; transition: color .25s, border-color .25s; }
.ig-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid transparent; position: relative; padding: clamp(56px, 8vh, 90px) 0 40px; text-align: center; }
.footer::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--wood); opacity:.8; }
.footer-logo { font-family: var(--display); font-size: clamp(3rem, 9vw, 6rem); letter-spacing: 0.18em; }
.footer-logo b { color: var(--gold); font-weight: 400; }
.footer-tag { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-faint); margin-top: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-top: 34px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-links a { color: var(--cream-dim); transition: color .25s; white-space: nowrap; }
.footer-links a:hover { color: var(--gold-bright); }
/* ============================================================
   ORDER BUTTON
   ============================================================ */
.btn-order {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 500;
}
.btn-order:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 40px -6px rgba(231,194,119,0.7);
  color: var(--black);
}
.hero-order {
  margin-top: 32px;
  font-size: 0.82rem;
  padding: 16px 32px;
  letter-spacing: 0.28em;
}

/* ============================================================
   ORDER MODAL
   ============================================================ */
.order-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.order-modal.open { opacity: 1; pointer-events: auto; }
.order-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
}
.order-modal-box {
  position: relative; z-index: 1;
  width: min(480px, 94vw);
  height: min(780px, 88vh);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  display: flex; flex-direction: column;
  transform: translateY(20px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.order-modal.open .order-modal-box { transform: translateY(0); }
.order-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 1rem; width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.order-modal-close:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.order-modal-box iframe { flex: 1; border: 0; width: 100%; height: 100%; }

.footer-copy { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; color: var(--cream-faint); margin-top: 30px; }
.footer-legal { display: flex; justify-content: center; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.footer-legal a { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-made { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; color: var(--cream-faint); opacity: 0.45; margin-top: 10px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: rgba(16,15,12,0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: clamp(16px,3vw,24px) clamp(20px,5vw,56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.06em; color: var(--cream); display: block; margin-bottom: 4px; }
.cookie-text p { font-family: var(--mono); font-size: 0.68rem; line-height: 1.6; color: var(--cream-dim); letter-spacing: 0.04em; margin: 0; }
.cookie-text a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.16,.8,.2,1), transform .9s cubic-bezier(.16,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* self-heal: if the animation clock is frozen, kill anim and force visible */
html.no-anim *, html.no-anim *::before, html.no-anim *::after {
  animation: none !important; transition: none !important;
}
html.no-anim .reveal { opacity: 1 !important; transform: none !important; }
html.no-anim .ingredient { opacity: 1 !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-word .l1 { letter-spacing: 0.06em; opacity:1; }
  .hero-word .l2 { letter-spacing: 0.30em; opacity:1; }
}

/* ============================================================
   BURGER MENU
   ============================================================ */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: rgba(10,10,8,0.5); border: 1px solid var(--gold); cursor: pointer;
  padding: 8px; flex-shrink: 0;
  transition: background .25s, border-color .25s;
}
.burger:hover { background: rgba(201,154,75,0.15); }
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--gold-bright);
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s, width .3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  pointer-events: none;
  overflow: hidden;
}
.mobile-menu.open { pointer-events: auto; }

.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .35s;
}
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 82vw);
  background: var(--black-2);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 80px 32px 40px;
  gap: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-links {
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.mobile-menu-links a {
  font-family: var(--display); font-size: clamp(1.7rem, 6vw, 2.2rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s, padding-left .2s;
  display: block;
}
.mobile-menu-links a:hover { color: var(--gold-bright); padding-left: 8px; }

.mobile-menu-bottom {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
}

/* show burger, hide desktop links on small screens */
@media (max-width: 760px) {
  .burger { display: flex; }
  .nav-links { display: flex; }
  .nav-links a { display: none; }
  .nav-links .lang { display: inline-flex; }
  .nav-links .nav-cta { display: none !important; }
}

/* ---- 480px fine-tuning ---- */
/* ---- ingredient labels off-screen fix <400px ---- */
@media (max-width: 400px) {
  .ing-1, .ing-3 { left: 2px !important; }
  .ing-2, .ing-4 { right: 2px !important; }
}

@media (max-width: 480px) {
  .hero-word .l1 { font-size: clamp(3.8rem, 22vw, 5.6rem); }
  .hero-word .l2 { font-size: clamp(2.4rem, 14vw, 3.5rem); }
  .showpiece-head h2 { font-size: clamp(2.8rem, 16vw, 3.5rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .card h3 { font-size: 1.9rem; }
  .card .price { font-size: 1.9rem; }
  .menu-tabs button { font-size: 1rem; padding: 8px 14px; }
  .section-head h2 { font-size: clamp(3rem, 14vw, 4rem); }
}
