/* ─────────────────────────────────────────
   COFFEE TRACK — Café Page Styles
   EEST NJT Racing Circuit
   $250K Campaign-Level Enhancement
───────────────────────────────────────── */

/* ═══════════════════════════════════════
   0. PAGE-LEVEL WIDTH NORMALIZATION (HOUSE-RULES §9)
   Markup uses `container container--wide` (1400px). The wide container gets the
   32px header gutter; `.njt-section` (components.css) adds its own 24px base side
   padding, so without zeroing it content landed at 24+32=56px on all 8 sections
   (R2 N3a). Zero the section side padding so only the container's 32px applies.
   Reference: racing-team.css §0 / pricing.css.
═══════════════════════════════════════ */
.njt-section {
  padding-left: 0;
  padding-right: 0;
}
.page-coffee-track .container.container--wide {
  padding-left: 32px;
  padding-right: 32px;
}

/* Kicker: the canonical `.njt-kicker` now lives in components.css. This page
   carries no warm-treatment override of it, so the page-local copy was deleted
   (GOAL-V3 §G1 / canonical-spec-v3). Warm sub-brand cues live below, on tokens. */

/* ═══════════════════════════════════════
   HERO — COFFEE TRACK (parallax)
   Moved out of the page inline <style> (GOAL-V3 §G1: no inline style blocks).
   Warm sub-treatment, built from brand tokens.
═══════════════════════════════════════ */
.njt-hero-parallax--coffee {
  position: relative;
  min-height: max(650px, 90vh);   /* A14: was `height: 90vh` — hero must be able to grow */
  display: flex;
  align-items: safe center;   /* A14: `safe` — when the content is taller than the hero box, plain `center` overflows the PADDING edge in BOTH directions and puts the breadcrumb under the fixed header. `safe` falls back to start-alignment in exactly that case and never overflows the top. */
  justify-content: center;
  overflow: hidden;
  background: var(--racing-plum);
  margin-top: calc(var(--header-h, 80px) * -1);
  padding-top: var(--hero-pad-top);
  /* A14 — the arithmetic, because it is not obvious. The hero is pulled up by
     `margin-top: -var(--header-h)` so its artwork runs behind the fixed header, so
     content starts at (padding-top − header-h) from the VIEWPORT top, not from the
     section top. A `padding-top: var(--header-h)` therefore puts content at y=0 —
     directly under the header — which is why the breadcrumb was unclickable
     (`elementFromPoint` returned `.site-header__inner`). It has to be header-h TWICE
     plus the gap: once to cancel the negative margin, once to clear the header. */
}
.njt-hero-parallax--coffee__bg { display: none; }
.njt-hero-parallax--coffee__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.njt-hero-parallax--coffee__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,0,24,0.6) 0%, rgba(42,0,24,0.35) 40%, rgba(42,0,24,0.9) 100%),
    linear-gradient(to right, rgba(42,0,24,0.7) 0%, rgba(0,0,0,0.15) 50%, rgba(42,0,24,0.7) 100%);
  z-index: 1;
}
.njt-hero-parallax--coffee__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.njt-hero-parallax--coffee__glow--gold {
  width: 500px; height: 500px;
  background: rgba(255,215,0,0.08);
  filter: blur(150px);
  top: -15%; right: -5%;
  animation: njt-coffee-hero-float 18s infinite alternate ease-in-out;
}
.njt-hero-parallax--coffee__glow--magenta {
  width: 600px; height: 600px;
  background: rgba(212,0,121,0.15);
  filter: blur(120px);
  bottom: -20%; left: -10%;
  animation: njt-coffee-hero-float 22s infinite alternate-reverse ease-in-out;
}
.njt-hero-parallax--coffee__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.njt-hero-parallax--coffee__particle {
  position: absolute;
  bottom: -10px;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: njt-coffee-hero-particle-rise linear infinite;
}
.njt-hero-parallax--coffee__kinetic {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,215,0,0.06);
  background: linear-gradient(180deg, rgba(255,215,0,0.05) 0%, rgba(212,0,121,0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  animation: njt-coffee-hero-kinetic-breathe 20s infinite alternate ease-in-out;
}
.njt-hero-parallax--coffee__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 880px;
}
.njt-hero-parallax--coffee__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.njt-hero-parallax--coffee__breadcrumb a {
  color: rgba(255,215,0,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.njt-hero-parallax--coffee__breadcrumb a:hover { color: var(--gold); }
.njt-hero-parallax--coffee__breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}
.njt-hero-parallax--coffee__breadcrumb-current { color: rgba(255,255,255,0.7); }
.njt-hero-parallax--coffee__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-display-xl);   /* A5 / CONVENTIONS #19 — was clamp(3.5rem, 8vw, 6rem) */
  font-weight: 900;
  /* line-height deleted (A30) — components.css §38a governs this h1. */
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 40px rgba(255,215,0,0.15);
}
.njt-hero-parallax--coffee__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2rem;
}
/* Hours badge — demoted to a static glass pill so the H1 owns the motion budget
   (audit §1.1: badge pulse removed). */
.njt-hero-parallax--coffee__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(var(--blur-chip, 8px));
  backdrop-filter: blur(var(--blur-chip, 8px));
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.njt-hero-parallax--coffee__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
}
.njt-hero-parallax--coffee__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.njt-hero-parallax--coffee__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.njt-hero-parallax--coffee__scroll-text {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.njt-hero-parallax--coffee__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,215,0,0.6), transparent);
  animation: njt-coffee-hero-scroll-pulse 2s ease-in-out infinite;
}
.njt-hero-parallax--coffee__accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--magenta) 70%, transparent);
  z-index: 10;
}
@keyframes njt-coffee-hero-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}
@keyframes njt-coffee-hero-particle-rise {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 0.8; transform: translateY(-10vh) scale(1); }
  90% { opacity: 0.3; }
  100% { transform: translateY(-85vh) scale(0.3); opacity: 0; }
}
@keyframes njt-coffee-hero-kinetic-breathe {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.02); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes njt-coffee-hero-scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}
@media (prefers-reduced-motion: reduce) {
  .njt-hero-parallax--coffee__glow,
  .njt-hero-parallax--coffee__particle,
  .njt-hero-parallax--coffee__kinetic,
  .njt-hero-parallax--coffee__scroll-line { animation: none !important; }
}

/* ═══════════════════════════════════════
   1. TWO-COLUMN LAYOUT
═══════════════════════════════════════ */
.njt-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.njt-two-column__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.njt-two-column__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,215,0,0.08);
}
.njt-two-column__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.njt-two-column__image:hover img {
  transform: scale(1.04);
}
/* Decorative coffee steam accent */
.njt-two-column__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,215,0,0.08) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
/* Fact badge overlap (hotel-page pattern — audit §1.2) */
.njt-two-column__badge {
  position: absolute;
  /* Was -1rem on both axes, which pushed the chip outside a parent that clips
     (`.njt-two-column__image` is overflow: hidden), so its right and bottom edges
     were sliced off. Inset instead, so the whole chip sits on the photo. */
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), #FFC107);
  color: var(--racing-plum);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(255,215,0,0.3);
}
.njt-two-column__badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   2. BLOCKQUOTE / PULL QUOTE
═══════════════════════════════════════ */
.njt-quote {
  position: relative;
  padding: 28px 32px;
  margin: 12px 0;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(212, 0, 121, 0.03) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.njt-quote p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 8px;
}
.njt-quote cite {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  color: var(--text-white-60);
}

/* ═══════════════════════════════════════
   3. MENU GRID & ITEMS
═══════════════════════════════════════ */
.njt-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.njt-menu-item {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  animation: menuFadeIn 0.4s ease both;
}
.njt-menu-item[style*="display: none"] {
  animation: none;
}
.njt-menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}
/* Gold accent line on top of card */
.njt-menu-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.njt-menu-item:hover::after {
  opacity: 1;
}
.njt-menu-item__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.njt-menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Unify stock + real product shots to one treatment (audit §1.6d) */
  filter: saturate(1.06) contrast(1.03);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.njt-menu-item:hover .njt-menu-item__image img {
  transform: scale(1.1);
}

/* ── Feature card: Summer Soda spans 2 columns to resolve the 7-item
   orphan on row 3 (audit §1.6a). Horizontal image | body on desktop. ── */
.njt-menu-item--feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.njt-menu-item--feature .njt-menu-item__image {
  height: 100%;
  min-height: 280px;
}
.njt-menu-item--feature .njt-menu-item__name { margin-top: 28px; }
.njt-menu-item--feature .njt-menu-item__desc { -webkit-line-clamp: 4; }

/* ── Signature / Best Seller Badge ── */
.njt-menu-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.njt-menu-badge--signature {
  background: linear-gradient(135deg, var(--gold), #FFC107);
  color: #000;
  border: 1px solid rgba(255,215,0,0.8);
}
.njt-menu-badge--bestseller {
  background: linear-gradient(135deg, var(--magenta), #E6007A);
  color: white;
  border: 1px solid rgba(212,0,121,0.6);
}
.njt-menu-badge--new {
  background: rgba(74, 222, 128, 0.9);
  color: #000;
  border: 1px solid rgba(74, 222, 128, 0.6);
}

.njt-menu-item__body {
  padding: 20px 24px 24px;
}
.njt-menu-item__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-white);
  margin: 16px 24px 8px;
}
.njt-menu-item__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white-60);
  line-height: 1.6;
  margin: 0 24px 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.njt-menu-item__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  padding: 0 24px 20px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.njt-menu-item__price span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white-60);
}
.njt-menu-note {
  font-size: 14px;
  color: var(--text-white-60); /* WCAG AA: was --text-white-40 (3.65:1) → 7.01:1 on plum base — §10 hard gate */
  text-align: center;
  margin-top: 32px;
}

/* ── Menu Category Tabs ── */
.njt-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.njt-menu-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white-60);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.njt-menu-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--btn-primary-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-pill);
}
.njt-menu-tab:hover {
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--text-white);
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-2px);
}
.njt-menu-tab.is-active {
  background: var(--btn-primary-bg);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

/* Menu filter animation */
@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ═══════════════════════════════════════
   4. FEATURE CARDS (Amenities)
═══════════════════════════════════════ */
/* Amenities read as an editorial two-column RAIL (icon-left rows, hairline
   dividers) — deliberately NOT a grid of identical rounded icon-chip cards
   (taste template-test fix, R2). */
.njt-features-grid--6col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
  row-gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 215, 0, 0.16);
}
.njt-features-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.njt-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 20px;
  align-items: center;
  padding: 26px 8px 26px 4px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  transition: border-color var(--transition), padding-left var(--transition);
  position: relative;
  overflow: visible;
}
.njt-feature-card::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.njt-feature-card:hover {
  border-bottom-color: rgba(255, 215, 0, 0.4);
  padding-left: 16px;
}
.njt-feature-card:hover::before {
  transform: scaleY(1);
}
.njt-feature-card__icon {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.18);
  line-height: 1;
  position: relative;
}
.njt-feature-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  transition: transform var(--transition), filter var(--transition);
}
.njt-feature-card:hover .njt-feature-card__icon svg {
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
}
.njt-feature-card__title {
  grid-area: title;
  align-self: end;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 4px;
  position: relative;
}
.njt-feature-card__text {
  grid-area: text;
  align-self: start;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white-60);
  line-height: 1.5;
  position: relative;
}

/* ═══════════════════════════════════════
   5. INFO BOX (Opening Hours)
═══════════════════════════════════════ */
.njt-info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
/* Gold accent stripe at top */
.njt-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0.6;
}
.njt-info-box__section h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
}
.njt-info-box__section p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-white-80);
  line-height: 1.6;
}
.njt-info-box__section a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.njt-info-box__section a:hover {
  color: var(--text-white);
}
.njt-hours {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white) !important;
}
.njt-note {
  font-size: 13px !important;
  color: var(--text-white-40) !important;
  margin-top: 4px;
}

/* ── Live Status Badge → consolidated into css/components.css §35 (GOAL-V3 R1 integrator, punch 11).
   coffee-track uses the canonical base sizing verbatim, so no page override remains here. ── */

/* ═══════════════════════════════════════
   6. FINAL CTA — cinematic video background
   Moved out of the page inline <style> (GOAL-V3 §G1). Off-token drift fixed
   per audit §1.10: display font, signal-green dot, gold checks, brand title.
═══════════════════════════════════════ */
.njt-coffee-cta {
  position: relative;
  padding: 8rem 2rem;
  background: var(--racing-plum);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.njt-coffee-cta__bg { position: absolute; inset: 0; z-index: 0; }
.njt-coffee-cta__bg-video {
  position: absolute; inset: -5%;
  width: 110%; height: 110%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  animation: njt-coffee-cta-zoom 20s infinite alternate ease-in-out;
}
.njt-coffee-cta__bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(42,0,24,0.95) 0%, rgba(42,0,24,0.4) 50%, rgba(42,0,24,0.9) 100%),
    linear-gradient(to right, rgba(42,0,24,0.8) 0%, rgba(42,0,24,0.3) 50%, rgba(42,0,24,0.8) 100%);
}
.njt-coffee-cta__glow {
  position: absolute;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}
.njt-coffee-cta__glow--1 {
  background: var(--magenta); opacity: 0.25;
  top: -20%; left: -10%;
  animation: njt-coffee-glow 15s infinite alternate ease-in-out;
}
.njt-coffee-cta__glow--2 {
  background: var(--gold); opacity: 0.2;
  bottom: -20%; right: -10%;
  animation: njt-coffee-glow 18s infinite alternate-reverse ease-in-out;
}
.njt-coffee-cta__kinetic {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; text-align: center;
  font-family: var(--font-display);
  font-size: 16vw; font-weight: 900; line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,215,0,0.08);
  white-space: nowrap;
  z-index: 1; pointer-events: none;
  -webkit-user-select: none; user-select: none;
  animation: njt-coffee-drift 20s infinite alternate ease-in-out;
}
.njt-coffee-cta__container {
  position: relative; z-index: 10;
  width: 100%; max-width: 900px;
}
.njt-coffee-cta .glass-panel {
  background: linear-gradient(135deg, rgba(42,0,24,0.6), rgba(0,0,0,0.4));
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.njt-coffee-cta .glass-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--magenta), transparent);
  opacity: 0.9;
}
.njt-coffee-cta__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em;
  color: #fff; margin-bottom: 2rem;
}
.njt-coffee-cta__badge-dot {
  width: 8px; height: 8px;
  background: var(--signal-green); border-radius: 50%;
  box-shadow: 0 0 10px rgba(46,125,70,0.7);
  animation: njt-coffee-pulse 2s infinite;
}
.njt-coffee-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2; margin-bottom: 1.5rem;
  background: var(--magenta-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.njt-coffee-cta__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto 3rem; line-height: 1.6;
}
.njt-coffee-cta__actions {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin-bottom: 3rem;
}
.njt-coffee-cta__benefits {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem;
}
.njt-coffee-cta__benefit {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 500;
}
.njt-coffee-cta__benefit svg { width: 16px; height: 16px; color: var(--gold); }
@keyframes njt-coffee-cta-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
@keyframes njt-coffee-glow { 0% { transform: translate(0, 0); } 100% { transform: translate(10%, 10%); } }
@keyframes njt-coffee-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,125,70,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(46,125,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,70,0); }
}
@keyframes njt-coffee-drift {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .njt-coffee-cta__bg-video,
  .njt-coffee-cta__glow,
  .njt-coffee-cta__kinetic,
  .njt-coffee-cta__badge-dot { animation: none !important; }
}

/* ═══════════════════════════════════════
/* ═══════════════════════════════════════
   7. TESTIMONIALS — canonical .njt-testimonials-carousel (§7) overrides (R3).
   Grid-card fork retired; each review is a .njt-testimonial (navigation.js
   drives it, same as coaches). Stars/source/verified ride as page overrides;
   verified retokened off #4ADE80 → white text + --signal-green icon (CONVENTIONS #8).
═══════════════════════════════════════ */
.njt-testimonials-carousel--reviews { text-align: center; }
.njt-testimonial__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
}
.njt-testimonial__stars svg { width: 18px; height: 18px; fill: var(--gold); }
.njt-testimonial__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-white-60);
}
.njt-testimonial__source a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.njt-testimonial__source a:hover { color: var(--text-white); text-decoration: underline; }
.njt-testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-white-60);
  font-weight: 600;
}
.njt-testimonial__verified svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--signal-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════
   8. GALLERY / ATMOSPHERE
═══════════════════════════════════════ */
.njt-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.njt-gallery-grid__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.njt-gallery-grid__item:first-child {
  grid-row: 1 / 3;
}
.njt-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.njt-gallery-grid__item:hover img {
  transform: scale(1.08);
}
/* Gradient overlay */
.njt-gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 0, 24, 0.5) 100%);
  pointer-events: none;
  transition: opacity var(--transition);
}
/* Caption overlay on hover */
.njt-gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--transition);
}
.njt-gallery-grid__item:hover .njt-gallery-grid__caption {
  transform: translateY(0);
  opacity: 1;
}
.njt-gallery-grid__caption span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* Touch devices have no hover — keep captions persistent + a base scrim so
   they stay legible (audit §1.3b). */
@media (hover: none) {
  .njt-gallery-grid__caption {
    transform: none;
    opacity: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(42,0,24,0.75) 100%);
  }
}

/* ═══════════════════════════════════════
   9. MAP SECTION
═══════════════════════════════════════ */
.njt-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.15);
  height: 360px;
  margin-top: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  background: var(--racing-plum);
}
/* Poster fallback (real trackside aerial) so the panel never paints black
   while the Google tiles load (audit §1.9). The poster is a PHOTOGRAPH, so it
   gets a dark plum scrim — NEVER the --map-filter invert (that recipe is for
   map TILES only, applied to the iframe below). R2 taste C1 fix. */
.njt-map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(42, 0, 24, 0.45), rgba(42, 0, 24, 0.55)),
    url('../assets/video-stills/aerial-track/A3-track-panorama-coffeetrack.jpg') center/cover no-repeat;
}
.njt-map-wrapper iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
  filter: var(--map-filter);
}

/* ── Get Directions Button ── */
.njt-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: all var(--transition);
}
.njt-directions-link:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,215,0,0.2);
}
.njt-directions-link svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════
   10. MOBILE STICKY CTA (Café)
═══════════════════════════════════════ */
.njt-cafe-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(42, 0, 24, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.njt-cafe-sticky.is-visible {
  transform: translateY(0);
}
.njt-cafe-sticky__inner {
  display: flex;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.njt-cafe-sticky__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.njt-cafe-sticky__btn--call {
  background: var(--btn-primary-bg);
  color: #000;
  border: 1px solid var(--gold);
}
.njt-cafe-sticky__btn--line {
  /* A20: was --line-green (#06C755) → white at 13px measured 2.26:1. The brand green
     stays on the border (non-text, ≥3:1); the fill uses the AA token. */
  background: var(--line-green-aa);
  color: #fff;
  border: 1px solid var(--line-green);
}
.njt-cafe-sticky__btn--map {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.njt-cafe-sticky__btn:active {
  transform: scale(0.96);
}

/* ═══════════════════════════════════════
   11. SECTION ALTERNATE BG
═══════════════════════════════════════ */
.njt-section--alt {
  background: var(--section-gradient);
}
.njt-section__cta {
  text-align: center;
}

/* ═══════════════════════════════════════
   12. BODY TEXT
═══════════════════════════════════════ */
.njt-body-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-white-80);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   13. COFFEE PROCESS SECTION
═══════════════════════════════════════ */
.njt-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
/* Connecting line between steps.
   The discs are 80px tall and start at the grid's top edge, so their centre line is
   y=40. `top: 72px` put the connector 32px low — it met the circles near their
   bottom edge rather than running through their middle. 39px = 40 − half the 2px
   rule, so the stroke is centred on the disc axis. */
.njt-process-grid::before {
  content: '';
  position: absolute;
  top: 39px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), rgba(255,215,0,0.3), transparent);
  z-index: 0;
}
.njt-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.njt-process-step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  /* Opaque. The connector above runs edge-to-edge behind this row, and at 50%
     black the line read straight through each disc instead of stopping at it. */
  background: #150610;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.njt-process-step__icon svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  transition: transform var(--transition);
}
.njt-process-step:hover .njt-process-step__icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255,215,0,0.2), 0 8px 24px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.njt-process-step:hover .njt-process-step__icon svg {
  transform: scale(1.15);
}
.njt-process-step__number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--btn-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}
.njt-process-step__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 8px;
}
.njt-process-step__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white-60);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   14. TODAY'S SPECIAL SECTION
═══════════════════════════════════════ */
.njt-special-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212,0,121,0.08) 0%, rgba(0,0,0,0.4) 40%, rgba(255,215,0,0.05) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.njt-special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
}
.njt-special-card__image {
  height: 400px;
  overflow: hidden;
}
.njt-special-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.njt-special-card:hover .njt-special-card__image img {
  transform: scale(1.05);
}
.njt-special-card__content {
  padding: 48px 48px 48px 0;
}
.njt-special-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--magenta), #E6007A);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.njt-special-card__badge svg {
  width: 14px;
  height: 14px;
}
.njt-special-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 36px;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.njt-special-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-white-80);
  line-height: 1.7;
  margin-bottom: 24px;
}
.njt-special-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.njt-special-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.njt-special-card__price-unit {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-white-60);
}

/* ═══════════════════════════════════════
   16. RESPONSIVE — Coffee Track
═══════════════════════════════════════ */
@media (max-width: 1023px) {
  .njt-two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .njt-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .njt-menu-item--feature { grid-column: span 2; }  /* full width across the 2-col grid */
  .njt-features-grid--4col,
  .njt-features-grid--6col {
    grid-template-columns: 1fr 1fr;
  }
  .njt-info-box {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .njt-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .njt-gallery-grid__item:first-child {
    grid-row: auto;
  }
  .njt-process-grid {
    gap: 24px;
  }
  .njt-process-grid::before {
    display: none;
  }
  .njt-special-card {
    grid-template-columns: 1fr;
  }
  .njt-special-card__content {
    padding: 32px;
  }
  .njt-special-card__image {
    height: 300px;
  }
  /* Show sticky CTA on tablet too */
  .njt-cafe-sticky {
    display: block;
  }
}

@media (max-width: 767px) {
  .njt-two-column__badge {
    right: 0;
    bottom: -0.75rem;
    font-size: 0.8125rem;
    padding: 0.75rem 1.1rem;
  }
  .njt-two-column__image img {
    height: 320px;
  }
  .njt-menu-grid {
    grid-template-columns: 1fr;
  }
  .njt-menu-item--feature {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .njt-menu-item--feature .njt-menu-item__image { min-height: 220px; }
  .njt-menu-item--feature .njt-menu-item__name { margin-top: 16px; }
  .njt-features-grid--4col {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .njt-features-grid--6col {
    grid-template-columns: 1fr;
  }
  .njt-feature-card {
    padding: 20px 4px;
  }
  .njt-info-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .njt-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px 180px;
  }
  .njt-quote p {
    font-size: 16px;
  }
  .njt-menu-tabs {
    gap: 6px;
  }
  .njt-menu-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
  .njt-map-wrapper {
    height: 240px;
  }
  .njt-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .njt-special-card__name {
    font-size: 28px;
  }
  .njt-special-card__price {
    font-size: 32px;
  }
  .njt-special-card__image {
    height: 240px;
  }
  .njt-kicker::before,
  .njt-kicker::after {
    width: 20px;
  }
  /* Final CTA — mobile */
  .njt-coffee-cta { padding: 4rem 1rem; min-height: 50vh; }
  .njt-coffee-cta .glass-panel { padding: 3rem 1.5rem; }
  .njt-coffee-cta__actions { gap: 1rem; flex-direction: column; }
  .njt-coffee-cta__title { font-size: 2rem; }
  .njt-coffee-cta__kinetic { font-size: 20vw; }
  .njt-coffee-cta .btn-cta--massive { width: 100%; justify-content: center; }
}

/* Hero parallax — mobile (moved from the page inline <style>) */
@media (max-width: 768px) {
  .njt-hero-parallax--coffee { height: 70vh; min-height: 480px; }
  .njt-hero-parallax--coffee__kinetic { font-size: 24vw; }
  /* A5: mobile font-size override removed — --text-display-xl already clamps to 40px here. */
  .njt-hero-parallax--coffee__glow--gold { width: 300px; height: 300px; }
  .njt-hero-parallax--coffee__glow--magenta { width: 350px; height: 350px; }
  .njt-hero-parallax--coffee__scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   V4/G8 — MENU: BRANDED LOCKUP TILES, LIVE PRICE AFFORDANCE, COUNTER CARD
   ═══════════════════════════════════════════════════════════════════ */

/* Three drinks have no photograph anywhere in the client archive. Rather than
   ship a stock stand-in, the tile becomes a designed lockup — same footprint,
   same hover, unmistakably intentional. */
.njt-menu-item__image--mark {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212, 0, 121, 0.28) 0%, transparent 65%),
    linear-gradient(160deg, #35081F 0%, var(--racing-plum, #2A0018) 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.14);
}
.njt-menu-item__image--mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
  opacity: 0.5;
  pointer-events: none;
}
.njt-menu-mark__ghost {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 9rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 215, 0, 0.22);
  user-select: none;
}
.njt-menu-mark__icon {
  grid-area: 1 / 1;
  width: 46px;
  height: 46px;
  color: var(--gold);
  opacity: 0.92;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.njt-menu-item:hover .njt-menu-mark__icon { transform: scale(1.12); }

/* "Ask at the counter" used to be gold, CTA-sized and completely dead. Now it is
   the phone line — same slot, same weight, but it actually dials. */
a.njt-menu-item__price--ask {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  gap: 8px;
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}
a.njt-menu-item__price--ask svg { width: 15px; height: 15px; flex: 0 0 auto; }
a.njt-menu-item__price--ask:hover,
a.njt-menu-item__price--ask:focus-visible { color: var(--text-white); gap: 12px; }

/* Eighth tile: the counter. Also squares the grid to 9 cells at 1440. */
.njt-menu-item--counter {
  border-color: rgba(255, 215, 0, 0.28);
  background: rgba(255, 215, 0, 0.04);
}
.njt-menu-item__counter-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-bottom: 4px;
}
.njt-menu-item__counter-line {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-white-70);
  text-decoration: none;
  padding: 0 24px 20px;
  border-bottom: none;
  transition: color var(--transition);
}
.njt-menu-item__counter-line:hover,
.njt-menu-item__counter-line:focus-visible { color: var(--gold); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   V4 — TESTIMONIALS: RESTORE THE CARD SURFACE (R3 open item)
   The R3 migration onto the canonical .njt-testimonial carousel dropped the
   card treatment, leaving three verified Facebook reviews as bare text on the
   page background. Page-scoped so components.css stays the shared owner.
   ═══════════════════════════════════════════════════════════════════ */
/* The card is a centred composition — stars, quote, name, source all on the axis —
   but the quote glyph was parked at left:-8px, reading as a stray mark beside the
   type rather than part of it. And a flat 4% white wash left the 1px border doing
   all the work of separating the card from the section. Glyph moves onto the axis,
   the surface gains a plum rake with a gold bloom at the top, and a hairline now
   separates the review from who wrote it. */
.njt-testimonials-carousel--reviews .njt-testimonial {
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 62%),
    linear-gradient(180deg, rgba(44, 8, 28, 0.92) 0%, rgba(12, 3, 9, 0.92) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-top: 2px solid rgba(255, 215, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 44px 40px 34px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 40px rgba(255, 215, 0, 0.05);
}
.njt-testimonials-carousel--reviews .njt-testimonial.is-active {
  border-color: rgba(255, 215, 0, 0.3);
  border-top-color: rgba(255, 215, 0, 0.6);
}
.njt-testimonials-carousel--reviews .njt-testimonial__quote {
  padding: 0;
  max-width: 56ch;
  margin: 0 auto 20px;
}
/* No quote glyph on this variant. Unlike the coaches card, these reviews lead with
   a 5-star row, so the mark is redundant — and once centred it landed on top of
   the stars. The stars carry the "this is a review" signal on their own. */
.njt-testimonials-carousel--reviews .njt-testimonial__quote::before {
  content: none;
}
/* Hairline between the review and its attribution. */
.njt-testimonials-carousel--reviews .njt-testimonial__author {
  position: relative;
  padding-top: 20px;
}
.njt-testimonials-carousel--reviews .njt-testimonial__author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (max-width: 767px) {
  .njt-testimonials-carousel--reviews .njt-testimonial { padding: 32px 20px 24px; }
  .njt-testimonials-carousel--reviews .njt-testimonial__quote { padding: 0 4px; }
  .njt-menu-mark__ghost { font-size: 7rem; }
}

/* Feature card: the Summer Soda artwork is 959×1200, so an unconstrained
   height=100% image made row 1 (552px) tower over rows 2–3 (394/439px).
   Cap it and let object-fit crop — the row now matches the rest of the grid. */
.njt-menu-item--feature .njt-menu-item__image { max-height: 440px; }
@media (max-width: 767px) {
  .njt-menu-item--feature .njt-menu-item__image { max-height: 300px; }
}
