/* ============================================================
   DOMINICK'S MARKET — v2.1
   Brand foundation per Level 8 Media redesign brief (Rev 2)
   Crimson / Ink Black / White / Warm Cream — anchored to the logo
   Type: Archivo (headlines) · Fraunces (heritage) · Inter (body/UI)
   ============================================================ */

:root {
  /* --green token name retained = Dominick's Crimson (CTAs / links / accents) */
  --green:        #C8102E;   /* Dominick's Crimson */
  --green-dark:   #A00C24;   /* darker crimson — hover */
  --green-soft:   #FBE9EC;   /* light crimson tint */
  --ink:          #0E0E0E;   /* Ink Black — headers, footers, hero overlays */
  --ink-2:        #2A2A2A;   /* Body Gray */
  --muted:        #5C6063;
  --muted-2:      rgba(255,255,255,0.82);
  --line:         #E6E2DA;
  --line-soft:    #EFECE4;
  --bg:           #FFFFFF;   /* Pure White — default canvas */
  --bg-soft:      #F7F3EC;   /* Warm Cream — premium alternating sections */
  --bg-soft-2:    #F0EADD;
  --cream:        #F7F3EC;
  --crimson:      #C8102E;

  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 2px rgba(14,14,14,0.06), 0 4px 12px rgba(14,14,14,0.05);
  --shadow-md:    0 8px 30px rgba(14,14,14,0.10);
  --shadow-card:  0 18px 50px rgba(14,14,14,0.16);

  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Archivo', 'Inter', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1240px;
  --pad:  clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
/* overflow-x on body alone makes iOS Safari treat body as a scroll container,
   which breaks position:sticky and causes the viewport to rubber-band/rescale
   while scrolling. `clip` contains the overflow without creating that container. */
html, body { overflow-x: clip; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.heritage { font-family: var(--serif); font-style: italic; font-weight: 600; letter-spacing: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: 860px; }

.accent { color: var(--green); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(61,174,76,0.32); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 32px; font-size: 16px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo { height: 48px; width: 48px; object-fit: contain; display: block; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark-main { font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.nav__wordmark-main b { color: var(--green); font-weight: 800; }
.nav__wordmark-sub { font-size: 9.5px; font-weight: 600; letter-spacing: 0.3em; color: var(--muted); margin-top: 4px; text-transform: uppercase; }
@media (max-width: 420px) { .nav__wordmark { display: none; } }

.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__menu > li { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 9px 13px; border-radius: 8px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link svg { width: 15px; height: 15px; stroke: currentColor; opacity: 0.85; }
.nav__link:hover, .nav__link.active { color: var(--green); background: var(--green-soft); }
.nav__caret { width: 12px !important; height: 12px !important; opacity: 0.6; }

/* dropdown */
.nav__dd {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__menu > li:hover .nav__dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dd a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav__dd a:hover { background: var(--green-soft); color: var(--green); }
.nav__dd a span { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted); margin-top: 1px; }

.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__toggle { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: clamp(560px, 78vh, 760px);
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,12,16,0.92) 0%, rgba(10,12,16,0.74) 38%, rgba(10,12,16,0.28) 70%, rgba(10,12,16,0.15) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 680px; padding: 60px 0; }
.hero__title {
  font-size: clamp(46px, 7vw, 86px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98;
  color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero__title b { color: var(--green); font-weight: 800; }
.hero__lede {
  font-size: clamp(16px, 1.7vw, 19px); font-weight: 400; line-height: 1.55;
  color: rgba(255,255,255,0.9); max-width: 50ch; margin: 22px 0 34px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- SECTION SHELL ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 5vw, 64px); }
.section__head--left { text-align: left; margin-left: 0; }
.section__eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.section__title { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; letter-spacing: -0.03em; }
.section__sub { font-size: clamp(16px, 1.6vw, 18px); color: var(--muted); margin-top: 16px; line-height: 1.55; }

/* ---------- LOCATIONS ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.loc-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 430px; display: flex; align-items: flex-end;
  color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.loc-card__bg { position: absolute; inset: 0; z-index: 0; }
.loc-card__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.loc-card:hover .loc-card__bg img { transform: scale(1.05); }
.loc-card__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,16,0) 30%, rgba(10,12,16,0.86) 100%); }
.loc-card__body { position: relative; z-index: 1; padding: 32px; width: 100%; }
.loc-card__name { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.loc-card__city { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--green); margin-bottom: 16px; }
.loc-card__addr { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.92); margin-bottom: 22px; }
.loc-card__addr svg { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--green); }
.loc-card__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* info companion card */
.loc-card--info { background: var(--ink); align-items: stretch; }
.loc-info { position: relative; z-index: 1; padding: 36px; width: 100%; display: flex; flex-direction: column; }
.loc-info__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.loc-info__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.loc-info__row:first-of-type { border-top: 1px solid rgba(255,255,255,0.12); }
.loc-info__k { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); }
.loc-info__v { font-size: 15px; font-weight: 700; color: #fff; text-align: right; }
.loc-info__cta { margin-top: auto; padding-top: 26px; }

/* ---------- DEPARTMENTS GRID ---------- */
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dept-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.dept-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.dept-card__img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--bg-soft-2); }
.dept-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dept-card:hover .dept-card__img img { transform: scale(1.06); }
.dept-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; padding: 5px 11px; border-radius: var(--radius-pill);
}
.dept-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.dept-card__title { font-size: 20px; font-weight: 800; letter-spacing: -0.025em; }
.dept-card__desc { font-size: 14px; color: var(--muted); margin-top: 7px; line-height: 1.5; }
.dept-card__link { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.dept-card__link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.dept-card:hover .dept-card__link svg { transform: translateX(3px); }

/* green branded dept card (no photo) */
.dept-card--green { background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; border: none; }
.dept-card--green .dept-card__body { justify-content: center; min-height: 100%; }
.dept-card--green .dept-card__title, .dept-card--green .dept-card__desc { color: #fff; }
.dept-card--green .dept-card__desc { color: rgba(255,255,255,0.88); }
.dept-card--green .dept-card__link { color: #fff; }
.dept-card--green .dept-card__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 10px; }

/* ---------- FEATURE (More Than Just a Market) ---------- */
.feat { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feat__title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; }
.feat__lede { font-size: 16.5px; color: var(--muted); margin: 20px 0 30px; line-height: 1.6; max-width: 48ch; }
.feat__list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.feat__item { display: flex; gap: 16px; align-items: flex-start; }
.feat__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat__ico svg { width: 21px; height: 21px; stroke: var(--green); }
.feat__item h4 { font-size: 16.5px; font-weight: 800; letter-spacing: -0.02em; }
.feat__item p { font-size: 14px; color: var(--muted); margin-top: 2px; }
.feat__collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.feat__collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-sm); }
.feat__collage > *:nth-child(1) { aspect-ratio: 4/5; }
.feat__collage > *:nth-child(2) { aspect-ratio: 5/4; }
.feat__collage > *:nth-child(3) { aspect-ratio: 5/4; }
.feat__collage > *:nth-child(4) { aspect-ratio: 4/5; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; padding: clamp(80px, 11vw, 150px) 0; color: #fff; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(10,12,16,0.74); }
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-band__title { font-size: clamp(34px, 5.2vw, 60px); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.cta-band__title b { color: var(--green); }
.cta-band__sub { font-size: clamp(16px, 1.7vw, 19px); color: rgba(255,255,255,0.86); margin: 20px auto 34px; max-width: 56ch; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- EV CHARGING BAND ---------- */
.ev-band { background: var(--ink); color: #fff; padding: clamp(44px, 6vw, 76px) 0; }
.ev-band__inner { display: flex; align-items: center; gap: clamp(22px, 4vw, 52px); flex-wrap: wrap; }
.ev-band__icon { width: 76px; height: 76px; border-radius: 18px; background: rgba(200,16,46,0.16); border: 1px solid rgba(200,16,46,0.45); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ev-band__icon svg { width: 38px; height: 38px; color: var(--crimson); fill: var(--crimson); }
.ev-band__text { flex: 1; min-width: 260px; }
.ev-band__badge { display: inline-block; background: var(--crimson); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.ev-band h2 { color: #fff; font-size: clamp(27px, 3.4vw, 42px); letter-spacing: -0.02em; }
.ev-band h2 b { color: var(--crimson); }
.ev-band p { color: rgba(255,255,255,0.8); margin-top: 12px; max-width: 62ch; font-size: 16px; line-height: 1.6; }
.ev-band__cta { flex-shrink: 0; }
@media (max-width: 760px) { .ev-band__cta { width: 100%; } .ev-band__cta .btn { width: 100%; } }

/* ---------- FLEET / PAYMENT CARDS ---------- */
.pay-sec { background: var(--bg-soft); border-top: 1px solid var(--line); }
.pay-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 78px); align-items: center; }
.pay-grid h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; }
.pay-grid h2 b { color: var(--green); }
.pay-grid p { font-size: 16.5px; color: var(--muted); margin-top: 18px; line-height: 1.6; max-width: 50ch; }
.pay-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

/* two-brand split: Comdata | EFS side by side */
.fleet-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); align-items: stretch; }
.fleet-brand {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fleet-brand:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fleet-brand .paycard { transform: none; max-width: 420px; width: 100%; margin: 0 auto; }
.fleet-brand:hover .paycard { transform: none; }
.fleet-brand__body { text-align: center; margin-top: auto; }
.fleet-brand__name { font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; letter-spacing: -0.02em; }
.fleet-brand__desc { font-size: 14.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* real feather-banner photo from the forecourt, as proof beside the chips */
.fleet-proof {
  display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center; margin-top: clamp(30px, 4vw, 48px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
}
.fleet-proof__media { border-radius: 12px; overflow: hidden; background: var(--bg-soft-2); }
.fleet-proof__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }
.fleet-proof__body .chips { justify-content: flex-start; margin-top: 12px; }
.fleet-proof__note { font-size: 15.5px; color: var(--ink-2); margin-top: 18px; line-height: 1.55; }
.fleet-proof__note b { color: var(--green); }
.fleet-proof .pay-note { margin-top: 10px; }
@media (max-width: 720px) { .fleet-proof { grid-template-columns: 1fr; text-align: center; } .fleet-proof__body .chips { justify-content: center; } .fleet-proof__media { max-width: 260px; margin: 0 auto; } }

/* EV charging — real photo of the bay under the band */
.ev-band__photo { margin: clamp(26px, 3.5vw, 40px) 0 0; }
.ev-band__photo img { width: 100%; border-radius: var(--radius); display: block; aspect-ratio: 21/9; object-fit: cover; box-shadow: var(--shadow-card); }
.ev-band__photo figcaption { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-top: 12px; text-align: center; }
@media (max-width: 720px) { .ev-band__photo img { aspect-ratio: 16/10; } }

.fleet-also { text-align: center; margin-top: clamp(30px, 4vw, 48px); }
.fleet-also__label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.fleet-also .chips { justify-content: center; margin-top: 0; }
.fleet-also .pay-note { margin-top: 20px; }
@media (max-width: 720px) { .fleet-split { grid-template-columns: 1fr; } }
.paycard {
  aspect-ratio: 1.586/1; border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease);
}
.paycard:hover { transform: translateY(-4px); }
.paycard--navy { background: linear-gradient(135deg, #22344F 0%, #0C1522 100%); }
.paycard--blue { background: linear-gradient(135deg, #2E7FC2 0%, #0F3E6C 100%); }
/* EFS (a WEX company) — deep slate with the red accent from their mark */
.paycard--efs { background: linear-gradient(135deg, #2B3440 0%, #11161C 100%); position: relative; overflow: hidden; }
.paycard--efs::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(214,40,40,0.55) 0%, rgba(214,40,40,0.16) 55%, rgba(214,40,40,0) 72%);
  pointer-events: none;
}
.paycard--efs .paycard__brand { letter-spacing: 0.12em; }
.paycard:nth-child(2), .paycard:nth-child(3) { transform: rotate(-1.5deg); }
.paycard:nth-child(2):hover, .paycard:nth-child(3):hover { transform: rotate(-1.5deg) translateY(-4px); }
.paycard__top { display: flex; align-items: center; gap: 8px; }
.paycard__mark { width: 15px; height: 15px; flex-shrink: 0; }
.paycard__mark svg { width: 100%; height: 100%; display: block; }
.paycard__brand { font-family: var(--display); font-size: clamp(14px, 1.5vw, 18px); font-weight: 900; letter-spacing: 0.06em; }
.paycard__tier { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 2px; }
.paycard__chip { width: 30px; height: 22px; border-radius: 4px; background: linear-gradient(140deg, #E9D9A6 0%, #C7A64A 100%); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); }
.paycard__num { font-size: clamp(10px, 1.1vw, 12.5px); letter-spacing: 0.18em; font-weight: 600; color: rgba(255,255,255,0.9); }
.paycard__foot { font-size: 8.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.pay-note { font-size: 13px; color: var(--muted); margin-top: 20px; }
@media (max-width: 860px) { .pay-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
  .pay-cards { gap: 12px; }
  .paycard { padding: 13px; border-radius: 12px; }
  .paycard__tier { font-size: 7.5px; letter-spacing: 0.1em; }
  .paycard__chip { width: 24px; height: 17px; }
  .paycard__num { font-size: 9px; letter-spacing: 0.12em; }
  .paycard__foot { font-size: 7.5px; }
}

/* ---------- HALAL CALLOUT ---------- */
.tag--halal { background: #0E7C4A; color: #fff; }
.halal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0E7C4A; color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.halal-badge svg { width: 14px; height: 14px; stroke: #fff; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: clamp(56px, 6vw, 80px) 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 64px; width: 64px; object-fit: contain; margin-bottom: 14px; }
.footer__brand-main { font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.footer__brand-main b { color: var(--green); }
.footer__brand-sub { font-family: var(--serif); font-style: italic; font-size: 13px; letter-spacing: 0; color: var(--muted); margin-top: 5px; }
.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-2); transition: background .2s, color .2s, border-color .2s; }
.footer__socials a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__about { font-size: 14.5px; color: var(--muted); margin-top: 18px; line-height: 1.6; max-width: 38ch; }
.footer h5 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer li, .footer li a { font-size: 14.5px; color: var(--muted); }
.footer li a:hover { color: var(--green); }
.footer__loc-line { display: flex; align-items: flex-start; gap: 8px; }
.footer__loc-line svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__age { font-weight: 700; color: var(--ink-2); }

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-head { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: clamp(48px, 6vw, 84px) 0; }
.page-head__crumb { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 18px; }
.page-head__crumb a:hover { color: var(--green); }
.page-head__title { font-size: clamp(38px, 6vw, 68px); font-weight: 800; letter-spacing: -0.035em; }
.page-head__title b { color: var(--green); }
.page-head__lede { font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); margin-top: 18px; max-width: 60ch; line-height: 1.55; }

/* ---------- MENU / CATERING ---------- */
.menu-sec { padding: clamp(48px, 6vw, 84px) 0; }
.menu-sec--soft { background: var(--bg-soft); }
.menu-sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.menu-sec__head h3 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.menu-sec__head h3 b { color: var(--green); }
.menu-sec__note { font-size: 14px; color: var(--muted); max-width: 46ch; }
.menu-sec__num { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.menu-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.menu-card__media { position: relative; aspect-ratio: 4/3; background: #11141a; overflow: hidden; }
.menu-card__media img, .menu-card__thumb { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.14) contrast(1.07) brightness(0.96); transition: transform .5s var(--ease); }
.menu-card:hover .menu-card__thumb { transform: scale(1.06); }
/* darker vignette behind the food so it pops */
.menu-card__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 75% 75% at 50% 45%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.18) 72%, rgba(0,0,0,0.5) 100%); }
.menu-card > div:not([class]) { padding: 16px 18px 2px; }
.menu-card__name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.menu-card__name b { color: var(--green); font-weight: 800; }
.menu-card__desc { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.menu-card__price { font-size: 14.5px; font-weight: 800; color: var(--green); white-space: nowrap; padding: 10px 18px 18px; margin-top: auto; }
/* multi-size pizza prices (Small · Large · XL) wrap gracefully and stay legible */
.menu-grid .menu-card__price { white-space: normal; line-height: 1.35; }
@media (max-width: 520px) { .menu-grid .menu-card__price { font-size: 12px; } }
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .menu-card__name { font-size: 15.5px; } .menu-card__desc { display: none; } .menu-card__price { font-size: 13px; padding: 8px 14px 14px; } .menu-card > div:not([class]) { padding: 12px 14px 2px; } }

/* ---------- MENU LIST (hero image + priced list) ---------- */
.menu-list { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.ml__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); position: sticky; top: 130px; }
.ml__media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.08) contrast(1.04); }
.ml__body { min-width: 0; }
.ml__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.ml__title b { color: var(--green); }
.ml__note { font-size: 14.5px; color: var(--muted); margin: 10px 0 22px; line-height: 1.55; }
.ml__list { list-style: none; display: flex; flex-direction: column; }
.ml__row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.ml__row:first-child { border-top: 1px solid var(--line); }
.ml__name { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.ml__name b { color: var(--green); }
.ml__desc { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 3px; letter-spacing: 0; }
.ml__price { font-size: 14.5px; font-weight: 800; color: var(--green); white-space: nowrap; text-align: right; flex-shrink: 0; }
@media (max-width: 860px) {
  .menu-list { grid-template-columns: 1fr; gap: 22px; }
  .ml__media { position: static; aspect-ratio: 16/10; max-height: 320px; }
}
@media (max-width: 520px) {
  .ml__price { font-size: 12.5px; }
  .ml__name { font-size: 15px; }
}

/* ---------- ORDER TILES ---------- */
.order-sec { background: var(--ink); color: #fff; padding: clamp(56px, 7vw, 90px) 0; }
.order-sec h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); }
.order-sec h2 b { color: var(--green); }
.order-sec__sub { color: rgba(255,255,255,0.78); margin: 16px 0 36px; max-width: 60ch; font-size: 16px; }
.order-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.order-tile { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; padding: 26px 18px; text-align: center; transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.order-tile:hover { background: rgba(61,174,76,0.16); border-color: var(--green); transform: translateY(-3px); }
.order-tile__name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.order-tile__cta { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-top: 8px; }
@media (max-width: 760px) { .order-tiles { grid-template-columns: repeat(2, 1fr); } }

/* ---------- MENU CATEGORY TABS (sticky jump-nav) ---------- */
.menu-tabs { position: sticky; top: 74px; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.menu-tabs__inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; padding: 10px 0; }
.menu-tabs__inner::-webkit-scrollbar { display: none; }
.menu-tabs a { flex: 0 0 auto; font-family: var(--display); font-size: 13.5px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-2); padding: 9px 16px; border-radius: var(--radius-pill); white-space: nowrap; transition: background .18s var(--ease), color .18s var(--ease); }
.menu-tabs a:hover { background: var(--green-soft); color: var(--green); }
.menu-tabs a.active { background: var(--green); color: #fff; }
.menu-anchor { scroll-margin-top: 140px; }
.tag { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-pill); }
.tag--signature { background: var(--green); color: #fff; }
.tag--instore { background: var(--bg-soft-2); color: var(--ink-2); border: 1px solid var(--line); }
.menu-card__tag-row { padding: 0 18px; margin-top: -2px; margin-bottom: 4px; }

/* sticky mobile Order Online bar */
.order-fab { display: none; }
@media (max-width: 860px) {
  .order-fab { display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; text-align: center; box-shadow: 0 10px 30px rgba(200,16,46,0.4); }
}

/* ---------- CATEGORY CARDS (liquor/grocery) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.cat-tile__num { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.cat-tile h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px; }
.cat-tile h3 b { color: var(--green); }
.cat-tile p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { padding: 8px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--ink-2); background: #fff; }
.chips--on-dark .chip { border-color: rgba(255,255,255,0.24); color: rgba(255,255,255,0.9); background: transparent; }

/* feature split (dark) */
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--dark { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(32px, 4vw, 56px); }
.split--dark h2 { color: #fff; font-size: clamp(28px, 3.6vw, 46px); }
.split--dark h2 b { color: var(--green); }
.split--dark p { color: rgba(255,255,255,0.82); font-size: 16px; margin-top: 18px; line-height: 1.6; }
.split__media { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* refreshing station — real station photo + café tango side shot */
.refresh-media { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr; gap: 12px; }
.refresh-media__main, .refresh-media__side { border-radius: 14px; overflow: hidden; position: relative; }
.refresh-media__main { aspect-ratio: 4/3; }
.refresh-media__side { aspect-ratio: 3/4; }
.refresh-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .refresh-media { grid-template-columns: 1fr 1fr; } .refresh-media__main { aspect-ratio: 1/1; } .refresh-media__side { aspect-ratio: 1/1; } }

/* ---------- REWARDS ---------- */
.rw-hero { background: var(--ink); color: #fff; padding: clamp(56px, 8vw, 110px) 0; }
.rw-hero__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.rw-hero__badge { display: inline-block; background: var(--green); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 22px; }
.rw-hero h1 { font-size: clamp(44px, 7vw, 90px); font-weight: 800; letter-spacing: -0.04em; color: #fff; line-height: 0.96; }
.rw-hero h1 b { color: var(--green); }
.rw-hero__lede { font-size: clamp(16px, 1.7vw, 20px); color: rgba(255,255,255,0.84); margin: 24px 0 32px; max-width: 50ch; line-height: 1.55; }
.rw-card { aspect-ratio: 1.586/1; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 30px 70px rgba(61,174,76,0.35); transform: rotate(-2deg); }
.rw-card__top { display: flex; justify-content: space-between; align-items: flex-start; color: #fff; }
.rw-card__brand { font-size: 20px; font-weight: 800; }
.rw-card__brand small { display: block; font-size: 11px; letter-spacing: 0.2em; font-weight: 600; margin-top: 4px; }
.rw-card__num { font-size: 15px; letter-spacing: 0.14em; color: #fff; font-weight: 600; }
.rw-card__bottom { display: flex; justify-content: space-between; align-items: flex-end; color: #fff; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.rw-card__bottom b { display: block; font-size: 14px; margin-top: 4px; }
@media (max-width: 860px) { .rw-hero__inner { grid-template-columns: 1fr; } .rw-card { max-width: 380px; } }

.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.tier--feat { background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%); border: none; color: #fff; }
.tier__num { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.tier--feat .tier__num { color: rgba(255,255,255,0.85); }
.tier__big { font-size: clamp(44px, 5vw, 64px); font-weight: 800; letter-spacing: -0.03em; color: var(--green); line-height: 1; margin-bottom: 12px; }
.tier--feat .tier__big { color: #fff; }
.tier__label { font-size: 14.5px; color: var(--muted); line-height: 1.45; }
.tier--feat .tier__label { color: rgba(255,255,255,0.92); }
@media (max-width: 860px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 28px; border-top: 3px solid var(--green); background: var(--bg-soft); border-radius: 0 0 14px 14px; }
.step-card__n { font-size: 40px; font-weight: 800; color: var(--green); letter-spacing: -0.04em; line-height: 1; margin-bottom: 14px; }
.step-card h4 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.bens-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ben { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.ben__n { font-size: 13px; font-weight: 700; color: var(--green); }
.ben h4 { font-size: 16.5px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.ben h4 b { color: var(--green); }
.ben p { font-size: 14px; color: var(--muted); line-height: 1.5; }
@media (max-width: 760px) { .bens-grid { grid-template-columns: 1fr; } }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: clamp(17px, 2vw, 21px); font-weight: 800; letter-spacing: -0.02em; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--green); font-weight: 700; font-size: 24px; transition: transform .2s; }
.faq-item details[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.65; padding-bottom: 22px; max-width: 70ch; }
.faq-item a { color: var(--green); font-weight: 600; }

.disclosure { padding: 30px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.disclosure p { font-size: 11.5px; color: var(--muted); line-height: 1.6; max-width: 90ch; }

/* ---------- CONTACT ---------- */
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.ct-block h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; }
.ct-block h3 b { color: var(--green); }
.ct-row { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ct-row__k { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.ct-row__v { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.ct-row__v a:hover { color: var(--green); }
.ct-row__meta { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 400; }
.hours-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.hours-card h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.hours-row:last-child { border-bottom: none; }
.hours-row b { color: var(--green); font-weight: 700; }
.map-embed { width: 100%; aspect-ratio: 21/9; border: 0; display: block; border-radius: var(--radius); margin-top: 8px; }
@media (max-width: 860px) { .ct-grid { grid-template-columns: 1fr; } .map-embed { aspect-ratio: 4/3; } }
/* phones: the 120px label column squeezed addresses/order-platform lists into a
   narrow ribbon — stack label over value so each gets the full width */
@media (max-width: 600px) {
  .ct-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .ct-row__k { font-size: 11.5px; }
  .ct-row__v { font-size: 16px; }
}
/* the sticky mobile "Order Online" bar floats over the page — keep it from
   covering the last line of the footer */
@media (max-width: 860px) {
  body:has(.order-fab) .footer__bottom { padding-bottom: 76px; }
}

/* ---------- FOOD IMAGE RICHNESS (consistent premium look) ---------- */
.dept-card__img img, .split__media img, .feat__collage img { filter: saturate(1.12) contrast(1.06) brightness(0.97); }
.dept-card__badge { z-index: 2; }
.dept-card__img::after, .split__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 82% 82% at 50% 45%, rgba(0,0,0,0) 52%, rgba(0,0,0,0.34) 100%); }

/* ---------- BP REWARDS POPUP ---------- */
.bpm { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(10,12,16,0.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.bpm.open { opacity: 1; visibility: visible; }
.bpm__card { width: 100%; max-width: 440px; background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5); transform: translateY(20px) scale(0.97); transition: transform .35s var(--ease); position: relative; }
.bpm.open .bpm__card { transform: none; }
.bpm__close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.12); color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; transition: transform .2s; }
.bpm__close:hover { transform: scale(1.08); }
.bpm__logo { background: #fff; padding: 40px 30px 28px; display: flex; align-items: center; justify-content: center; gap: 12px; border-bottom: 1px solid var(--line); }
.bpm__helios { width: 82px; height: 82px; display: block; }
.bpm__bp { font-size: 50px; font-weight: 800; color: #00873E; letter-spacing: -0.05em; line-height: 1; }
.bpm__body { padding: 26px 32px 30px; text-align: center; }
.bpm__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); }
.bpm__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }
.bpm__title { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 29px; letter-spacing: -0.01em; line-height: 1.1; margin: 12px 0 14px; color: var(--ink); }
.bpm__title em { color: var(--green); font-style: italic; }
.bpm__copy { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.bpm__cta { display: block; width: 100%; margin-bottom: 10px; }
.bpm__later { background: none; border: none; font-size: 13.5px; font-weight: 600; color: var(--muted); cursor: pointer; padding: 6px; }
.bpm__later:hover { color: var(--ink); }

/* ---------- REVEAL ANIM ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } html { scroll-behavior: auto; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .feat { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav__menu, .nav__cta .btn--ghost { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; cursor: pointer; flex-direction: column; gap: 4px;
  }
  .nav__toggle span, .nav__toggle::before, .nav__toggle::after { content: ""; display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; }
  .nav.open .nav__menu {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--pad) 20px;
    box-shadow: var(--shadow-md);
  }
  /* real accordion: sub-menus collapsed until their parent is tapped */
  .nav.open .nav__menu .nav__dd {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; min-width: 0;
    padding: 0 0 0 30px;
    max-height: 0; overflow: hidden;
    transition: max-height .32s var(--ease), padding-bottom .32s var(--ease);
  }
  .nav.open .nav__menu > li.dd-open > .nav__dd { max-height: 320px; padding-bottom: 10px; }
  .nav__link { font-size: 16px; padding: 12px 13px; }
  .nav.open .nav__menu > li.has-dd > .nav__link { justify-content: space-between; }
  .nav.open .nav__menu > li.has-dd > .nav__link .nav__caret { margin-left: auto; transition: transform .3s var(--ease); }
  .nav.open .nav__menu > li.dd-open > .nav__link { color: var(--green); background: var(--green-soft); }
  .nav.open .nav__menu > li.dd-open > .nav__link .nav__caret { transform: rotate(180deg); }
  .loc-grid, .dept-grid { grid-template-columns: 1fr; }
  .loc-card { min-height: 360px; }
}
@media (min-width: 681px) and (max-width: 980px) { .dept-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .feat__collage { gap: 12px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); }
}

/* ---------- MOBILE HERO: show the whole building, not a zoomed crop ----------
   On phones a full-bleed `cover` hero crops ~60% of a wide storefront shot.
   Here the photo becomes a 16:10 band (near the full frame), the headline sits
   in the ink below it and laps over the bottom edge, so it still reads as one
   piece the way the desktop hero does. */
@media (max-width: 720px) {
  .hero { min-height: 0; display: block; background: var(--ink); overflow: visible; }
  .hero__bg { position: relative; inset: auto; width: 100%; aspect-ratio: 16 / 10; }
  .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
  .hero__bg::after {
    background: linear-gradient(180deg,
      rgba(10,12,16,0.10) 0%,
      rgba(10,12,16,0.30) 52%,
      rgba(10,12,16,0.88) 88%,
      var(--ink) 100%);
  }
  .hero__inner { position: relative; z-index: 2; max-width: none; padding: 0 0 42px; margin-top: -34px; }
  .hero__title { text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
  .hero__lede { margin: 16px 0 26px; max-width: none; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- SANDWICH IN A PIZZA BOX — price + 11 varieties ---------- */
.pbox-price { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 24px; }
.pbox-price__amt { font-family: var(--display); font-size: clamp(30px, 4vw, 42px); font-weight: 900;
  letter-spacing: -0.03em; color: var(--green); line-height: 1; }
.pbox-price__amt small { font-size: 0.42em; font-weight: 800; letter-spacing: 0; }
.pbox-price__meta { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.pbox-price__meta b { color: var(--ink); }
.pbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.pbox-item { display: flex; flex-direction: column; gap: 2px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.pbox-item b { font-size: 14.5px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.pbox-item span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
@media (max-width: 700px) { .pbox-grid { grid-template-columns: 1fr; } }

/* ---------- FLEET: real brand card art + official logos ---------- */
.fleet-brand__card { width: 100%; max-width: 420px; margin: 0 auto; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); background: #fff; }
.fleet-brand__card img { width: 100%; height: auto; display: block; }
.fleet-brand__logo { height: 30px; width: auto; margin: 0 auto 10px; display: block; }
.fleet-brand__logo--efs { height: 34px; }
.fleet-also__logos { max-width: 420px; width: 100%; height: auto; margin: 4px auto 18px; display: block; }

/* ---------- BRAND PRODUCT GRIDS (official manufacturer imagery) ---------- */
.prod-grid { display: grid; gap: 14px; align-items: stretch; }
.prod-grid--2 { grid-template-columns: repeat(2, 1fr); }
.prod-grid--3 { grid-template-columns: repeat(3, 1fr); }
.prod { margin: 0; background: #fff; border-radius: 14px; padding: 14px 12px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.split--dark .prod { background: rgba(255,255,255,0.96); border-color: transparent; }
.prod img { width: 100%; height: 150px; object-fit: contain; display: block; }
.prod figcaption { font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ink-2); text-align: center; line-height: 1.3; }
.prod-grid--3 .prod img { height: 118px; }
.brandmark { height: 42px; width: auto; margin-top: 22px; opacity: .9; }
@media (max-width: 700px) {
  .prod-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .prod { padding: 10px 8px 9px; }
  .prod img { height: 96px; }
  .prod-grid--3 .prod img { height: 78px; }
  .prod figcaption { font-size: 10.5px; }
}

/* ---------- REC FUEL / RACE FUEL ---------- */
.fuel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: clamp(26px,3.5vw,40px); }
.fuel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px,2.6vw,30px); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.fuel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fuel-card__ico { width: 48px; height: 48px; border-radius: 12px; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center; color: var(--green); margin-bottom: 16px; }
.fuel-card__ico svg { width: 24px; height: 24px; }
.fuel-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 9px; }
.fuel-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.fuel-card p a { color: var(--green); font-weight: 700; }
.fuel-card--race { background: var(--ink); border-color: var(--ink); }
.fuel-card--race h3 { color: #fff; }
.fuel-card--race p { color: rgba(255,255,255,0.78); }
.fuel-card__logo { height: 40px; width: auto; margin-bottom: 16px; }

.race-pails { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 22px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px,2.6vw,28px); }
.race-pails .prod { box-shadow: none; }
.race-pails .prod img { height: 190px; }
.race-note .chips { margin-top: 10px; }
.race-note .pay-note { margin-top: 16px; }
@media (max-width: 900px) { .fuel-grid { grid-template-columns: 1fr; } .race-pails { grid-template-columns: 1fr 1fr; } .race-note { grid-column: 1 / -1; } }
@media (max-width: 520px) { .race-pails .prod img { height: 140px; } }

/* ---------- HALAL MEATS ---------- */
.halal-head { display: grid; grid-template-columns: 190px 1fr; gap: clamp(24px,4vw,46px); align-items: center; margin-bottom: clamp(26px,3.5vw,38px); }
.halal-badge-img { width: 100%; max-width: 190px; height: auto; display: block; }
.halal-prods { max-width: 900px; }
.halal-foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.halal-foot .brandmark { margin-top: 0; height: 38px; }
.halal-foot .pay-note { margin: 0; flex: 1; min-width: 260px; }
@media (max-width: 760px) { .halal-head { grid-template-columns: 1fr; text-align: center; } .halal-badge-img { margin: 0 auto; max-width: 150px; } .halal-head .chips { justify-content: center; } .halal-foot { justify-content: center; text-align: center; } }

/* fuel card brand marks */
.fuel-card__logo--amoco { height: 54px; margin-bottom: 14px; }
.fuel-card__logo--rec   { height: 40px; margin-bottom: 14px; }

/* ============================================================
   MOBILE / TOUCH SCROLL HARDENING
   Fixes the "page zooms in and out while scrolling" report on iOS.
   ============================================================ */

/* 1. backdrop-filter on a position:sticky bar forces the browser to re-blur the
      backdrop on every scroll frame. On iOS Safari that stutters and flickers,
      and with two stacked sticky bars (nav + menu tabs) it compounds. Swap the
      blur for an opaque background on touch devices — visually near-identical,
      no per-frame repaint. */
@media (hover: none), (max-width: 860px) {
  .nav,
  .menu-tabs {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav        { background: #fff; }
  .menu-tabs  { background: #fff; }
}

/* 2. Never let the browser reflow text on orientation change / address-bar collapse. */
body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* 4. Promote the sticky bars to their own layer so they don't repaint the page
      behind them as it scrolls. */
.nav, .menu-tabs { will-change: transform; transform: translateZ(0); }

/* 5. Lighter reveal on phones — less transform work per scroll frame. */
@media (max-width: 860px) {
  .reveal { transform: translateY(10px); transition-duration: .45s; }
}

/* 6. Sticky menu tabs sit directly under the nav; keep the offset tied to the
      real nav height so they never overlap or gap on small screens. */
@media (max-width: 860px) { .menu-tabs { top: 74px; } }

/* ---------- MOBILE: heading before its products ----------
   .split is side-by-side on desktop, so DOM order doesn't matter there.
   Stacked on a phone it does: sections written media-first drop their
   product images directly under the PREVIOUS section, so the images look
   like they belong to it and the heading arrives late. Always lead with
   the text block on narrow screens. */
@media (max-width: 860px) {
  .split > .split__media,
  .split > .prod-grid            { order: 2; }
  .split > :not(.split__media):not(.prod-grid) { order: 1; }
  /* breathing room between the heading block and its products */
  .split > .split__media,
  .split > .prod-grid            { margin-top: 22px; }
}
