/* =====================================================================
   Cocina de Arte Catering · main stylesheet
   Design tokens → base → components → sections → pages → widgets → responsive
   ===================================================================== */

:root {
  --ink: #1a1412;
  --ink-2: #241c18;
  --ink-3: #33281f;
  --cream: #f6efe4;
  --cream-2: #efe4d2;
  --cream-3: #e3d4bd;
  --white: #fffdf9;
  --chile: #c8402f;
  --chile-deep: #9e2e22;
  --chile-soft: #efc4bb;
  --gold: #e0a842;
  --lime: #a4bd4a;
  --cocoa: #5a3e32;
  --text: var(--ink);
  --muted: #6d5b50;
  --muted-light: rgba(246, 239, 228, .72);
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 24px 60px -24px rgba(26, 20, 18, .45);
  --shadow-sm: 0 10px 30px -14px rgba(26, 20, 18, .35);
  --header-h: 84px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; overflow-x: clip;
}
body.nav-open, body.lightbox-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; background: var(--chile); color: var(--cream); border-radius: var(--pill); font-weight: 700; }
.skip:focus { top: 16px; }
.ic { width: 1.25em; height: 1.25em; fill: currentColor; flex-shrink: 0; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap--narrow { width: min(860px, 100% - 2 * var(--gutter)); }

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin-bottom: .45em;
}
.display--xl { font-size: clamp(2.8rem, 7.2vw, 6rem); line-height: .98; }
.display--sm { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.display em { font-style: italic; font-weight: 400; color: var(--chile); }
.sec--ink .display em, .hero .display em, .page-hero .display em { color: var(--gold); }
.sec-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
  margin-bottom: .5em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
  font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--chile);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: var(--gold); }
.lead { font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.sec--ink .lead, .page-hero .lead, .hero .lead, .cta-band .lead { color: var(--muted-light); }
.signature { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--gold); margin: 6px 0 26px; letter-spacing: .01em; }
.signature--light { color: var(--gold); }

/* ---------- buttons & links ---------- */
.btn {
  --btn-bg: var(--chile); --btn-fg: var(--cream);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--pill); border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: .95rem; line-height: 1; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(26, 20, 18, .5); }
.btn:active { transform: translateY(0); }
.btn__ic { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.btn:hover .btn__ic { transform: translateX(4px); }
.btn--primary:hover { background: var(--chile-deep); }
.btn--dark { --btn-bg: var(--ink); }
.btn--dark:hover { background: var(--ink-3); }
.btn--light { --btn-bg: var(--cream); --btn-fg: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; border-color: currentColor; }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: var(--cream); border-color: rgba(246, 239, 228, .5); }
.btn--ghost-light:hover { border-color: var(--cream); background: rgba(246, 239, 228, .08); }
.btn--small { padding: 10px 16px; font-size: .85rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; color: inherit; }
.link-arrow .ic { width: 20px; height: 20px; transition: transform .35s var(--ease-out); }
.link-arrow:hover .ic:last-child { transform: translateX(4px); }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 6px 0; }
.check-list .ic { width: 20px; height: 20px; color: var(--chile); margin-top: 3px; }
.check-list--two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 24px; }
.check-list--big li { font-size: 1.08rem; padding: 12px 0; border-bottom: 1px solid var(--cream-3); }
.check-list--big li:last-child { border: 0; }

/* ---------- sections ---------- */
.sec { position: relative; padding-block: clamp(72px, 10vw, 128px); }
.sec--cream { background: var(--cream); }
.sec--ink { background: var(--ink); color: var(--cream); isolation: isolate; }
.sec--ink::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .07; pointer-events: none; mix-blend-mode: overlay; z-index: 0; }
.sec--ink > * { position: relative; z-index: 1; }
.site-main > .sec:first-child { padding-top: calc(var(--header-h) + 56px); }
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .lead { margin-inline: auto; }
.sec-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; margin-top: clamp(36px, 5vw, 56px); }
.frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tilt { transform: rotate(-2deg); transition: transform .8s var(--ease-out); }
.frame--tilt:hover { transform: rotate(0); }
.frame--offset { overflow: visible; box-shadow: none; }
.frame--offset img { border-radius: var(--radius); box-shadow: var(--shadow); position: relative; z-index: 1; }
.frame--offset::before { content: ''; position: absolute; inset: 0; transform: translate(20px, 20px); border: 2px solid var(--gold); border-radius: var(--radius); }

/* ---------- reveal & motion ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0ms); }
.js .reveal--delay { transition-delay: calc(var(--d, 0ms) + 160ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }
[data-parallax] { will-change: transform; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80; height: var(--header-h);
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(26, 20, 18, .78), rgba(26, 20, 18, 0));
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header.is-scrolled {
  background: rgba(26, 20, 18, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(246, 239, 228, .08);
}
body.nav-open .site-header { background: var(--ink); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; }
.brand { display: block; }
.brand__logo { height: 46px; width: auto; }
.site-nav { position: absolute; left: 50%; transform: translateX(-50%); }
.site-nav ul { display: flex; gap: 4px; }
.site-nav a {
  position: relative; display: block; padding: 10px 14px; border-radius: var(--pill);
  font-size: .92rem; font-weight: 700; text-decoration: none; color: var(--cream); opacity: .85;
  transition: opacity .25s, background .25s;
}
.site-nav a:hover { opacity: 1; background: rgba(246, 239, 228, .08); }
.site-nav a[aria-current="page"] { opacity: 1; }
.site-nav a[aria-current="page"]::after { content: ''; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translateX(-50%); }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: var(--pill);
  border: 1.5px solid rgba(246, 239, 228, .35); color: var(--cream); font-weight: 800; font-size: .78rem; letter-spacing: .1em;
  text-decoration: none; transition: border-color .25s, background .25s;
}
.lang-switch .ic { width: 16px; height: 16px; }
.lang-switch:hover { border-color: var(--cream); background: rgba(246, 239, 228, .08); }
.lang-switch--big { font-size: .95rem; letter-spacing: .02em; padding: 13px 20px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(246, 239, 228, .35);
  background: transparent; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle .ic { width: 22px; height: 22px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 79; background: var(--ink); color: var(--cream);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px; overflow-y: auto; display: flex; flex-direction: column; gap: 32px;
  animation: navIn .35s var(--ease-out);
}
@keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-nav[hidden] { display: none; }
.mobile-nav__list a { display: block; padding: 12px 0; font-family: var(--font-display); font-size: clamp(2rem, 8vw, 2.8rem); text-decoration: none; border-bottom: 1px solid rgba(246, 239, 228, .1); }
.mobile-nav__list a[aria-current="page"] { color: var(--gold); }
.mobile-nav__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.mobile-nav__actions .btn--ghost { border-color: rgba(246, 239, 228, .4); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: min(100vh, 1040px); min-height: min(100svh, 1040px); display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream); overflow: hidden; background: var(--ink); isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { opacity: 0; transition: opacity 1.2s ease; }
.hero__video.is-playing { opacity: 1; }
.hero__poster { transform: scale(1.04); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(26, 20, 18, .88) 0%, rgba(26, 20, 18, .55) 45%, rgba(26, 20, 18, .15) 100%),
    linear-gradient(0deg, rgba(26, 20, 18, .95) 0%, rgba(26, 20, 18, .1) 45%, rgba(26, 20, 18, .35) 100%);
}
.hero__overlay::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .08; mix-blend-mode: overlay; }
.hero__inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding-top: calc(var(--header-h) + 40px); padding-bottom: 40px; }
.hero__content { max-width: 720px; }
.hero__lead { max-width: 58ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__cutout {
  position: absolute; right: -2%; top: 50%; width: clamp(240px, 30vw, 460px); z-index: 1;
  transform: translateY(-50%); animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 40px 40px rgba(0, 0, 0, .55));
  pointer-events: none;
}
@keyframes float { 0%, 100% { translate: 0 -12px; } 50% { translate: 0 14px; } }
.hero__bottom { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 28px; padding-top: 22px; padding-right: 180px; border-top: 1px solid rgba(246, 239, 228, .16); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 700; letter-spacing: .02em; color: var(--muted-light); }
.hero__trust .ic { width: 14px; height: 14px; color: var(--gold); }
.hero__controls { display: flex; align-items: center; gap: 18px; }
.hero__toggle { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(246, 239, 228, .35); background: rgba(26, 20, 18, .35); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hero__toggle .ic { width: 18px; height: 18px; }
.hero__toggle .ic--play { display: none; }
.hero__toggle.is-paused .ic--play { display: block; }
.hero__toggle.is-paused .ic--pause { display: none; }
.hero__scroll { display: flex; align-items: center; gap: 12px; font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: var(--muted-light); }
.hero__scroll i { display: block; width: 48px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.hero__scroll i::after { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 60% { transform: translateX(100%); } 100% { transform: translateX(100%); } }

/* ---------- marquee ribbon ---------- */
.marquee-wrap { position: relative; z-index: 3; overflow: hidden; margin-top: -46px; padding: 20px 0; }
.marquee {
  position: relative; background: var(--chile); color: var(--cream);
  padding: 15px 0; overflow: hidden; transform: rotate(-1.4deg); margin: 0 -24px; width: calc(100% + 48px);
  box-shadow: 0 18px 40px -20px rgba(26, 20, 18, .6);
}
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; white-space: nowrap; }
.marquee__item i { font-style: normal; color: var(--gold); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   HOME SECTIONS
   ===================================================================== */
/* intro */
.intro { padding-top: clamp(96px, 12vw, 150px); overflow: hidden; }
.intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro__text p:not(.eyebrow) { max-width: 58ch; color: var(--muted); }
.intro__cta { margin-top: 24px; }
.collage { position: relative; aspect-ratio: 1 / 1.05; }
.collage figure { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage__a { left: 0; top: 0; width: 62%; aspect-ratio: 3 / 4; transform: rotate(-2.5deg); }
.collage__b { right: 0; top: 7%; width: 42%; aspect-ratio: 4 / 5; transform: rotate(3deg); }
.collage__c { left: 20%; bottom: 0; width: 46%; aspect-ratio: 4 / 3; transform: rotate(-1deg); }
.badge-rot { position: absolute; right: 4%; bottom: 8%; width: 150px; height: 150px; border-radius: 50%; background: var(--chile); color: var(--cream); display: grid; place-items: center; box-shadow: var(--shadow); }
.badge-rot svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.badge-rot text { font-family: var(--font-body); font-size: 10.5px; font-weight: 800; letter-spacing: .18em; fill: var(--cream); }
.badge-rot__center .ic { width: 34px; height: 34px; color: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(56px, 8vw, 96px); padding-top: 40px; border-top: 1px solid var(--cream-3); }
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stats strong { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--chile); letter-spacing: -.02em; }
.stats span { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.stats--inline { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }

/* services grid */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(260px, auto); gap: 18px; }
.svc-card {
  position: relative; display: flex; overflow: hidden; border-radius: var(--radius); text-decoration: none; color: var(--cream);
  background: var(--ink-2); border: 1px solid rgba(246, 239, 228, .08); min-height: 280px;
  transition: transform .5s var(--ease-out), border-color .3s;
}
.svc-card:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; min-height: 520px; }
.svc-card:nth-child(2) { grid-column: 5 / 7; }
.svc-card:nth-child(3) { grid-column: 5 / 7; }
.svc-card:nth-child(4) { grid-column: 1 / 4; }
.svc-card:nth-child(5) { grid-column: 4 / 7; }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(224, 168, 66, .5); }
.svc-card__media { position: absolute; inset: 0; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transform: scale(1.01); transition: transform 1.2s var(--ease-out), opacity .6s; }
.svc-card:hover .svc-card__media img { transform: scale(1.06); opacity: .7; }
.svc-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 20, 18, .95) 0%, rgba(26, 20, 18, .35) 55%, rgba(26, 20, 18, .1) 100%); }
.svc-card__body { position: relative; z-index: 1; margin-top: auto; padding: 28px; display: flex; flex-direction: column; gap: 6px; width: 100%; }
.svc-card__num { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1rem; }
.svc-card h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.9rem); }
.svc-card:nth-child(1) h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.svc-card__tag { font-family: var(--font-display); font-style: italic; color: var(--muted-light); margin: 0; }
.svc-card__desc { font-size: .92rem; color: var(--muted-light); margin: 6px 0 0; max-width: 52ch; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.svc-card:not(:nth-child(1)) .svc-card__desc { display: none; }
.svc-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.svc-card__more .ic { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.svc-card:hover .svc-card__more .ic { transform: translateX(4px); }

/* packages */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pkg { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg--feature { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pkg--feature .check-list .ic { color: var(--gold); }
.pkg--feature .pkg__blurb, .pkg--feature .pkg__price small { color: var(--muted-light); }
.pkg__media { aspect-ratio: 4 / 3; overflow: hidden; }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.pkg:hover .pkg__media img { transform: scale(1.05); }
.pkg__body { display: flex; flex-direction: column; gap: 12px; padding: 28px 26px 30px; flex: 1; }
.pkg h3 { font-family: var(--font-display); font-size: 1.6rem; }
.pkg__price { font-family: var(--font-display); font-size: 2.3rem; line-height: 1; margin: 0; display: flex; align-items: baseline; gap: 10px; }
.pkg__price small { font-family: var(--font-body); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pkg__blurb { color: var(--muted); font-size: .96rem; margin: 0; }
.pkg .check-list { margin: 4px 0 12px; font-size: .95rem; }
.pkg .btn { margin-top: auto; align-self: flex-start; }
.pkg-note { text-align: center; color: var(--muted); font-size: .88rem; margin: 28px auto 0; max-width: 60ch; }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; counter-reset: step; }
.steps::before { content: ''; position: absolute; left: 12%; right: 12%; top: 30px; border-top: 2px dashed var(--cream-3); }
.step { position: relative; padding: 0 8px; text-align: center; }
.step__num { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 22px; border-radius: 50%; background: var(--chile); color: var(--cream); font-family: var(--font-display); font-size: 1.6rem; box-shadow: 0 0 0 10px var(--cream); position: relative; }
.step h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.step p { color: var(--muted); max-width: 36ch; margin-inline: auto; }

/* occasions */
.occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.occ { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--cream); }
.occ__media, .occ__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.occ__media img { transition: transform 1.2s var(--ease-out); }
.occ:hover .occ__media img { transform: scale(1.07); }
.occ__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 20, 18, .92), rgba(26, 20, 18, .15) 60%, rgba(26, 20, 18, .05)); }
.occ__body { position: absolute; inset: auto 0 0 0; padding: 22px 24px; }
.occ__body .ic { width: 24px; height: 24px; color: var(--gold); margin-bottom: 8px; }
.occ h3 { font-family: var(--font-display); font-size: 1.5rem; }
.occ p { margin: 8px 0 0; font-size: .92rem; color: var(--muted-light); max-width: 34ch; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .5s var(--ease-out); }
.occ:hover p, .occ:focus-visible p { opacity: 1; transform: none; }
@media (hover: none) { .occ p { opacity: 1; transform: none; } }

/* menu preview */
.tabs__list { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--cream-3); margin-bottom: 36px; }
.tabs__tab { padding: 12px 18px; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; font-weight: 700; color: var(--muted); cursor: pointer; transition: color .25s, border-color .25s; }
.tabs__tab:hover { color: var(--ink); }
.tabs__tab[aria-selected="true"] { color: var(--ink); border-color: var(--chile); }
.tabs__note { font-family: var(--font-display); font-style: italic; color: var(--chile); font-size: 1.1rem; margin-bottom: 24px; }
.protein-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 18px; }
.protein { text-align: center; }
.protein__media { width: 140px; aspect-ratio: 1; margin: 0 auto 14px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); border: 4px solid var(--white); }
.protein__media img { width: 100%; height: 100%; object-fit: cover; }
.protein__icon { display: grid; place-items: center; width: 100%; height: 100%; background: var(--cream-2); color: var(--lime); }
.protein__icon .ic { width: 44px; height: 44px; }
.protein h4 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 4px; }
.protein p { font-size: .86rem; color: var(--muted); margin: 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { padding: 10px 16px; background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--pill); font-size: .95rem; font-weight: 600; }
.addon-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.addon-cols h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; }

/* gallery strip */
.gallery-strip { background: var(--cream-2); overflow: hidden; }
.strip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 24px; scrollbar-width: thin; scrollbar-color: var(--chile) transparent; }
.strip__item { flex: 0 0 auto; width: clamp(240px, 28vw, 360px); aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; position: relative; background: var(--ink-2); }
.strip__item img, .strip__item video { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.strip__item:hover img { transform: scale(1.05); }
.strip__item figcaption { position: absolute; inset: auto 0 0 0; padding: 16px; font-size: .85rem; font-weight: 700; color: var(--cream); background: linear-gradient(to top, rgba(26, 20, 18, .85), transparent); }

/* testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { position: relative; margin: 0; padding: 40px 32px 32px; background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--radius); }
.quote-card__mark { position: absolute; top: 22px; right: 26px; width: 40px; height: 40px; color: var(--chile-soft); }
.quote-card p { font-family: var(--font-display); font-style: italic; font-size: 1.28rem; line-height: 1.4; margin-bottom: 22px; }
.quote-card footer { display: flex; align-items: center; gap: 12px; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.quote-card footer::before { content: ''; width: 22px; height: 2px; background: var(--chile); }

/* chef teaser */
.chef-teaser__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.chef-teaser__media { max-width: 440px; }
.chef-teaser__media img { aspect-ratio: 3 / 4; }

/* faq */
.faq-sec__grid { display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq-sec__head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-sec__head .sec-head { margin-bottom: 28px; }
.faq__item { border-bottom: 1px solid var(--cream-3); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; font-family: var(--font-display); font-size: 1.25rem; cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__chev { width: 22px; height: 22px; color: var(--chile); transition: transform .35s var(--ease-out); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 0 24px; color: var(--muted); max-width: 62ch; }
.faq__a p { margin: 0; }

/* cta band */
.cta-band { position: relative; padding-block: clamp(96px, 14vw, 180px); color: var(--cream); text-align: center; overflow: hidden; isolation: isolate; }
.cta-band__bg, .cta-band__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(158, 46, 34, .93), rgba(26, 20, 18, .88)); }
.cta-band__inner { position: relative; z-index: 1; max-width: 780px; }
.cta-band__inner .lead { margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.cta-band__or { font-size: .95rem; color: var(--muted-light); }
.cta-band__or a { color: var(--cream); font-weight: 700; }

/* =====================================================================
   INNER PAGES
   ===================================================================== */
.page-hero { position: relative; background: var(--ink); color: var(--cream); padding: calc(var(--header-h) + 56px) 0 clamp(56px, 8vw, 96px); overflow: hidden; isolation: isolate; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 15% 10%, rgba(200, 64, 47, .35), transparent 60%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .07; mix-blend-mode: overlay; pointer-events: none; }
.page-hero__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.page-hero__media img { aspect-ratio: 4 / 5; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* menu page */
.menu-layout { display: grid; grid-template-columns: 220px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.jump { position: sticky; top: calc(var(--header-h) + 24px); }
.jump a { display: block; padding: 8px 0 8px 16px; border-left: 2px solid var(--cream-3); font-weight: 700; font-size: .92rem; color: var(--muted); text-decoration: none; transition: color .25s, border-color .25s; }
.jump a:hover, .jump a.is-active { color: var(--chile); border-color: var(--chile); }
.menu-sec { margin-bottom: clamp(64px, 8vw, 104px); scroll-margin-top: calc(var(--header-h) + 24px); }
.menu-sec__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 22px; margin-bottom: 28px; }
.menu-sec__head .sec-title { margin: 0; }
.menu-sec__note { font-family: var(--font-display); font-style: italic; color: var(--chile); font-size: 1.1rem; margin: 0; }
.protein-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.protein-card { background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; transition: transform .5s var(--ease-out), box-shadow .5s; }
.protein-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.protein-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.protein-card__media img { width: 100%; height: 100%; object-fit: cover; }
.protein-cards__veg { display: grid; place-items: center; height: 100%; color: var(--lime); }
.protein-cards__veg .ic { width: 64px; height: 64px; }
.protein-card__body { padding: 20px 22px 24px; }
.protein-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 6px; }
.protein-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0 28px; }
.menu-item { padding: 14px 0; border-bottom: 1px dashed var(--cream-3); }
.menu-item h4 { font-size: 1rem; font-weight: 700; }
.menu-item p { margin: 4px 0 0; font-size: .88rem; color: var(--muted); }
.menu-sec--split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.menu-sec--split .menu-sec__head:nth-of-type(2) { margin-top: 48px; }
.menu-sec__media img { aspect-ratio: 3 / 4; }
.drink-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; text-align: center; }
.drink { padding: 26px 16px; background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--radius); }
.drink__glass { display: block; width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50% 50% 46% 46%; background: var(--drink, var(--cream-2)); box-shadow: inset 0 -10px 16px rgba(0, 0, 0, .12), 0 6px 14px -8px rgba(0, 0, 0, .3); }
.drink:nth-child(1) { --drink: #f1e1c2; }
.drink:nth-child(2) { --drink: #a8244e; }
.drink:nth-child(3) { --drink: #f2e27a; }
.drink:nth-child(4) { --drink: #f2b83a; }
.drink:nth-child(5) { --drink: #e8514f; }
.drink h4 { font-family: var(--font-display); font-size: 1.15rem; }
.drink p { margin: 4px 0 0; font-size: .85rem; color: var(--muted); }
.addon-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 28px; align-items: start; }
.addon-grid__media img { aspect-ratio: 3 / 4; }
.addon-grid__col h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 8px; }
.included { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: clamp(32px, 5vw, 56px); position: relative; overflow: hidden; isolation: isolate; }
.included::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 70% at 100% 0%, rgba(200, 64, 47, .45), transparent 60%); z-index: -1; }
.included::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .07; mix-blend-mode: overlay; z-index: -1; pointer-events: none; }
.included .check-list .ic { color: var(--gold); }
.included__veg { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0 28px; font-style: italic; color: var(--muted-light); }
.included__veg .ic { color: var(--lime); width: 22px; height: 22px; flex-shrink: 0; }

/* services page */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding-block: clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--cream-3); scroll-margin-top: var(--header-h); }
.svc-row:last-child { border: 0; }
.svc-row--flip .svc-row__media { order: 2; }
.svc-row__media img { aspect-ratio: 4 / 3; }
.svc-row__num { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--chile); margin-bottom: 14px; }
.svc-row__num .ic { width: 22px; height: 22px; }
.svc-row__tag { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--muted); }
.svc-row__perfect { padding: 14px 18px; background: var(--cream-2); border-radius: var(--radius-sm); font-size: .94rem; margin: 6px 0 24px; }
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sig { padding: 34px 30px; background: var(--ink-2); border: 1px solid rgba(246, 239, 228, .12); border-radius: var(--radius); }
.sig__num { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--gold); margin-bottom: 14px; }
.sig h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.sig p { color: var(--muted-light); margin: 0; font-size: .96rem; }
.included-sec__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 6vw, 80px); align-items: center; }

/* gallery page */
.masonry { columns: 4 240px; column-gap: 18px; }
.masonry__item { position: relative; display: block; break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); }
.masonry__item img, .masonry__item video { width: 100%; height: auto; display: block; transition: transform 1s var(--ease-out); }
.masonry__item--video video { aspect-ratio: 9 / 16; object-fit: cover; }
.masonry__item:hover img { transform: scale(1.04); }
.masonry__cap { position: absolute; inset: auto 0 0 0; padding: 14px 16px; font-size: .82rem; font-weight: 700; color: var(--cream); background: linear-gradient(to top, rgba(26, 20, 18, .85), transparent); opacity: 0; transition: opacity .35s; }
.masonry__item:hover .masonry__cap, .masonry__item:focus-visible .masonry__cap { opacity: 1; }

/* about page */
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.story__text p:not(.eyebrow) { font-size: 1.08rem; color: var(--muted); max-width: 58ch; }
.story__first::first-letter { float: left; font-family: var(--font-display); font-size: 4.4rem; line-height: .82; margin: 8px 12px 0 0; color: var(--chile); }
.story__media { display: grid; gap: 24px; }
.story__media figure:nth-child(1) img { aspect-ratio: 4 / 5; }
.story__media figure:nth-child(2) { width: 72%; margin: -64px 0 0 auto; }
.story__media figure:nth-child(2) img { aspect-ratio: 4 / 3; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { padding: 32px 26px; background: var(--ink-2); border: 1px solid rgba(246, 239, 228, .1); border-radius: var(--radius); }
.value .ic { width: 30px; height: 30px; color: var(--gold); margin-bottom: 16px; }
.value h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 10px; }
.value p { margin: 0; color: var(--muted-light); font-size: .95rem; }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.team__media img { aspect-ratio: 4 / 3; }

/* contact page */
.contact-head__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.contact-head__media { max-width: 420px; margin-left: auto; }
.contact-head__media img { aspect-ratio: 4 / 5; }
.contact-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.inquiry { background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); }
.inquiry .sec-title { font-size: 1.9rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field label span { color: var(--chile); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--cream-3); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink); font: inherit; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--chile); background: #fff; box-shadow: 0 0 0 4px rgba(200, 64, 47, .14); }
.field input:user-invalid, .field.is-invalid input { border-color: var(--chile); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-right: 44px; cursor: pointer; }
.select-wrap .ic { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; pointer-events: none; color: var(--muted); }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.inquiry__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 8px; }
.inquiry__consent { margin: 18px 0 0; font-size: .8rem; color: var(--muted); }
.inquiry__status { margin: 14px 0 0; font-weight: 700; min-height: 1.4em; }
.inquiry__status.is-success { color: #4c7a1f; }
.inquiry__status.is-error { color: var(--chile); }
.inquiry.is-sending .btn { opacity: .6; pointer-events: none; }
.contact-cards { display: grid; gap: 14px; }
.ccard { display: flex; gap: 16px; padding: 20px 22px; background: var(--white); border: 1px solid var(--cream-3); border-radius: var(--radius); color: var(--ink); text-decoration: none; transition: transform .4s var(--ease-out), border-color .25s, box-shadow .4s; }
a.ccard:hover { transform: translateY(-2px); border-color: var(--chile); box-shadow: var(--shadow-sm); }
.ccard > .ic { width: 26px; height: 26px; color: var(--chile); margin-top: 2px; }
.ccard--wa > .ic { color: #25d366; }
.ccard h3 { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ccard__big { font-family: var(--font-display); font-size: 1.45rem; margin: 0 0 2px; }
.ccard__big--sm { font-size: 1.05rem; word-break: break-all; }
.ccard p { margin: 0; font-size: .9rem; color: var(--muted); }
.ccard .social { margin-top: 10px; }
.social { display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--cream-3); color: inherit; transition: background .25s, color .25s, border-color .25s, transform .3s; }
.social a:hover { background: var(--chile); color: var(--cream); border-color: var(--chile); transform: translateY(-2px); }
.social .ic { width: 20px; height: 20px; }
.social--light a { border-color: rgba(246, 239, 228, .3); color: var(--cream); }

/* legal */
.legal-head__updated { color: var(--muted-light); font-size: .9rem; }
.legal__body h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 40px 0 12px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body ul { list-style: disc; padding-left: 22px; color: var(--muted); }
.legal__body li { margin: 8px 0; }
.legal__foot { margin-top: 48px; }

/* 404 */
.not-found { min-height: min(100vh, 920px); display: flex; align-items: center; text-align: center; }
.not-found__inner { position: relative; max-width: 640px; margin-inline: auto; }
.not-found__cutout { width: 220px; margin: 0 auto 24px; animation: float 6s ease-in-out infinite; }
.not-found__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 12px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(56px, 8vw, 88px) 0 32px; position: relative; isolation: isolate; }
.site-footer::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .06; mix-blend-mode: overlay; pointer-events: none; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; }
.site-footer__logo { width: 210px; margin-bottom: 20px; }
.site-footer__brand p { color: var(--muted-light); max-width: 34ch; margin-bottom: 22px; }
.site-footer h3 { font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.site-footer__legal-title { margin-top: 28px; }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a, .site-footer__col span { display: inline-flex; align-items: center; gap: 10px; color: var(--muted-light); text-decoration: none; transition: color .25s; }
.site-footer__col a:hover { color: var(--cream); }
.site-footer__col .ic { width: 16px; height: 16px; color: var(--gold); }
.site-footer__hours { padding-left: 26px; font-weight: 700; color: var(--cream); }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(246, 239, 228, .1); font-size: .84rem; color: var(--muted-light); }
.site-footer__bottom p { margin: 0; }

/* =====================================================================
   WIDGETS: language banner, lightbox, assistant
   ===================================================================== */
.lang-banner { position: fixed; left: 16px; bottom: 16px; z-index: 75; width: min(360px, calc(100vw - 32px)); padding: 18px 20px; background: var(--white); color: var(--ink); border: 1px solid var(--cream-3); border-radius: var(--radius); box-shadow: var(--shadow); animation: slideUp .5s var(--ease-out); }
.lang-banner[hidden] { display: none; }
.lang-banner p { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 12px; }
.lang-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(26, 20, 18, .94); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__fig { max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox__fig img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.lightbox__fig figcaption { color: var(--muted-light); font-size: .9rem; text-align: center; }
.lightbox__close, .lightbox__nav { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(246, 239, 228, .3); background: rgba(26, 20, 18, .5); color: var(--cream); cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--chile); border-color: var(--chile); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--prev .ic { transform: rotate(90deg); }
.lightbox__nav--next { right: 20px; }
.lightbox__nav--next .ic { transform: rotate(-90deg); }
.lightbox .ic { width: 22px; height: 22px; }

/* assistant bubble */
.assistant__fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; gap: 12px; padding: 10px 20px 10px 12px;
  background: var(--ink); color: var(--cream); border: 1px solid rgba(246, 239, 228, .18); border-radius: var(--pill);
  box-shadow: 0 18px 40px -16px rgba(26, 20, 18, .7); cursor: pointer; transition: transform .35s var(--ease-out), background .25s;
}
.assistant__fab:hover { transform: translateY(-3px); background: var(--ink-3); }
.assistant__fab img { width: 26px; height: auto; }
.assistant__fab-ring { position: absolute; inset: -5px; border-radius: var(--pill); border: 2px solid var(--chile); opacity: 0; animation: fabPulse 2.8s ease-out infinite; pointer-events: none; }
@keyframes fabPulse { 0% { transform: scale(.94); opacity: .8; } 70% { transform: scale(1.12); opacity: 0; } 100% { opacity: 0; } }
.assistant__fab-label { font-weight: 800; font-size: .9rem; }
.assistant__fab[aria-expanded="true"] .assistant__fab-ring { animation: none; }
.assistant__panel {
  position: fixed; right: 20px; bottom: 90px; z-index: 91;
  width: min(410px, calc(100vw - 32px)); height: min(660px, calc(100vh - 120px)); height: min(660px, calc(100dvh - 120px));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); color: var(--ink); border: 1px solid var(--cream-3); border-radius: 24px;
  box-shadow: 0 30px 80px -24px rgba(26, 20, 18, .6); transform-origin: bottom right; animation: panelIn .4s var(--ease-out);
}
.assistant__panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.assistant__head { display: flex; align-items: center; gap: 12px; padding: 14px 14px 14px 16px; background: var(--ink); color: var(--cream); }
.assistant__avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--chile); flex-shrink: 0; }
.assistant__avatar img { width: 18px; height: auto; }
.assistant__titles { flex: 1; min-width: 0; }
.assistant__titles h2 { font-family: var(--font-body); font-size: .98rem; font-weight: 800; }
.assistant__status { margin: 2px 0 0; font-size: .74rem; color: var(--muted-light); display: flex; align-items: center; gap: 6px; }
.assistant__status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #8a7b70; flex-shrink: 0; }
.assistant[data-state="connecting"] .assistant__status::before { background: var(--gold); animation: blink 1s infinite; }
.assistant[data-state="live"] .assistant__status::before, .assistant[data-state="listening"] .assistant__status::before, .assistant[data-state="speaking"] .assistant__status::before { background: var(--lime); }
.assistant[data-state="error"] .assistant__status::before { background: var(--chile); }
@keyframes blink { 50% { opacity: .3; } }
.assistant__head-actions { display: flex; gap: 6px; }
.assistant__iconbtn { display: inline-flex; align-items: center; gap: 4px; height: 36px; padding: 0 10px; border-radius: var(--pill); border: 1px solid rgba(246, 239, 228, .25); background: transparent; color: var(--cream); cursor: pointer; font-size: .74rem; font-weight: 800; letter-spacing: .08em; }
.assistant__iconbtn .ic { width: 16px; height: 16px; }
.assistant__iconbtn:hover { background: rgba(246, 239, 228, .1); }
.assistant__log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; }
.assistant__msg { max-width: 86%; padding: 11px 14px; border-radius: 16px; font-size: .95rem; line-height: 1.5; }
.assistant__msg p { margin: 0; }
.assistant__msg p + p { margin-top: 6px; }
.assistant__msg--bot { align-self: flex-start; background: var(--cream); border-bottom-left-radius: 4px; }
.assistant__msg--user { align-self: flex-end; background: var(--chile); color: var(--cream); border-bottom-right-radius: 4px; }
.assistant__msg--sys { align-self: center; max-width: 100%; text-align: center; font-size: .8rem; color: var(--muted); background: transparent; padding: 4px 8px; font-style: italic; }
.assistant__msg--partial { opacity: .75; }
.assistant__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 12px; border: 1px solid var(--cream-3); border-radius: var(--pill); background: var(--white); font-size: .82rem; font-weight: 600; cursor: pointer; transition: border-color .25s, color .25s; }
.chip:hover { border-color: var(--chile); color: var(--chile); }
.assistant__viz { display: none; align-items: center; justify-content: center; gap: 4px; height: 34px; padding: 0 16px; }
.assistant__viz.is-active { display: flex; }
.assistant__viz i { display: block; width: 4px; height: 6px; border-radius: 2px; background: var(--chile); transition: height .08s; }
.assistant__bar { display: flex; align-items: center; gap: 8px; padding: 12px; border-top: 1px solid var(--cream-3); background: var(--white); }
.assistant__input { flex: 1; min-width: 0; padding: 12px 16px; border: 1.5px solid var(--cream-3); border-radius: var(--pill); background: var(--cream); font: inherit; font-size: .95rem; }
.assistant__input:focus { outline: none; border-color: var(--chile); background: #fff; }
.assistant__mic, .assistant__send { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--cream-3); background: var(--white); cursor: pointer; flex-shrink: 0; transition: background .25s, color .25s, border-color .25s; }
.assistant__mic .ic, .assistant__send .ic { width: 20px; height: 20px; }
.assistant__send { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.assistant__send:hover { background: var(--chile); border-color: var(--chile); }
.assistant__mic:hover { border-color: var(--chile); color: var(--chile); }
.assistant__mic[aria-pressed="true"] { background: var(--chile); color: var(--cream); border-color: var(--chile); animation: micPulse 1.6s infinite; }
@keyframes micPulse { 0% { box-shadow: 0 0 0 0 rgba(200, 64, 47, .45); } 100% { box-shadow: 0 0 0 14px rgba(200, 64, 47, 0); } }
.assistant__foot { margin: 0; padding: 0 16px 12px; font-size: .72rem; color: var(--muted); text-align: center; }
.assistant__settings { padding: 8px 16px 10px; border-top: 1px dashed var(--cream-3); font-size: .8rem; }
.assistant__settings summary { cursor: pointer; font-weight: 700; color: var(--muted); }
.assistant__settings-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.assistant__settings select { font: inherit; padding: 6px 10px; border-radius: 8px; border: 1px solid var(--cream-3); background: var(--cream); }
.is-highlight { animation: highlight 1.6s var(--ease-out); }
@keyframes highlight { 0% { box-shadow: 0 0 0 0 rgba(200, 64, 47, .7); } 100% { box-shadow: 0 0 0 24px rgba(200, 64, 47, 0); } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .svc-card:nth-child(1) { min-height: 440px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid__media { grid-row: span 2; }
}
@media (max-width: 1180px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  .brand__logo { height: 40px; }
}
@media (max-width: 900px) {
  .intro__grid, .chef-teaser__grid, .faq-sec__grid, .page-hero__grid, .svc-row, .story__grid, .team__grid, .included-sec__grid, .contact-layout, .contact-head__grid, .menu-sec--split { grid-template-columns: 1fr; }
  .faq-sec__head { position: static; }
  .collage { width: 100%; max-width: 520px; margin: 0 auto; justify-self: center; }
  .svc-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(240px, auto); }
  .svc-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; min-height: 380px; }
  .svc-card:nth-child(n+2) { grid-column: auto; }
  .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: auto; }
  .pkg-grid, .quote-grid, .sig-grid, .protein-cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .occ-grid { grid-template-columns: 1fr 1fr; }
  .menu-layout { grid-template-columns: 1fr; gap: 24px; }
  .jump { position: sticky; top: var(--header-h); z-index: 5; background: var(--cream); margin: 0 calc(-1 * var(--gutter)); padding: 8px var(--gutter); overflow-x: auto; }
  .jump ul { display: flex; gap: 6px; width: max-content; }
  .jump a { padding: 8px 14px; border: 1px solid var(--cream-3); border-left-width: 1px; border-radius: var(--pill); white-space: nowrap; }
  .jump a.is-active { background: var(--chile); color: var(--cream); border-color: var(--chile); }
  .svc-row--flip .svc-row__media { order: 0; }
  .page-hero__media { max-width: 480px; }
  .contact-head__media { margin-left: 0; }
  .story__media figure:nth-child(2) { width: 80%; margin-top: -40px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__cutout { width: clamp(180px, 34vw, 300px); right: -6%; top: 26%; opacity: .9; }
  .hero__bottom { flex-direction: column; align-items: flex-start; padding-right: 0; }
}
@media (max-width: 720px) {
  body { font-size: 1rem; }
  .site-header [data-header-cta] { display: none; }
  .hero__inner { padding-top: calc(var(--header-h) + 28px); }
  .hero__cutout { width: 170px; right: -30px; top: 16%; }
  .marquee-wrap { margin-top: -38px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pkg-grid, .quote-grid, .sig-grid, .protein-cards, .addon-cols, .addon-grid, .value-grid { grid-template-columns: 1fr; }
  .addon-grid__media { grid-row: auto; max-width: 360px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card:nth-child(1) { grid-column: auto; min-height: 340px; }
  .svc-card { min-height: 240px; }
  .occ-grid { grid-template-columns: 1fr; }
  .occ { aspect-ratio: 16 / 10; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .check-list--two { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .assistant__fab { padding: 0; width: 60px; height: 60px; justify-content: center; }
  .assistant__fab img { width: 24px; }
  .assistant__fab-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .strip__item { width: 72vw; }
  .lang-banner { left: 12px; bottom: 92px; }
}
@media (max-width: 560px) {
  .assistant__panel { right: 0; bottom: 0; width: 100vw; height: 100vh; height: 100dvh; border-radius: 0; border: 0; }
  .assistant__fab[aria-expanded="true"] { display: none; }
  .hero__trust { gap: 6px 18px; }
  .hero__trust li { font-size: .78rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero__poster { animation: none; transform: none; }
  .marquee__track { animation: none; }
  .hero__cutout, .not-found__cutout { animation: none; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .assistant, .lang-banner, .hero__media video, .hero__controls, .cta-band, .marquee { display: none !important; }
  .site-main > .sec:first-child, .page-hero { padding-top: 24px; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   REFINEMENTS · mobile navigation, phone hero, scroll locks
   ===================================================================== */
.nobr { white-space: nowrap; }
@media (max-width: 480px) { .nobr { white-space: normal; } }

.mobile-nav { padding: calc(var(--header-h) + 10px) var(--gutter) 28px; gap: 22px; }
.mobile-nav::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }
.mobile-nav > * { position: relative; }
.mobile-nav__list li { opacity: 0; transform: translateY(10px); animation: navItem .45s var(--ease-out) forwards; animation-delay: calc(var(--i, 0) * 45ms + 60ms); }
@keyframes navItem { to { opacity: 1; transform: none; } }
.mobile-nav__list a { display: flex; align-items: center; gap: 14px; padding: 12px 0; font-size: clamp(1.3rem, 5vw, 1.65rem); line-height: 1.15; letter-spacing: -.01em; }
.mobile-nav__num { font-family: var(--font-body); font-size: .68rem; font-weight: 800; letter-spacing: .14em; color: var(--gold); width: 24px; flex-shrink: 0; }
.mobile-nav__list a .ic { width: 18px; height: 18px; margin-left: auto; color: var(--muted-light); opacity: .55; transition: transform .3s var(--ease-out), opacity .3s, color .3s; }
.mobile-nav__list a:hover .ic, .mobile-nav__list a[aria-current="page"] .ic { opacity: 1; transform: translateX(4px); color: var(--gold); }
.mobile-nav__list a[aria-current="page"] { color: var(--gold); }
.mobile-nav__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
.mobile-nav__actions .btn, .mobile-nav__actions .lang-switch--big { justify-content: center; width: 100%; }
.mobile-nav__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; padding-top: 18px; border-top: 1px solid rgba(246, 239, 228, .1); font-size: .82rem; color: var(--muted-light); }
.mobile-nav__meta span { display: inline-flex; align-items: center; gap: 8px; }
.mobile-nav__meta .ic { width: 15px; height: 15px; color: var(--gold); }
.mobile-nav__meta .social { margin-right: auto; }
html.nav-open, html.lightbox-open { overflow: hidden; }
html.nav-open .assistant__fab, html.nav-open .lang-banner { display: none; }
@media (max-width: 560px) { html.assistant-open { overflow: hidden; } }
@media (min-width: 600px) {
  .mobile-nav { padding-top: calc(var(--header-h) + 28px); gap: 30px; }
  .mobile-nav__list a { font-size: clamp(1.6rem, 3.2vw, 2.1rem); padding: 15px 0; }
  .mobile-nav__actions { grid-template-columns: repeat(3, auto); justify-content: start; }
  .mobile-nav__actions .btn, .mobile-nav__actions .lang-switch--big { width: auto; }
}
@media (max-height: 520px) and (max-width: 1180px) {
  .mobile-nav__list a { padding: 8px 0; font-size: 1.15rem; }
  .mobile-nav { gap: 14px; }
}

/* phone hero: the taco cutout sits in the flow above the headline instead of under the header */
@media (max-width: 720px) {
  .hero__inner { flex-direction: column; align-items: stretch; justify-content: flex-end; padding-top: calc(var(--header-h) + 8px); }
  .hero__content { order: 2; }
  .hero__cutout { position: relative; right: auto; top: auto; transform: none; width: clamp(118px, 36vw, 168px); align-self: flex-end; margin: 0 -12px -14px 0; opacity: 1; }
}
