/* =========================================================
   BI-NA-BI Catering & Events
   Palette taken from the logo: red pan, green Africa, gold emblem
   ========================================================= */
:root {
  --ink: #151311;
  --ink-2: #2a2622;
  --muted: #6d655c;
  --cream: #faf6ee;
  --sand: #f1e9da;
  --line: #e4d9c6;
  --white: #fff;
  --red: #d10a1e;
  --red-d: #a90818;
  --green: #0b6b35;
  --gold: #c9a24a;
  --gold-l: #e3c77f;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --shadow: 0 20px 50px -24px rgba(21, 19, 17, .35);
  --ease: cubic-bezier(.22, .8, .24, 1);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.1em; }
em { font-style: italic; color: var(--red); }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }
.container--narrow { width: min(760px, 100% - 40px); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; border-radius: 8px; }
.skip:focus { left: 8px; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid var(--bg);
  background: var(--bg); color: var(--fg);
  font: 500 .95rem/1 var(--sans); letter-spacing: .04em; text-decoration: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn .icon { width: 1.1em; height: 1.1em; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(209, 10, 30, .55); background: var(--red-d); border-color: var(--red-d); }
.btn:hover .icon { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow); }
.btn--small { padding: 11px 20px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--wa { --bg: var(--green); margin-top: 8px; }
.btn--wa:hover { background: #084f27; border-color: #084f27; box-shadow: 0 14px 30px -12px rgba(11, 107, 53, .6); }
.btn--wa:hover .icon { transform: none; }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s var(--ease);
}
.nav.is-scrolled, .subpage .nav {
  background: rgba(250, 246, 238, .86);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  --nav-h: 66px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand img { width: 54px; height: auto; transition: transform .5s var(--ease); }
.nav__brand:hover img { transform: rotate(-6deg) scale(1.05); }
.nav__word { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: .06em; line-height: 1; }
.nav__word small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; margin-top: 5px; color: var(--muted); font-weight: 500; }
.nav__links { display: flex; gap: 34px; }
.nav__links a { position: relative; text-decoration: none; font-size: .92rem; font-weight: 500; letter-spacing: .03em; padding: 6px 0; }
.nav__links > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav__links > a:hover::after, .nav__links > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 500; letter-spacing: .08em; color: var(--muted); }
.lang-switch a { text-decoration: none; padding: 2px 2px; transition: color .25s; }
.lang-switch a.is-active, .lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active { border-bottom: 1.5px solid var(--gold); }
.lang-switch--mobile { display: none; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease), top .4s var(--ease); }
.nav__toggle span:first-child { top: 17px; }
.nav__toggle span:last-child { top: 26px; }
.nav-open .nav__toggle span:first-child { top: 21.5px; transform: rotate(45deg); }
.nav-open .nav__toggle span:last-child { top: 21.5px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 40px) 0 80px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: float 16s ease-in-out infinite; }
.blob--gold  { width: 520px; height: 520px; background: #f0dca8; right: -120px; top: -80px; }
.blob--green { width: 360px; height: 360px; background: #b9d8c3; left: -140px; bottom: -60px; animation-delay: -5s; opacity: .45; }
.blob--red   { width: 260px; height: 260px; background: #f5c1c1; right: 26%; bottom: 4%; animation-delay: -9s; opacity: .35; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -26px) scale(1.06); } }

.hero__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero__title { font-size: clamp(2.9rem, 6.6vw, 5.6rem); font-weight: 500; line-height: 1.02; margin-bottom: 26px; }
.hero__title em { font-weight: 500; }
.hero__text { font-size: 1.15rem; color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(11, 107, 53, .5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(11, 107, 53, .45); } 70% { box-shadow: 0 0 0 12px rgba(11, 107, 53, 0); } 100% { box-shadow: 0 0 0 0 rgba(11, 107, 53, 0); } }

.hero__visual { display: flex; justify-content: center; }
.plate { position: relative; width: min(480px, 100%); aspect-ratio: 1; }
.plate__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 40s linear infinite; }
.plate__ring text { font: 500 13.5px var(--sans); letter-spacing: 3px; fill: var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }
.plate__inner {
  position: absolute; inset: 11%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #fdfaf4 55%, #f3ead8 100%);
  box-shadow: 0 40px 80px -30px rgba(21, 19, 17, .35), inset 0 0 0 1px rgba(201, 162, 74, .5), inset 0 0 0 12px #fff, inset 0 0 0 13px rgba(201, 162, 74, .35);
  display: grid; place-items: center; overflow: hidden;
}
.plate__inner img { width: 70%; transition: transform .8s var(--ease); }
.plate:hover .plate__inner img { transform: scale(1.04) rotate(-2deg); }
.plate--photo .plate__inner img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Strip ---------- */
.strip { background: var(--ink); color: var(--cream); padding: 34px 0; }
.strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strip__item { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.strip__item + .strip__item { border-left: 1px solid rgba(255, 255, 255, .12); }
.strip__item strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; color: var(--gold-l); font-style: italic; }
.strip__item span { font-size: .88rem; color: rgba(250, 246, 238, .7); letter-spacing: .04em; }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(46px, 6vw, 70px); }
.section__head .eyebrow { justify-content: center; }
.section__head .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.section__lead { color: var(--muted); font-size: 1.08rem; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about__art { position: relative; }
.about__frame {
  position: relative; z-index: 1; aspect-ratio: 4 / 5; border-radius: 240px 240px var(--radius) var(--radius);
  background: linear-gradient(160deg, #fff 0%, var(--sand) 100%);
  display: grid; place-items: center; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.about__frame img { width: 62%; }
.about__pattern {
  position: absolute; inset: auto -26px -26px auto; width: 70%; height: 60%; z-index: 0; border-radius: var(--radius);
  background-image: radial-gradient(var(--gold) 1.4px, transparent 1.6px);
  background-size: 18px 18px; opacity: .55;
}
.about__copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.about__copy p { color: var(--ink-2); }
.signature { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
.signature__name { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--ink); }
.signature__role { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ---------- Services ---------- */
.services { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; padding: 38px 32px 34px; border-radius: var(--radius); background: var(--cream);
  border: 1px solid transparent; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s, background .4s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; border-color: var(--line); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px;
  background: #fff; color: var(--green); border: 1px solid var(--line); transition: background .4s, color .4s, transform .5s var(--ease);
}
.card__icon .icon { width: 26px; height: 26px; }
.card:hover .card__icon { background: var(--green); color: #fff; transform: rotate(-8deg); }
.card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Menu ---------- */
.menu { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.menu::before {
  content: ""; position: absolute; width: 700px; height: 700px; right: -300px; top: -300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, .16), transparent 65%);
}
.section__head--light .eyebrow { color: var(--gold-l); }
.section__head--light .section__lead { color: rgba(250, 246, 238, .65); }
.menu__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.course {
  padding: 36px 32px; border-radius: var(--radius); background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(201, 162, 74, .22); transition: border-color .4s, background .4s, transform .5s var(--ease);
}
.course:hover { border-color: rgba(201, 162, 74, .6); background: rgba(255, 255, 255, .06); transform: translateY(-4px); }
.course__title { display: flex; align-items: baseline; gap: 14px; font-size: 1.75rem; color: var(--gold-l); font-style: italic; font-weight: 500; margin-bottom: 26px; }
.course__title span { font: 500 .8rem var(--sans); letter-spacing: .1em; color: rgba(250, 246, 238, .45); font-style: normal; }
.course ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.dish__top { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; white-space: nowrap; }
.dish__line { flex: 1; border-bottom: 1px dotted rgba(250, 246, 238, .25); transform: translateY(-4px); min-width: 12px; }
.dish__tag { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-l); white-space: nowrap; }
.dish__desc { display: block; font-size: .9rem; color: rgba(250, 246, 238, .6); line-height: 1.5; margin-top: 2px; }
.menu__note { position: relative; text-align: center; margin: 44px 0 0; color: rgba(250, 246, 238, .6); font-size: .95rem; font-style: italic; }

/* ---------- Packages ---------- */
.pk__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pk {
  position: relative; display: flex; flex-direction: column; padding: 42px 34px 34px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pk:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pk--featured { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: var(--shadow); }
.pk__badge {
  position: absolute; top: -13px; left: 34px; background: var(--gold); color: var(--ink);
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.pk h3 { font-size: 1.7rem; margin-bottom: 4px; }
.pk__sub { color: var(--muted); font-size: .9rem; letter-spacing: .04em; margin-bottom: 18px; }
.pk--featured .pk__sub { color: rgba(250, 246, 238, .6); }
.pk__price { font-family: var(--serif); font-size: 3.2rem; font-weight: 600; line-height: 1; margin-bottom: 26px; color: var(--red); }
.pk--featured .pk__price { color: var(--gold-l); }
.pk__price small { font: 500 .8rem var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 4px; vertical-align: middle; }
.pk--featured .pk__price small { color: rgba(250, 246, 238, .55); }
.pk ul { list-style: none; padding: 22px 0 0; margin: 0 0 30px; border-top: 1px solid var(--line); display: grid; gap: 12px; flex: 1; }
.pk--featured ul { border-color: rgba(255, 255, 255, .12); }
.pk li { display: flex; gap: 10px; font-size: .96rem; line-height: 1.5; }
.pk li .icon { color: var(--green); margin-top: 2px; }
.pk--featured li .icon { color: var(--gold-l); }
.pk--featured .btn--ghost { --fg: var(--cream); border-color: var(--cream); }
.pk__note { text-align: center; color: var(--muted); font-size: .92rem; margin: 36px 0 0; }

/* ---------- Gallery ---------- */
.gallery { padding: 0 0 20px; overflow: hidden; }
.gallery__track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 20px 16px; scrollbar-width: thin; }
.gallery__item { flex: 0 0 min(380px, 78vw); aspect-ratio: 4 / 5; margin: 0; border-radius: var(--radius); overflow: hidden; scroll-snap-align: center; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }

/* ---------- Steps ---------- */
.steps { background: var(--sand); }
.steps__grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.steps__grid::before { content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__num {
  display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--gold); font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--red);
  position: relative; z-index: 1; transition: background .4s, color .4s, transform .5s var(--ease);
}
.step:hover .step__num { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.08); }
.step h3 { font-size: 1.5rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Kente-inspired pattern band ---------- */
.kente {
  height: 10px;
  background:
    repeating-linear-gradient(90deg,
      var(--red) 0 28px, var(--gold) 28px 36px, var(--green) 36px 64px, var(--ink) 64px 70px, var(--gold) 70px 78px);
}

/* ---------- Quote ---------- */
.quote { background: var(--cream); text-align: center; }
.quote .container { padding: clamp(70px, 9vw, 110px) 0; }
.quote__text { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.15; font-weight: 500; margin: 0; }

/* ---------- Contact ---------- */
.contact { background: #fff; }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact__info > p { color: var(--muted); }
.info { list-style: none; padding: 0; margin: 30px 0 26px; display: grid; gap: 18px; }
.info li { display: flex; gap: 16px; align-items: center; }
.info .icon { width: 46px; height: 46px; padding: 12px; border-radius: 50%; background: var(--cream); color: var(--green); border: 1px solid var(--line); }
.info small { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.info a, .info span { text-decoration: none; font-weight: 500; }
.info a:hover { color: var(--red); }

.form { background: var(--cream); padding: clamp(28px, 4vw, 46px); border-radius: 24px; border: 1px solid var(--line); display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; font: 400 1rem var(--sans); color: var(--ink);
  padding: 24px 16px 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .3s, box-shadow .3s; appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23151311' stroke-width='1.5'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field label {
  position: absolute; left: 17px; top: 17px; font-size: 1rem; color: var(--muted); pointer-events: none;
  transform-origin: left top; transition: transform .25s var(--ease), color .25s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select + label, .field label.is-fixed { transform: translateY(-10px) scale(.74); color: var(--green); letter-spacing: .04em; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(11, 107, 53, .1); }
.field.has-error input, .field.has-error textarea { border-color: var(--red); box-shadow: 0 0 0 4px rgba(209, 10, 30, .08); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--muted); cursor: pointer; line-height: 1.5; }
.check input { width: 20px; height: 20px; accent-color: var(--green); margin: 1px 0 0; flex: none; }
.check.has-error span { color: var(--red); }
.check a { text-decoration: none; color: var(--green); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__alert { padding: 14px 18px; border-radius: 12px; font-size: .95rem; animation: fadeUp .5s var(--ease); }
.form__alert.is-ok { background: #e3f1e8; color: #0a5a2d; border: 1px solid #b7dac4; }
.form__alert.is-err { background: #fbe7e8; color: var(--red-d); border: 1px solid #f2c3c6; }
.form button[disabled] { opacity: .7; pointer-events: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(250, 246, 238, .75); font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 70px 0 50px; }
.footer__brand img { width: 84px; margin-bottom: 14px; }
.footer__name { font-family: var(--serif); font-size: 1.7rem; color: var(--cream); letter-spacing: .06em; margin-bottom: 6px; }
.footer__name span { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-l); }
.footer__tag { max-width: 340px; font-size: .92rem; }
.footer h4 { color: var(--cream); font: 500 .75rem var(--sans); letter-spacing: .22em; text-transform: uppercase; margin: 8px 0 20px; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer__list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.footer__list .icon { color: var(--gold); margin-top: 2px; }
.footer a { text-decoration: none; transition: color .25s; }
.footer a:hover { color: var(--gold-l); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 0 30px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .82rem; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .4);
  transform: translateY(120px); transition: transform .5s var(--ease);
}
.wa-float .icon { width: 28px; height: 28px; stroke-width: 1.8; }
.wa-float.is-visible { transform: none; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Legal page ---------- */
.legal { padding: calc(var(--nav-h) + 70px) 0 100px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.legal h2 { font-size: 2.2rem; margin-top: 60px; }
.legal h3 { font-size: 1.35rem; margin-top: 30px; }
.legal p { color: var(--ink-2); }
.legal a { color: var(--green); }
.legal__back { display: inline-block; margin-bottom: 30px; text-decoration: none; font-size: .9rem; color: var(--muted) !important; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { --d: 100ms; }
.hero .reveal:nth-child(3) { --d: 200ms; }
.hero .reveal:nth-child(4) { --d: 300ms; }
.hero .reveal:nth-child(5) { --d: 400ms; }
.hero__visual.reveal { --d: 250ms; transform: scale(.94); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav__links { gap: 22px; }
  .cards, .menu__grid, .pk__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid .course:last-child, .pk__grid .pk:last-child { grid-column: 1 / -1; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .steps__grid::before { display: none; }
}
@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav { background: rgba(250, 246, 238, .9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
  .nav__toggle { display: block; }
  .nav__right .lang-switch, .nav__right .btn { display: none; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto; flex-direction: column; gap: 0; padding: 10px 20px 30px;
    background: var(--cream); box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .25);
    clip-path: inset(0 0 100% 0); transition: clip-path .5s var(--ease); visibility: hidden;
  }
  .nav-open .nav__links { clip-path: inset(0 0 0 0); visibility: visible; }
  .nav__links > a { font-family: var(--serif); font-size: 1.7rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links > a::after { display: none; }
  .lang-switch--mobile { display: flex; gap: 18px; padding-top: 20px; font-size: 1rem; }
  .hero { padding-top: calc(var(--nav-h) + 30px); min-height: auto; }
  .hero__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .plate { width: min(320px, 80vw); }
  .about__art { max-width: 380px; margin: 0 auto; width: 100%; }
  .about__pattern { right: -12px; bottom: -12px; }
  .strip__grid { grid-template-columns: 1fr; gap: 14px; }
  .strip__item + .strip__item { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 14px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav__word { font-size: 1.2rem; }
  .nav__brand img { width: 44px; }
  .cards, .menu__grid, .pk__grid, .form__row, .steps__grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .dish__name { white-space: normal; }
  .course, .card, .pk { padding-left: 24px; padding-right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}
