@charset "utf-8";
/* ============================================================
   THE LAZY OYSTER  |  ThatsKrispy  |  v4
   Palette: Teal #42A7C6 | Yellow #F5DB5C | White #ffffff
   Fonts: Fredoka (headings/body) + Pacifico (script accent)
   Design: White base, teal type, yellow pops — matching orig
   ============================================================ */

/* -- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #2a2a2a;
  background: #ffffff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* -- TOKENS ------------------------------------------------ */
:root {
  --teal:        #42A7C6;
  --teal-dark:   #2e8daa;
  --teal-light:  #e8f5fa;
  --teal-dim:    rgba(66,167,198,0.12);
  --yellow:      #F5DB5C;
  --yellow-dark: #d9be30;
  --white:       #ffffff;
  --off-white:   #f8f8f8;
  --border:      #e8e8e8;
  --text:        #2a2a2a;
  --text-soft:   #555555;
  --text-muted:  #888888;
  --r-sm:        6px;
  --r-md:        12px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-pill:      100px;
  --sh:          0 2px 12px rgba(0,0,0,0.07);
  --sh-md:       0 6px 24px rgba(0,0,0,0.10);
  --sh-lg:       0 12px 40px rgba(0,0,0,0.13);
  --ease:        0.25s ease;
  --max-w:       1200px;
  --pad-x:       clamp(20px, 5vw, 60px);
  --section-y:   clamp(64px, 8vw, 110px);
}

/* -- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--teal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--teal); }
p  { color: var(--text-soft); font-size: 1rem; }

.script {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
h2.script { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--teal); }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* -- LAYOUT ------------------------------------------------ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section    { padding: var(--section-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }

/* -- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(66,167,198,0.35);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
  font-weight: 700;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--text);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* -- SKIP LINK / SR-ONLY ----------------------------------- */
.skip-link {
  position: absolute; top: -100%; left: 20px;
  background: var(--teal); color: white;
  padding: 10px 18px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; font-size: 0.9rem; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* -- NAVBAR ------------------------------------------------ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.navbar__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: 72px;
  gap: 24px;
}
.navbar__logo img { height: 52px; width: auto; }
.navbar__links {
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
.navbar__links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text); position: relative;
  transition: color var(--ease); padding: 4px 0;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width var(--ease);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--teal); }
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; }
.navbar__right {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.navbar__icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal); color: white;
  border: none; transition: background var(--ease); text-decoration: none;
}
.navbar__icon-btn:hover { background: var(--teal-dark); }
.navbar__icon-btn svg { width: 17px; height: 17px; }
.navbar__order {
  background: var(--teal); color: white;
  padding: 9px 20px; border-radius: var(--r-pill);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.06em; border: none; transition: background var(--ease);
  text-decoration: none; white-space: nowrap;
}
.navbar__order:hover { background: var(--teal-dark); }
.navbar__hamburger {
  display: none; background: none; border: none;
  color: var(--text); padding: 4px;
}
.navbar__hamburger svg { width: 24px; height: 24px; }
.navbar__mobile {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px var(--pad-x) 24px;
}
.navbar__mobile a {
  font-size: 1rem; font-weight: 500; color: var(--text);
  padding: 11px 0; border-bottom: 1px solid var(--border);
  display: block; transition: color var(--ease);
}
.navbar__mobile a:last-child { border-bottom: none; margin-top: 12px; text-align: center; }
.navbar__mobile a:hover { color: var(--teal); }
.navbar__mobile.open { display: flex; }
@media (max-width: 820px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__icon-btn { display: none; }
}
@media (max-width: 480px) {
  .navbar__inner { height: 62px; }
  .navbar__logo img { height: 44px; }
}

/* -- HERO (home — short banner like original) -------------- */
.hero {
  position: relative;
  height: clamp(420px, 52vw, 620px);
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.loaded .hero__img { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  /* Option A: strong left panel fade — text side dark, food side stays bright */
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.62) 30%,
      rgba(0,0,0,0.28) 55%,
      rgba(0,0,0,0.04) 75%,
      transparent 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.22) 0%,
      transparent 40%,
      rgba(0,0,0,0.14) 100%
    );
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  /* Constrain text to left 55% so it stays in the dark zone */
  padding: 0 clamp(24px, 6vw, 72px);
  max-width: 56%;
}
.hero__content h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.05;
  text-shadow: 0 2px 3px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  max-width: 100%;
}
.hero__content p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 100%;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  margin-bottom: 24px;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
/* Mobile: full-width content + stronger overlay since left-panel doesn't work narrow */
@media (max-width: 600px) {
  .hero__overlay {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.22) 40%,
      rgba(0,0,0,0.60) 100%
    );
  }
  .hero__content {
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: clamp(32px, 8vw, 64px);
  }
}

/* Page-interior hero (short banner like original inner pages) */
.page-hero {
  position: relative;
  height: clamp(340px, 40vw, 500px);
  overflow: hidden;
}
.page-hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 var(--pad-x) 36px;
  max-width: var(--max-w); margin: 0 auto;
}
.page-hero__caption h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.page-hero__caption p  { color: rgba(255,255,255,0.88); margin-top: 8px; font-size: 1.05rem; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }

/* -- INTRO SPLIT (home + about) ---------------------------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.intro-split--reverse { }
.intro-split__img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.intro-split__img img { width: 100%; height: 460px; object-fit: cover; }
.intro-split__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--teal); color: white;
  border-radius: 50%; width: 80px; height: 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; font-family: 'Fredoka', sans-serif;
  font-weight: 700; line-height: 1.1;
  box-shadow: var(--sh-md);
}
.intro-split__badge strong { font-size: 1.5rem; display: block; }
.intro-split__badge span  { font-size: 0.56rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; padding: 0 6px; }
.intro-split__text { display: flex; flex-direction: column; gap: 14px; }
.intro-split__text h2 { color: var(--teal); }
.intro-split__text p { margin: 0; }
@media (max-width: 720px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-split__img img { height: 300px; }
}

/* -- PRODUCT GRID (home — 4 tall portrait cards) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;   /* shorter than 2/3 — fits comfortably in a 5-col single row */
  isolation: isolate;
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.22) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 20px;
  transition: background var(--ease);
}
.product-card:hover .product-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.32) 55%, transparent 100%); }
.product-card__label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 5px;
}
.product-card__title {
  font-family: 'Fredoka', sans-serif; font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.product-card .btn { align-self: flex-start; font-size: 0.75rem; padding: 9px 18px; }
/* tablet 860px: 3-col, last 2 centered via 6-col trick */
@media (max-width: 860px) {
  .product-grid { grid-template-columns: repeat(6, 1fr); }
  .product-grid .product-card:nth-child(1) { grid-column: span 2; }
  .product-grid .product-card:nth-child(2) { grid-column: span 2; }
  .product-grid .product-card:nth-child(3) { grid-column: span 2; }
  .product-grid .product-card:nth-child(4) { grid-column: 2 / span 2; }
  .product-grid .product-card:nth-child(5) { grid-column: 4 / span 2; }
}
/* mobile 560px: 2-col, 5th card full-width centered */
@media (max-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid .product-card:nth-child(1),
  .product-grid .product-card:nth-child(2),
  .product-grid .product-card:nth-child(3),
  .product-grid .product-card:nth-child(4) { grid-column: span 1; }
  .product-grid .product-card:nth-child(5) { grid-column: span 2; aspect-ratio: 5/2; }
}
@media (max-width: 420px) {
  .product-card { aspect-ratio: 4/3; }
  .product-grid .product-card:nth-child(5) { aspect-ratio: 5/2; }
}

/* -- BAND (full-bleed photo section) ----------------------- */
.band {
  position: relative; overflow: hidden;
  padding: clamp(64px, 9vw, 110px) var(--pad-x);
  color: #fff;
}
.band__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.band__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
}
.band__content {
  position: relative; z-index: 1;
  max-width: 660px;
}
.band__content h2 { color: #fff; margin-bottom: 12px; }
.band__content p  { color: rgba(255,255,255,0.88); margin-bottom: 26px; }
.band--center .band__content { margin: 0 auto; text-align: center; }
.band--center .band__content .btn { margin: 0 auto; }

/* -- WHY CHOOSE US split ---------------------------------- */
.why-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.why-lead h2 { margin-bottom: 16px; }
.why-lead p  { margin-bottom: 12px; }
.why-points  { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.why-point   { display: flex; gap: 16px; align-items: flex-start; }
.why-point__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-point__icon svg { width: 20px; height: 20px; color: var(--text); }
.why-point h4 { color: var(--teal); margin-bottom: 4px; }
.why-point p  { margin: 0; font-size: 0.96rem; }
@media (max-width: 720px) { .why-split { grid-template-columns: 1fr; } }

/* -- TICKER / PARTNER LOGOS -------------------------------- */
.ticker-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
}
.ticker-wrap { overflow: hidden; }
.ticker-track {
  display: inline-flex; align-items: center; gap: 52px;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
}
.ticker-track img {
  height: 38px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s;
}
.ticker-track img:hover { filter: none; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* -- NEWSLETTER -------------------------------------------- */
.newsletter {
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  text-align: center;
  background: #fff;
  position: relative; overflow: hidden;
}
.newsletter__inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 2; }
.newsletter h2 { color: var(--teal); margin-bottom: 6px; }
.newsletter p  { margin-bottom: 26px; }
.newsletter__mascot {
  position: absolute; right: 0; bottom: 0;
  width: clamp(140px, 16vw, 220px);
  pointer-events: none;
}
.newsletter-form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1 1 180px; min-width: 150px;
  padding: 12px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-family: 'Fredoka', sans-serif; font-size: 1rem;
  color: var(--text); background: #fff;
  transition: border-color var(--ease);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--teal); }

/* -- FOOTER ------------------------------------------------ */
.footer {
  border-top: 1px solid var(--border);
  padding: 22px var(--pad-x);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
  background: #fff;
}
.footer__copy { font-size: 0.82rem; color: var(--text-muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--teal); }

/* -- FORMS ------------------------------------------------- */
.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sh-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-family: 'Fredoka', sans-serif; font-size: 0.98rem;
  color: var(--text); background: #fff;
  appearance: none; -webkit-appearance: none;
  transition: border-color var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { grid-column: 1 / -1; margin-top: 6px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-status {
  grid-column: 1 / -1; font-size: 0.9rem; font-weight: 600;
  padding: 12px 16px; border-radius: var(--r-sm);
  display: none;
}
.form-status.success { background: #edfbf1; color: #2d7a4a; border: 1px solid #a3d9b5; display: block; }
.form-status.error   { background: #fff0f0; color: #c0392b; border: 1px solid #f5b7b1; display: block; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* -- SCROLL REVEAL ----------------------------------------- */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.reveal  { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible  { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HOME PAGE SPECIFICS
   ============================================================ */

/* Stats strip — yellow bar below hero */
.stats-bar {
  background: var(--yellow);
  padding: 18px var(--pad-x);
}
.stats-bar__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: clamp(24px, 5vw, 64px); flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1; color: var(--text);
}
.stat__label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.55); margin-top: 2px;
}

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */

/* Commitment section — image left, text right */
.commitment-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.commitment-split__img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
}
.commitment-split__img img { width: 100%; height: 400px; object-fit: cover; }
.commitment-split__text { display: flex; flex-direction: column; gap: 14px; }
.commitment-split__text h2 { color: var(--teal); }
.commitment-split__text p { margin: 0; }
@media (max-width: 720px) {
  .commitment-split { grid-template-columns: 1fr; }
  .commitment-split__img img { height: 280px; }
}

/* Partner logos (static grid for about page) */
.partner-grid {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  padding: 0 var(--pad-x);
}
.partner-grid img { height: 36px; width: auto; object-fit: contain; filter: var(--img-filter, grayscale(1) opacity(0.55)); }

/* ============================================================
   DELIVERY PAGE SPECIFICS
   ============================================================ */

.delivery-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px); align-items: center;
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max-w); margin: 0 auto;
}
.delivery-step--alt { direction: rtl; }
.delivery-step--alt > * { direction: ltr; }
.delivery-step__img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
}
.delivery-step__img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.delivery-step__body { display: flex; flex-direction: column; gap: 14px; }
.delivery-step__num {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow-dark);
}
.delivery-step__body h2 { color: var(--teal); }
.delivery-step__body p  { margin: 0; }
@media (max-width: 720px) {
  .delivery-step, .delivery-step--alt { grid-template-columns: 1fr; direction: ltr; }
  .delivery-step__img img { height: 260px; }
}

/* ============================================================
   FAQ PAGE SPECIFICS
   ============================================================ */

.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 36px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--teal); }
.faq-item--featured { grid-column: 1 / -1; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; width: 100%; text-align: left;
  padding: 16px 20px; background: none; border: none;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.97rem;
  color: var(--text); transition: color var(--ease);
}
.faq-q:hover { color: var(--teal); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal); transition: transform var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-q--featured { background: var(--teal); color: #fff; }
.faq-q--featured:hover { color: #fff; }
.faq-q--featured svg { color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 20px; color: var(--text-soft); font-size: 0.97rem;
  transition: max-height 0.38s ease, padding 0.28s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 20px 18px; }
@media (max-width: 660px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item--featured { grid-column: 1; }
}

/* ============================================================
   CONTACT PAGE SPECIFICS
   ============================================================ */

/* CONTACT CARDS ROW — full width 3 col */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w); margin: 0 auto;
}
.contact-card {
  background: var(--yellow);
  border-radius: var(--r-lg); padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center; text-decoration: none; color: var(--text);
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: var(--sh);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.contact-card__icon {
  width: 60px; height: 60px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-card__icon svg { width: 24px; height: 24px; color: #fff; }
.contact-card__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
}
.contact-card__val {
  font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.3;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: var(--off-white);
  padding: var(--section-y) var(--pad-x);
}
.contact-form-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
}
.contact-form-left { display: flex; flex-direction: column; }
.contact-form-img {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl);
  position: sticky; top: 100px;
}
.contact-form-img img { width: 100%; height: 560px; object-fit: cover; display: block; }

/* CONTACT RESPONSIVE */
@media (max-width: 820px) {
  .contact-cards-row { grid-template-columns: 1fr; gap: 14px; max-width: 480px; }
  .contact-form-inner { grid-template-columns: 1fr; }
  .contact-form-img { position: static; display: none; } /* hide image on mobile to avoid scroll pain */
}
@media (min-width: 481px) and (max-width: 820px) {
  .contact-cards-row { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}

/* ============================================================
   EVENTS PAGE SPECIFICS
   ============================================================ */

/* Hero — same banner style as rest of site */
.ev-hero {
  position: relative;
  height: clamp(420px, 52vw, 620px);
  overflow: hidden;
}
.ev-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ev-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
}
.ev-hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 var(--pad-x) clamp(32px, 5vw, 56px);
  width: 100%;
}
.ev-hero__content .eyebrow { color: var(--yellow); }
.ev-hero__content h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); margin-bottom: 14px; }
.ev-hero__content p  { color: rgba(255,255,255,0.88); max-width: 48ch; margin-bottom: 22px; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }

/* "How we work" steps */
.ev-how { padding: var(--section-y) var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.ev-how__head { max-width: 56ch; margin-bottom: clamp(28px, 4vw, 48px); }
.ev-how__head h2 { margin-bottom: 10px; }
.ev-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ev-step {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 28px 22px; border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ev-step:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.ev-step__num {
  font-family: 'Fredoka', sans-serif; font-size: 2rem;
  font-weight: 700; color: var(--yellow-dark); line-height: 1; margin-bottom: 12px;
}
.ev-step h3 { font-size: 1.1rem; color: var(--teal); margin-bottom: 8px; }
.ev-step p  { font-size: 0.93rem; margin: 0; }
@media (max-width: 760px) { .ev-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ev-steps { grid-template-columns: 1fr; } }

/* What we bring */
.ev-features {
  background: var(--off-white);
  padding: var(--section-y) var(--pad-x);
}
.ev-features__inner { max-width: var(--max-w); margin: 0 auto; }
.ev-features__head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.ev-features__head h2 { margin-bottom: 10px; }
.ev-features__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px); align-items: center;
}
.ev-features__list { display: flex; flex-direction: column; gap: 20px; }
.ev-feature { display: flex; gap: 16px; align-items: flex-start; }
.ev-feature__dot {
  width: 10px; height: 10px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%; margin-top: 7px;
}
.ev-feature h4 { color: var(--teal); margin-bottom: 4px; font-size: 1rem; }
.ev-feature p  { font-size: 0.93rem; margin: 0; }
.ev-features__img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
}
.ev-features__img img { width: 100%; height: 400px; object-fit: cover; display: block; }
@media (max-width: 720px) {
  .ev-features__grid { grid-template-columns: 1fr; }
  .ev-features__img img { height: 260px; }
}

/* Stats proof */
.ev-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; padding: var(--section-y) var(--pad-x);
  max-width: var(--max-w); margin: 0 auto;
}
.ev-stat {
  text-align: center; padding: 28px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh);
  transition: transform var(--ease);
}
.ev-stat:hover { transform: translateY(-3px); }
.ev-stat strong {
  display: block; font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--teal); line-height: 1;
}
.ev-stat span {
  display: block; margin-top: 6px;
  font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 700px) { .ev-stats { grid-template-columns: repeat(2, 1fr); } }

/* Booking form section */
.ev-book {
  background: var(--off-white);
  padding: var(--section-y) var(--pad-x);
}
.ev-book__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 6vw, 64px); align-items: start;
}
.ev-book__intro h2 { margin-bottom: 12px; }
.ev-book__intro p  { margin-bottom: 16px; }
.ev-book__points { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.ev-book__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.96rem; font-weight: 500; color: var(--text-soft);
}
.ev-book__points li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
@media (max-width: 820px) {
  .ev-book__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   ADA / CONSENT
   ============================================================ */
.tlo-consent-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  max-width: 680px; width: calc(100% - 32px);
  background: #1a1a1a; color: #fff;
  border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  z-index: 8800; display: flex; flex-direction: column; gap: 10px;
}
.tlo-consent-banner.hidden { display: none; }
.tlo-consent__text { font-size: 0.88rem; color: rgba(255,255,255,0.82); }
.tlo-consent__text a { color: var(--teal); text-decoration: underline; }
.tlo-consent__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.tlo-btn {
  padding: 8px 16px; border-radius: var(--r-sm);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid transparent; transition: all 0.2s;
}
.tlo-btn--accept { background: var(--teal); color: #fff; border-color: var(--teal); }
.tlo-btn--accept:hover { background: var(--teal-dark); }
.tlo-btn--reject { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.tlo-btn--reject:hover { border-color: #fff; color: #fff; }
.tlo-btn--customize { background: transparent; color: rgba(255,255,255,0.6); border-color: transparent; }
.tlo-btn--customize:hover { color: #fff; }

/* ADA WIDGET — matches js/a11y-consent.js class names */
.tlo-a11y-toggle {
  position: fixed; bottom: 20px; right: 20px; z-index: 8600;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(66,167,198,0.45);
  transition: background var(--ease), transform var(--ease);
  overflow: hidden; /* contain any rogue SVG overflow */
  flex-shrink: 0;
}
.tlo-a11y-toggle:hover { background: var(--teal-dark); transform: scale(1.07); }
.tlo-a11y-toggle svg {
  width: 22px !important; height: 22px !important;
  min-width: 22px; min-height: 22px;
  max-width: 22px; max-height: 22px;
  display: block; flex-shrink: 0;
}

.tlo-a11y-menu {
  position: fixed; bottom: 82px; right: 20px; z-index: 8700;
  width: 280px; background: #fff;
  border-radius: var(--r-lg); padding: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  overflow: hidden;
}
.tlo-a11y-menu[hidden] { display: none; }
.tlo-a11y-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--teal); color: #fff;
}
.tlo-a11y-menu__head strong { font-size: 0.95rem; font-weight: 700; }
.tlo-a11y-close {
  background: none; border: none; color: #fff;
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 2px;
}
.tlo-a11y-menu__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 16px;
}
.tlo-a11y-opt {
  padding: 9px 6px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: transparent;
  font-family: 'Fredoka', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--text); cursor: pointer; transition: all 0.2s; text-align: center;
}
.tlo-a11y-opt:hover { border-color: var(--teal); color: var(--teal); }
.tlo-a11y-opt.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }
.tlo-a11y-reset {
  display: block; width: calc(100% - 32px); margin: 0 16px 16px;
  padding: 9px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: transparent;
  font-family: 'Fredoka', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: all 0.2s; text-align: center;
}
.tlo-a11y-reset:hover { border-color: var(--teal); color: var(--teal); }

/* A11y feature states */
.tlo-a11y-bigtext body, .tlo-a11y-bigtext p, .tlo-a11y-bigtext li { font-size: 1.15em !important; }
.tlo-a11y-readable, .tlo-a11y-readable body,
.tlo-a11y-readable h1, .tlo-a11y-readable h2,
.tlo-a11y-readable h3, .tlo-a11y-readable p { font-family: Verdana, sans-serif !important; }
.tlo-a11y-contrast { filter: contrast(1.3); }
.tlo-a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; }
.tlo-a11y-cursor, .tlo-a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpath d='M6 2l22 13-10 2-5 11z' fill='%23222' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 4 2, auto !important;
}
.tlo-a11y-nomotion *, .tlo-a11y-nomotion *::before, .tlo-a11y-nomotion *::after {
  animation: none !important; transition: none !important;
}
.tlo-reading-guide {
  position: fixed; left: 0; right: 0; height: 36px; margin-top: -18px;
  background: rgba(245,219,92,0.18); border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow); pointer-events: none; z-index: 8400;
}

@media (max-width: 480px) {
  .tlo-a11y-toggle { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .tlo-a11y-menu { right: 16px; bottom: 76px; width: calc(100vw - 32px); }
}
@media (max-width: 560px) { .tlo-consent__actions { width: 100%; } .tlo-consent__actions .tlo-btn { flex: 1; } }

/* -- SECTION DIVIDER / SPACING HELPERS --------------------- */
.section-pad { padding: var(--section-y) var(--pad-x); }
.bg-offwhite { background: var(--off-white); }
.bg-teal { background: var(--teal); }
.bg-yellow { background: var(--yellow); }

/* contact form grid handled by .contact-form-inner responsive above */

/* -- PROSE PAGE (privacy, accessibility) ------------------- */
.prose-page { max-width: 720px; }
.prose-page h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin: 36px 0 10px; color: var(--teal); }
.prose-page p  { margin-bottom: 16px; line-height: 1.7; }
.prose-page ul { list-style: disc; padding-left: 24px; }
.prose-page ul li { margin-bottom: 8px; color: var(--text-soft); line-height: 1.6; }

/* -- PAGE HERO caption positioning fix --------------------- */
.page-hero { position: relative; }
.page-hero__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: 100%;
}

/* -- Delivery step num on band sections -------------------- */
.band .delivery-step__num {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 8px;
}

/* -- Footer: ensure wrapping on mobile -------------------- */
@media (max-width: 480px) {
  .footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   v4.1 LAYOUT & IMAGE FIXES
   ============================================================ */

/* Hero: push content higher so it doesn't fight the food subject */
.hero__content {
  justify-content: flex-end;
  padding-bottom: clamp(40px, 6vw, 80px);
}

/* Product grid gap set inline on .product-grid rule */

/* Product card btn: slightly smaller on 5-col */
.product-grid .btn { font-size: 0.72rem; padding: 9px 16px; }

/* product-grid-section spacing handled by social-strip below it */

/* Delivery step num labels: color fix for band context */
.band .delivery-step__num { color: var(--yellow); }

/* Intro split gap tweak */
.intro-split { gap: clamp(32px, 5vw, 60px); }

/* Section containers: more vertical breathing room at top/bottom */
.section { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }

/* Band: slightly taller */
.band { padding: clamp(80px, 11vw, 130px) var(--pad-x); }

/* Product card title on 5-col: slightly smaller */
@media (min-width: 901px) {
  .product-card__title { font-size: clamp(1rem, 1.6vw, 1.3rem); }
}

/* Stats bar: more padding */
.stats-bar { padding: 22px var(--pad-x); }

/* Delivery step image height on desktop */
@media (min-width: 721px) {
  .delivery-step__img img { height: 420px; }
}

/* Page hero caption better spacing */
.page-hero__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 var(--pad-x) 44px;
}

/* About commitment section image taller */
.commitment-split__img img { height: 460px; }

/* Contact split image */
.contact-split__img img { height: 500px; }

/* Newsletter section: less crowded */
.newsletter { padding: clamp(64px, 8vw, 100px) var(--pad-x); }

/* ============================================================
   MOBILE RESPONSIVENESS FIXES
   ============================================================ */

/* Navbar: prevent overflow on very small screens */
@media (max-width: 360px) {
  .navbar__order { padding: 8px 14px; font-size: 0.8rem; }
  .navbar__inner { padding: 0 16px; }
}

/* Hero: scale down text on small mobile */
@media (max-width: 480px) {
  .hero__content h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero__content p  { font-size: 0.95rem; }
  .hero__btns { flex-direction: column; gap: 10px; }
  .hero__btns .btn { width: 100%; justify-content: center; }
}

/* Stats bar: 2-col on small mobile */
@media (max-width: 480px) {
  .stats-bar__inner { gap: 16px 32px; }
  .stat__num { font-size: 1.6rem; }
}

/* Intro split: ensure image doesn't overflow */
@media (max-width: 720px) {
  .intro-split__img img { height: 280px; }
  .intro-split__badge { width: 68px; height: 68px; }
  .intro-split__badge strong { font-size: 1.2rem; }
}

/* Bands: tighten padding on mobile */
@media (max-width: 480px) {
  .band { padding: 56px var(--pad-x); }
  .band__content h2 { font-size: 1.6rem; }
}

/* Why split: already 1-col on mobile, just fix spacing */
@media (max-width: 720px) {
  .why-point__icon { width: 38px; height: 38px; flex-shrink: 0; }
}

/* Section padding on mobile */
@media (max-width: 480px) {
  .section { padding: 48px 20px; }
}

/* Page hero caption on mobile */
@media (max-width: 480px) {
  .page-hero__caption { padding: 0 20px 28px; }
  .page-hero__caption h1 { font-size: 1.8rem; }
}

/* Events page: steps 2-col on small mobile */
@media (max-width: 460px) {
  .ev-steps { grid-template-columns: 1fr; }
  .ev-stats  { grid-template-columns: 1fr 1fr; }
}

/* Delivery steps: stack on mobile */
@media (max-width: 720px) {
  .delivery-step__img img { height: 240px; }
}

/* FAQ grid: single col on mobile already — ensure answers don't overflow */
@media (max-width: 660px) {
  .faq-a { font-size: 0.92rem; }
}

/* Events booking form */
@media (max-width: 820px) {
  .ev-book__inner { grid-template-columns: 1fr; }
}

/* Form elements: prevent zoom on iOS (font-size >= 16px) */
.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input {
  font-size: max(16px, 0.98rem); /* prevents iOS auto-zoom */
}

/* Newsletter mascot: hide on very small screens to avoid overlap */
@media (max-width: 480px) {
  .newsletter__mascot { display: none; }
  .newsletter { text-align: center; }
}

/* Footer: stack on very small mobile */
@media (max-width: 400px) {
  .footer { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* Ticker: slightly smaller logos on mobile */
@media (max-width: 560px) {
  .ticker-track img { height: 28px; }
  .ticker-track { gap: 36px; }
}

/* ============================================================
   SOCIAL PROOF / INFO STRIP (home — between grid and delivery)
   ============================================================ */
.social-strip {
  background: var(--teal);
  padding: clamp(28px, 4vw, 44px) var(--pad-x);
}
.social-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.social-strip__label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 8px;
}
.social-strip__label svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-strip__copy {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem; margin: 0;
  max-width: 36ch;
}
.social-strip__badges {
  display: flex; gap: 20px; flex-shrink: 0;
}
.social-badge {
  text-align: center;
  padding: 12px 18px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.2);
}
.social-badge strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.social-badge span {
  display: block; margin-top: 4px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.social-strip__cta { flex-shrink: 0; background: #fff; color: var(--teal); border-color: #fff; }
.social-strip__cta:hover { background: var(--yellow); color: var(--text); border-color: var(--yellow); }

@media (max-width: 900px) {
  .social-strip__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .social-strip__copy { max-width: 100%; }
  .social-strip__label { justify-content: center; }
  .social-strip__badges { justify-content: center; flex-wrap: wrap; }
  .social-strip__cta { width: 100%; justify-content: center; max-width: 280px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .social-badge { padding: 10px 14px; }
  .social-badge strong { font-size: 1.1rem; }
}

.footer__copy a { font-size: inherit; opacity: 0.6; }
.footer__copy a:hover { opacity: 1; color: var(--teal); }

/* ============================================================
   WEEKLY OYSTER BANNER  |  "Fresh this week" announcement bar
   ============================================================ */
.oyster-banner {
  position: relative;
  width: 100%;
  background: #1d6e88;               /* darker brand teal — AA contrast w/ white */
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
  border-bottom: 3px solid var(--yellow);
}
.oyster-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9px 52px 9px var(--pad-x);  /* extra right pad clears close btn */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
}
.oyster-banner__label {
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.oyster-banner__mark { margin-right: 6px; }
.oyster-banner__list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 8px;
}
.oyster-banner__item { white-space: nowrap; }
.oyster-banner__item strong { font-weight: 600; }
.oyster-banner__reg {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--yellow);
  vertical-align: 1px;
}
.oyster-banner__dot { color: var(--yellow); opacity: 0.85; }
.oyster-banner__cta {
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity var(--ease);
}
.oyster-banner__cta:hover,
.oyster-banner__cta:focus-visible { opacity: 0.82; }
.oyster-banner__close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--r-pill);
  color: #ffffff;
  opacity: 0.85;
  transition: background var(--ease), opacity var(--ease);
}
.oyster-banner__close svg { width: 17px; height: 17px; }
.oyster-banner__close:hover { opacity: 1; background: rgba(255,255,255,0.16); }
.oyster-banner__close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  opacity: 1;
}
@media (max-width: 600px) {
  .oyster-banner__inner {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.86rem;
    gap: 4px 10px;
  }
  .oyster-banner__cta { width: 100%; }   /* CTA drops to its own line, easy tap */
}
