/* components.css — 16 components, spec §9.2 + new for full-structure build.
   Each block is a self-contained ACF Flexible Content layout: nav / footer /
   button / pill / eyebrow / section-heading / card / menu-row / ticker /
   image-slot / clover-svg / lang-switcher / store-list-row / filter-tabs /
   article-card / form-block. Order below matches that list.

   All motion durations come from tokens.css so prefers-reduced-motion
   auto-neutralises them; no component branches on the media query. */


/* ═══ nav ═══════════════════════════════════════════════════════════════ */
/* Sticky header, border-bottom 2px currentColor, black variant hardcoded
   (nav=black per spec: variant machinery deleted). */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dmp-black); color: var(--dmp-cream);
  border-bottom: 2px solid currentColor;
  padding: 20px 48px;
}
.nav__inner {
  max-width: var(--sec-max); margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--dmp-display-face);
  font-weight: 800; font-size: 1.125rem;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--dmp-cream); flex-shrink: 0;
  white-space: nowrap;
}
.nav__logo .clover-svg { width: 28px; height: 28px; color: var(--dmp-red); }
.nav__links {
  display: flex; gap: 28px; list-style: none;
  margin-left: auto;
}
.nav__link {
  font-family: var(--dmp-body-face);
  font-weight: 700; font-size: var(--fs-nav);
  text-transform: uppercase; letter-spacing: var(--ls-nav);
  color: var(--dmp-cream);
  position: relative; padding: 4px 0;
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--dmp-red);
  transition: width var(--dur-nav-underline);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link:hover { color: var(--dmp-cream); }
.nav__pill { flex-shrink: 0; }
.nav__lang { flex-shrink: 0; }
.nav__mobile-toggle { display: none; }

body.david-dmp-page .dmp-elementor-shell,
body.david-dmp-page .dmp-elementor-shell.e-con,
body.david-dmp-page .elementor-widget-text-editor > .elementor-widget-container {
  background: var(--dmp-cream);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .nav { padding-inline: 16px; }
  .nav__inner { gap: 12px; }
  .nav__links { gap: 14px; }
  .nav__logo { font-size: 1rem; gap: 10px; }
  .nav__logo .clover-svg { width: 24px; height: 24px; }
  .pill { padding-inline: 16px; }
  .lang-switcher a, .lang-switcher span { padding-inline: 6px; }
}
@media (max-width: 1100px) and (min-width: 981px) {
  .nav__lang { display: none; }
}
@media (max-width: 980px) and (min-width: 761px) {
  .nav .nav__pill,
  .nav__lang { display: none; }
}

/* Mobile ≤ 760px: hide horizontal links, show hamburger */
@media (max-width: 760px) {
  .nav { padding: 16px 20px; }
  .nav__inner { gap: 12px; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dmp-black);
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 300ms ease;
  }
  .nav[data-open="true"] .nav__links { max-height: 500px; }
  .nav__link {
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
  }
  .nav__link::after { display: none; }
  .nav .nav__pill { display: none; }
  .nav__mobile-toggle {
    display: flex; margin-left: auto; align-items: center;
    color: var(--dmp-cream); padding: 8px;
  }
  .nav__mobile-toggle svg { width: 24px; height: 24px; }
}
@media (max-width: 520px) {
  .nav__logo { font-size: 1rem; gap: 10px; }
  .nav__logo .clover-svg { width: 24px; height: 24px; }
  .nav__lang { display: none; }
}


/* ═══ footer ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dmp-black); color: var(--dmp-cream-warm);
  padding: 64px 48px 32px;
}
.footer__inner {
  max-width: var(--sec-max); margin: 0 auto;
  display: grid; gap: 48px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.footer__brand .clover-svg { width: 48px; height: 48px; color: var(--dmp-red); }
.footer__brand-title {
  color: var(--dmp-cream); margin-top: 16px;
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.01em;
  line-height: var(--lh-display);
  max-width: none;
}
.footer__brand p { color: var(--dmp-cream-warm); opacity: 0.7; margin-top: 8px; font-size: 0.9375rem; }
.footer__col-title {
  font-family: var(--dmp-body-face); font-weight: 800;
  font-size: 0.8125rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dmp-yellow);   /* was red on black = 3.04 contrast; yellow on black = 10.4 */
  margin-bottom: 16px;
  max-width: none;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.9375rem; color: var(--dmp-cream-warm);
  opacity: 0.85; transition: opacity 200ms;
}
.footer__col a:hover { opacity: 1; color: var(--dmp-cream); }
.footer__legal {
  max-width: var(--sec-max); margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap; gap: 12px;
  /* NB: no opacity here — cascades to children (incl. lang-switcher current-
     page pill) and breaks WCAG contrast. Mute copyright text explicitly. */
}
.footer__legal > span { color: rgba(245, 236, 221, 0.65); }
@media (max-width: 900px) {
  .footer { padding: 56px 32px 30px; }
  .footer__inner { gap: 36px 28px; }
  .footer__legal { margin-top: 36px; }
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer { padding: 44px 20px 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .footer__legal { align-items: flex-start; flex-direction: column; margin-top: 32px; }
}


/* ═══ button ════════════════════════════════════════════════════════════ */
/* Primary variant = red on cream; secondary = outlined on cream; on-dark
   variants adapt. All buttons uppercase, ls per token. */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--dmp-body-face); font-weight: 800;
  font-size: var(--fs-button); letter-spacing: var(--ls-button);
  text-transform: uppercase;
  padding: 16px 28px; border-radius: var(--radius-pill);
  transition: transform 200ms, background 200ms, color 200ms;
  border: 2px solid transparent;
  min-height: 48px;   /* touch target */
}
.button--primary   { background: var(--dmp-red);   color: var(--dmp-cream); }
.button--primary:hover { background: var(--dmp-red-dark); color: var(--dmp-cream); transform: translateY(-2px); }
.button--secondary { background: transparent; color: var(--dmp-char); border-color: var(--dmp-char); }
.button--secondary:hover { background: var(--dmp-char); color: var(--dmp-cream); transform: translateY(-2px); }
.button--on-dark   { background: var(--dmp-cream); color: var(--dmp-char); }
.button--on-dark:hover { background: var(--dmp-cream-warm); color: var(--dmp-char); transform: translateY(-2px); }


/* ═══ pill (nav CTA + inline "book now" style buttons) ══════════════════ */
.pill {
  display: inline-flex; align-items: center;
  background: var(--dmp-red); color: var(--dmp-cream);
  font-family: var(--dmp-body-face); font-weight: 800;
  font-size: var(--fs-nav); letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--radius-pill);
  transition: background 200ms;
  border: 2px solid transparent;
}
.pill:hover { background: var(--dmp-red-dark); color: var(--dmp-cream); }
.pill--outline { background: transparent; border-color: var(--dmp-red); color: var(--dmp-red); }
.pill--outline:hover { background: var(--dmp-red); color: var(--dmp-cream); }


/* ═══ eyebrow ═══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-family: var(--dmp-body-face); font-weight: 800;
  font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--dmp-red);
  margin-bottom: 20px;
}
.section--dark .eyebrow, .section--red .eyebrow { color: var(--dmp-yellow); }


/* ═══ section-heading (eyebrow + h2 combo) ══════════════════════════════ */
.section-heading { margin-bottom: 40px; }
.section-heading__lede {
  margin-top: 24px; max-width: 60ch;
  font-size: 1.125rem; color: var(--dmp-brown);
}
.section--dark .section-heading__lede { color: var(--dmp-cream-warm); opacity: 0.85; }


/* ═══ card (gallery + store preview + generic content card) ═════════════ */
.card {
  background: var(--dmp-cream-warm);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-card-hover), box-shadow var(--dur-card-hover);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-card-hover);
}
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__body  { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__title { font-size: var(--fs-card-title); }
.card__meta  { font-family: var(--dmp-body-face); font-weight: 700;
               font-size: 0.8125rem; letter-spacing: 0.14em;
               text-transform: uppercase; color: var(--dmp-red); }
.card__desc  { color: var(--dmp-brown); font-size: 0.9375rem; line-height: 1.6; }
.card__price { margin-top: auto; padding-top: 12px;
               font-family: var(--dmp-display-face); font-weight: 800;
               font-size: 1.25rem; color: var(--dmp-char); }


/* ═══ menu-row (line-up rows: dish-level hover highlight) ═══════════════ */
.menu-list { display: flex; flex-direction: column; }
.menu-row {
  display: flex; align-items: baseline; gap: 24px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(245,236,221,0.12);
  color: var(--dmp-cream);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row__num {
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: 1.125rem; color: var(--dmp-yellow);
  min-width: 3ch;
}
.menu-row__title {
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: clamp(1.375rem, 1.5vw + 0.5rem, 1.5rem);
  text-transform: uppercase; letter-spacing: -0.005em;
  flex: 1; margin: 0; color: var(--dmp-yellow);
}
.menu-row__body { flex: 1; min-width: 0; }
.menu-row--rich { align-items: flex-start; }
.menu-row__items {
  display: grid; gap: 12px;
  margin: 14px 0 0; padding: 0;
  list-style: none;
  color: rgba(245,236,221,0.82);
  font-size: 0.98rem; line-height: 1.55;
}
.menu-row__items li {
  border-radius: 6px;
  padding: 8px 12px;
  margin-inline: -12px;
  transition: background var(--dur-menu-row), color var(--dur-menu-row);
}
.menu-row__items li:hover {
  background: var(--dmp-red);
  color: rgba(245,236,221,0.96);
}
.menu-row__items strong {
  display: block;
  color: var(--dmp-yellow);
  font-family: var(--dmp-ui-face); font-weight: 800;
  text-transform: none;
  margin-bottom: 2px;
}
.menu-row__items li:hover strong { color: var(--dmp-cream); }
.menu-row__price {
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: 1.125rem;
}


/* ═══ ticker (marquee) ═════════════════════════════════════════════════ */
.ticker {
  overflow: hidden; background: var(--dmp-red); color: var(--dmp-cream);
  padding: 24px 0; border-block: 2px solid var(--dmp-char);
}
.ticker__track {
  display: flex; align-items: center; gap: 48px;
  animation: ticker-scroll var(--dur-ticker) linear infinite;
  width: max-content;
}
.ticker__item {
  display: flex; align-items: center; gap: 48px;
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  white-space: nowrap;
}
.ticker__item .clover-svg {
  width: 32px; height: 32px; color: var(--dmp-cream); flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}


/* ═══ image-slot (placeholder — most-seen component in this build) ══════ */
/* Prints slot ID and required dimensions inside the box, --dmp-tan on cream.
   Reviewer must distinguish "intentional placeholder" from "broken image"
   instantly. Do NOT ship any grey voids. */
.image-slot {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: var(--dmp-cream-warm);
  border: 2px dashed var(--dmp-tan);
  border-radius: var(--radius-card);
  color: var(--dmp-tan);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  overflow: hidden;
  min-height: 200px;
}
.image-slot::before {
  content: "◇"; font-size: 2.5rem; opacity: 0.35;
  margin-bottom: 12px;
}
.image-slot:has(> img),
.image-slot:has(> video) {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.image-slot:has(> img)::before,
.image-slot:has(> video)::before {
  content: none;
}
.image-slot__id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700; font-size: 0.9375rem;
  color: var(--dmp-brown);
  padding: 4px 10px; background: var(--dmp-cream);
  border-radius: 4px;
}
.image-slot__dim {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem; margin-top: 8px;
  color: var(--dmp-tan);
}
.image-slot > img,
.image-slot > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-slot--hero    { aspect-ratio: 16 / 9; min-height: 0; }
.image-slot--card    { aspect-ratio: 4 / 3;  min-height: 0; }
.image-slot--square  { aspect-ratio: 1 / 1;  min-height: 0; }
.image-slot--wide    { aspect-ratio: 16 / 9; min-height: 0; }
.image-slot--tall    { aspect-ratio: 3 / 4;  min-height: 0; }
.image-slot--story   { aspect-ratio: 12 / 13; min-height: 0; }


/* ═══ clover-svg (base class, size inherits from parent) ════════════════ */
.clover-svg { display: inline-block; vertical-align: middle; }


/* ═══ lang-switcher ═════════════════════════════════════════════════════ */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--dmp-body-face); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lang-switcher a, .lang-switcher span {
  padding: 6px 10px; border-radius: 4px;
  color: var(--dmp-cream); opacity: 0.85;   /* bumped from 0.55 for WCAG contrast on all bg colours we land on */
  transition: opacity 200ms, background 200ms;
}
.lang-switcher a:hover { opacity: 1; background: rgba(255,255,255,0.08); color: var(--dmp-cream); }
/* aria-current selector needs to win over both the base rule AND any
   footer/nav scoping — hence both selectors here. Cream on red hits
   ~5.1:1 (WCAG AA large); footer-black bg is even easier. */
.lang-switcher [aria-current="page"],
.lang-switcher [aria-current="true"],
.footer .lang-switcher [aria-current="page"],
.footer .lang-switcher [aria-current="true"] {
  opacity: 1; background: var(--dmp-red); color: var(--dmp-cream);
}
.lang-switcher [aria-disabled="true"] {
  opacity: 0.4; cursor: not-allowed;
  text-decoration: line-through;
}
/* Footer lang-switcher inherits nav colours (cream on black); no override. */
#trp-floater-ls,
.trp-floater-ls,
.trp-floating-switcher,
.trp-language-switcher-container {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


/* ═══ store-list-row (one row of /stores/) ══════════════════════════════ */
.store-list { display: flex; flex-direction: column; margin-top: 24px; }
.store-list-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 16px 32px; align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--dmp-tan);
  transition: background 200ms;
}
.store-list-row:hover { background: var(--dmp-cream-warm); }
.store-list-row__name {
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: -0.005em;
  grid-column: 1;
  color: var(--dmp-char);
}
.store-list-row__meta {
  grid-column: 1; grid-row: 2;
  display: flex; flex-wrap: wrap; gap: 4px 24px;
  font-size: 0.9375rem; color: var(--dmp-brown);
}
.store-list-row__meta span { display: inline-flex; align-items: center; gap: 6px; }
.store-list-row__link {
  grid-column: 2; grid-row: 1 / span 2;
  align-self: center;
}


/* ═══ filter-tabs (state filter for /stores/) ═══════════════════════════ */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-block: 24px;
}
.filter-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-family: var(--dmp-body-face); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--dmp-char); border-radius: var(--radius-pill);
  color: var(--dmp-char); background: transparent;
  cursor: pointer; transition: background 200ms, color 200ms;
}
.filter-tab:hover, .filter-tab[aria-pressed="true"] {
  background: var(--dmp-char); color: var(--dmp-cream);
}
.filter-tab__count {
  display: inline-block; padding: 1px 8px;
  background: rgba(0,0,0,0.15); border-radius: var(--radius-pill);
  font-size: 0.75rem;
}
.filter-tab[aria-pressed="true"] .filter-tab__count { background: rgba(255,255,255,0.2); }


/* ═══ article-card (for /whats-new/) ═════════════════════════════════════ */
.article-card {
  display: flex; flex-direction: column;
  background: var(--dmp-cream-warm);
  border-radius: var(--radius-card);
  overflow: hidden; text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-card-hover), box-shadow var(--dur-card-hover);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  color: var(--dmp-char);
}
.article-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.article-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.article-card__cat {
  font-family: var(--dmp-body-face); font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dmp-red);
}
.article-card__title {
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: 1.375rem; text-transform: uppercase;
  letter-spacing: -0.005em; line-height: var(--lh-tight);
  color: var(--dmp-char);
}
.article-card__meta {
  font-size: 0.8125rem; color: var(--dmp-brown); opacity: 0.7;
  margin-top: auto;
}


/* ═══ form-block (contact + franchise enquiry) ══════════════════════════ */
.form-block {
  background: var(--dmp-cream-warm);
  border-radius: var(--radius-card);
  padding: 40px 32px;
}
.form-block__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-block__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-block label {
  font-family: var(--dmp-body-face); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dmp-brown);
}
.form-block input, .form-block textarea, .form-block select {
  padding: 14px 16px; border: 2px solid var(--dmp-tan);
  border-radius: 12px; background: var(--dmp-cream);
  font-family: var(--dmp-body-face); font-size: 1rem;
  color: var(--dmp-char);
  transition: border-color 200ms;
}
.form-block input:focus, .form-block textarea:focus, .form-block select:focus {
  border-color: var(--dmp-red); outline: none;
}
.form-block textarea { min-height: 120px; resize: vertical; font-family: var(--dmp-body-face); }
.form-block__submit { margin-top: 16px; }
.form-block__note { font-size: 0.8125rem; color: var(--dmp-brown); opacity: 0.7; margin-top: 12px; }
@media (max-width: 640px) {
  .form-block__row--split { grid-template-columns: 1fr; }
}


/* ═══ Homepage-specific layout helpers (composed from components) ═══════ */
.hero {
  padding: clamp(80px, 8vw, 140px) var(--sec-pad-x) clamp(60px, 6vw, 90px);
  max-width: var(--sec-max); margin: 0 auto;
  position: relative;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero__roundel {
  position: absolute;
  top: calc(clamp(80px, 8vw, 140px) + 194px);
  right: clamp(48px, 8vw, 104px);
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  width: clamp(110px, 12vw, 160px); height: clamp(110px, 12vw, 160px);
  border-radius: 50%; background: var(--dmp-yellow); color: var(--dmp-char);
  font-family: var(--dmp-display-face); font-weight: 800;
  font-size: clamp(0.75rem, 0.8vw + 0.5rem, 1rem); line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.05em;
  transform: rotate(-8deg);
}
@media (max-width: 900px) {
  .hero__roundel {
    position: static;
    margin-top: 24px;
  }
}

.hero-band {
  padding: 0 var(--sec-pad-x); max-width: var(--sec-max); margin: 0 auto;
}
.hero-band .image-slot--hero { height: auto; min-height: 0; }
.hero-promo-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dmp-char);
  border-radius: var(--radius-card);
}
.hero-promo-carousel__track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 520ms ease;
  will-change: transform;
}
.hero-promo-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: block;
  color: var(--dmp-cream);
  text-decoration: none;
  pointer-events: none;
}
.hero-promo-carousel__slide[aria-hidden="true"] {
  pointer-events: none;
}
.hero-promo-carousel__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
.hero-promo-carousel__slide .image-slot {
  height: 100%;
  min-height: 0;
  border-radius: 0;
}
.hero-promo-carousel__arrow {
  display: none !important;
}
.hero-promo-carousel__nav {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(20px, 4vw, 20px);
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: none;
}
.hero-promo-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid var(--dmp-cream);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.hero-promo-carousel__dot.is-active { background: var(--dmp-red); border-color: var(--dmp-red); }
@media (max-width: 720px) {
  .hero-promo-carousel,
  .hero-promo-carousel__track,
  .hero-promo-carousel__slide .image-slot {
    min-height: 0;
    height: auto;
  }
  .hero-promo-carousel__nav {
    right: 20px;
    bottom: 18px;
  }
  .menu-row { gap: 14px; padding-inline: 12px; }
  .menu-row__items { font-size: 0.92rem; }
}

.story-split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
@media (max-width: 900px) { .story-split { grid-template-columns: 1fr; } }
.story-image-carousel {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--dmp-cream);
  border-radius: var(--radius-card);
}
.story-image-carousel::before {
  content: none;
}
.story-image-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}
.story-image-carousel__slide.is-active {
  opacity: 1;
}
.story-image-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-split__prose h3 { margin-top: 24px; margin-bottom: 8px; }
.story-split__prose ul {
  list-style: none; margin-top: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.story-split__prose li {
  padding-left: 20px; position: relative;
  color: var(--dmp-brown); font-size: 1rem;
}
.story-split__prose li::before {
  content: "◆"; position: absolute; left: 0; top: 0.15em;
  color: var(--dmp-red); font-size: 0.6em;
}

.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 32px;
}

.store-carousel {
  position: relative;
  margin-top: 32px;
}
.store-carousel__viewport {
  overflow: hidden;
}
.store-preview {
  --store-card-gap: 24px;
  display: flex;
  gap: var(--store-card-gap);
  margin-top: 0;
  transform: translateX(0);
  transition: transform 520ms ease;
  will-change: transform;
}
.store-preview .card {
  flex: 0 0 calc((100% - var(--store-card-gap) * 2) / 3);
  min-width: 0;
}
.store-carousel__button {
  position: absolute;
  top: 34%;
  z-index: 4;
  width: 42px;
  height: 58px;
  border: 1px solid rgba(218, 13, 37, 0.65);
  background: rgba(20, 12, 9, 0.82);
  color: var(--dmp-cream);
  font-family: var(--dmp-display-face);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.store-carousel__button:hover {
  background: var(--dmp-red);
  color: var(--dmp-cream);
}
.store-carousel__button--prev { left: -70px; }
.store-carousel__button--next { right: -70px; }
@media (max-width: 900px) {
  .store-preview .card { flex-basis: calc((100% - var(--store-card-gap)) / 2); }
  .store-carousel__button--prev { left: -52px; }
  .store-carousel__button--next { right: -52px; }
}
@media (max-width: 640px) {
  .store-preview .card { flex-basis: 100%; }
  .store-carousel__button {
    top: 28%;
    width: 34px;
    height: 48px;
    font-size: 1.8rem;
  }
  .store-carousel__button--prev { left: 6px; }
  .store-carousel__button--next { right: 6px; }
}
.store-preview__cta { margin-top: 40px; text-align: center; }

.section--app-download {
  background: #d73530;
  color: #fff;
}
.app-download {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.app-download__mascot {
  margin: 0;
  justify-self: end;
  max-width: min(430px, 100%);
}
.app-download__mascot img,
.app-download__code img {
  display: block;
  width: 100%;
  height: auto;
}
.app-download__content .eyebrow {
  color: var(--dmp-yellow);
  margin-bottom: 14px;
}
.app-download__content h2 {
  color: var(--dmp-yellow);
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 0.95;
  margin: 0 0 22px;
}
.app-download__content p {
  max-width: 860px;
  color: #fff;
  font-size: clamp(1.25rem, 1.2vw, 2.15rem);
  line-height: 1.08;
  margin: 0 0 44px;
}
.app-download__codes {
  display: flex;
  gap: clamp(34px, 4vw, 64px);
  align-items: flex-start;
}
.app-download__code {
  display: block;
  width: min(266px, 40vw);
  transition: transform 180ms ease;
}
.app-download__code:hover {
  transform: translateY(-4px);
}
@media (max-width: 900px) {
  .app-download {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-download__mascot {
    justify-self: center;
    max-width: 320px;
  }
  .app-download__codes {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .app-download__content h2 {
    font-size: clamp(2.6rem, 13vw, 3.8rem);
  }
  .app-download__content p {
    font-size: 1.15rem;
    line-height: 1.28;
  }
  .app-download__codes {
    gap: 20px;
  }
  .app-download__code {
    width: calc((100vw - 76px) / 2);
  }
}

.cta-banner {
  text-align: center;
}
.cta-banner h2 {
  font-size: var(--fs-cta); letter-spacing: var(--ls-cta);
  color: var(--dmp-cream);
}
.cta-banner__button { margin-top: 32px; }

/* Menu page grid */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 24px;
}
.menu-cat { margin-top: 48px; }
.menu-cat__heading { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }

/* Article prose (whats-new detail) */
.article {
  max-width: 720px; margin: 0 auto;
  padding: clamp(48px, 6vw, 90px) var(--sec-pad-x);
}
.article h2 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); margin: 32px 0 16px; letter-spacing: -0.01em; }
.article p, .article ul { margin-block: 16px; }
.article__meta {
  font-size: 0.8125rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dmp-red);
  margin-bottom: 8px;
}
.article__hero { margin: 32px 0; }


/* ═══ utility ══════════════════════════════════════════════════════════ */
.center-text { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.max-prose { max-width: 60ch; }
