/* ════════════════════════════════════════════════════
   PANDA FOOD — Stylesheet v2
   Police: Arial | Mobile-first | Responsive complet
════════════════════════════════════════════════════ */

:root {
  --t:   #1AB4A0;
  --td:  #0D6B60;
  --tp:  #0B2C22;
  --tl:  #5EDDD0;
  --tg:  #E4F7F4;
  --cr:  #F5EFE0;
  --cr2: #EDE5CC;
  --crw: #FAF8F0;
  --ink: #0A1E18;
  --k2:  #142E24;
  --k3:  #1C3C30;
  --gld: #C89818;
  --snd: #B8A870;
  --w:   #FEFCF5;
  --fd:  Arial, Helvetica, sans-serif;
  --fb:  Arial, Helvetica, sans-serif;
  --e:   cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 2px 8px rgba(10,30,20,.06);
  --shadow-md: 0 8px 24px rgba(10,30,20,.08);
  --shadow-lg: 0 16px 48px rgba(10,30,20,.12);
}

/* ── Reset & Base ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { font-size:16px; scroll-behavior:smooth }
body {
  font-family: var(--fb);
  color: var(--ink);
  background: var(--cr);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img,svg { display:block; max-width:100% }
a { text-decoration:none; color:inherit; transition: color .2s var(--e) }
ul { list-style:none }
button { cursor:pointer; border:none; background:none; font-family:inherit }
::selection { background:var(--t); color:var(--w) }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 900;
  height: 68px; display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
}
.nav.s {
  background: rgba(245,239,224,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(26,180,160,.08);
  box-shadow: 0 1px 12px rgba(10,30,20,.04);
}
.nav.dk .nn { color: rgba(245,239,224,.92) }
.nav.dk .nn b { color: var(--tl) }
.nav.dk .nl { color: rgba(245,239,224,.5) }
.nav.dk .nl:hover, .nav.dk .nl.a { color: rgba(245,239,224,.95) }
.nav.dk .nl::after { background: var(--tl) }
.nav.dk .nc { background: var(--t); color: var(--w) }
.nav.dk .nb span { background: rgba(245,239,224,.85) }
.nav.s.dk { background: rgba(11,44,34,.94); backdrop-filter: blur(24px) }

.nw {
  width: 100%; max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nbr { display: flex; align-items: center; gap: 10px }
.nm {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--t);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  transition: transform .25s var(--e);
}
.nbr:hover .nm { transform: scale(1.06) }
.nm img { width: 78%; height: 78%; object-fit: contain }
.nn {
  font-family: var(--fd); font-size: 16px; font-weight: 800;
  letter-spacing: -.3px; color: var(--ink); transition: color .25s;
}
.nn b { color: var(--t); font-weight: 800; transition: color .25s }
.nls { display: flex; align-items: center; gap: 26px }
.nl {
  font-size: 13.5px; font-weight: 500; color: var(--k3);
  transition: color .2s var(--e); position: relative; padding-bottom: 3px;
}
.nl::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--t); border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--e);
}
.nl:hover, .nl.a { color: var(--td) }
.nl:hover::after, .nl.a::after { transform: scaleX(1) }
.nc {
  display: flex; align-items: center; gap: 7px;
  background: var(--t); color: var(--w);
  padding: 10px 22px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  transition: all .25s var(--e);
  box-shadow: 0 2px 12px rgba(26,180,160,.25);
}
.nc:hover {
  background: var(--tl); color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(26,180,160,.3);
}
.nc svg { width: 13px; height: 13px }

/* Burger */
.nb { display: none; flex-direction: column; gap: 5px; width: 24px; padding: 4px 0 }
.nb span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--e), opacity .3s var(--e);
}

/* Mobile overlay */
.nmo {
  display: none; position: fixed; inset: 0; top: 68px;
  background: var(--crw); z-index: 800;
  padding: 48px 32px;
  flex-direction: column; gap: 12px;
  animation: slideDown .3s var(--e);
}
.nmo.o { display: flex }
.nmo .nl {
  font-family: var(--fd); font-size: 26px; font-weight: 700;
  color: var(--ink); padding: 10px 0;
  border-bottom: 1px solid rgba(10,30,20,.06);
}
.nmo .nl::after { display: none }

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

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: all .25s var(--e);
  letter-spacing: -.1px;
  position: relative;
  overflow: hidden;
}
.bl { padding: 16px 36px; font-size: 15px }
.bsm { padding: 9px 18px; font-size: 12px; font-weight: 600 }
.bp { background: var(--t); color: var(--w); box-shadow: 0 2px 12px rgba(26,180,160,.2) }
.bp:hover { background: var(--tl); color: var(--ink); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,180,160,.3) }
.bs { background: transparent; color: var(--ink); border: 1.5px solid rgba(10,30,20,.15) }
.bs:hover { border-color: var(--t); color: var(--td); transform: translateY(-3px) }
.bw { background: var(--w); color: var(--td) }
.bw:hover { background: var(--cr); transform: translateY(-3px) }
.bo { background: transparent; color: rgba(245,239,224,.78); border: 1.5px solid rgba(245,239,224,.2) }
.bo:hover { border-color: rgba(245,239,224,.5); color: var(--cr); transform: translateY(-3px) }
.bgld { background: var(--gld); color: var(--w); box-shadow: 0 2px 12px rgba(200,152,24,.2) }
.bgld:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(200,152,24,.3) }
.big { background: linear-gradient(135deg,#E1306C,#833AB4 50%,#F77737); color: var(--w) }
.big:hover { filter: brightness(1.08); transform: translateY(-3px) }
.btk { background: var(--ink); color: var(--w) }
.btk:hover { background: var(--k2); transform: translateY(-3px) }
.btn svg { width: 15px; height: 15px; flex-shrink: 0 }

/* Wrapper */
.ww { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 48px }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  background: var(--tp);
  min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 85% 20%, rgba(26,180,160,.14) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 10% 85%, rgba(26,180,160,.08) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; pointer-events: none;
  background: linear-gradient(to top, rgba(11,44,34,.3), transparent);
}
.hero-bg-logo {
  position: absolute; right: -40px; top: 40%;
  transform: translateY(-55%);
  width: min(500px, 55vw);
  opacity: .06; pointer-events: none; z-index: 0;
  animation: floatLogo 8s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(-55%) }
  50% { transform: translateY(-60%) }
}
.hero-body {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 48px 56px;
  max-width: 1400px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(94,221,208,.7);
  margin-bottom: 28px;
}
.hero-h {
  font-family: var(--fd);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -4px;
  color: var(--cr);
  margin-bottom: 0;
}
.hero-h em { font-style: normal; color: var(--t) }
.hero-foot {
  border-top: 1px solid rgba(245,239,224,.1);
  padding: 32px 48px;
  max-width: 1400px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.hero-desc {
  font-size: 16px;
  color: rgba(245,239,224,.5);
  font-weight: 400;
  line-height: 1.7;
  max-width: 380px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap }

/* Hero animations */
.hero-eyebrow { animation: heroFade .7s var(--e) .05s both }
.hero-h { animation: heroFade .9s var(--e) .15s both }
.hero-foot { animation: heroFade .8s var(--e) .35s both }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* ════════════════════════════════
   INTRO
════════════════════════════════ */
.intro { background: var(--crw); padding: 100px 0 }
.intro-inner {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 80px; align-items: start;
}
.intro-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--td);
  display: block; margin-bottom: 20px;
}
.intro-h {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.intro-p {
  font-size: 16px; line-height: 1.8;
  color: var(--k3); font-weight: 400;
  margin-bottom: 14px;
}
.intro-p strong { font-weight: 600; color: var(--ink) }
.intro-aside {
  padding-top: 60px;
  display: flex; flex-direction: column; gap: 2px;
}
.intro-stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(10,30,20,.08);
  transition: transform .3s var(--e);
  text-align: center;
}
.intro-stat:first-child { border-top: 1px solid rgba(10,30,20,.08) }
.intro-stat:hover { transform: translateX(6px) }
.intro-stat-n {
  font-family: var(--fd);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800; color: var(--t);
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 6px;
}
.intro-stat-l { font-size: 14px; color: var(--k3); line-height: 1.55 }

/* ════════════════════════════════
   CARTE
════════════════════════════════ */
.carte {
  background: var(--tp); padding: 100px 0;
  overflow: hidden; position: relative;
}
.carte::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 60% at 90% 15%, rgba(26,180,160,.15) 0%, transparent 52%);
}
.carte-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px;
  margin-bottom: 52px; flex-wrap: wrap;
}
.carte-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(94,221,208,.65);
  display: block; margin-bottom: 14px;
}
.carte-h {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.05; color: var(--cr);
}
.carte-sub {
  font-size: 14px; color: rgba(245,239,224,.4);
  font-weight: 400; max-width: 240px;
  text-align: right; line-height: 1.65; padding-bottom: 3px;
}
.carte-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  background: rgba(245,239,224,.04);
  border-radius: 20px; overflow: hidden;
}
.bowl-hero {
  grid-row: span 2;
  background: rgba(11,44,34,.8);
  padding: 0;
  display: flex; flex-direction: column;
  transition: background .3s var(--e); cursor: pointer;
}
.bowl-hero:hover { background: rgba(26,180,160,.12) }
.bowl-hero-vis {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 32px; min-height: 300px;
  background: rgba(0,0,0,.1);
}
.bowl-hero-vis img {
  width: 85%; max-width: 280px;
  transition: transform .5s var(--e);
}
.bowl-hero:hover .bowl-hero-vis img { transform: scale(1.06) translateY(-6px) }
.bowl-hero-body { padding: 28px 32px 32px }
.bowl-hero-h {
  font-family: var(--fd); font-size: 22px; font-weight: 800;
  color: var(--cr); margin-bottom: 8px; letter-spacing: -.4px;
}
.bowl-hero-ing {
  font-size: 14px; color: rgba(245,239,224,.45);
  line-height: 1.65; margin-bottom: 14px;
}
/* Small bowl */
.bowl-sm {
  background: rgba(11,44,34,.8);
  padding: 22px 26px; display: flex; gap: 20px; align-items: center;
  transition: background .3s var(--e); cursor: pointer;
}
.bowl-sm:hover { background: rgba(26,180,160,.12) }
.bowl-sm-vis {
  width: 92px; height: 92px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.12); border-radius: 14px; overflow: hidden;
}
.bowl-sm-vis img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .4s var(--e);
}
.bowl-sm:hover .bowl-sm-vis img { transform: scale(1.1) }
.bowl-sm-body {}
.bowl-sm-h {
  font-family: var(--fd); font-size: 16px; font-weight: 700;
  color: var(--cr); margin-bottom: 5px; letter-spacing: -.2px;
}
.bowl-sm-ing {
  font-size: 13px; color: rgba(245,239,224,.38);
  line-height: 1.55; margin-bottom: 10px;
}
/* Tags */
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(26,180,160,.2); color: var(--tl);
}
.tag-s { background: rgba(200,30,30,.2); color: #FF8888 }
.tag-v { background: rgba(40,160,60,.18); color: #7EDE70 }
.tag-g { background: rgba(200,152,24,.14); color: #E0B840 }
/* Carte footer */
.carte-footer {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,224,.07);
  gap: 24px; flex-wrap: wrap;
}
.carte-note { font-size: 14px; color: rgba(245,239,224,.4); font-weight: 400 }
.carte-note strong { color: rgba(245,239,224,.7); font-weight: 600 }

/* ════════════════════════════════
   CC BAND
════════════════════════════════ */
.cc { background: var(--t); padding: 64px 0 }
.cc-in {
  max-width: 1160px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cc-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 10px;
}
.cc-h {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800; color: var(--w);
  letter-spacing: -1px; line-height: 1.08; margin-bottom: 6px;
}
.cc-p { font-size: 15px; color: rgba(255,255,255,.6); font-weight: 400 }

/* ════════════════════════════════
   ENGAGEMENT
════════════════════════════════ */
.eng { background: var(--k2); padding: 100px 0 }
.eng-inner {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 80px; align-items: start;
}
.eng-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(94,221,208,.65);
  display: block; margin-bottom: 18px;
}
.eng-h {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.05; color: var(--cr); margin-bottom: 22px;
}
.eng-p {
  font-size: 16px; color: rgba(245,239,224,.5);
  font-weight: 400; line-height: 1.75; margin-bottom: 36px; max-width: 400px;
}
.eng-list { border-top: 1px solid rgba(245,239,224,.08) }
.eng-item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245,239,224,.08);
  transition: transform .25s var(--e), background .25s var(--e);
}
.eng-item:hover {
  transform: translateX(8px);
}
.eng-item-n {
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  color: rgba(26,180,160,.6); letter-spacing: 1px;
  flex-shrink: 0; width: 28px;
}
.eng-item-t { font-size: 15px; color: rgba(245,239,224,.72); font-weight: 400; line-height: 1.55 }
.eng-side {
  padding-top: 62px;
  display: flex; align-items: center; justify-content: center;
}
.eng-logo {
  width: min(280px, 100%); height: min(280px, 100vw);
  border-radius: 50%;
  background: rgba(245,239,224,.05);
  border: 1px solid rgba(245,239,224,.08);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,180,160,.1) }
  50% { box-shadow: 0 0 0 20px rgba(26,180,160,0) }
}
.eng-logo img { width: 60%; filter: drop-shadow(0 4px 12px rgba(0,0,0,.25)) }

/* ════════════════════════════════
   CLOSING
════════════════════════════════ */
.closing {
  background: var(--cr); padding: 100px 0;
  border-top: 1px solid rgba(10,30,20,.06);
}
.closing-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.closing-left {}
.closing-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--td);
  display: block; margin-bottom: 18px;
}
.closing-h {
  font-family: var(--fd);
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 800; letter-spacing: -2.5px;
  line-height: .94; color: var(--ink); margin-bottom: 0;
}
.closing-h em { font-style: normal; color: var(--t) }
.closing-right {
  display: flex; flex-direction: column;
  justify-content: flex-end; gap: 22px;
}
.closing-p { font-size: 16px; color: var(--k3); font-weight: 400; line-height: 1.75 }
.closing-ctas { display: flex; gap: 12px; flex-wrap: wrap }
.closing-social { margin-top: 8px; display: flex; gap: 10px; flex-wrap: wrap }

/* ════════════════════════════════
   PAGE HERO (sub-pages)
════════════════════════════════ */
.ph {
  background: var(--tp); padding: 150px 0 88px;
  position: relative; overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 65% at 80% 50%, rgba(26,180,160,.14) 0%, transparent 54%);
}
.ph-in { position: relative; z-index: 1 }
.ph-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(94,221,208,.65);
  display: block; margin-bottom: 20px;
}
.ph-h {
  font-family: var(--fd);
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 800; color: var(--cr);
  letter-spacing: -2px; line-height: .97; margin-bottom: 18px;
}
.ph-p {
  font-size: 17px; color: rgba(245,239,224,.48);
  font-weight: 400; line-height: 1.75; max-width: 480px;
}

/* ── Process / Concept page ── */
.proc-sec { background: var(--crw); padding: 100px 0 }
.proc-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--td);
  display: block; margin-bottom: 16px;
}
.proc-h {
  font-family: var(--fd);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800; letter-spacing: -1.5px; margin-bottom: 52px;
}
.proc-list { border-top: 1px solid rgba(10,30,20,.07) }
.proc-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 38px 0;
  border-bottom: 1px solid rgba(10,30,20,.07);
  align-items: start;
  transition: transform .25s var(--e);
}
.proc-item:hover { transform: translateX(6px) }
.proc-n {
  font-family: var(--fd);
  font-size: clamp(46px, 5vw, 62px);
  font-weight: 800;
  color: rgba(26,180,160,.2); letter-spacing: -3px; line-height: 1;
  padding-top: 4px;
}
.proc-body {}
.proc-body-h {
  font-family: var(--fd); font-size: 18px; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -.2px;
}
.proc-body-p { font-size: 15px; color: var(--k3); line-height: 1.72; font-weight: 400 }

/* ── Click & Collect page ── */
.cc-pg-steps { background: var(--crw); padding: 100px 0 }
.cc-pg-frame {
  background: var(--crw); border-radius: 20px;
  border: 1px solid rgba(26,180,160,.11);
  padding: 56px; min-height: 460px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cc-pg-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--t), var(--tl));
}
.cc-pg-frame-ic {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--tg);
  display: flex; align-items: center; justify-content: center; color: var(--t);
}
.cc-pg-frame-ic svg { width: 26px; height: 26px }
.cc-pg-frame-h {
  font-family: var(--fd); font-size: 22px; font-weight: 800;
  letter-spacing: -.5px; color: var(--ink);
}
.cc-pg-frame-p {
  font-size: 15px; color: var(--k3); line-height: 1.72; max-width: 420px;
}
.cc-pg-frame-note {
  font-size: 12px; color: var(--snd);
  background: var(--cr2); padding: 7px 16px; border-radius: 999px;
}
.cc-pg-frame-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center }

/* ── Menu page ── */
.menu-banner {
  background: linear-gradient(135deg, var(--tg), #B4EDE8 160%);
  border-radius: 18px; padding: 48px; text-align: center;
  border: 1.5px dashed rgba(26,180,160,.2); margin-bottom: 52px;
}
.menu-banner h2 {
  font-family: var(--fd); font-size: 22px; font-weight: 800;
  color: var(--td); letter-spacing: -.5px; margin-bottom: 10px;
}
.menu-banner p { color: var(--k3); font-weight: 400; margin-bottom: 18px; font-size: 15px }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px }
.mc {
  background: var(--w); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(26,180,160,.07);
  transition: transform .3s var(--e), box-shadow .3s var(--e);
}
.mc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) }
.mc-vis {
  height: 180px; background: rgba(10,30,20,.03);
  display: flex; align-items: center; justify-content: center;
  padding: 6px; overflow: hidden;
}
.mc-vis img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .4s var(--e);
}
.mc:hover .mc-vis img { transform: translateY(-5px) scale(1.04) }
.mc-body { padding: 18px 22px 22px }
.mc-h {
  font-family: var(--fd); font-size: 16px; font-weight: 700;
  letter-spacing: -.2px; margin-bottom: 7px;
}
.mc-p { font-size: 14px; color: var(--k3); line-height: 1.65; margin-bottom: 10px }
.mc-tag {
  display: inline-block; background: rgba(26,180,160,.09);
  color: var(--td); font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.mc-tag-s { background: rgba(200,20,20,.08); color: #900C18 }
.mc-tag-v { background: rgba(40,160,60,.08); color: #1A5820 }
.mc-tag-g { background: rgba(200,152,24,.09); color: #6A4A08 }

/* ── Galerie ── */
.gg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px }
.gi {
  border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: transform .3s var(--e), box-shadow .3s var(--e);
}
.gi:hover { transform: scale(1.02); box-shadow: var(--shadow-md) }
.gi:first-child { grid-column: span 2 }
.gi-ph { position: relative; padding-top: 64% }
.gi:first-child .gi-ph { padding-top: 42% }
.gi-in {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.gi-logo {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  background: rgba(26,180,160,.1); border: 1px solid rgba(26,180,160,.14);
  display: flex; align-items: center; justify-content: center;
}
.gi-logo img { width: 60%; height: 60%; object-fit: contain; opacity: .38 }
.gi-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--td); opacity: .48;
}
.g1 { background: linear-gradient(145deg, var(--tg), #9EE8E0) }
.g2 { background: linear-gradient(145deg, var(--cr2), var(--cr)) }
.g3 { background: linear-gradient(145deg, #9EE8E0, var(--tg)) }
.g4 { background: linear-gradient(145deg, var(--cr), var(--cr2)) }
.g5 { background: linear-gradient(145deg, #B4EDE8, #9EE8E0) }
.gnote { text-align: center; margin-top: 16px; font-size: 14px; color: var(--snd); font-style: italic }

/* ── Contact ── */
.cg { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px }
.fl { font-size: 13px; font-weight: 600; color: var(--k3) }
.fi,
textarea.contact-textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid rgba(10,30,20,.12);
  background: #FEFCF5 !important; color: #0A1E18 !important;
  font-family: var(--fb); font-size: 15px;
  outline: none;
  transition: border-color .2s var(--e), box-shadow .2s var(--e);
  -webkit-appearance: none; appearance: none;
}
.fi:focus,
textarea.contact-textarea:focus {
  border-color: var(--t);
  box-shadow: 0 0 0 4px rgba(26,180,160,.1);
}
textarea.contact-textarea { min-height: 120px; resize: vertical }
.ci { display: flex; flex-direction: column; gap: 20px }
.ci-it { display: flex; gap: 14px; align-items: flex-start }
.ci-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(26,180,160,.09); color: var(--t);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-ic svg { width: 16px; height: 16px }
.ci-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--snd); margin-bottom: 4px;
}
.ci-v { font-size: 15px; font-weight: 600; color: var(--ink) }

/* ── Legal ── */
.legal-w { max-width: 660px; margin: 0 auto }
.legal-w h2 {
  font-family: var(--fd); font-size: 18px; font-weight: 700;
  margin: 36px 0 10px; color: var(--ink);
}
.legal-w p { font-size: 15px; color: var(--k3); line-height: 1.8; margin-bottom: 12px }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer.ft {
  background: #040E0A; color: rgba(245,239,224,.3);
  padding: 60px 0 32px;
}
.ft-in { max-width: 1160px; margin: 0 auto; padding: 0 48px }
.ft-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px;
}
.ft-mark {
  width: 36px; height: 36px; background: var(--t); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 12px;
}
.ft-mark img { width: 74%; height: 74%; object-fit: contain }
.ft-name {
  font-family: var(--fd); font-size: 15px; font-weight: 800;
  color: var(--cr); margin-bottom: 8px;
}
.ft-name b { color: var(--tl) }
.ft-tag { font-size: 13px; line-height: 1.7; max-width: 180px }
footer.ft .ft-t {
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  color: var(--cr); letter-spacing: .3px; margin-bottom: 14px;
}
.ft-links li { margin-bottom: 8px }
.ft-links a {
  font-size: 13px; color: rgba(245,239,224,.3);
  transition: color .2s var(--e);
}
.ft-links a:hover { color: var(--tl) }
.ft-bot {
  border-top: 1px solid rgba(245,239,224,.06);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.ft-em { color: var(--tl); font-weight: 600; transition: color .2s var(--e) }
.ft-em:hover { color: rgba(94,221,208,.7) }

/* ════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════ */
.r {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--e), transform .7s var(--e);
}
.r.on { opacity: 1; transform: translateY(0) }
.d1 { transition-delay: .12s }
.d2 { transition-delay: .24s }
.d3 { transition-delay: .36s }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* ── Tablet landscape ── */
@media (max-width: 1100px) {
  .intro-inner { grid-template-columns: 1fr }
  .intro-aside { flex-direction: row; padding-top: 0; gap: 0 }
  .intro-stat { flex: 1; border-bottom: none; border-right: 1px solid rgba(10,30,20,.07) }
  .intro-stat:last-child { border-right: none }
  .eng-inner { grid-template-columns: 1fr }
  .eng-side { padding-top: 0; order: -1 }
  .closing-inner { grid-template-columns: 1fr; gap: 44px }
  .carte-grid { grid-template-columns: 1fr 1fr }
  .bowl-hero { grid-row: span 1 }
  .bowl-hero-vis { min-height: 200px; padding: 20px }
  .cc-in { justify-content: flex-start }
  .menu-grid { grid-template-columns: 1fr 1fr }
}

/* ── Tablet portrait ── */
@media (max-width: 900px) {
  .ww { padding: 0 24px }
  .ft-in { padding: 0 24px }
  .nw { padding: 0 20px }
  .hero-body, .hero-foot { padding-left: 24px; padding-right: 24px }
  .cc-in { padding: 0 24px }
  .nls { display: none }
  .nb { display: flex }
  .gg { grid-template-columns: 1fr 1fr }
  .gi:first-child { grid-column: span 2 }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px }
  .ft-bot { flex-direction: column; gap: 8px; text-align: center }
  .cg { grid-template-columns: 1fr; gap: 48px }
  .intro-aside { flex-direction: column; padding-top: 0 }
  .intro-stat { border-right: none; border-bottom: 1px solid rgba(10,30,20,.07) }
  .intro-stat:hover { transform: translateX(4px) }
  .proc-item { grid-template-columns: 56px 1fr; gap: 20px }
  .proc-n { font-size: 40px }
  .eng-inner { gap: 48px }
  .intro { padding: 80px 0 }
  .carte { padding: 80px 0 }
  .eng { padding: 80px 0 }
  .closing { padding: 80px 0 }
  .proc-sec { padding: 80px 0 }
  .cc-pg-steps { padding: 80px 0 }
  .ph { padding: 130px 0 72px }
  .menu-banner { padding: 36px 24px }
  .cc-pg-frame { padding: 40px 24px }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  html { font-size: 15px }

  .nav { height: 60px }
  .nmo { top: 60px; padding: 32px 24px }
  .nmo .nl { font-size: 22px; padding: 8px 0 }

  .hero { padding-top: 60px; min-height: 100dvh }
  .hero-body { padding: 48px 20px 40px }
  .hero-foot { padding: 24px 20px; gap: 24px; flex-direction: column; align-items: flex-start }
  .hero-h { letter-spacing: -2px; font-size: clamp(40px, 12vw, 64px) }
  .hero-eyebrow { font-size: 11px; letter-spacing: 3px; margin-bottom: 20px }
  .hero-desc { font-size: 15px; max-width: 100% }
  .hero-ctas { width: 100% }
  .hero-ctas .btn { flex: 1; justify-content: center; min-width: 0 }

  .ww { padding: 0 20px }
  .ft-in { padding: 0 20px }

  .intro { padding: 64px 0 }
  .intro-h { font-size: clamp(28px, 7vw, 38px); letter-spacing: -1px }
  .intro-p { font-size: 15px }
  .intro-stat-n { font-size: 36px }

  .carte { padding: 64px 0 }
  .carte-grid { grid-template-columns: 1fr }
  .bowl-hero { grid-row: auto }
  .carte-header { margin-bottom: 36px }
  .carte-h { font-size: clamp(26px, 7vw, 36px) }
  .carte-footer { flex-direction: column; align-items: flex-start; gap: 16px }

  .cc { padding: 48px 0 }
  .cc-in { flex-direction: column; align-items: flex-start; gap: 24px }
  .cc-h { font-size: clamp(20px, 5vw, 28px) }

  .eng { padding: 64px 0 }
  .eng-h { font-size: clamp(26px, 7vw, 36px) }
  .eng-p { font-size: 15px; max-width: 100% }
  .eng-logo { width: min(200px, 60vw); height: min(200px, 60vw) }

  .closing { padding: 64px 0 }
  .closing-inner { gap: 32px }
  .closing-h { font-size: clamp(30px, 8vw, 46px); letter-spacing: -1.5px }
  .closing-ctas { width: 100% }
  .closing-ctas .btn { flex: 1; justify-content: center }
  .closing-social { width: 100% }
  .closing-social .btn { flex: 1; justify-content: center }

  .ph { padding: 110px 0 60px }
  .ph-h { font-size: clamp(30px, 8vw, 44px); letter-spacing: -1.5px }
  .ph-p { font-size: 15px }

  .proc-sec { padding: 64px 0 }
  .proc-h { font-size: clamp(22px, 6vw, 32px); margin-bottom: 36px }
  .proc-item { grid-template-columns: 48px 1fr; gap: 16px; padding: 28px 0 }
  .proc-n { font-size: 34px }
  .proc-body-h { font-size: 16px }
  .proc-body-p { font-size: 14px }

  .cc-pg-steps { padding: 64px 0 }
  .cc-pg-frame { padding: 32px 20px; min-height: 360px }
  .cc-pg-frame-h { font-size: 18px }
  .cc-pg-frame-p { font-size: 14px }
  .cc-pg-frame-btns { flex-direction: column; width: 100% }
  .cc-pg-frame-btns .btn { width: 100%; justify-content: center }

  .menu-grid { grid-template-columns: 1fr }
  .menu-banner { padding: 32px 20px; border-radius: 14px }
  .menu-banner h2 { font-size: 18px }
  .menu-banner p { font-size: 14px }
  .mc-body { padding: 16px 18px 18px }
  .mc-h { font-size: 15px }
  .mc-p { font-size: 13px }

  .gg { grid-template-columns: 1fr }
  .gi:first-child { grid-column: span 1 }

  .cg { gap: 40px }
  .fg { margin-bottom: 12px }

  .ft-top { grid-template-columns: 1fr; gap: 28px }

  .btn { font-size: 13px; padding: 12px 22px }
  .bl { padding: 14px 28px; font-size: 14px }
  .bsm { padding: 8px 16px; font-size: 11px }

  .r { transform: translateY(20px) }
}

/* ── Very small mobile ── */
@media (max-width: 380px) {
  html { font-size: 14px }
  .hero-h { font-size: 36px; letter-spacing: -1.5px }
  .nw { padding: 0 16px }
  .ww { padding: 0 16px }
  .ft-in { padding: 0 16px }
  .hero-body { padding: 40px 16px 32px }
  .hero-foot { padding: 20px 16px }
  .nmo { padding: 28px 16px }
  .btn { font-size: 12px; padding: 11px 18px }
  .bl { padding: 13px 24px; font-size: 13px }
}
