/* =====================================================================
   DANK SANDWICH — redesign
   Tokens → base → components → sections → motion → responsive
   ===================================================================== */

:root {
  --green: #1E6B48;
  --green-deep: #0F3D2A;
  --green-ink: #0A2A1D;
  --green-soft: #2E8A5F;
  --cream: #FBE6C8;
  --paper: #FFF6E9;
  --paper-dim: #F3E3CB;
  --sauce: #F26B21;
  --sauce-deep: #D4520F;
  --mustard: #F5B32B;
  --ink: #10201A;
  --ink-soft: #3E5049;
  --white: #FFFFFF;
  --pink: #F0A3C0;

  --display: 'Cairo', 'Segoe UI', system-ui, sans-serif;
  --body: 'IBM Plex Sans Arabic', 'Cairo', system-ui, sans-serif;

  --radius: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 84px;
  --gutter: clamp(16px, 4vw, 64px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  min-height: 100vh;
}
body.is-loading { overflow: hidden; }
main { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.12; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2.2rem, 5.2vw, 4.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--mustard); color: var(--ink); }

.container { width: min(1240px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 140px); position: relative; }

/* ---------- Eyebrow / tags / buttons ---------- */
.eyebrow {
  display: flex; width: fit-content; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sauce); margin-bottom: 14px;
}
.eyebrow__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sauce); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(242,107,33,.5);} 60% { box-shadow: 0 0 0 10px rgba(242,107,33,0);} }

.tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--mustard); color: var(--ink); font-family: var(--display); font-weight: 800; font-size: .78rem;
}

.btn {
  --bg: var(--green); --fg: var(--white);
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px; border-radius: 999px; overflow: hidden;
  background: var(--bg); color: var(--fg);
  font-family: var(--display); font-weight: 800; font-size: 1rem; line-height: 1;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .3s;
  isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ink); border-radius: inherit;
  transform: translateY(101%); transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { box-shadow: 0 18px 40px -14px rgba(16,32,26,.55); }
.btn--sauce { --bg: var(--sauce); }
.btn--ghost { --bg: transparent; --fg: currentColor; box-shadow: inset 0 0 0 2px currentColor; }
.btn--ghost:hover { color: var(--white); }
.btn--big { padding: 18px 32px; font-size: 1.1rem; }
.btn__arrow { font-style: normal; display: inline-block; transition: transform .4s var(--ease); }
[dir="rtl"] .btn__arrow { transform: scaleX(-1); }
.btn:hover .btn__arrow { transform: translateX(6px); }
[dir="rtl"] .btn:hover .btn__arrow { transform: scaleX(-1) translateX(6px); }

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; align-content: center; gap: 28px;
  background: var(--green-deep); color: var(--cream);
}
.loader__stack { position: relative; width: 140px; height: 120px; }
.loader__bun, .loader__layer {
  position: absolute; left: 50%; translate: -50% 0; border-radius: 999px; height: 22px; width: 140px;
  animation: stack .9s var(--ease-bounce) both;
}
.loader__bun--top   { top: 0; height: 40px; border-radius: 70px 70px 14px 14px; background: linear-gradient(#F5B32B, #E0932B); animation-delay: .45s; }
.loader__layer--lettuce { top: 44px; background: #7DC463; width: 150px; height: 16px; animation-delay: .35s; }
.loader__layer--cheese  { top: 56px; background: #FFD34E; width: 146px; height: 12px; animation-delay: .25s; }
.loader__layer--patty   { top: 66px; background: #7A3E1E; height: 22px; animation-delay: .15s; }
.loader__bun--bottom { bottom: 0; height: 30px; border-radius: 14px 14px 30px 30px; background: linear-gradient(#E0932B, #C77B22); animation-delay: .05s; }
@keyframes stack { from { opacity: 0; transform: translateY(-60px) scaleX(.6);} to { opacity: 1; transform: translateY(0) scaleX(1);} }
.loader__word { font-family: var(--display); font-weight: 800; font-size: 1.1rem; letter-spacing: .05em; display: flex; gap: 4px; }
.loader__dots i { display: inline-block; width: 5px; height: 5px; margin-inline: 2px; border-radius: 50%; background: currentColor; animation: dot 1s infinite; }
.loader__dots i:nth-child(2) { animation-delay: .15s; } .loader__dots i:nth-child(3) { animation-delay: .3s; }
@keyframes dot { 0%,100% { transform: translateY(0); opacity: .4;} 50% { transform: translateY(-6px); opacity: 1;} }
.loader__bar { width: 180px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.15); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: var(--sauce); border-radius: inherit; transition: width .3s var(--ease); }
.loader.is-done { animation: loaderOut .6s var(--ease) forwards; }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; } }

.curtain { position: fixed; inset: 0; z-index: 999; display: flex; pointer-events: none; }
.curtain span { flex: 1; background: var(--sauce); transform: scaleY(1); transform-origin: top; }
.curtain span:nth-child(2) { background: var(--mustard); }
.curtain span:nth-child(3) { background: var(--green); }
.curtain.is-open span { animation: curtain .9s var(--ease) forwards; }
.curtain.is-open span:nth-child(2) { animation-delay: .08s; }
.curtain.is-open span:nth-child(3) { animation-delay: .16s; }
@keyframes curtain { to { transform: scaleY(0); } }

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 900; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--mustard); translate: -50% -50%; will-change: transform; }
.cursor__ring {
  position: absolute; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--mustard); translate: -50% -50%; will-change: transform;
  display: grid; place-items: center; transition: width .35s var(--ease), height .35s var(--ease), background .35s, border-color .35s;
}
.cursor__ring b { font-family: var(--display); font-size: .7rem; color: #000; opacity: 0; transition: opacity .2s; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(245,179,43,.18); }
.cursor.is-view .cursor__ring { width: 84px; height: 84px; background: var(--mustard); border-color: var(--mustard); }
.cursor.is-view .cursor__ring b { opacity: 1; }
.cursor.is-view .cursor__dot { opacity: 0; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; inset-inline: 0; z-index: 800; padding: 18px 0; transition: padding .5s var(--ease), background .5s, box-shadow .5s; }
.nav__inner { width: min(1320px, 100% - var(--gutter) * 2); margin-inline: auto; display: flex; align-items: center; gap: 24px; }
.nav__logo img { height: 34px; width: auto; transition: transform .4s var(--ease); }
.nav__logo:hover img { transform: scale(1.06) rotate(-2deg); }
.nav__links { display: flex; gap: 6px; margin-inline: auto; }
.nav__links a {
  position: relative; padding: 8px 14px; color: var(--cream); font-family: var(--display); font-weight: 700; font-size: .95rem;
  border-radius: 999px; overflow: hidden; isolation: isolate; transition: color .3s;
}
.nav__links a::after {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: rgba(255,255,255,.12);
  transform: scale(.6); opacity: 0; transition: transform .4s var(--ease), opacity .3s;
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scale(1); opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav.is-scrolled { padding: 10px 0; background: rgba(15,61,42,.96); box-shadow: 0 10px 40px -20px rgba(0,0,0,.5); }
.nav.is-hidden { transform: translateY(-110%); }
.nav { transition: transform .5s var(--ease), padding .5s var(--ease), background .5s, box-shadow .5s; }

.lang { position: relative; display: flex; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.12); color: var(--cream); font-family: var(--display); font-weight: 800; font-size: .8rem; isolation: isolate; }
.lang__opt { position: relative; z-index: 1; padding: 6px 12px; transition: color .3s; }
.lang__pill { position: absolute; top: 4px; bottom: 4px; inset-inline-start: 4px; width: calc(50% - 4px); border-radius: 999px; background: var(--cream); transition: transform .45s var(--ease-bounce); }
[dir="rtl"] .lang__pill { transform: translateX(0); }
[dir="ltr"] .lang__pill { transform: translateX(100%); }
[dir="rtl"] .lang__opt[data-lang="ar"], [dir="ltr"] .lang__opt[data-lang="en"] { color: var(--green-deep); }
[dir="ltr"] .lang__opt[data-lang="ar"] { order: -1; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 24px; height: 2.5px; border-radius: 2px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile { position: fixed; inset: 0; z-index: 790; display: grid; place-content: center; gap: 40px; text-align: center; pointer-events: none; visibility: hidden; }
.mobile { --cx: 40px; }
[dir="ltr"] .mobile { --cx: calc(100% - 40px); }
.mobile__bg { position: absolute; inset: 0; background: var(--green-deep); clip-path: circle(0 at var(--cx) 40px); transition: clip-path .8s var(--ease); }
.mobile__links { position: relative; display: grid; gap: 8px; }
.mobile__links a { font-family: var(--display); font-weight: 900; font-size: clamp(2rem, 8vw, 3rem); color: var(--cream); opacity: 0; transform: translateY(30px); transition: opacity .5s, transform .6s var(--ease); }
.mobile > .btn { position: relative; justify-self: center; opacity: 0; transform: translateY(30px); transition: opacity .5s .3s, transform .6s .3s var(--ease); }
.mobile.is-open { pointer-events: auto; visibility: visible; }
.mobile.is-open .mobile__bg { clip-path: circle(150% at var(--cx) 40px); }
.mobile.is-open .mobile__links a, .mobile.is-open > .btn { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 60px; background: var(--green-deep); color: var(--cream); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg::before {
  content: ''; position: absolute; inset: -20%; will-change: transform;
  background:
    radial-gradient(42% 42% at 18% 22%, rgba(30,107,72,.95), transparent 70%),
    radial-gradient(30% 30% at 88% 82%, rgba(242,107,33,.32), transparent 70%),
    radial-gradient(22% 22% at 58% 48%, rgba(245,179,43,.18), transparent 70%);
  animation: drift 24s ease-in-out infinite alternate;
}
[dir="ltr"] .hero__bg::before { background:
    radial-gradient(42% 42% at 82% 22%, rgba(30,107,72,.95), transparent 70%),
    radial-gradient(30% 30% at 12% 82%, rgba(242,107,33,.32), transparent 70%),
    radial-gradient(22% 22% at 42% 48%, rgba(245,179,43,.18), transparent 70%); }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1);} to { transform: translate3d(3%, -2%, 0) scale(1.08);} }

.hero__inner { position: relative; width: min(1320px, 100% - var(--gutter) * 2); margin-inline: auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.hero__title { font-size: clamp(3.4rem, 9vw, 8rem); line-height: .98; color: var(--paper); }
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; white-space: nowrap; }
[lang="en"] .hero__title { font-size: clamp(3rem, 7.2vw, 6.4rem); letter-spacing: -0.03em; }
.hero__title .char { display: inline-block; transform: translateY(110%); transition: transform .8s var(--ease); will-change: transform; }
.hero__title.is-in .char { transform: translateY(0); }
.hero__title em { font-style: normal; color: var(--mustard); }
.hero__lead { max-width: 52ch; font-size: 1.15rem; color: rgba(251,230,200,.85); margin-block: 26px 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; gap: clamp(20px, 4vw, 48px); margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(251,230,200,.18); }
.hero__stats div { display: grid; gap: 2px; }
.hero__stats b { font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1; color: var(--mustard); font-variant-numeric: tabular-nums; }
.hero__stats span { font-size: .85rem; color: rgba(251,230,200,.7); }

.hero__visual { position: relative; aspect-ratio: 1; max-width: 560px; margin-inline: auto; width: 100%; }
.hero__plate { position: absolute; inset: 8%; border-radius: 50%; background: var(--cream); box-shadow: 0 40px 70px -30px rgba(0,0,0,.55); display: grid; place-items: center; overflow: hidden; animation: floatY 6s ease-in-out infinite; }
.hero__img--main { width: 96%; height: 96%; object-fit: cover; border-radius: 50%; transform: rotate(-8deg) scale(1.05); }
.hero__float { position: absolute; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); border: 4px solid var(--paper); background: var(--cream); }
.hero__float img { width: 100%; height: 100%; object-fit: cover; }
.hero__float--a { width: 28%; aspect-ratio: 1; top: 0; inset-inline-end: 0; animation: floatY 7s ease-in-out infinite; }
.hero__float--b { width: 32%; aspect-ratio: 1; bottom: 2%; inset-inline-start: -2%; animation: floatY 8s ease-in-out infinite reverse; }
.hero__float--c { width: 18%; aspect-ratio: .9; bottom: 12%; inset-inline-end: -2%; animation: floatY 5.5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { translate: 0 0;} 50% { translate: 0 -14px;} }

.badge-rot { position: absolute; top: -2%; inset-inline-start: 4%; width: 26%; aspect-ratio: 1; display: grid; place-items: center; }
.badge-rot svg { direction: ltr; position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.badge-rot text { font-family: var(--display); font-weight: 800; font-size: 11px; fill: var(--cream); letter-spacing: .12em; }
.badge-rot__core { width: 48%; aspect-ratio: 1; border-radius: 50%; background: var(--sauce); color: var(--white); display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: clamp(.9rem, 1.6vw, 1.3rem); }
@keyframes spin { to { transform: rotate(360deg);} }

.scroll-hint { position: absolute; bottom: 24px; left: 50%; translate: -50% 0; width: 26px; height: 42px; border: 2px solid rgba(251,230,200,.4); border-radius: 14px; }
.scroll-hint span { position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; border-radius: 2px; background: var(--mustard); translate: -50% 0; animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1;} 100% { transform: translateY(18px); opacity: 0;} }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; padding-block: 14px; font-family: var(--display); font-weight: 900; font-size: clamp(1.2rem, 2.4vw, 1.9rem); text-transform: uppercase; }
.marquee--sauce { background: var(--sauce); color: var(--white); transform: rotate(-1.2deg); margin-block: -20px 20px; margin-inline: -2%; width: 104%; position: relative; z-index: 2; }
.marquee--green { background: var(--green); color: var(--cream); }
.marquee__track { display: inline-flex; gap: 28px; align-items: center; will-change: transform; }
.marquee__track i { font-style: normal; color: var(--mustard); }
.marquee--green .marquee__track i { color: var(--sauce); }

/* ---------- Titles ---------- */
.title-outline { position: relative; display: inline-block; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.title-outline::after {
  content: attr(data-fill); position: absolute; inset: 0; color: var(--ink); -webkit-text-stroke: 0; pointer-events: none;
  clip-path: inset(0 100% 0 0); transition: clip-path .9s var(--ease) .1s;
}
[dir="rtl"] .title-outline::after { clip-path: inset(0 0 0 100%); }
.title-outline.is-in::after { clip-path: inset(0 0 0 0); }
.on-dark .title-outline { -webkit-text-stroke-color: rgba(251,230,200,.7); }
.on-dark .title-outline::after { color: var(--cream); }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about__head { max-width: 760px; margin-bottom: 64px; }
.about__text { font-size: 1.15rem; color: var(--ink-soft); margin-top: 20px; max-width: 62ch; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { position: relative; padding: 36px 30px; border-radius: var(--radius-lg); background: var(--cream); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s var(--ease); isolation: isolate; }
.value::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--green); border-radius: inherit; transform: scale(0); transform-origin: bottom right; transition: transform .7s var(--ease); }
[dir="ltr"] .value::before { transform-origin: bottom left; }
.value:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(15,61,42,.5); color: var(--cream); }
.value:hover::before { transform: scale(1.6); }
.value__icon { width: 64px; height: 64px; border-radius: 18px; background: var(--green); color: var(--mustard); display: grid; place-items: center; margin-bottom: 22px; transition: transform .6s var(--ease-bounce), background .4s; }
.value__icon svg { width: 34px; height: 34px; }
.value:hover .value__icon { transform: rotate(-10deg) scale(1.1); background: var(--sauce); }
.value h3 { margin-bottom: 10px; transition: color .4s; }
.value p { color: var(--ink-soft); font-size: .98rem; transition: color .4s; }
.value:hover p { color: rgba(251,230,200,.85); }

.philosophy { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-top: clamp(64px, 8vw, 120px); }
.philosophy__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px rgba(15,61,42,.6); }
.philosophy__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.philosophy__img:hover img { transform: scale(1.06); }
.philosophy__copy h3 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 20px; }
.philosophy__copy p { color: var(--ink-soft); margin-bottom: 16px; max-width: 58ch; }

/* ---------- Menu ---------- */
.menu { background: var(--green-deep); color: var(--cream); }
.menu__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.tabs { position: relative; display: inline-flex; gap: 4px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.08); margin-bottom: 40px; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs button { position: relative; z-index: 1; padding: 10px 22px; border-radius: 999px; font-family: var(--display); font-weight: 800; white-space: nowrap; color: rgba(251,230,200,.7); transition: color .3s; }
.tabs button.is-active { color: var(--green-deep); }
.tabs__glider { position: absolute; top: 6px; bottom: 6px; border-radius: 999px; background: var(--mustard); transition: transform .5s var(--ease), width .5s var(--ease); left: 0; will-change: transform; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; perspective: 1400px; }
.card {
  position: relative; display: grid; grid-template-rows: auto 1fr auto; border-radius: var(--radius-lg); background: var(--paper); color: var(--ink);
  overflow: hidden; transform-style: preserve-3d; transition: transform .18s ease-out, box-shadow .4s var(--ease);
  animation: cardIn .5s var(--ease) backwards; animation-delay: calc(var(--i) * 35ms);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(40px) rotateX(-10deg);} to { opacity: 1; transform: none;} }
.card:hover { box-shadow: 0 40px 70px -30px rgba(0,0,0,.6); }
.card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card:hover .card__img img { transform: scale(1.08) rotate(-2deg); }
.card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,32,26,.35), transparent 50%); opacity: 0; transition: opacity .5s; }
.card:hover .card__img::after { opacity: 1; }
.card__tag { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1; }
.card__tag--spicy { background: var(--sauce); color: var(--white); }
.card__tag--new { background: var(--green); color: var(--white); }
.card__body { padding: 20px 22px 6px; }
.card__body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.card__body p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 22px 22px; }
.card__kcal { font-size: .8rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.card__price { display: flex; align-items: baseline; gap: 4px; font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: var(--green); line-height: 1; }
.card__price small { font-size: .75rem; font-weight: 700; color: var(--ink-soft); }
.card__add { position: absolute; bottom: 18px; inset-inline-end: 18px; width: 44px; height: 44px; border-radius: 50%; background: var(--sauce); color: var(--white); display: grid; place-items: center; transform: scale(0); transition: transform .45s var(--ease-bounce), background .3s; }
.card__add svg { width: 20px; height: 20px; }
.card:hover .card__add { transform: scale(1); }
.card__add:hover { background: var(--ink); }
.card--sauce { grid-template-rows: auto auto; text-align: center; padding-top: 28px; }
.card--sauce .swatch { width: 96px; height: 96px; margin-inline: auto; border-radius: 50%; box-shadow: inset 0 -10px 20px rgba(0,0,0,.15), 0 14px 30px -12px rgba(0,0,0,.4); transition: transform .6s var(--ease-bounce); }
.card--sauce:hover .swatch { transform: scale(1.12) rotate(12deg); }
.card--sauce .card__foot { justify-content: center; }
.card--sauce .card__add { display: none; }
.card__shine { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 45%); opacity: 0; transition: opacity .4s; }
.card:hover .card__shine { opacity: 1; }
.grid.is-switching .card { animation: cardOut .22s var(--ease) both; animation-delay: calc(var(--i) * 12ms); }
@keyframes cardOut { to { opacity: 0; transform: translateY(-24px) scale(.96);} }
.menu__note { text-align: center; font-size: .9rem; color: rgba(251,230,200,.6); margin-top: 32px; }

/* ---------- Feature (Box / Kids) ---------- */
.feature { background: var(--paper); padding-block: 40px clamp(80px, 10vw, 140px); }
.feature__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; }
.feature__card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; display: grid; align-items: end; color: var(--white); background: var(--green); }
.feature__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.feature__card:hover img { transform: scale(1.06); }
.feature__card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,42,29,.92) 20%, rgba(10,42,29,.1) 65%); }
.feature__body { position: relative; z-index: 1; padding: 32px; display: grid; gap: 8px; justify-items: start; }
.feature__body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.feature__body h3 span { display: block; font-size: .5em; color: var(--mustard); }
.feature__body p { max-width: 42ch; color: rgba(255,255,255,.85); }
.feature__price { font-family: var(--display); font-weight: 900; display: flex; align-items: baseline; gap: 6px; margin-top: 8px; }
.feature__price b { font-size: 2.6rem; line-height: 1; color: var(--mustard); }
.feature__price small { font-weight: 700; color: rgba(255,255,255,.8); }
.feature__card--kids { background: var(--sauce); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); position: relative; }
.gallery__pin { padding-block: clamp(40px, 6vw, 72px) 0; overflow: hidden; }
.gallery.is-sticky .gallery__pin { position: sticky; top: 0; height: 100vh; height: 100svh; padding-block: 0; display: flex; flex-direction: column; justify-content: center; }
.gallery.is-sticky .gallery__track { padding-bottom: 0; }
.gallery__head { margin-bottom: 28px; max-width: 800px; flex: none; }
.gallery__head h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
.gallery__track { display: flex; gap: 22px; padding-inline: var(--gutter); padding-bottom: clamp(40px, 6vw, 72px); width: max-content; will-change: transform; transform: translate3d(0,0,0); }
.gallery__item { position: relative; margin: 0; flex: none; height: clamp(260px, 50vh, 520px); aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-dim); }
.gallery__item--tall { aspect-ratio: 3/4; }
.gallery__item--wide { aspect-ratio: 5/4; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption { position: absolute; bottom: 16px; inset-inline-start: 16px; padding: 8px 14px; border-radius: 999px; background: var(--paper); color: var(--green-deep); font-family: var(--display); font-weight: 800; font-size: .85rem; transform: translateY(20px); opacity: 0; transition: transform .5s var(--ease), opacity .4s; }
.gallery__item:hover figcaption { transform: none; opacity: 1; }

/* ---------- Press ---------- */
.press { background: var(--paper); }
.press__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.press__card { display: grid; grid-template-columns: 200px 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.press__card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(15,61,42,.5); }
.press__img { overflow: hidden; }
.press__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.press__card:hover .press__img img { transform: scale(1.08); }
.press__body { padding: 26px 26px 26px; display: grid; gap: 10px; align-content: start; }
.press__tag { justify-self: start; padding: 3px 10px; border-radius: 999px; background: var(--green); color: var(--cream); font-family: var(--display); font-weight: 800; font-size: .72rem; letter-spacing: .05em; }
.press__card:first-child .press__tag { background: var(--pink); color: var(--ink); }
.press__body h3 { font-size: 1.35rem; }
.press__body p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Branches ---------- */
.branches { background: var(--green); color: var(--cream); }
.branches__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips button { padding: 8px 18px; border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: .9rem; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(251,230,200,.4); transition: background .3s, color .3s, transform .4s var(--ease-bounce); }
.chips button:hover { transform: translateY(-2px); }
.chips button.is-active { background: var(--mustard); color: var(--green-deep); box-shadow: none; }
.branches__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; margin-bottom: 40px; }
.branch { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(251,230,200,.18); transition: opacity .4s, transform .5s var(--ease); }
.branch.is-out { opacity: 0; transform: translateY(10px); }
.branch__city { width: 46px; height: 46px; border-radius: 14px; background: rgba(251,230,200,.12); display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: .8rem; transition: background .3s, transform .5s var(--ease-bounce); }
.branch:hover .branch__city { background: var(--sauce); transform: rotate(-8deg); }
.branch__name { font-family: var(--display); font-weight: 800; font-size: 1.15rem; display: grid; }
.branch__name small { font-family: var(--body); font-weight: 400; font-size: .8rem; color: var(--mustard); }
.branch__go { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: rgba(251,230,200,.7); transition: color .3s, transform .4s var(--ease); }
.branch:hover .branch__go { color: var(--cream); transform: translateX(-4px); }
[dir="ltr"] .branch:hover .branch__go { transform: translateX(4px); }
.branch__go svg { width: 16px; height: 16px; }
[dir="rtl"] .branch__go svg { transform: scaleX(-1); }

/* ---------- App ---------- */
.app { background: var(--cream); overflow: hidden; }
.app__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.app__copy h2 { margin-bottom: 16px; }
.app__copy > p { color: var(--ink-soft); max-width: 48ch; margin-bottom: 28px; }
.app__stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 16px; background: var(--ink); color: var(--white); transition: transform .5s var(--ease), background .3s; }
.store:hover { background: var(--green); }
.store svg { width: 28px; height: 28px; }
.store span { display: grid; line-height: 1.1; direction: ltr; text-align: left; }
.store small { font-size: .7rem; opacity: .8; }
.store b { font-family: var(--display); font-size: 1rem; }
.app__phone { display: grid; place-items: center; }
.phone { width: 280px; aspect-ratio: 9/18.5; border-radius: 44px; background: var(--ink); padding: 12px; box-shadow: 0 50px 100px -40px rgba(16,32,26,.7); transform: rotate(-6deg); transition: transform .8s var(--ease); }
.app__phone:hover .phone { transform: rotate(0deg) translateY(-8px); }
.phone__screen { height: 100%; border-radius: 34px; background: var(--paper); overflow: hidden; display: grid; grid-template-rows: auto 1fr 1fr 1fr auto; gap: 10px; padding: 14px; }
.phone__top { background: var(--green-deep); border-radius: 18px; padding: 22px 14px 12px; display: grid; place-items: center; }
.phone__top img { height: 22px; }
.phone__card { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 10px; padding: 8px; border-radius: 16px; background: var(--cream); font-size: .8rem; animation: slideIn .8s var(--ease) both; }
.phone__card:nth-child(2) { animation-delay: .2s; } .phone__card:nth-child(3) { animation-delay: .35s; } .phone__card:nth-child(4) { animation-delay: .5s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px);} }
.phone__card img { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; }
.phone__card b { font-family: var(--display); font-size: .82rem; }
.phone__card span { font-weight: 700; color: var(--green); }
.phone__cta { background: var(--sauce); color: var(--white); border-radius: 14px; padding: 12px; text-align: center; font-family: var(--display); font-weight: 800; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.contact__info h2 { margin-bottom: 28px; }
.contact__list { display: grid; gap: 14px; margin-bottom: 32px; }
.contact__list li { display: grid; gap: 2px; padding-bottom: 14px; border-bottom: 1px solid var(--paper-dim); }
.contact__list span { font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--display); font-weight: 700; }
.contact__list a, .contact__list b { justify-self: start; font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--green); transition: color .3s; }
.contact__list a:hover { color: var(--sauce); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--cream); color: var(--green); transition: transform .5s var(--ease-bounce), background .3s, color .3s; }
.socials a:hover { transform: translateY(-4px) rotate(-6deg); background: var(--green); color: var(--cream); }
.socials svg { width: 20px; height: 20px; }

.forms { position: relative; }
.forms__switch { position: relative; display: inline-flex; padding: 5px; border-radius: 999px; background: var(--cream); margin-bottom: 28px; }
.forms__switch button { position: relative; z-index: 1; padding: 10px 24px; border-radius: 999px; font-family: var(--display); font-weight: 800; color: var(--ink-soft); transition: color .3s; }
.forms__switch button.is-active { color: var(--white); }
.forms__glider { position: absolute; top: 5px; bottom: 5px; inset-inline-start: 5px; width: calc(50% - 5px); border-radius: 999px; background: var(--green); transition: transform .5s var(--ease-bounce); }
.forms__switch.is-second .forms__glider { transform: translateX(100%); }
[dir="rtl"] .forms__switch.is-second .forms__glider { transform: translateX(-100%); }
.form { display: none; grid-template-columns: 1fr 1fr; gap: 18px; }
.form.is-active { display: grid; animation: formIn .6s var(--ease); }
@keyframes formIn { from { opacity: 0; transform: translateY(16px);} }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  width: 100%; padding: 22px 18px 10px; border-radius: 16px; border: 2px solid var(--paper-dim); background: var(--white); font: inherit; color: var(--ink); transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.field select { appearance: none; padding-top: 22px; }
.field label { position: absolute; top: 17px; inset-inline-start: 18px; color: var(--ink-soft); pointer-events: none; transition: transform .35s var(--ease), font-size .3s, color .3s; transform-origin: top left; }
[dir="rtl"] .field label { transform-origin: top right; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(30,107,72,.12); }
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label, .field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label, .field label.is-up { transform: translateY(-12px); font-size: .72rem; color: var(--green); }
.field.is-error input { border-color: var(--sauce); animation: shake .4s; }
@keyframes shake { 0%,100% { transform: translateX(0);} 25% { transform: translateX(-6px);} 75% { transform: translateX(6px);} }
.field--file input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.field--file label { position: static; display: flex; justify-content: space-between; gap: 12px; padding: 18px; border: 2px dashed var(--paper-dim); border-radius: 16px; pointer-events: none; color: var(--ink-soft); transition: border-color .3s, background .3s; }
.field--file:hover label { border-color: var(--green); background: var(--cream); }
.field--file b { color: var(--green); font-size: .85rem; }
.form__done[hidden] { display: none; }
.form__done { display: grid; place-items: center; gap: 6px; text-align: center; padding: 48px 20px; border-radius: var(--radius-lg); background: var(--cream); animation: formIn .6s var(--ease); }
.form__check svg { width: 72px; height: 72px; fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.form__check circle { stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw .8s var(--ease) forwards; }
.form__check path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s .5s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0;} }
.form__done b { font-family: var(--display); font-size: 1.4rem; margin-top: 10px; }
.form__done span { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--green-deep); color: var(--cream); overflow: hidden; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; padding-block: 64px 40px; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: rgba(251,230,200,.7); font-size: .95rem; }
.footer__nav { display: grid; gap: 6px; align-content: start; }
.footer__nav a, .footer__meta a { position: relative; width: fit-content; font-family: var(--display); font-weight: 700; transition: color .3s; }
.footer__nav a::after { content: ''; position: absolute; bottom: 0; inset-inline-start: 0; width: 100%; height: 2px; background: var(--mustard); transform: scaleX(0); transform-origin: inline-end; transition: transform .4s var(--ease); }
.footer__nav a:hover::after { transform: scaleX(1); transform-origin: inline-start; }
.footer__meta { display: grid; gap: 6px; align-content: start; justify-items: start; color: rgba(251,230,200,.8); }
.footer__meta a:hover { color: var(--mustard); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-block: 20px 140px; font-size: .82rem; color: rgba(251,230,200,.55); border-top: 1px solid rgba(251,230,200,.12); }
.footer__word { position: absolute; bottom: -.22em; left: 50%; translate: -50% 0; display: flex; font-family: var(--display); font-weight: 900; font-size: clamp(6rem, 22vw, 20rem); line-height: 1; color: rgba(251,230,200,.06); pointer-events: none; direction: ltr; user-select: none; }
.footer__word span { display: inline-block; }



.totop { position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 700; width: 52px; height: 52px; border-radius: 50%; background: var(--sauce); color: var(--white); display: grid; place-items: center; box-shadow: 0 16px 30px -12px rgba(0,0,0,.5); transform: translateY(100px) scale(.6); transition: transform .6s var(--ease-bounce), background .3s; }
.totop.is-visible { transform: none; }
.totop:hover { background: var(--ink); }
.totop svg { width: 22px; height: 22px; }

/* ---------- Scroll reveals ---------- */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--d, 0) * 70ms); }
.reveal-up.is-in { opacity: 1; transform: none; }
.reveal-clip { clip-path: inset(12% 8% 12% 8% round var(--radius-lg)); transform: scale(.94); transition: clip-path .8s var(--ease), transform .8s var(--ease); }
.reveal-clip.is-in { clip-path: inset(0 0 0 0 round var(--radius-lg)); transform: none; }

/* language switch transition */
body.is-switching-lang main, body.is-switching-lang .footer, body.is-switching-lang .nav__links { animation: langOut .35s var(--ease) both; }
@keyframes langOut { to { opacity: 0; filter: blur(6px); transform: translateY(10px);} }
body.is-switched-lang main, body.is-switched-lang .footer, body.is-switched-lang .nav__links { animation: langIn .6s var(--ease) both; }
@keyframes langIn { from { opacity: 0; filter: blur(6px); transform: translateY(-10px);} }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .nav__actions .btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual { max-width: 440px; order: -1; margin-top: 10px; }
  .hero { padding-top: calc(var(--nav-h) + 8px); }
  .values { grid-template-columns: 1fr; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__img { aspect-ratio: 4/3; }
  .feature__grid { grid-template-columns: 1fr; }
  .press__grid { grid-template-columns: 1fr; }
  .branches__list { grid-template-columns: 1fr; }
  .app__inner { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero__title { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  .hero__stats { gap: 20px; }
  .press__card { grid-template-columns: 1fr; }
  .press__img { aspect-ratio: 16/9; }
  .form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .marquee--sauce { margin-block: -10px 10px; }
  .feature__card { min-height: 380px; }
  .hero__float--c { display: none; }
  .badge-rot { width: 30%; }
  .totop { bottom: 16px; inset-inline-end: 16px; width: 46px; height: 46px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-up, .reveal-clip { opacity: 1; transform: none; clip-path: none; }
  .title-outline::after { clip-path: inset(0 0 0 0); }
  .hero__title .char { transform: none; }
  .cursor { display: none !important; }
  html { scroll-behavior: auto; }
}
