/* =========================================================
   Pita Pocket RI — Dynamic & Engaging
   Brand colors pulled from the real logo (dark ink + red) with
   supporting Mediterranean palette: olive, saffron, cream, coral.
   ========================================================= */

:root {
  --ink: #222226;
  --ink-soft: #3a3a40;
  --red: #ec1c3b;
  --red-dark: #c0152f;
  --coral: #ff5a3c;
  --olive: #4a6b3a;
  --olive-dark: #2a3e1f;
  --saffron: #f5b731;
  --saffron-deep: #e09a12;
  --cream: #fbf5ea;
  --cream-warm: #f5e8cf;
  --peach: #ffe3d3;
  --muted: #7a7466;
  --line: #e7dfce;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-sm: 0 4px 14px rgba(29,27,23,.08);
  --shadow: 0 16px 40px rgba(29,27,23,.12);
  --shadow-lg: 0 30px 70px rgba(29,27,23,.22);

  --font-display: "Playfair Display", Georgia, serif;
  --font-impact: "Bebas Neue", "Inter", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --max-w: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red-dark); text-decoration: none; }
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }

.italic { font-style: italic; }
.accent { color: var(--saffron); }
.accent-coral { color: var(--coral); }
.accent-saffron { color: var(--saffron); }

p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.lead-small { color: var(--ink-soft); }
.lead-light { color: rgba(255,255,255,.85); }
.heading-light { color: #fff; }
.center { text-align: center; }
.muted { color: var(--muted); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin: 0 auto; }

.underline-accent {
  background-image: linear-gradient(180deg, transparent 70%, var(--saffron) 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 10px 14px; z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: 6px; }

/* =========== Marquee utility =========== */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee-track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-right: 28px;
}
.marquee-track.slow { animation-duration: 60s; }
.marquee-track span { display: inline-block; }
.marquee-track em { font-style: normal; color: inherit; opacity: .6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========== Top bar =========== */
.top-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: .85rem;
  padding: 10px 0;
  border-bottom: 2px solid var(--red);
}
.top-bar .marquee-track { gap: 22px; font-weight: 500; }

/* =========== Header =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,245,234,.96);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-ri {
  background: var(--ink);
  color: var(--saffron);
  font-family: var(--font-impact);
  font-size: 1.1rem;
  padding: 4px 8px 2px;
  border-radius: 6px;
  letter-spacing: .08em;
  line-height: 1;
}

.main-nav ul {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--ink-soft);
  font-weight: 500;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--cream-warm); color: var(--ink); }
.main-nav .nav-cta {
  background: var(--red);
  color: #fff;
  margin-left: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(236,28,59,.35);
}
.main-nav .nav-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); margin: 6px auto; width: 22px;
}

/* =========== Buttons =========== */
.btn {
  display: inline-block;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
}
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(236,28,59,.35);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-saffron {
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(245,183,49,.45);
}
.btn-saffron:hover { background: var(--saffron-deep); color: var(--ink); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 24px 0 8px;
}

/* =========== HERO =========== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(245,183,49,.28), transparent 55%),
    radial-gradient(700px 500px at 10% 90%, rgba(236,28,59,.16), transparent 60%),
    linear-gradient(180deg, #fff8ea 0%, var(--cream) 60%, var(--cream-warm) 100%);
  z-index: -1;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(34,34,38,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 65%, rgba(34,34,38,.05) 0 2px, transparent 3px);
  background-size: 50px 50px, 65px 65px;
  opacity: .5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 90px;
  padding-top: 20px;
}
.hero-grid > * { min-width: 0; }
.hero-text { position: relative; min-width: 0; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--ink);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(236,28,59,.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236,28,59,.6); }
  70% { box-shadow: 0 0 0 10px rgba(236,28,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,28,59,0); }
}

.hero h1 {
  display: flex; flex-direction: column;
  line-height: .95;
  letter-spacing: -0.03em;
}
.h1-line { display: block; }
.h1-line.accent {
  color: var(--red);
  position: relative;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.h1-line.italic { font-style: italic; }

.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 22px 0 14px;
}
/* hero-ctas styles defined above */
.hero-stats {
  display: flex; gap: 26px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 900;
}
.hero-stats span {
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual — overlapping photo collage */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 500px;
}
.hero-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo.hp-main {
  width: 62%; aspect-ratio: 4/5;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.hero-photo.hp-boba {
  width: 46%; aspect-ratio: 4/5;
  bottom: 8%; right: 0;
  transform: rotate(4deg);
  z-index: 3;
}
.hero-photo.hp-kofta {
  width: 44%; aspect-ratio: 1/1;
  top: 14%; right: 6%;
  transform: rotate(-5deg);
  z-index: 1;
  border-radius: 50%;
  border-width: 8px;
}
.hero-visual:hover .hp-main { transform: rotate(-1deg) scale(1.02); }
.hero-visual:hover .hp-boba { transform: rotate(2deg) scale(1.03); }
.hero-visual:hover .hp-kofta { transform: rotate(-2deg) scale(1.02); }

.hero-sticker {
  position: absolute;
  background: var(--saffron);
  color: var(--ink);
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  z-index: 4;
  border: 3px solid #fff;
  text-align: center;
  line-height: 1.1;
  animation: spin-slow 18s linear infinite;
}
.hero-sticker.sticker-1 {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  top: -16px; right: 12%;
  background: var(--red); color: #fff;
}
.hero-sticker.sticker-2 {
  bottom: 12%; left: -14px;
  border-radius: 14px;
  animation: wiggle 3s ease-in-out infinite;
  padding: 10px 16px;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes wiggle {
  0%,100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

/* Keyword marquee band */
.keyword-band {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 3px solid var(--saffron);
  border-bottom: 3px solid var(--saffron);
  font-family: var(--font-impact);
  font-size: 2.2rem;
  letter-spacing: .06em;
}
.keyword-band .marquee-track { gap: 36px; }
.keyword-band em { color: var(--red); font-size: 1.6rem; }

/* =========== Service tiles =========== */
.service-grid-wrap {
  background: var(--cream);
  padding: 80px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
  isolation: isolate;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.tile-bg {
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transition: transform .6s ease;
  z-index: -2;
}
.service-tile:hover .tile-bg { transform: scale(1.08); }
.service-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,34,38,.1) 0%, rgba(34,34,38,.35) 50%, rgba(34,34,38,.85) 100%);
  z-index: -1;
}
.tile-body {
  position: absolute; inset: 0;
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.tile-num {
  display: inline-block;
  font-family: var(--font-impact);
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 10px 4px;
  border-radius: 8px;
  letter-spacing: .1em;
  width: fit-content;
  font-size: .95rem;
}
.service-tile h3 {
  color: #fff;
  font-size: 1.7rem;
  margin: 0;
}
.service-tile p {
  color: rgba(255,255,255,.85);
  margin: 2px 0 0;
  font-size: .95rem;
}
.tile-arrow {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  transition: transform .3s, background .3s;
}
.service-tile:hover .tile-arrow {
  background: var(--saffron);
  transform: translate(4px, -4px);
}

/* =========== Section defaults =========== */
.section { padding: 110px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.section-eyebrow.boba-eyebrow { color: var(--coral); }
.eyebrow-light { color: var(--saffron); }
.section-head.center { text-align: center; margin-bottom: 50px; }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-visual { order: 1; }

.feature-list { list-style: none; padding: 0; margin: 18px 0 24px; }
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  position: relative;
  padding-left: 26px;
}
.feature-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  position: absolute; left: 0; top: 14px;
}
.feature-list li strong { color: var(--ink); }
.feature-list li:last-child { border-bottom: 0; }

.store-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 28px;
  background: var(--cream-warm);
  padding: 22px 26px;
  border-radius: var(--radius);
  border-left: 5px solid var(--red);
}
.store-meta p { margin: 0; color: var(--ink-soft); }

/* =========== STORE GALLERY =========== */
.store-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1/1;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .4s;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.gi-1 { transform: rotate(-2deg); }
.gallery-item.gi-2 { transform: rotate(2deg); margin-top: 30px; }
.gallery-item.gi-3 { transform: rotate(2deg); margin-top: -30px; }
.gallery-item.gi-4 { transform: rotate(-2deg); }
.gallery-item:hover { transform: rotate(0) scale(1.03); z-index: 2; }

.gallery-badge {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-impact);
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: .05em;
  z-index: 3;
  pointer-events: none;
  border: 4px solid #fff;
}
.gallery-badge .badge-inner { line-height: 1; }

/* =========== Scroll bands =========== */
.scroll-band {
  padding: 22px 0;
  overflow: hidden;
  font-family: var(--font-impact);
  font-size: 1.4rem;
  letter-spacing: .12em;
}
.scroll-band .marquee-track { gap: 30px; }
.scroll-band em { font-size: 1.2rem; opacity: .7; font-style: normal; }
.band-cream {
  background: var(--cream-warm);
  color: var(--ink);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.band-saffron {
  background: var(--saffron);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

/* =========== BUBBLE TEA =========== */
.section-boba {
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.boba-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(700px 500px at 15% 0%, rgba(255,90,60,.15), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(245,183,49,.20), transparent 55%),
    linear-gradient(180deg, #fff2e5 0%, #ffe3d3 100%);
}
.section-boba > .container { position: relative; z-index: 1; }
.bees-brand {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
}
.bees-logo {
  width: 90px; height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.15));
}
.bees-brand h2 { margin: 0; }

.boba-menu {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 26px;
}
.boba-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .25s, box-shadow .25s;
}
.boba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.boba-emoji { font-size: 1.6rem; display: block; margin-bottom: 4px; }
.boba-card h4 { color: var(--coral); margin-bottom: 6px; font-size: 1rem; }
.boba-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.boba-visual {
  position: relative;
  width: 100%;
  min-height: 520px;
}
.boba-photo.main-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  border: 8px solid #fff;
  position: relative;
  z-index: 1;
}
.boba-photo img { width: 100%; height: 100%; object-fit: cover; }

.floating-chip {
  position: absolute;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 2;
  border: 2px solid var(--line);
  font-size: .95rem;
}
.floating-chip.chip-1 {
  top: 6%; left: -8%;
  background: var(--coral); color: #fff; border-color: var(--coral);
  animation: float 4s ease-in-out infinite;
}
.floating-chip.chip-2 {
  bottom: 22%; right: -10%;
  background: var(--saffron); color: var(--ink); border-color: var(--saffron);
  animation: float 5s ease-in-out infinite .6s;
}
.floating-chip.chip-3 {
  bottom: 4%; left: 10%;
  background: var(--ink); color: #fff; border-color: var(--ink);
  animation: float 4.5s ease-in-out infinite 1.2s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =========== FOOD TRUCK =========== */
.section-truck {
  background:
    radial-gradient(800px 500px at 10% 0%, rgba(245,183,49,.18), transparent 60%),
    radial-gradient(800px 500px at 90% 100%, rgba(236,28,59,.18), transparent 60%),
    linear-gradient(180deg, #1a1a1e 0%, #0f0f12 100%);
  color: #fff;
  overflow: hidden;
}
.section-truck h2, .section-truck h3, .section-truck h4 { color: #fff; }

.truck-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 22px 0 26px;
}
.truck-benefits > div {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  border-radius: var(--radius);
  transition: background .25s, border-color .25s;
}
.truck-benefits > div:hover {
  background: rgba(245,183,49,.12);
  border-color: var(--saffron);
}
.truck-benefits strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--saffron);
  margin-bottom: 2px;
}
.truck-benefits p { margin: 0; color: rgba(255,255,255,.75); font-size: .95rem; }

/* Truck collage */
.truck-collage {
  position: relative;
  width: 100%;
  min-height: 520px;
}
.truck-img {
  margin: 0;
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.truck-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.truck-img.ti-1 {
  width: 62%; aspect-ratio: 4/3;
  top: 6%; left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}
.truck-img.ti-2 {
  width: 50%; aspect-ratio: 1/1;
  bottom: 4%; left: 18%;
  transform: rotate(3deg);
  z-index: 1;
}
.truck-img.ti-3 {
  width: 48%; aspect-ratio: 3/4;
  top: 20%; right: 0;
  transform: rotate(5deg);
  z-index: 3;
}

.truck-tag {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--saffron);
  color: var(--ink);
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 14px;
  transform: rotate(6deg);
  box-shadow: var(--shadow);
  z-index: 5;
  border: 3px solid #fff;
  font-size: .95rem;
}

/* =========== PRIVATE CHEF =========== */
.section-chef {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(74,107,58,.14), transparent 65%),
    radial-gradient(800px 400px at 10% 100%, rgba(255,90,60,.10), transparent 65%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.chef-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 26px;
}
.tier-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-6px);
}
.tier-card.featured h4 { color: #fff; }
.tier-card.featured p { color: rgba(255,255,255,.85); }
.tier-card.featured .tier-size { color: var(--saffron); }
.tier-flag {
  position: absolute; top: -12px; right: 16px;
  background: var(--saffron); color: var(--ink);
  font-size: .72rem; font-weight: 800;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
}
.tier-card h4 {
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--ink);
}
.tier-size {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chef-visual {
  position: relative;
  width: 100%;
  min-height: 520px;
}
.chef-photo {
  margin: 0;
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.chef-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chef-photo.cp-main {
  width: 80%; aspect-ratio: 4/5;
  top: 0; left: 0;
  transform: rotate(-3deg);
}
.chef-photo.cp-small {
  width: 45%; aspect-ratio: 1/1;
  bottom: 0; right: 0;
  transform: rotate(4deg);
  border-radius: 50%;
}
.quote-card {
  position: absolute;
  bottom: 28%; right: -6%;
  max-width: 240px;
  background: var(--saffron);
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 3;
  transform: rotate(3deg);
  border: 3px solid #fff;
}
.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.3;
}
.quote-card cite {
  font-style: normal;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* =========== MENU =========== */
.section-menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-warm);
}
.menu-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.menu-card:hover .menu-photo img { transform: scale(1.06); }
.menu-body { padding: 18px 18px 22px; position: relative; }
.menu-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.menu-card p { color: var(--ink-soft); margin: 0; font-size: .92rem; }
.menu-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag-red { background: var(--red); color: #fff; }
.tag-green { background: var(--olive); color: #fff; }
.tag-orange { background: var(--coral); color: #fff; }
.tag-gold { background: var(--saffron); color: var(--ink); }
.tag-purple { background: #6d4d8f; color: #fff; }
.menu-cta { text-align: center; margin-top: 42px; }

/* =========== Gallery strip =========== */
.gallery-strip {
  padding: 0;
  background: var(--ink);
  overflow: hidden;
  border-top: 4px solid var(--saffron);
  border-bottom: 4px solid var(--saffron);
}
.strip-track {
  display: flex;
  gap: 10px;
  animation: marquee 70s linear infinite;
  width: max-content;
}
.strip-track figure {
  margin: 0;
  width: 240px; height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.strip-track figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s, filter .4s;
}
.strip-track figure:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* =========== COMMUNITY =========== */
.section-community {
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(74,107,58,.12), transparent 65%),
    radial-gradient(700px 400px at 100% 100%, rgba(245,183,49,.18), transparent 65%),
    linear-gradient(180deg, var(--cream) 0%, #fdefd1 100%);
  border-top: 1px solid var(--line);
}
.community-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}
.community-list li {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.community-list .cl-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.community-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.community-list span {
  display: block;
  color: var(--ink-soft);
  font-size: .92rem;
}
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px dashed var(--line);
}
.community-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.community-stats span {
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

/* Community mosaic */
.community-mosaic {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  gap: 12px;
  min-height: 520px;
}
.mosaic-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 5px solid #fff;
  transition: transform .35s, box-shadow .35s;
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.mosaic-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mosaic-item:hover img { transform: scale(1.06); }
.mi-1 { grid-column: 1 / span 4; grid-row: 1 / span 3; }
.mi-2 { grid-column: 5 / span 2; grid-row: 1 / span 2; }
.mi-3 { grid-column: 5 / span 2; grid-row: 3 / span 2; border-radius: 50%; }
.mi-4 { grid-column: 1 / span 3; grid-row: 4 / span 2; }
.mi-5 { grid-column: 4 / span 2; grid-row: 5 / span 1; }

.community-pin {
  position: absolute;
  top: 40%; right: -14px;
  transform: translateY(-50%) rotate(6deg);
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
  z-index: 5;
  text-align: center;
  line-height: 1.1;
}
.community-pin .pin-top {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}
.community-pin .pin-label {
  display: block;
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* =========== ABOUT =========== */
.section-about {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}
.section-about p { font-size: 1.1rem; color: var(--ink-soft); }
.keyword-cloud {
  margin-top: 28px;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
  letter-spacing: .03em;
}

/* =========== CONTACT =========== */
.section-contact { background: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin: 22px 0 26px;
}
.contact-grid h4 { margin-bottom: 6px; text-transform: none; letter-spacing: 0; font-family: var(--font-display); font-size: 1.05rem; }
.contact-grid p { margin: 0; color: var(--ink-soft); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 18px; }
.contact-form label {
  display: block;
  margin-bottom: 14px;
}
.contact-form span {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(236,28,59,.12);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

.form-success {
  background: #eaf6e0;
  color: var(--olive-dark);
  border: 1px solid #b9d9a2;
  border-left: 5px solid var(--olive);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 18px;
  font-size: .98rem;
  box-shadow: var(--shadow-sm);
}
.form-success strong { color: var(--olive-dark); display: block; margin-bottom: 2px; font-size: 1.05rem; }

/* =========== Footer =========== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 24px;
}
.footer-logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.footer-logo {
  height: 32px;
  width: auto;
  display: block;
}
.footer-ri {
  background: var(--ink);
  color: var(--saffron);
  font-family: var(--font-impact);
  font-size: .95rem;
  padding: 3px 7px 2px;
  border-radius: 5px;
  letter-spacing: .08em;
  line-height: 1;
}

/* Social icons */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  transition: transform .2s, background .2s, color .2s;
  border: 1px solid var(--line);
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.social-link:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--red);
}
.social-row-footer {
  margin-top: 18px;
}
.social-row-footer .social-link {
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border-color: rgba(255,255,255,.15);
}
.social-row-footer .social-link:hover {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid h5 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--saffron);
  margin: 6px 0 14px;
  font-weight: 800;
}
.footer-grid p, .footer-grid li { color: rgba(251,245,234,.78); }
.footer-grid a { color: var(--cream); }
.footer-grid a:hover { color: var(--saffron); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  padding: 22px 24px 0;
  font-size: .85rem;
  color: rgba(251,245,234,.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.copyright { margin: 0; }
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--cream);
  font-size: .82rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.powered-by:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: #fff;
  transform: translateY(-1px);
}
.powered-by span {
  opacity: .7;
  letter-spacing: .02em;
}
.powered-by img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.powered-by strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.powered-by strong em {
  font-style: normal;
  color: var(--saffron);
}

/* Scroll-in animation — only for off-screen content cards. */
@media (prefers-reduced-motion: no-preference) {
  .menu-card, .tier-card, .boba-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
  }
  .in-view.menu-card, .in-view.tier-card, .in-view.boba-card {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========== Responsive =========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .two-col.reverse .col-text { order: 1; }
  .two-col.reverse .col-visual { order: 2; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-tiers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .store-meta { grid-template-columns: 1fr; }
  .boba-menu { grid-template-columns: 1fr; }
  .truck-benefits { grid-template-columns: 1fr; }
  .boba-visual, .chef-visual, .truck-collage { min-height: 420px; max-width: 520px; margin: 0 auto; }
  .keyword-band { font-size: 1.6rem; }
  .strip-track figure { width: 180px; height: 180px; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .top-bar { font-size: .78rem; padding: 8px 0; }
  .nav-toggle { display: block; }
  .nav-wrap { padding: 12px 18px; }
  .logo-img { height: 30px; }
  .logo-ri { font-size: .85rem; padding: 3px 6px 2px; }

  .main-nav ul {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open ul { display: flex; }
  .main-nav a { width: 100%; padding: 14px 10px; }
  .main-nav .nav-cta { text-align: center; margin: 8px 0 0; }

  h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }

  .hero { padding-top: 30px; }
  .hero-grid { padding-bottom: 50px; gap: 40px; }
  .hero-sub { font-size: 1.02rem; }
  .hero-visual { min-height: 380px; max-width: 100%; }
  .hero h1 { word-break: break-word; overflow-wrap: anywhere; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-sticker.sticker-1 { width: 72px; height: 72px; font-size: .72rem; top: -10px; right: 6%; }
  .hero-sticker.sticker-2 { font-size: .78rem; padding: 8px 12px; left: -8px; }
  .hero-stats { gap: 14px; padding-top: 16px; margin-top: 24px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 1.25rem; }
  .hero-stats span { font-size: .72rem; }

  .service-grid-wrap { padding: 50px 0 30px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-tile { aspect-ratio: 4/5; border-radius: var(--radius); }
  .service-tile h3 { font-size: 1.3rem; }
  .service-tile p { font-size: .85rem; }
  .tile-arrow { width: 36px; height: 36px; font-size: 1.1rem; right: 14px; bottom: 14px; }
  .tile-body { padding: 16px; }

  .bees-brand { flex-direction: row; align-items: center; gap: 12px; }
  .bees-logo { width: 60px; }

  .boba-menu { grid-template-columns: 1fr 1fr; gap: 10px; }
  .boba-card { padding: 14px; }
  .boba-card h4 { font-size: .85rem; }
  .boba-card p { font-size: .82rem; }
  .boba-visual, .chef-visual, .truck-collage { min-height: 360px; }
  .floating-chip { font-size: .82rem; padding: 8px 12px; }
  .floating-chip.chip-1 { left: -4%; }
  .floating-chip.chip-2 { right: -4%; }

  .truck-benefits { grid-template-columns: 1fr 1fr; gap: 10px; }
  .truck-benefits > div { padding: 14px; }
  .truck-benefits strong { font-size: 1rem; }
  .truck-benefits p { font-size: .82rem; }

  .chef-tiers { gap: 10px; }
  .tier-card { padding: 18px 16px; }
  .tier-card.featured { transform: none; }

  .quote-card { max-width: 190px; padding: 12px 14px; right: -2%; bottom: 20%; }
  .quote-card p { font-size: .88rem; }
  .quote-card cite { font-size: .74rem; }

  .gallery-item { border-radius: 12px; }
  .gallery-badge { width: 90px; height: 90px; font-size: 1rem; }

  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .menu-card h3 { font-size: 1rem; }
  .menu-card p { font-size: .85rem; }
  .menu-body { padding: 14px 14px 16px; }

  .community-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 70px;
    gap: 8px;
    min-height: 400px;
  }
  .mi-1 { grid-column: 1 / span 4; grid-row: 1 / span 3; }
  .mi-2 { grid-column: 1 / span 2; grid-row: 4 / span 2; }
  .mi-3 { grid-column: 3 / span 2; grid-row: 4 / span 2; }
  .mi-4 { grid-column: 1 / span 3; grid-row: 6 / span 2; }
  .mi-5 { grid-column: 4 / span 1; grid-row: 6 / span 1; }
  .community-stats { gap: 8px; padding-top: 18px; margin-top: 20px; }
  .community-stats strong { font-size: 1.6rem; }
  .community-stats span { font-size: .74rem; }
  .community-pin { right: 6px; padding: 8px 12px; }
  .community-pin .pin-label { font-size: .85rem; }

  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .store-meta { padding: 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
  .footer-logo-chip { padding: 8px 12px; }
  .footer-logo { height: 28px; }

  .keyword-band { font-size: 1.1rem; padding: 14px 0; }
  .keyword-band .marquee-track { gap: 24px; }
  .scroll-band { font-size: .95rem; padding: 16px 0; }

  .btn, .btn-lg { width: 100%; text-align: center; padding: 16px 22px; }
  .cta-row { flex-direction: column; gap: 10px; }
  .strip-track figure { width: 130px; height: 130px; }

  .top-bar .marquee-track { gap: 16px; }
}

@media (max-width: 380px) {
  h1 { font-size: 2.2rem; }
  .hero-stats strong { font-size: 1.1rem; }
  .service-tile h3 { font-size: 1.1rem; }
  .boba-menu { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .truck-benefits { grid-template-columns: 1fr; }
}
