/* =========================================================
   The Mimie's Catering & Food Delivery
   Palette taken from the brand logo: cream, gold, charcoal.
   ========================================================= */

@font-face {
  font-family: "Playfair Display";
  src: url("playfair.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("playfair-italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("jakarta.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #FBF6EC;
  --cream-2: #F3EBDB;
  --cream-3: #EADFCB;
  --gold: #B8924F;
  --gold-2: #D5B57A;
  --gold-deep: #8E6B2E;
  --ink: #1E1913;
  --ink-2: #3A322A;
  --muted: #6B6156;
  --line: rgba(30, 25, 19, 0.12);
  --wa: #25D366;
  --wa-dark: #128C4A;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}
html { overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(var(--wrap), 100% - 1.5rem); } }

.ic { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.ic--lg { width: 1.9rem; height: 1.9rem; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream); border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }
#top-sentinel { position: absolute; top: 0; height: 1px; width: 1px; }

/* ---------- Grain overlay (fixed, cheap) ---------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .97rem; line-height: 1; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn--sm { padding: .7rem 1.15rem; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary { background: var(--wa-dark); color: #fff; box-shadow: 0 10px 30px -14px rgba(18, 140, 74, .7); }
.btn--primary:hover { background: #0f7a40; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--ghost { background: rgba(251, 246, 236, .12); color: var(--cream); border: 1px solid rgba(251, 246, 236, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(251, 246, 236, .22); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(251, 246, 236, .82);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -22px rgba(30, 25, 19, .35); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.nav__brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.nav__brand img { width: 44px; height: 44px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-text strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .01em; }
.nav__brand-text small { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a:not(.btn) { font-weight: 600; font-size: .93rem; color: var(--ink-2); position: relative; padding: .3rem 0; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right .3s var(--ease); }
.nav__links a:not(.btn):hover::after, .nav__links a.is-active::after { right: 0; }
.nav__cta-mobile { display: none; }
.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; }
.nav__burger .ic { width: 1.6rem; height: 1.6rem; }
.nav__burger .ic--close { display: none; }
.nav__burger[aria-expanded="true"] .ic--open { display: none; }
.nav__burger[aria-expanded="true"] .ic--close { display: block; }

@media (max-width: 1080px) {
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__links {
    /* .nav has backdrop-filter, which makes it the containing block for fixed children;
       so size the panel explicitly instead of relying on bottom:0. */
    position: fixed; top: var(--nav-h); left: 0; width: 100vw; height: calc(100dvh - var(--nav-h)); height: calc(100vh - var(--nav-h));
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0;
    padding: 1rem 1.5rem 2rem; background: var(--cream); z-index: 49;
    transform: translateX(100%); transition: transform .4s var(--ease), visibility 0s .4s;
    overflow-y: auto; visibility: hidden;
  }
  .nav__links.is-open { transform: none; visibility: visible; transition: transform .4s var(--ease), visibility 0s; }
  .nav__links a:not(.btn) { font-family: var(--font-display); font-size: 1.6rem; padding: .85rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__cta-mobile { display: inline-flex; margin-top: 1.5rem; padding: 1rem 1.5rem; font-size: 1rem; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100dvh - var(--nav-h)); min-height: calc(100vh - var(--nav-h));
  display: grid; align-items: center; color: var(--cream); isolation: isolate; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; transform: scale(1.06); animation: kenburns 22s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.12) translateX(1.5%); } to { transform: scale(1.02) translateX(0); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 25, 19, .82) 0%, rgba(30, 25, 19, .62) 38%, rgba(30, 25, 19, .18) 68%, rgba(30, 25, 19, .05) 100%),
    linear-gradient(0deg, rgba(30, 25, 19, .55) 0%, rgba(30, 25, 19, 0) 40%);
}
.hero__inner { padding-block: clamp(3rem, 8vw, 6rem); }
.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 5.1rem); line-height: 1.02; color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
  opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) .15s forwards;
}
.hero__sub {
  margin-top: 1.4rem; font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.55; max-width: 52ch; color: rgba(251, 246, 236, .92);
  opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) .32s forwards;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) .48s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .hero__img { object-position: 70% 50%; }
  .hero__scrim { background: linear-gradient(0deg, rgba(30, 25, 19, .88) 0%, rgba(30, 25, 19, .55) 55%, rgba(30, 25, 19, .25) 100%); }
  .hero__inner { align-self: end; padding-bottom: 3rem; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* ---------- Facts strip ---------- */
.facts { background: var(--ink); color: var(--cream); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 2rem 1.6rem 2rem 0; border-right: 1px solid rgba(251, 246, 236, .12); }
.fact + .fact { padding-left: 1.6rem; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: var(--gold-2); line-height: 1; margin-bottom: .55rem; }
.fact span { font-size: .92rem; color: rgba(251, 246, 236, .78); line-height: 1.5; }
@media (max-width: 960px) {
  .facts__grid { grid-template-columns: 1fr 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid rgba(251, 246, 236, .12); padding: 1.6rem 1rem 1.6rem 0; }
  .fact:nth-child(odd) { border-right: 1px solid rgba(251, 246, 236, .12); }
  .fact:nth-child(even) { padding-left: 1rem; }
  .fact:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .facts__grid { grid-template-columns: 1fr; }
  .fact, .fact:nth-child(odd) { border-right: 0; border-bottom: 1px solid rgba(251, 246, 236, .12); padding: 1.4rem 0; }
  .fact:nth-child(even) { padding-left: 0; }
  .fact:last-child { border-bottom: 0; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--alt { background: var(--cream-2); }
.section__head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section__head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; max-width: 62ch; }

/* ---------- Bento (services) ---------- */
.bento {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 236px;
}
.bento__cell {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bento__cell:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(30, 25, 19, .35); }
.bento__cell--lg { grid-column: span 4; grid-row: span 2; }
.bento__cell:nth-child(2) { grid-column: span 5; }
.bento__cell:nth-child(3) { grid-column: span 3; }
.bento__cell:nth-child(4) { grid-column: span 3; }
.bento__cell--wide { grid-column: span 5; }
.bento__cell--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bento__cell--img:hover img { transform: scale(1.05); }
.bento__cell--img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30, 25, 19, .94) 0%, rgba(30, 25, 19, .7) 42%, rgba(30, 25, 19, .25) 72%, rgba(30, 25, 19, .05) 100%);
}
.bento__cell--wide::after { background: linear-gradient(0deg, rgba(30, 25, 19, .95) 0%, rgba(30, 25, 19, .78) 50%, rgba(30, 25, 19, .3) 100%); }
.bento__cell--img .bento__body { color: var(--cream); }
.bento__cell--img h3 { color: #fff; }
.bento__cell--img p { color: rgba(251, 246, 236, .85); }
.bento__cell--tint { background: linear-gradient(160deg, var(--gold-2), var(--gold)); color: var(--ink); border: 0; }
.bento__cell--tint p { color: rgba(30, 25, 19, .78); }
.bento__cell--dark { background: var(--ink); color: var(--cream); border: 0; }
.bento__cell--dark h3 { color: #fff; }
.bento__cell--dark p { color: rgba(251, 246, 236, .78); }
.bento__cell--dark .ic--lg { color: var(--gold-2); }
.bento__body { position: relative; z-index: 1; padding: 1.5rem; }
.bento__body .ic--lg { margin-bottom: .8rem; }
.bento__body h3 { font-size: 1.35rem; margin-bottom: .45rem; }
.bento__body p { font-size: .93rem; line-height: 1.5; color: var(--muted); }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 230px; }
  .bento__cell--lg { grid-column: span 3; grid-row: span 2; }
  .bento__cell:nth-child(2) { grid-column: span 3; }
  .bento__cell:nth-child(3), .bento__cell:nth-child(4) { grid-column: span 3; }
  .bento__cell--wide { grid-column: span 6; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__cell, .bento__cell--lg, .bento__cell:nth-child(2), .bento__cell:nth-child(3), .bento__cell:nth-child(4), .bento__cell--wide { grid-column: 1; grid-row: auto; min-height: 240px; }
  .bento__cell--img { min-height: 320px; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; contain: paint; background: var(--gold); color: var(--ink); padding: .9rem 0; border-block: 1px solid rgba(30, 25, 19, .15); }
.marquee__track { display: flex; width: max-content; animation: scroll 40s linear infinite; }
.marquee__list { display: flex; gap: 0; padding-right: 0; }
.marquee__list li { font-family: var(--font-display); font-size: 1.15rem; padding: 0 1.4rem; white-space: nowrap; position: relative; }
.marquee__list li::after { content: ""; position: absolute; right: -4px; top: 50%; width: 7px; height: 7px; background: var(--ink); transform: translateY(-50%) rotate(45deg); opacity: .6; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Packages ---------- */
.pakej { display: grid; grid-template-columns: 1.05fr 1fr; gap: 1.5rem; align-items: start; }
.pakej__featured {
  background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  position: sticky; top: calc(var(--nav-h) + 1.2rem);
  background-image: radial-gradient(60% 50% at 100% 0%, rgba(184, 146, 79, .35), transparent 70%);
}
.pill { display: inline-block; padding: .35rem .8rem; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pakej__featured-head h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-top: 1rem; color: #fff; }
.pakej__featured-head p { margin-top: .6rem; color: rgba(251, 246, 236, .75); font-size: .95rem; }
.tiers { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .7rem; }
.tier {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem; border-radius: var(--radius-sm);
  background: rgba(251, 246, 236, .06); border: 1px solid rgba(251, 246, 236, .12);
}
.tier--top { background: rgba(184, 146, 79, .18); border-color: rgba(213, 181, 122, .45); }
.tier__name strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.tier__name span { font-size: .84rem; color: rgba(251, 246, 236, .7); line-height: 1.45; display: block; margin-top: .2rem; }
.tier__price { font-family: var(--font-display); font-size: 2rem; color: var(--gold-2); line-height: 1; white-space: nowrap; display: flex; align-items: baseline; }
.tier__price small { font-size: .9rem; margin-right: .15rem; }
.tier__price em { font-style: normal; font-family: var(--font-body); font-size: .78rem; color: rgba(251, 246, 236, .6); margin-left: .25rem; }

.pakej__stack { display: flex; flex-direction: column; gap: 1rem; }
.pkg { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pkg:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -30px rgba(30, 25, 19, .35); }
.pkg__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pkg__head h3 { font-size: 1.25rem; }
.pkg__meta { font-size: .8rem; font-weight: 700; color: var(--gold-deep); letter-spacing: .04em; text-transform: uppercase; }
.pkg__prices { display: flex; flex-wrap: wrap; gap: .5rem; margin: .9rem 0 .8rem; }
.price-chip { display: inline-flex; gap: .35rem; align-items: baseline; padding: .4rem .75rem; border-radius: 999px; background: var(--cream-2); font-size: .86rem; border: 1px solid var(--line); }
.price-chip b { font-weight: 700; color: var(--ink); }
.pkg p { font-size: .93rem; color: var(--muted); line-height: 1.55; }
.fineprint { margin-top: 2rem; font-size: .84rem; color: var(--muted); max-width: 80ch; }
@media (max-width: 900px) {
  .pakej { grid-template-columns: 1fr; }
  .pakej__featured { position: static; }
}
@media (max-width: 480px) {
  .tier { flex-direction: column; align-items: flex-start; }
}

/* ---------- Menu tabs ---------- */
.tabs__list { display: flex; gap: .5rem; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: 2rem; }
.tab { padding: .7rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .93rem; color: var(--ink-2); border: 1px solid transparent; transition: background .25s, color .25s, border-color .25s; }
.tab:hover { background: var(--cream-2); }
.tab[aria-selected="true"] { background: var(--ink); color: var(--cream); }
.panel { display: grid; grid-template-columns: 5fr 7fr; gap: 2.5rem; align-items: center; animation: fade .5s var(--ease); }
.panel[hidden] { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel__media { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; }
.panel__media img { width: 100%; height: 100%; object-fit: cover; }
.panel__body h3 { font-size: 1.7rem; }
.panel__body > p { margin-top: .7rem; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.chips li { padding: .5rem .9rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .9rem; }
@media (max-width: 860px) {
  .panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .panel__media { aspect-ratio: 4 / 3; }
}

/* ---------- Story + timeline ---------- */
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.story__text h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.story__text p { margin-top: 1.1rem; color: var(--ink-2); font-size: 1.03rem; line-height: 1.7; }
.story__text em { font-style: italic; font-family: var(--font-display); font-size: 1.1em; }
.story__media { margin: 0; }
.story__media img { border-radius: var(--radius); width: 100%; box-shadow: 0 30px 60px -35px rgba(30, 25, 19, .5); }
.story__media figcaption { margin-top: .8rem; font-size: .86rem; color: var(--muted); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; padding-top: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line); }
.timeline__item { position: relative; }
.timeline__item::before { content: ""; position: absolute; top: -2.4rem; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); box-shadow: 0 0 0 5px var(--cream-2); }
.timeline__year { display: inline-block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); margin-bottom: .5rem; }
.timeline__item h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.timeline__item p { font-size: .92rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; padding-top: 0; padding-left: 1.6rem; gap: 2rem; }
  .timeline::before { top: 0; bottom: 0; right: auto; left: 5px; width: 1px; height: auto; }
  .timeline__item::before { top: .6rem; left: -1.6rem; transform: none; }
}

/* ---------- Gallery ---------- */
/* 10 items: 8 single + 2 tall (2 rows) = 12 cells. 4 cols x 3 rows, 3 cols x 4 rows and 2 cols x 6 rows all fill exactly. */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: .8rem; grid-auto-flow: dense; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--cream-3); padding: 0; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: rgba(30, 25, 19, 0); transition: background .4s; }
.gallery__item:hover::after { background: rgba(30, 25, 19, .12); }
@media (max-width: 960px) { .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step { padding: 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .ic--lg { color: var(--gold-deep); margin-bottom: 1rem; }
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; color: var(--muted); line-height: 1.55; }
.step:nth-child(2) { background: var(--ink); color: var(--cream); border: 0; }
.step:nth-child(2) h3 { color: #fff; }
.step:nth-child(2) p { color: rgba(251, 246, 236, .78); }
.step:nth-child(2) .ic--lg { color: var(--gold-2); }
.steps__note { margin-top: 1.6rem; color: var(--ink-2); font-weight: 600; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 1.1rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__row { display: flex; flex-direction: column; gap: .4rem; }
.form label { font-weight: 600; font-size: .9rem; color: var(--ink-2); }
.form__opt { font-weight: 400; color: var(--muted); }
.form input, .form select, .form textarea {
  font: inherit; color: var(--ink); background: var(--cream); border: 1px solid rgba(30, 25, 19, .2); border-radius: var(--radius-sm);
  padding: .8rem .95rem; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.form input::placeholder, .form textarea::placeholder { color: #8A7F73; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(184, 146, 79, .25); }
.form textarea { resize: vertical; min-height: 96px; }
.form__error { color: #9B2D20; font-size: .9rem; font-weight: 600; }
.form__hint { font-size: .8rem; color: var(--muted); text-align: center; }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } }

.info { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.5rem; }
.info li { display: flex; gap: .9rem; align-items: flex-start; }
.info .ic { color: var(--gold-deep); width: 1.4rem; height: 1.4rem; margin-top: .15rem; }
.info strong { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.info a { font-weight: 600; border-bottom: 1px solid var(--gold-2); }
.info span, .info address { color: var(--ink-2); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--cream-2); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.85) contrast(1.02); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; align-items: start; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(251, 246, 236, .12); }
.footer__brand img { width: 220px; height: 220px; margin-bottom: .6rem; margin-left: -10px; }
.footer__brand p { font-family: var(--font-display); font-style: italic; color: rgba(251, 246, 236, .8); font-size: 1.05rem; line-height: 1.5; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a, .footer__social a { color: rgba(251, 246, 236, .8); font-size: .95rem; display: inline-flex; align-items: center; gap: .55rem; width: fit-content; transition: color .2s; }
.footer__nav a:hover, .footer__social a:hover { color: var(--gold-2); }
.footer__social .ic { color: var(--gold-2); }
.footer__legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.4rem; font-size: .8rem; color: rgba(251, 246, 236, .55); }
.footer__legal span { overflow-wrap: anywhere; }
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding-bottom: 5.5rem; } /* clear the floating WhatsApp button */
  .footer__legal { flex-direction: column; gap: .5rem; padding-right: 4.5rem; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease), opacity .3s;
}
.wa-float .ic { width: 2rem; height: 2rem; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, .5); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(30, 25, 19, .94); display: grid; grid-template-columns: auto 1fr auto; align-items: center; padding: 1rem; }
.lightbox[hidden] { display: none; }
.lightbox__fig { margin: 0; display: grid; justify-items: center; gap: .8rem; max-height: 100%; }
.lightbox__fig img { max-width: min(1100px, 100%); max-height: 82vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox__fig figcaption { color: rgba(251, 246, 236, .8); font-size: .95rem; }
.lightbox__close, .lightbox__nav { color: var(--cream); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(251, 246, 236, .08); }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; }
.lightbox__close .ic, .lightbox__nav .ic { width: 1.6rem; height: 1.6rem; }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(251, 246, 236, .18); }
@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; }
  .lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); }
  .lightbox__nav--prev { left: .5rem; } .lightbox__nav--next { right: .5rem; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img { animation: none; transform: none; }
  .hero__title, .hero__sub, .hero__cta { animation: none; opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .wa-float::before { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .panel { animation: none; }
  .bento__cell, .pkg, .gallery__item img, .btn { transition: none; }
}

/* =========================================================
   BENTO ON THE GO (bento.html)
   Sub-brand: pink / white / ink, from the Bento On The Go logo.
   Re-themes the shared tokens on this page only.
   ========================================================= */
.bento-page {
  --cream: #FFF8FA;
  --cream-2: #FCECF2;
  --cream-3: #F6D3E0;
  --gold: #E4628E;
  --gold-2: #F7A9C5;
  --gold-deep: #B0355E;
  --line: rgba(30, 25, 19, 0.11);
}
.bento-page .nav__brand img { border-radius: 50%; }
.nav__back { color: var(--gold-deep) !important; display: inline-flex; align-items: center; gap: .25rem; }
.nav__back .ic { width: .95em; height: .95em; }

/* Split hero */
.bhero { padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.5rem, 6vw, 5rem); background: var(--cream); position: relative; overflow: hidden; }
.bhero::before { content: ""; position: absolute; right: -10%; top: -20%; width: 55vw; height: 55vw; max-width: 720px; max-height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(247, 169, 197, .45), rgba(247, 169, 197, 0) 65%); pointer-events: none; }
.bhero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; }
.eyebrow { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.1rem; opacity: 0; transform: translateY(18px); animation: rise .8s var(--ease) .05s forwards; }
.eyebrow span { color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: none; font-size: .82rem; margin-left: .4rem; }
.bhero__title { font-size: clamp(2.5rem, 5.6vw, 4.6rem); line-height: 1.02; color: var(--ink); opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) .15s forwards; }
.bhero__sub { margin-top: 1.3rem; font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.6; color: var(--ink-2); max-width: 50ch; opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) .3s forwards; }
.bhero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) .45s forwards; }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.collage { position: relative; aspect-ratio: 5 / 5.2; opacity: 0; transform: translateY(20px) scale(.98); animation: rise 1s var(--ease) .25s forwards; }
.collage__main { position: absolute; left: 0; top: 0; width: 72%; height: 86%; object-fit: cover; border-radius: var(--radius); box-shadow: 0 40px 70px -40px rgba(176, 53, 94, .45); }
.collage__small { position: absolute; right: 0; bottom: 0; width: 46%; height: 52%; object-fit: cover; border-radius: var(--radius); border: 6px solid var(--cream); box-shadow: 0 30px 60px -35px rgba(30, 25, 19, .45); }
.collage__badge { position: absolute; left: 6%; bottom: 4%; background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: .9rem 1.1rem; display: flex; flex-direction: column; line-height: 1; box-shadow: 0 20px 40px -25px rgba(30, 25, 19, .6); }
.collage__badge strong { font-family: var(--font-display); font-size: 2rem; color: var(--gold-2); }
.collage__badge span { font-size: .78rem; margin-top: .3rem; color: rgba(251, 246, 236, .8); }
@media (max-width: 900px) {
  .bhero__grid { grid-template-columns: 1fr; }
  .collage { max-width: 520px; aspect-ratio: 1 / 1; }
}
@media (max-width: 640px) {
  .bhero__cta .btn { flex: 1 1 100%; justify-content: center; }
  .collage { aspect-ratio: 1 / 1.05; }
}

/* Filters + set cards */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.filter { padding: .6rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--ink-2); border: 1px solid var(--line); background: #fff; transition: background .25s, color .25s, border-color .25s; }
.filter:hover { border-color: var(--gold); }
.filter.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.sets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.set { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.set:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -32px rgba(176, 53, 94, .35); }
.set[hidden] { display: none; }
.set img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transform: scale(1.02); }
.set__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.set__head { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.set__head h3 { font-size: 1.08rem; line-height: 1.2; }
.set__price { flex: none; font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-deep); line-height: 1.1; white-space: nowrap; }
.set__body p { font-size: .86rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 1100px) { .sets { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .sets { grid-template-columns: repeat(2, 1fr); gap: .8rem; } .set__body { padding: .85rem .9rem 1rem; } .set__head h3 { font-size: 1rem; } }
@media (max-width: 400px) { .sets { grid-template-columns: 1fr; } }

/* Day schedule (ink section) */
.day { background: var(--ink); color: var(--cream); }
.day .section__head h2 { color: #fff; }
.day .section__head p { color: rgba(251, 246, 236, .72); }
.sched { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; counter-reset: stop; }
.sched::before { content: ""; position: absolute; left: 0; right: 0; top: 1.05rem; height: 1px; background: rgba(251, 246, 236, .18); }
.sched__stop { position: relative; padding-top: 2.6rem; }
.sched__stop::before { content: ""; position: absolute; top: .6rem; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 5px var(--ink); }
.sched__time { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .35rem; }
.sched__stop h3 { font-size: 1.6rem; color: #fff; }
.sched__price { display: inline-flex; align-items: baseline; gap: .2rem; margin: .5rem 0 .7rem; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-2); line-height: 1; }
.sched__price em { font-style: normal; font-family: var(--font-body); font-size: .78rem; color: rgba(251, 246, 236, .6); }
.sched__stop p { font-size: .9rem; color: rgba(251, 246, 236, .75); line-height: 1.55; }
.addons { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; padding-top: 1.6rem; border-top: 1px solid rgba(251, 246, 236, .14); }
.addons__label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2); margin-right: .4rem; }
.day .price-chip { background: rgba(251, 246, 236, .08); border-color: rgba(251, 246, 236, .18); color: rgba(251, 246, 236, .85); }
.day .price-chip b { color: #fff; }
@media (max-width: 900px) {
  .sched { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .sched::before { display: none; }
  .sched__stop { padding-top: 0; padding-left: 1.6rem; }
  .sched__stop::before { top: .4rem; }
}
@media (max-width: 520px) { .sched { grid-template-columns: 1fr; } }

/* Event grid + two columns */
.events { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.events li { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; }
.events .ic { width: 1.5rem; height: 1.5rem; color: var(--gold-deep); }
@media (max-width: 960px) { .events { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .events { grid-template-columns: repeat(2, 1fr); } .events li { font-size: .88rem; padding: .85rem .9rem; } }
@media (max-width: 380px) { .events { grid-template-columns: 1fr; } }

.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.twocol__col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.twocol__col h3 { font-size: 1.5rem; margin-bottom: 1.1rem; }
.twocol__col--dark { background: linear-gradient(160deg, var(--gold-deep), var(--gold)); color: #fff; border: 0; }
.twocol__col--dark h3 { color: #fff; }
.ticks { display: flex; flex-direction: column; gap: .7rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; line-height: 1.45; }
.ticks .ic { width: 1.3rem; height: 1.3rem; margin-top: .1rem; color: var(--gold-deep); }
.twocol__col--dark .ticks .ic { color: #fff; }
@media (max-width: 800px) { .twocol { grid-template-columns: 1fr; } }

/* Cross link card */
.crosslink { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.crosslink img { width: 56px; height: 56px; flex: none; }
.crosslink strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.crosslink a { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--gold-deep); border-bottom: 1px solid var(--gold-2); }

/* Stretched link used on index service card */
.bento__cell { isolation: isolate; }
.stretched { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.bento__more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .7rem; font-size: .88rem; font-weight: 700; color: var(--gold-2); }
.pkg__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .8rem; font-weight: 700; font-size: .9rem; color: var(--gold-deep); border-bottom: 1px solid var(--gold-2); }

@media (prefers-reduced-motion: reduce) {
  .eyebrow, .bhero__title, .bhero__sub, .bhero__cta, .collage { animation: none; opacity: 1; transform: none; }
  .set, .filter, .btn--outline { transition: none; }
}
