/* ============================================================
   Cool Runnings · Yard Energy
   Mobile-first design system. Multi-page architecture.
   ============================================================ */

/* --- Self-hosted fonts --- */
@font-face {
  font-family: 'Bowlby One';
  src: url('assets/fonts/bowlby-one-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo Black';
  src: url('assets/fonts/archivo-black-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans-latin-800-normal.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
/* iOS prevents auto-zoom on inputs when font-size >= 16px */
input, select, textarea { font-size: 16px; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
q { quotes: "“" "”"; font-style: italic; }

/* --- Design tokens --- */
:root {
  /* Color */
  --ink:          #0F0A08;
  --ink-soft:     #2A1F1A;
  --ink-mute:     #6B5A50;
  --paper:        #FFF8E8;
  --paper-warm:   #F7EDD0;
  --green:        #00913C;
  --green-deep:   #00691F;
  --green-fade:   #E1F4E7;
  --gold:         #FFC400;
  --gold-deep:    #C28800;
  --gold-fade:    #FFF1B5;
  --red:          #E63946;
  --red-deep:     #B5202D;
  --red-fade:     #FBDDE0;
  --rum:          #2A1810;
  --line:         rgba(15,10,8,0.14);
  --line-light:   rgba(255,248,232,0.16);

  /* Type */
  --f-display:    'Bowlby One', 'Bowlby One SC', 'Ultra', Georgia, serif;
  --f-signage:    'Archivo Black', 'Anton', system-ui, sans-serif;
  --f-body:       'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Sizing */
  --container:    1240px;
  --gutter:       clamp(1.5rem, 5.5vw, 2.5rem);
  --radius-sm:    6px;
  --radius:       14px;
  --radius-lg:    22px;
  --shadow-md:    0 12px 32px -16px rgba(15,10,8,0.4);
  --shadow-lg:    0 24px 60px -24px rgba(15,10,8,0.45);

  /* Mobile action bar height */
  --actionbar-h:  68px;
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: calc(var(--actionbar-h) + env(safe-area-inset-bottom, 0px));
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 7.5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-display--ink    { color: var(--ink); }
.h-display--cream  { color: var(--paper); }
.h-display--gold   { color: var(--gold); }
.h-display--red    { color: var(--red); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-signage);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--ink-mute);
  display: inline-block;
}
.eyebrow--ink    { color: var(--ink); }
.eyebrow--ink::before    { background: var(--gold); }
.eyebrow--gold   { color: var(--gold); }
.eyebrow--gold::before   { background: var(--gold); }
.eyebrow--cream  { color: var(--paper); }
.eyebrow--cream::before  { background: var(--gold); }
.eyebrow--red    { color: var(--red); }
.eyebrow--red::before    { background: var(--red); }

.section-head {
  max-width: 50rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-signage);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: color 200ms;
}
.link-arrow:hover { color: var(--gold-deep); }
.link-arrow--gold { color: var(--gold); border-bottom-color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--f-signage);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  min-height: 48px; /* touch target */
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--xl { padding: 1.15rem 1.85rem; font-size: 0.95rem; min-height: 56px; }
.btn--full { width: 100%; }

.btn--gold        { background: var(--gold); color: var(--ink); }
.btn--gold:hover  { background: var(--gold-deep); color: var(--paper); }
.btn--green       { background: var(--green); color: var(--paper); }
.btn--green:hover { background: var(--green-deep); }
.btn--red         { background: var(--red); color: var(--paper); }
.btn--red:hover   { background: var(--red-deep); }
.btn--ink         { background: var(--ink); color: var(--paper); }
.btn--ink:hover   { background: var(--rum); }
.btn--ghost       { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); }

/* ============================================================
   BRAND MARK
   ============================================================ */
.brand {
  font-family: var(--f-display);
  display: inline-flex;
  align-items: baseline;
  line-height: 0.86;
  letter-spacing: 0.005em;
}
.brand__cool, .brand__runnings {
  font-size: 1.5rem;
}
.brand__cool { color: var(--ink); }
.brand__runnings {
  color: var(--green);
  position: relative;
}
.brand__runnings::after {
  content: '';
  position: absolute;
  right: -10px; bottom: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.brand--light .brand__cool { color: var(--paper); }
.brand--light .brand__runnings { color: var(--gold); }
.brand--light .brand__runnings::after { background: var(--red); }
.brand--lg .brand__cool, .brand--lg .brand__runnings { font-size: 2.5rem; }

/* ============================================================
   RIBBON (desktop utility bar - hidden on mobile)
   ============================================================ */
.ribbon {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  display: none;
}
.ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-block: 0.55rem;
}
.ribbon__item strong {
  font-family: var(--f-signage);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.35rem;
}
.ribbon__divider { color: rgba(255,248,232,0.3); }

@media (min-width: 880px) { .ribbon { display: block; } }
/* Catering item stays visible on mobile as a slim strip; siblings hide. */
.ribbon { display: block; }
@media (max-width: 879px) {
  .ribbon { padding: .45rem 0; font-size: .82rem; }
  .ribbon__inner { justify-content: center; gap: 0; }
  .ribbon__item:not(:last-child),
  .ribbon__divider { display: none; }
  .ribbon__item:last-child a { color: var(--gold); font-weight: 600; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 200ms ease, background 200ms ease;
}
.nav.is-scrolled { box-shadow: 0 8px 20px -12px rgba(15,10,8,0.18); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  min-height: 64px;
}
.nav__brand { display: inline-flex; flex-direction: column; line-height: 1; }
.nav__brand .brand__cool, .nav__brand .brand__runnings { font-size: 1.55rem; }
.brand__sub {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-top: 4px;
  display: none;
}

.nav__primary { display: none; }
.nav__primary ul {
  display: flex;
  gap: 1.85rem;
  align-items: center;
}
.nav__primary a {
  font-family: var(--f-signage);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 8px;
}
.nav__primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  height: 3px; width: 0;
  background: var(--green);
  transition: width 220ms ease;
}
.nav__primary a:hover::after,
.nav__primary a.is-current::after { width: 100%; }
.nav__primary a.is-current::after { background: var(--gold); }

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
  border-radius: 2px;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 880px) {
  .brand__sub { display: block; }
  .nav__primary { display: block; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(85vw, 360px);
  height: 100dvh;
  background: var(--ink);
  color: var(--paper);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 2rem;
  box-shadow: -20px 0 40px -20px rgba(0,0,0,0.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 1.5rem; }
.drawer__brand { display: block; padding-bottom: 1rem; border-bottom: 1px solid var(--line-light); }
.drawer__brand .brand__cool, .drawer__brand .brand__runnings { font-size: 1.8rem; }

.drawer__nav ul { display: flex; flex-direction: column; }
.drawer__nav ul li { border-bottom: 1px solid var(--line-light); }
.drawer__nav ul a {
  display: block;
  padding: 1.1rem 0.5rem;
  font-family: var(--f-display);
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: 0.01em;
  transition: color 200ms;
}
.drawer__nav ul a:hover { color: var(--gold); }

.drawer__cta { display: flex; flex-direction: column; gap: 0.6rem; }
.drawer__meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,248,232,0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawer__meta p strong { font-family: var(--f-signage); color: var(--gold); display: block; margin-bottom: 4px; letter-spacing: 0.04em; }

/* Scrim */
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(15,10,8,0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: opacity 240ms ease;
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* Fallback if image missing */
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,196,0,0.25), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(0,145,60,0.18), transparent 60%),
    linear-gradient(180deg, #1a0e08 0%, #0a0604 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(15,10,8,0.55) 0%,
    rgba(15,10,8,0.4) 35%,
    rgba(15,10,8,0.8) 100%);
}
.hero__inner {
  padding-block: 6rem 4rem;
  color: var(--paper);
  position: relative;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,196,0,0.15);
  border: 1px solid rgba(255,196,0,0.4);
  color: var(--gold);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  font-family: var(--f-signage);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero__pill-flag {
  width: 22px;
  height: 8px;
  background: linear-gradient(to right, var(--green) 0 33%, var(--gold) 33% 66%, var(--red) 66% 100%);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--f-signage);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
}
.hero__line {
  display: block;
  font-size: clamp(4rem, 17vw, 11rem);
  color: var(--paper);
}
.hero__line--accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero__line--accent::after {
  content: '';
  position: absolute;
  bottom: 0.18em; right: -0.35em;
  width: 0.4em; height: 0.4em;
  background: var(--red);
  border-radius: 50%;
}
.hero__tagline {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  max-width: 36rem;
  color: rgba(255,248,232,0.92);
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__flag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  display: flex;
  z-index: 2;
}
.hero__flag span:nth-child(1) { background: var(--green); flex: 1; }
.hero__flag span:nth-child(2) { background: var(--gold); flex: 1; }
.hero__flag span:nth-child(3) { background: var(--red); flex: 1; }

@media (min-width: 720px) {
  .hero__inner { padding-block: 8rem 5rem; }
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--paper);
}
.story__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
.story__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-warm);
}
.story__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, #6B3410 0%, #2A1810 100%);
}
.story__sticker {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  rotate: 6deg;
}
.story__sticker-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  line-height: 1;
}
.story__sticker-text {
  font-family: var(--f-signage);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.story__copy p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
  max-width: 38rem;
}
.story__copy .h-display { margin-bottom: 1.5rem; }
.story__cta-row { margin-top: 1.5rem; }

@media (min-width: 880px) {
  .story__inner {
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
  }
}

/* ============================================================
   DAILY SOUP
   ============================================================ */
.daily {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--gold);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.daily::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20px 20px, rgba(15,10,8,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.daily__inner { position: relative; z-index: 1; }
.daily__label { margin-bottom: 2rem; }
.daily__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.daily__list li {
  padding: 0.85rem 1rem;
  background: rgba(15,10,8,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: background 200ms, transform 200ms;
}
.daily__list li[data-today] {
  background: var(--ink);
  color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.daily__list li[data-today] span { color: var(--gold); }
.daily__list li span {
  font-family: var(--f-signage);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.daily__list li strong {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.daily__price {
  font-family: var(--f-signage);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(15,10,8,0.08);
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
}
.daily__sep { color: var(--ink-mute); margin-inline: 0.5rem; }

@media (min-width: 720px) {
  .daily__list { grid-template-columns: repeat(7, 1fr); }
  .daily__list li strong { font-size: 1.05rem; }
}

/* ============================================================
   SIGNATURE PLATES
   ============================================================ */
.plates {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.plates::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(255,196,0,0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(0,145,60,0.06), transparent 60%);
  pointer-events: none;
}
.plates > .container { position: relative; z-index: 1; }

.plates__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
.plate {
  background: rgba(255,248,232,0.05);
  border: 1px solid rgba(255,248,232,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease;
}
.plate:hover { transform: translateY(-4px); border-color: var(--gold); }
.plate__link { display: block; color: inherit; }

.plate__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.plate__img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #4D2208 0%, #1A0807 100%);
}
.plate__rank {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 1.5rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.plate__body { padding: 1.25rem 1.25rem 1.5rem; }
.plate__name {
  font-family: var(--f-display);
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
  letter-spacing: 0.005em;
  color: var(--paper);
}
.plate__desc {
  color: rgba(255,248,232,0.7);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.plate__price {
  font-family: var(--f-signage);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.plate__price strong { color: var(--gold); font-weight: 400; }
.plate__price span { color: rgba(255,248,232,0.55); }

.plate--feature .plate__media { aspect-ratio: 16/10; }

.plates__note {
  font-family: var(--f-body);
  font-style: italic;
  color: rgba(255,248,232,0.65);
  font-size: 0.95rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 2rem;
  max-width: 50rem;
}
.plates__more { text-align: center; }

@media (min-width: 620px) {
  .plates__grid { grid-template-columns: repeat(2, 1fr); }
  .plate--feature { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .plates__grid { grid-template-columns: repeat(4, 1fr); }
  .plate--feature { grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   JUICES
   ============================================================ */
.juices {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--red);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.juices::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at 20% 80%, rgba(255,196,0,0.15), transparent 60%),
    radial-gradient(circle 400px at 80% 20%, rgba(0,145,60,0.1), transparent 60%);
  pointer-events: none;
}
.juices > .container { position: relative; z-index: 1; }

.juices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.juice-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform 280ms ease;
}
.juice-card:hover { transform: translateY(-4px); }
.juice-card__bottle {
  aspect-ratio: 1/1;
  max-width: 200px;
  margin: 0 auto 1.25rem;
}
.juice-card__bottle img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--gold-fade) 100%);
  border-radius: var(--radius-sm);
}
.juice-card__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.005em;
}
.juice-card__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 22rem;
  margin-inline: auto;
}

.juices__note {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,248,232,0.88);
  max-width: 36rem;
  margin-inline: auto;
}
.juices__note .link-arrow { margin-left: 0.5rem; }

@media (min-width: 720px) {
  .juices__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   CATERING TEASER
   ============================================================ */
.catering-teaser {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--green);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.catering-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 500px at 80% 50%, rgba(255,196,0,0.2), transparent 60%);
  pointer-events: none;
}
.catering-teaser__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.catering-teaser__copy .eyebrow { color: var(--paper); }
.catering-teaser__copy .eyebrow::before { background: var(--gold); }
.catering-teaser__copy .h-display--ink { color: var(--paper); }
.catering-teaser__copy p {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  max-width: 38rem;
}
.catering-teaser__bullets {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.catering-teaser__bullets li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,248,232,0.88);
}
.catering-teaser__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 12px; height: 2px;
  background: var(--gold);
}
.catering-teaser__copy .btn--ink { background: var(--ink); color: var(--paper); }
.catering-teaser__copy .btn--ink:hover { background: var(--rum); }

.catering-teaser__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.catering-teaser__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #006D29 0%, #003D17 100%);
}

@media (min-width: 880px) {
  .catering-teaser__inner { grid-template-columns: 1.1fr 1fr; }
}

/* ============================================================
   VISIT STRIP
   ============================================================ */
.visit-strip {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--ink);
  color: var(--paper);
  background-image:
    linear-gradient(135deg, #1A0F08 0%, #0A0604 100%);
}
.visit-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.visit-strip__addr {
  font-size: 1.0625rem;
  color: rgba(255,248,232,0.78);
  margin-bottom: 1rem;
  max-width: 28rem;
}
.visit-strip__phone {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--gold);
  margin-top: 0.5rem;
}
.visit-strip__h {
  font-family: var(--f-signage);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.visit-strip__col--hours ul {
  display: grid;
  gap: 0.6rem;
}
.visit-strip__col--hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255,248,232,0.12);
  font-size: 0.95rem;
  color: rgba(255,248,232,0.82);
}
.visit-strip__col--hours strong {
  font-family: var(--f-signage);
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.03em;
}
.visit-strip__col--cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 880px) {
  .visit-strip__inner { grid-template-columns: 1.3fr 1fr 1fr; align-items: start; }
  .visit-strip__col--cta { justify-content: flex-start; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--rum);
  color: rgba(255,248,232,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 22rem;
  line-height: 1.55;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,248,232,0.08);
  border-radius: 50%;
  font-family: var(--f-signage);
  font-size: 0.75rem;
  color: var(--paper);
  letter-spacing: 0.05em;
  transition: background 200ms;
}
.footer__social a:hover { background: var(--gold); color: var(--ink); }

.footer__col h4 {
  font-family: var(--f-signage);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer__col p, .footer__col ul li { font-size: 0.9375rem; line-height: 1.75; }
.footer__col a:hover { color: var(--gold); }
.footer__col a small { color: rgba(255,248,232,0.5); margin-left: 4px; font-size: 0.75rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,248,232,0.1);
  padding-block: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255,248,232,0.5);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__bottom a { color: var(--gold); }

@media (min-width: 620px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.actionbar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  height: var(--actionbar-h);
  background: var(--ink);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  z-index: 60;
  border-top: 4px solid var(--gold);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.4);
}
.actionbar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  gap: 2px;
  text-align: center;
  font-family: var(--f-signage);
  border-right: 1px solid rgba(255,248,232,0.08);
  transition: background 180ms;
}
.actionbar__btn:last-child { border-right: 0; }
.actionbar__btn:hover { background: rgba(255,196,0,0.08); }
.actionbar__btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-right: 0;
}
.actionbar__btn--primary:hover { background: var(--gold-deep); color: var(--paper); }
.actionbar__label {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.actionbar__sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.actionbar__icon {
  font-size: 1.4rem;
  line-height: 1;
}

@media (min-width: 880px) {
  .actionbar { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .ribbon, .nav, .drawer, .actionbar, .hero__ctas, .footer__bottom { display: none; }
  body { background: white; color: black; padding-bottom: 0; }
  .plate, .juice-card { break-inside: avoid; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   s85 hero tighten — brand-hide REVERTED s86 2026-05-19.
   The nav brand is required by the unified header. Keep only the
   hero spacing tweaks from this s85 block.
   ============================================================ */
.hero {
  min-height: clamp(420px, 62vh, 560px);
  align-items: center;
}
.hero__inner {
  padding-block: 2.5rem 2.5rem;
}
@media (min-width: 700px) {
  .hero__inner { padding-block: 3rem 3rem; }
}

/* s85 hero-tighten brand-hide REVERTED s86 (2026-05-19): the new unified
   header in /_partials/header.html requires the .brand wordmark to render
   inside .nav__brand and .drawer__brand. Original s85 reason — hiding
   rogue legacy .brand spans on order/checkout/confirmation — no longer
   applies; those spans live inside their own .topnav/.wrap chrome and
   are now ABOVE the unified header. */

/* s85: hero photo restored — real images + video from Drive now in place. */

/* ============================================================
   JUICES — card styling (HTML uses BEM .juice / .juice__*)
   Added so the three juice cards on the home page have rounded
   corners and a proper paper-on-red card frame.
   ============================================================ */
.juice {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.juice:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,0.14); }
.juice__link { display: block; color: inherit; text-decoration: none; }
.juice__media { aspect-ratio: 1/1; overflow: hidden; }
.juice__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.juice__body { padding: 1rem 1.25rem 1.25rem; text-align: center; }
.juice__name { font-family: var(--f-display); font-size: 1.5rem; margin: 0 0 0.35rem; letter-spacing: 0.005em; }
.juice__price { margin: 0; color: var(--ink-soft); }
.juice__price strong { color: var(--ink); font-weight: 700; }

/* === Birthday Club + Rewards CTA (Birthday Club v2, 2026-05) === */
.birthday-club {
  background: var(--paper);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.birthday-club__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) {
  .birthday-club__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.birthday-club__copy h2 { margin: 0.5rem 0 1rem; }
.birthday-club__copy p { color: var(--ink); font-size: 1.05rem; line-height: 1.6; }

.bc-form { display: flex; flex-direction: column; gap: 1rem; background: var(--ink); padding: 2rem; border-radius: 4px; }
.bc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .bc-form__row { grid-template-columns: 1fr; } }
.bc-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.bc-form__field > span { color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; font-weight: bold; }
.bc-form__field input { padding: 0.75rem 0.9rem; font-size: 1rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: var(--paper); border-radius: 3px; font-family: inherit; }
.bc-form__field input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.bc-form__check { display: grid; grid-template-columns: 22px 1fr; gap: 0.7rem; align-items: start; color: var(--paper); font-size: 0.88rem; line-height: 1.5; cursor: pointer; padding: 0.4rem 0; }
.bc-form__check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.bc-form__check--required > span::after { content: ' *'; color: var(--gold); font-weight: bold; }
.bc-form__msg { margin: 0; padding: 0.5rem 0; font-size: 0.95rem; min-height: 1.5em; }
.bc-form__msg--ok { color: #6bd968; }
.bc-form__msg--err { color: #ff8a7a; }

.rewards-cta {
  background: linear-gradient(180deg, var(--ink) 0%, #2a1f12 100%);
  padding: 4.5rem 0;
  text-align: center;
  color: var(--paper);
}
.rewards-cta__inner { max-width: 720px; margin: 0 auto; }
.rewards-cta h2 { margin: 0.5rem 0 1rem; }
.rewards-cta__lead { font-size: 1.05rem; line-height: 1.6; color: var(--paper); margin-bottom: 1.8rem; opacity: 0.95; }

/* ============================================================
   CATERING PROMO — homepage CTA strip
   Two-column layout: photo left, copy right (stacks on mobile)
   ============================================================ */
.catering-promo {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--paper-warm);
  color: var(--ink);
}
.catering-promo__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.catering-promo__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  aspect-ratio: 4 / 3;
}
.catering-promo__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catering-promo__body { max-width: 38rem; }
.catering-promo__body .eyebrow { margin-bottom: 0.85rem; }
.catering-promo__body .h-display {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
.catering-promo__body p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.catering-promo__body p:last-child { margin-bottom: 0; }
.catering-promo__body .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-signage);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--red-deep);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.catering-promo__body .link-arrow:hover {
  color: var(--ink);
  border-color: var(--gold);
}

@media (min-width: 820px) {
  .catering-promo__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .catering-promo__media { aspect-ratio: 1 / 1; }
}

/* CATERING PROMO — mobile (<820px) refinements */
@media (max-width: 819px) {
  .catering-promo { padding-block: clamp(2.5rem, 9vw, 4rem); }
  .catering-promo__inner { gap: 1.5rem; }
  .catering-promo__media { aspect-ratio: 16 / 10; box-shadow: 0 8px 22px rgba(0,0,0,0.10); border-radius: var(--radius); }
  .catering-promo__body { max-width: 100%; }
  .catering-promo__body .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
  }
  .catering-promo__body .h-display {
    font-size: clamp(1.5rem, 7.5vw, 2.1rem);
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
  }
  .catering-promo__body p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }
  .catering-promo__body .link-arrow { font-size: 0.95rem; }
}

/* ============================================================
   MENU SECTIONS — vertical rhythm + comfortable mobile typography
   ============================================================ */
.menu-section {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
}
.menu-section + .menu-section {
  padding-top: 0;
}
.menu-section .h-display {
  margin: 0 0 1rem;
}
.menu-section p,
.menu-section .menu-list {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.menu-section .menu-list { padding-left: 1.25rem; }
.menu-section .menu-list li { margin-bottom: 0.5rem; }
.menu-cta {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  background: var(--paper-warm);
  text-align: center;
}
.menu-cta .h-display {
  font-size: clamp(2rem, 6.5vw, 3.5rem);
  margin: 0 0 0.6rem;
  line-height: 1.0;
}
.menu-cta .h-large {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 auto 1.5rem;
  max-width: 42rem;
}

/* page-head on catering.html — same rhythm */
.page-head {
  padding-block: clamp(2.25rem, 6vw, 4rem);
}
.page-head .h-display {
  font-size: clamp(2.25rem, 8.5vw, 4rem);
  line-height: 1.0;
}
.page-head .lede {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  max-width: 38rem;
}

@media (max-width: 540px) {
  .menu-section .h-display { font-size: clamp(1.625rem, 7.5vw, 2.25rem); line-height: 1.05; }
  .page-head .h-display    { font-size: clamp(1.875rem, 9vw, 2.75rem); line-height: 1.0; }
}

/* ============================================================
   MOBILE SWEEP (audit pass)
   ============================================================ */

/* 1. Hero: darker overlay + brighter tagline on mobile for legibility */
@media (max-width: 768px) {
  .hero { min-height: clamp(520px, 78vh, 640px); }
  .hero__overlay {
    background: linear-gradient(180deg,
      rgba(15,10,8,0.72) 0%,
      rgba(15,10,8,0.68) 40%,
      rgba(15,10,8,0.88) 100%);
  }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: 0.02em; }
  .hero__line { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .hero__tagline { color: rgba(255,248,232,0.96); font-size: 1rem; max-width: 30rem; }
  .hero__ctas .btn { padding-block: 0.7rem; }
}

/* 2. Daily section: tighter heading on mobile (fixes "week." orphan) */
@media (max-width: 540px) {
  .daily__label .h-display {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.0;
    letter-spacing: -0.005em;
  }
  .daily__list { grid-template-columns: 1fr; }
}

/* 4. Menu food cards: don't inherit the bullet-list left padding */
.menu-section .menu-list:has(> .menu-item) { padding-left: 0; }

/* 5. Story-page Yard Club CTA: visual breathing room before footer */
.menu-section + .footer,
.page-menu .menu-section:last-of-type,
.menu-cta:last-of-type { padding-bottom: clamp(3rem, 8vw, 5rem); }
body:not(.page-home) .menu-section:has(.btn--gold) { padding-bottom: clamp(3.5rem, 9vw, 5.5rem); }

/* ============================================================
   UNIFIED HEADER — mobile overrides (Hudson 2026-05-19 s86)
   Source-of-truth markup lives in /_partials/header.html.
   Loaded by /script.js into <div id="site-header"></div>.
   ============================================================ */

/* Promo bars — visible on all viewports */
.promo-bar { padding: .55rem 0; font-size: .82rem; font-weight: 600; text-align: center; }
.promo-bar--gift {
  background: linear-gradient(90deg, #E63946 0%, #FF7A1A 100%);
  color: #FFF8E8;
}
.promo-bar--thanks {
  background: #B5202D;
  color: #FFF8E8;
}
.promo-bar__inner { display: flex; align-items: center; justify-content: center; }
.promo-bar__link { color: inherit; text-decoration: none; }
.promo-bar__link:hover { text-decoration: underline; }

/* Ribbon — show hours + page-context on mobile (was previously hiding everything but the last item) */
@media (max-width: 879px) {
  .ribbon { padding: .5rem 0 !important; font-size: .78rem; }
  .ribbon__inner {
    justify-content: center !important;
    gap: .5rem !important;
    flex-wrap: wrap;
    padding-inline: .75rem;
  }
  /* Override the legacy "hide everything but last" rule */
  .ribbon__item,
  .ribbon__divider { display: inline !important; }
  /* Secondary (Pickup & Delivery) tucks below 480px to keep ribbon single-line on phones */
  .ribbon__item--secondary,
  .ribbon__divider--secondary { display: inline !important; }
  .ribbon__item--page strong { color: var(--gold); }
}
@media (max-width: 479px) {
  .ribbon__item--secondary,
  .ribbon__divider--secondary { display: none !important; }
  .ribbon { font-size: .74rem; }
}

/* Nav row — show brand + phone icon + Order CTA + hamburger on mobile */
.nav__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--ink);
  flex-shrink: 0;
  border-radius: 50%;
  transition: background 180ms ease;
}
.nav__phone:hover { background: var(--gold-fade); }

@media (max-width: 879px) {
  .nav__inner {
    gap: .35rem !important;
    padding-block: .55rem !important;
    min-height: 56px !important;
  }
  /* Brand: keep visible on mobile, tighten size */
  .nav__brand .brand__cool,
  .nav__brand .brand__runnings { font-size: 1.15rem !important; }
  .nav__brand { flex-shrink: 1; min-width: 0; }
  /* Push action cluster to the right */
  .nav__primary { display: none !important; }
  /* Show CTA + phone + hamburger on mobile */
  .nav__cta {
    display: inline-flex !important;
    padding: .55rem .9rem !important;
    font-size: .78rem !important;
    letter-spacing: .04em !important;
    flex-shrink: 0;
  }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: flex !important; }
}
/* At very narrow widths (<400px), drop the phone icon — CTA + hamburger only */
@media (max-width: 399px) {
  .nav__phone { display: none !important; }
  .nav__cta { padding: .5rem .7rem !important; font-size: .72rem !important; }
}
/* Desktop: hide the standalone phone icon (number lives in the drawer + footer) */
@media (min-width: 880px) {
  .nav__phone { display: none; }
}

/* Brand sub-line ("Jamaican Bar & Grill · Houston") — show on tablets+ */
@media (min-width: 600px) {
  .nav__brand .brand__sub { display: block; font-size: .58rem; }
}

/* [LOGOMARK] real Cool Runnings logo mark in nav + drawer (s86) */
.nav__brand--with-mark { flex-direction: row !important; align-items: center; gap: 12px; }
.nav__brand-mark {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 8px; display: block; object-fit: contain;
}
.nav__brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
@media (max-width: 879px) {
  .nav__brand-mark { width: 38px; height: 38px; }
}
.drawer__brand--with-mark { display: inline-flex !important; align-items: center; gap: 10px; }
.drawer__brand-mark { width: 40px; height: 40px; border-radius: 8px; display: block; object-fit: contain; }
/* end [LOGOMARK] */

/* ============================================================
   s86 — full horizontal logo image in header (replaces text wordmark).
   Lives next to the round mark inside .nav__brand--with-mark.
   ============================================================ */
.nav__brand-logo {
  display: block;
  height: 44px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .nav__brand-logo { height: 40px; }
}
@media (max-width: 720px) {
  .nav__brand-logo { height: 34px; }
}
@media (max-width: 480px) {
  .nav__brand-logo { height: 28px; }
}
.drawer__brand-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-top: 8px;
  object-fit: contain;
}

/* ============================================================
   COMPLIANCE FOOTER — added 2026-05-20
   Extends .footer with form, social, notice, legal bar,
   and cookie banner. Uses existing brand variables.
   ============================================================ */

.footer__heading--center { text-align: center; }
.footer__muted { color: rgba(255,248,232,0.55); font-weight: 400; font-size: 0.9em; }
.footer__small { font-size: 0.85rem; color: rgba(255,248,232,0.5); margin: 12px 0 0; }

.footer__address {
  font-style: normal;
  margin: 0 0 12px;
  color: var(--paper);
  line-height: 1.55;
}
.footer__line { margin: 0 0 8px; }

.footer__hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: rgba(255,248,232,0.78);
  font-size: 0.92rem;
}
.footer__hours li:last-child { border-bottom: none; }
.footer__hours li span:first-child { color: var(--paper); font-weight: 600; }

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav li { padding: 4px 0; }

.footer__col--brand { min-width: 0; }
.footer__col--form { min-width: 0; }

/* Larger form column on desktop */
@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr !important;
  }
}

/* Contact form */
.cr-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .cr-form__row { grid-template-columns: 1fr; }
}
.cr-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cr-form__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.02em;
  font-family: var(--f-body);
}
.cr-form__req { color: var(--gold); }
.cr-form__muted { color: rgba(255,248,232,0.5); font-weight: 400; }

.cr-form__field input,
.cr-form__field select,
.cr-form__field textarea {
  background: rgba(255,248,232,0.06);
  border: 1px solid rgba(255,248,232,0.18);
  color: var(--paper);
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.cr-form__field textarea {
  resize: vertical;
  min-height: 96px;
}
.cr-form__field input:focus,
.cr-form__field select:focus,
.cr-form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,248,232,0.1);
  box-shadow: 0 0 0 3px rgba(255,196,0,0.35);
}
.cr-form__field input::placeholder,
.cr-form__field textarea::placeholder {
  color: rgba(255,248,232,0.4);
}

.cr-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cr-form__consent { margin-top: 4px; }
.cr-form__checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,248,232,0.75);
  line-height: 1.5;
  cursor: pointer;
}
.cr-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.cr-form__checkbox a {
  color: var(--gold);
  text-decoration: underline;
}

.cr-form__btn {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--f-signage);
  transition: background-color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
  margin-top: 4px;
}
.cr-form__btn:hover { background: var(--red-deep); border-color: var(--red-deep); }
.cr-form__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,0.55);
}
.cr-form__btn:active { transform: translateY(1px); }
.cr-form__btn:disabled { background: #6a6a6a; border-color: #6a6a6a; cursor: not-allowed; }
.cr-form__btn-loading { display: none; }
.cr-form__btn.is-loading .cr-form__btn-label { display: none; }
.cr-form__btn.is-loading .cr-form__btn-loading { display: inline; }

.cr-form__status {
  margin: 4px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.cr-form__status.is-success { color: #7ee8a8; }
.cr-form__status.is-error { color: #ff8a8a; }

/* Social row */
.footer__connect {
  padding: 32px 0 24px;
  text-align: center;
  border-top: 1px solid rgba(255,248,232,0.1);
  margin-top: 32px;
}
.footer__connect .footer__heading { margin-bottom: 18px; }

/* Allergen + accessibility */
.footer__notice {
  font-size: 0.82rem;
  color: rgba(255,248,232,0.6);
  padding: 16px 0 28px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,248,232,0.1);
  line-height: 1.55;
}
.footer__notice p { margin: 0 0 8px; }
.footer__notice strong { color: var(--paper); font-weight: 600; }
.footer__notice a { color: var(--gold); text-decoration: underline; }

/* Legal bar in footer__bottom */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.85rem;
}
.footer__legal a,
.footer__legal .footer__linkbtn {
  color: rgba(255,248,232,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,196,0,0.5);
}
.footer__legal a:hover,
.footer__legal a:focus-visible,
.footer__legal .footer__linkbtn:hover,
.footer__legal .footer__linkbtn:focus-visible {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
.footer__legal a:focus-visible,
.footer__legal .footer__linkbtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,0.5);
  border-radius: 2px;
}
.footer__pipe { color: rgba(255,248,232,0.35); }
.footer__linkbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

/* Cookie banner */
.cr-cookie {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9999;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  padding: 20px 22px;
  font-family: var(--f-body);
  border: 2px solid var(--green-deep);
}
@media (min-width: 720px) {
  .cr-cookie { max-width: 520px; inset: auto 24px 24px auto; }
}
.cr-cookie[hidden] { display: none; }
.cr-cookie__h {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--f-signage);
}
.cr-cookie__p {
  font-size: 0.88rem;
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cr-cookie__p a { color: var(--green-deep); }
.cr-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cr-cookie__btn {
  flex: 1 1 auto;
  padding: 10px 14px;
  border-radius: 6px;
  border: 2px solid var(--green-deep);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--f-body);
  transition: background-color 0.15s ease;
}
.cr-cookie__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,0.55);
}
.cr-cookie__btn--primary {
  background: var(--green-deep);
  color: #fff;
}
.cr-cookie__btn--primary:hover { background: var(--green); }
.cr-cookie__btn--secondary {
  background: #fff;
  color: var(--green-deep);
}
.cr-cookie__btn--secondary:hover { background: #f0f6f2; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .footer *,
  .cr-cookie * { transition: none !important; animation: none !important; }
}

/* Visible focus ring everywhere in footer */
.footer a:focus-visible,
.footer button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,196,0,0.5);
  border-radius: 2px;
}

