:root {
  --ink: #10231b;
  --forest: #073c2a;
  --forest-dark: #04281c;
  --green: #49ae2c;
  --green-bright: #70d43d;
  --mint: #e7f8df;
  --paper: #ffffff;
  --cream: #f7f5f0;
  --muted: #5d6d65;
  --line: #dfe6e1;
  --shadow: 0 22px 60px rgba(12, 53, 37, .14);
  --radius: 1.35rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url("assets/jacobs-logo-clean.webp");
  background-position: center, center 8rem;
  background-repeat: no-repeat;
  background-size: auto, min(76vw, 52rem) auto;
  background-attachment: fixed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}
.brand-flash {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.brand-flash img {
  width: min(58vw, 25rem);
  border-radius: 50%;
  clip-path: circle(49% at 50% 50%);
  filter: drop-shadow(0 18px 35px rgba(7, 60, 42, .16));
  opacity: 0;
}
.brand-flash.show { opacity: 1; visibility: visible; }
.brand-flash.show.intro img { animation: logo-rush-intro 1.2s cubic-bezier(.17, .7, .2, 1) both; }
.brand-flash.quick { background: rgba(255, 255, 255, .48); }
.brand-flash.show.quick img { width: min(42vw, 15rem); animation: logo-rush-quick .5s cubic-bezier(.17, .7, .2, 1) both; }

@keyframes logo-rush-intro {
  0% { opacity: 0; transform: scale(.08); }
  22% { opacity: 1; }
  68% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(2.45); }
}
@keyframes logo-rush-quick {
  0% { opacity: 0; transform: scale(.12); }
  25% { opacity: 1; }
  65% { opacity: .95; }
  100% { opacity: 0; transform: scale(2.8); }
}
button, a { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .98; letter-spacing: -.045em; }
h1, h2 { font-weight: 850; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .5rem;
  left: .5rem;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  color: white;
  background: var(--forest);
  border-radius: .5rem;
}
.skip-link:focus { transform: translateY(0); }

.launch-bar {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .5rem 1rem;
  color: #ebffe3;
  background: linear-gradient(90deg, #022e20, #0a6f3a 48%, #022e20);
  box-shadow: inset 0 -2px 0 rgba(112, 212, 61, .7);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-align: center;
}
.pulse {
  width: .55rem;
  height: .55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 .3rem rgba(112, 212, 61, .16);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 6.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: .65rem clamp(1.1rem, 5vw, 5rem);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 900;
}
.nav-left a {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  padding: .6rem .9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  letter-spacing: -.01em;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-left a:hover,
.nav-left a:focus-visible,
.nav-left a.is-current { color: var(--forest); background: var(--mint); border-color: #c4e8b6; }
.menu-toggle {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-content: center;
  gap: .3rem;
  padding: 0;
  color: white;
  background: var(--forest);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.menu-toggle:hover { background: var(--green); transform: scale(1.05); }
.menu-toggle span { width: 1.15rem; height: 2px; display: block; background: currentColor; border-radius: 1rem; }
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  width: max-content;
}
.brand-centered { justify-self: center; }
.brand-centered span { display: none; }
.brand-lockup.brand-centered img { width: 5.15rem; height: 5.15rem; }
.brand-lockup img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(49% at 50% 50%);
  background: transparent;
}
.brand-lockup span { display: grid; line-height: 1.02; }
.brand-lockup strong { font-size: 1.05rem; letter-spacing: .045em; }
.brand-lockup small {
  margin-top: .24rem;
  color: #3b9223;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.order-link,
.cart-trigger {
  justify-self: end;
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .65rem 1rem;
  color: white;
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 850;
}
.header-actions { justify-self: end; display: flex; align-items: center; gap: .55rem; }
.sign-button {
  min-height: 2.8rem;
  padding: .58rem 1rem;
  color: var(--forest);
  background: white;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 850;
}
.sign-button:hover { color: white; background: var(--forest); }
.order-link:hover,
.cart-trigger:hover { background: #0b4b35; }
.cart-trigger span {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  color: var(--forest);
  background: var(--green-bright);
  border-radius: 50%;
  font-size: .75rem;
}

.site-menu-backdrop {
  position: fixed;
  z-index: 89;
  inset: 0;
  background: rgba(0, 20, 13, .68);
  backdrop-filter: blur(5px);
}
.site-menu-drawer {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  width: min(92vw, 28rem);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  color: white;
  background-color: var(--forest-dark);
  background-image: linear-gradient(180deg, rgba(4, 40, 28, .3), rgba(4, 40, 28, .98) 58%), url("assets/protein-bowl-hero.webp");
  background-size: cover;
  background-position: center top;
  box-shadow: 24px 0 80px rgba(0, 20, 13, .42);
  transform: translateX(-105%);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}
.site-menu-drawer::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -6rem;
  width: 24rem;
  height: 24rem;
  background: url("assets/jacobs-logo-clean.webp") center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.site-menu-drawer.is-open { transform: translateX(0); }
.close-site-menu {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  color: white;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}
.drawer-brand { position: relative; z-index: 1; min-height: 17rem; display: flex; flex-direction: column; justify-content: flex-end; }
.drawer-brand img { width: 8.5rem; margin-bottom: .8rem; clip-path: circle(49% at 50% 50%); filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .28)); }
.drawer-brand p { margin: 0; color: #dcf6d2; font-size: 1.05rem; font-weight: 750; }
.drawer-links { position: relative; z-index: 1; display: grid; margin: 1.3rem 0; border-top: 1px solid rgba(255, 255, 255, .24); }
.drawer-links a,
.drawer-links button {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0 .55rem;
  padding: 1rem .2rem;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  text-align: left;
}
.drawer-links span { grid-row: 1 / 3; padding-top: .2rem; color: var(--green-bright); font-size: .74rem; font-weight: 900; }
.drawer-links strong { font-size: 1.25rem; letter-spacing: -.025em; }
.drawer-links small { color: #bdd4ca; font-size: .74rem; }
.drawer-links a:hover strong,
.drawer-links button:hover strong { color: var(--green-bright); }
.drawer-offer { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 .7rem; margin-top: auto; padding: 1rem; color: var(--forest); background: var(--green-bright); border-radius: 1.1rem; }
.drawer-offer strong { grid-row: 1 / 3; font-size: 2rem; line-height: .9; letter-spacing: -.07em; }
.drawer-offer span { font-size: .75rem; font-weight: 800; }
.drawer-offer a { font-size: .8rem; font-weight: 900; text-decoration: underline; }
body.menu-open { overflow: hidden; }

.delivery-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.8rem, 3vw, 2.5rem);
  min-height: 4rem;
  padding: .75rem clamp(1rem, 5vw, 5rem);
  color: white;
  background: #0b8b69;
  text-align: center;
  font-size: .88rem;
}
.delivery-ribbon strong { font-size: 1rem; }
.delivery-ribbon span { color: #e7fff6; }

.wellness-marquee {
  overflow: hidden;
  color: #eaffdf;
  background: var(--forest-dark);
  border-bottom: 2px solid var(--green-bright);
}
.wellness-track {
  width: max-content;
  display: flex;
  gap: 4rem;
  padding: .62rem 0;
  animation: wellness-scroll 24s linear infinite;
}
.wellness-track span { font-size: .76rem; font-weight: 950; letter-spacing: .13em; white-space: nowrap; }
@keyframes wellness-scroll { to { transform: translateX(-50%); } }

.eyebrow {
  margin: 0 0 .8rem;
  color: #3d9724;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #bff5a8; }
.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: .82rem 1.35rem;
  cursor: pointer;
  font-weight: 850;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--forest); }
.button-primary:hover { background: #0b4b35; }
.button-light { color: var(--forest); background: white; }
.button-light:hover { background: var(--mint); }
.button-outline { color: var(--forest); border: 2px solid var(--forest); background: transparent; }
.button-outline:hover { color: white; background: var(--forest); }

.home-hero {
  position: relative;
  min-height: 46rem;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 5rem) clamp(1.2rem, 6vw, 6rem) clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(112, 212, 61, .16), transparent 27rem),
    rgba(255, 255, 255, .9);
}
.floating-order-wrap {
  position: absolute;
  z-index: 8;
  top: 1.15rem;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -1rem) scale(.7);
  pointer-events: none;
  isolation: isolate;
}
.floating-order-wrap.is-ready {
  animation: order-cta-reveal .62s cubic-bezier(.16, .9, .26, 1.25) both;
  pointer-events: auto;
}
.cta-logo-motion {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 21rem;
  height: 9.5rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-logo-motion img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12rem;
  max-width: none;
  transform: translate(-50%, -50%);
}
.cta-logo-ghost { opacity: .18; filter: grayscale(.25) drop-shadow(0 12px 20px rgba(7, 60, 42, .22)); }
.cta-logo-arm { opacity: .42; filter: saturate(1.05) drop-shadow(0 8px 12px rgba(7, 60, 42, .2)); }
.cta-logo-arm-left {
  clip-path: polygon(0 3%, 43% 3%, 40% 48%, 0 57%);
  transform-origin: 44% 45%;
  animation: logo-left-flex 1.7s ease-in-out infinite;
}
.cta-logo-arm-right {
  clip-path: polygon(57% 3%, 100% 3%, 100% 57%, 60% 48%);
  transform-origin: 56% 45%;
  animation: logo-right-flex 1.7s ease-in-out infinite;
}
.floating-order-button {
  position: relative;
  z-index: 2;
  min-width: 12.5rem;
  min-height: 4.25rem;
  display: grid;
  place-content: center;
  padding: .65rem 2.2rem;
  color: white;
  background: var(--green);
  border: .22rem solid white;
  border-radius: 999px;
  box-shadow: 0 13px 34px rgba(7, 60, 42, .28), 0 0 0 .45rem rgba(112, 212, 61, .18);
  text-align: center;
  animation: order-heartbeat 1.7s ease-in-out infinite;
  isolation: isolate;
}
.floating-order-button::before,
.floating-order-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -.35rem;
  border: 2px solid rgba(73, 174, 44, .55);
  border-radius: inherit;
  opacity: 0;
  animation: order-ripple 1.7s ease-out infinite;
}
.floating-order-button::after { animation-delay: .55s; }
.floating-order-button span { font-size: 1.1rem; font-weight: 950; letter-spacing: .055em; line-height: 1; }
.floating-order-button:hover,
.floating-order-button:focus-visible { background: var(--forest); animation-play-state: paused; transform: scale(1.06); }
.floating-order-button:hover::before,
.floating-order-button:hover::after { animation-play-state: paused; }
@keyframes order-cta-reveal {
  0% { opacity: 0; transform: translate(-50%, -1rem) scale(.7); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes order-heartbeat {
  0%, 38%, 100% { transform: scale(1); box-shadow: 0 13px 34px rgba(7, 60, 42, .28), 0 0 0 .45rem rgba(112, 212, 61, .18); }
  10% { transform: scale(1.075); box-shadow: 0 16px 42px rgba(7, 60, 42, .34), 0 0 0 .7rem rgba(112, 212, 61, .2); }
  19% { transform: scale(1); }
  27% { transform: scale(1.045); }
}
@keyframes order-ripple {
  0%, 22% { opacity: .7; transform: scale(.98); }
  70%, 100% { opacity: 0; transform: scale(1.24, 1.5); }
}
@keyframes logo-left-flex {
  0%, 38%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  10% { transform: translate(-53%, -53%) rotate(-7deg) scale(1.08); }
  19% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  27% { transform: translate(-52%, -52%) rotate(-4deg) scale(1.045); }
}
@keyframes logo-right-flex {
  0%, 38%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  10% { transform: translate(-47%, -53%) rotate(7deg) scale(1.08); }
  19% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  27% { transform: translate(-48%, -52%) rotate(4deg) scale(1.045); }
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 43rem;
  padding: 0;
}
.hero-brand-mark { width: clamp(7rem, 12vw, 10rem); margin-bottom: 1.1rem; border-radius: 50%; clip-path: circle(49% at 50% 50%); filter: drop-shadow(0 13px 20px rgba(7, 60, 42, .12)); }
.home-hero h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3.3rem, 6.4vw, 6.8rem);
}
.home-hero h1 span { color: var(--green); }
.home-hero-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-order-button { min-width: 10.5rem; gap: .7rem; background: var(--green); }
.hero-order-button:hover { background: #389820; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin-top: 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.hero-benefits span { display: grid; }
.hero-benefits strong { color: var(--forest); font-size: .86rem; }
.hero-food-showcase { position: relative; min-height: 38rem; }
.hero-food { position: absolute; overflow: hidden; margin: 0; background: white; border: .55rem solid white; box-shadow: 0 25px 70px rgba(7, 60, 42, .2); }
.hero-food img { width: 100%; height: 100%; object-fit: cover; }
.hero-food-primary { inset: 0 5% 6% 10%; border-radius: 3.5rem 1.5rem 3.5rem 1.5rem; transform: rotate(1.2deg); }
.hero-food-salmon { z-index: 2; left: 0; bottom: 0; width: 36%; height: 31%; border-radius: 1.5rem; transform: rotate(-5deg); }
.hero-food-pancakes { z-index: 2; top: 2%; right: 0; width: 30%; height: 29%; border-radius: 50%; transform: rotate(4deg); }
.hero-order-badge { position: absolute; z-index: 3; right: 4%; bottom: 2%; width: 7.2rem; height: 7.2rem; display: grid; place-content: center; color: white; background: var(--forest); border: .45rem solid white; border-radius: 50%; box-shadow: var(--shadow); text-align: center; transform: rotate(-7deg); }
.hero-order-badge strong { color: var(--green-bright); font-size: 1.35rem; line-height: 1; text-transform: uppercase; }
.hero-order-badge span { font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.text-link { color: var(--forest); font-size: .9rem; font-weight: 850; }
.text-link:hover { color: #3b9723; }

.featured-slider {
  position: relative;
  min-height: 38rem;
  display: grid;
  grid-template-columns: minmax(20rem, .84fr) minmax(28rem, 1.16fr);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: white;
  background: var(--forest);
  border-top: .65rem solid var(--green-bright);
}
.featured-slider::before {
  content: "";
  position: absolute;
  left: -9rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  border: 4.5rem solid rgba(112, 212, 61, .08);
  border-radius: 50%;
}
.featured-copy { position: relative; z-index: 2; align-self: center; padding: clamp(3rem, 6vw, 6rem); }
.slide-count { margin-bottom: 1.5rem; color: #a7c5b8; font-size: .8rem; font-weight: 850; letter-spacing: .13em; }
.slide-count span { color: var(--green-bright); font-size: 1.1rem; }
.featured-copy h2 { max-width: 34rem; margin-bottom: 1.1rem; font-size: clamp(3rem, 5.2vw, 6rem); }
.featured-description { max-width: 31rem; color: #c9ddd4; font-size: 1rem; }
.featured-macros { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0; }
.featured-macros span { min-width: 6.2rem; display: grid; padding: .65rem .8rem; color: #cce0d7; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); border-radius: .85rem; font-size: .7rem; }
.featured-macros strong { color: white; font-size: 1.05rem; }
.featured-price { display: flex; align-items: center; gap: .7rem; margin: .6rem 0 1.4rem; }
.featured-price del { color: #ffc3c3; text-decoration-color: #ff4848; text-decoration-thickness: 3px; font-size: 1rem; font-weight: 850; }
.featured-price em { padding: .24rem .52rem; color: white; background: #d52323; border-radius: 999px; font-size: .68rem; font-style: normal; font-weight: 900; }
.featured-price strong { color: var(--green-bright); font-size: 2.1rem; line-height: 1; }
.featured-order { color: var(--forest); background: var(--green-bright); }
.featured-order:hover { background: white; }
.featured-stage { position: relative; min-height: 38rem; overflow: hidden; background: #eaf8e4; border-radius: 4rem 0 0 4rem; }
.featured-stage::before { content: ""; position: absolute; inset: 7% 7%; background: rgba(73, 174, 44, .22); border-radius: 50%; transform: rotate(-8deg); }
.featured-stage img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .28s ease, transform .45s cubic-bezier(.2, .8, .2, 1); }
.featured-stage.is-changing img { opacity: 0; transform: translateX(4rem) scale(.94); }
.featured-wordmark { position: absolute; z-index: 1; left: 4%; bottom: -2%; color: rgba(7, 60, 42, .09); font-size: clamp(5rem, 11vw, 11rem); font-weight: 950; letter-spacing: -.09em; line-height: .8; }
.featured-stamp { position: absolute; z-index: 3; right: 6%; top: 7%; width: 7.2rem; height: 7.2rem; display: grid; place-content: center; color: white; background: var(--green); border: .35rem solid white; border-radius: 50%; box-shadow: var(--shadow); text-align: center; transform: rotate(7deg); }
.featured-stamp strong { font-size: 1.15rem; text-transform: uppercase; }
.featured-stamp span { font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.slider-arrow { position: absolute; z-index: 4; top: 50%; width: 3.4rem; height: 3.4rem; display: grid; place-content: center; padding: 0; color: var(--forest); background: white; border: 0; border-radius: 50%; box-shadow: 0 10px 30px rgba(7, 60, 42, .22); cursor: pointer; font-size: 1.3rem; transform: translateY(-50%); transition: transform .2s, color .2s, background .2s; }
.slider-arrow:hover { color: white; background: var(--green); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-controls { position: absolute; z-index: 5; right: clamp(2rem, 6vw, 6rem); bottom: 1.4rem; display: flex; align-items: center; gap: .65rem; padding: .45rem .7rem; background: rgba(255, 255, 255, .92); border-radius: 999px; box-shadow: var(--shadow); }
.slider-pause { width: 2rem; height: 2rem; display: grid; place-content: center; padding: 0; color: var(--forest); background: var(--mint); border: 0; border-radius: 50%; cursor: pointer; font-size: .7rem; font-weight: 900; }
.slider-dots { display: flex; align-items: center; gap: .45rem; }
.slider-dot { width: .55rem; height: .55rem; padding: 0; background: #aabdb4; border: 0; border-radius: 50%; cursor: pointer; transition: width .2s, background .2s; }
.slider-dot.is-active { width: 1.6rem; background: var(--green); border-radius: 999px; }

.offer-strip {
  display: grid;
  grid-template-columns: 1.2fr .85fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 6vw, 6rem);
  color: white;
  background: var(--green);
}
.offer-strip h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); }
.offer-strip > p { max-width: 28rem; margin: 0; font-size: 1.05rem; }
.offer-strip > p strong { font-size: 1.35rem; }
.offer-strip del { color: #ffe5e5; text-decoration-color: #b51515; text-decoration-thickness: 3px; }

.referral-offer {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(22rem, 1.25fr) minmax(17rem, .75fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 6vw, 6rem);
  color: white;
  background: var(--forest-dark);
}
.referral-offer::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 31rem;
  height: 31rem;
  background: url("assets/jacobs-logo-clean.webp") center / contain no-repeat;
  opacity: .06;
  pointer-events: none;
}
.referral-badge { position: relative; z-index: 1; width: clamp(9rem, 15vw, 13rem); height: clamp(9rem, 15vw, 13rem); display: grid; place-content: center; color: var(--forest); background: var(--green-bright); border: .5rem solid white; border-radius: 50%; box-shadow: 0 0 0 .7rem rgba(112, 212, 61, .14); text-align: center; transform: rotate(-7deg); }
.referral-badge strong { font-size: clamp(3.2rem, 6vw, 5.5rem); line-height: .78; letter-spacing: -.09em; }
.referral-badge span { font-size: 1rem; font-weight: 950; letter-spacing: .18em; }
.referral-copy { position: relative; z-index: 1; }
.referral-copy h2 { max-width: 46rem; margin-bottom: 1.2rem; font-size: clamp(3rem, 5.4vw, 5.8rem); }
.referral-copy > p:last-child { max-width: 43rem; margin: 0; color: #c8ded4; font-size: 1rem; }
.referral-copy > p strong { color: white; }
.referral-action { position: relative; z-index: 1; display: grid; gap: .3rem; padding: 1.35rem; color: var(--forest); background: white; border-radius: 1.25rem; box-shadow: var(--shadow); }
.referral-action > span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.referral-action del { margin-bottom: .65rem; color: #a32929; text-decoration-thickness: 2px; font-size: 1rem; font-weight: 850; }
.referral-action > strong { margin-bottom: 1rem; color: var(--green); font-size: 1.7rem; }
.referral-button { width: 100%; color: white; background: var(--forest); }
.referral-button:hover { background: var(--green); }

.quick-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(1rem, 6vw, 6rem);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid var(--line);
}
.quick-values article {
  min-height: 15rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}
.quick-values article:first-child { border-left: 1px solid var(--line); }
.quick-values span { color: var(--green); font-size: .8rem; font-weight: 850; }
.quick-values h3 { margin: 2rem 0 .7rem; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.quick-values p { max-width: 22rem; margin: 0; color: var(--muted); }

.story-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 7vw, 7rem);
  background: rgba(247, 245, 240, .91);
}
.story-mark {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: white;
  border-radius: 50% 50% 2rem 50%;
  box-shadow: var(--shadow);
}
.story-mark img { width: min(100%, 30rem); }
.story-copy h2 { max-width: 48rem; margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5vw, 5.5rem); }
.story-copy > p:not(.eyebrow) { max-width: 44rem; margin-bottom: 2rem; color: var(--muted); font-size: 1.08rem; }

.register-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 7vw, 7rem);
  background: rgba(255, 255, 255, .9);
}
.register-section h2 { max-width: 50rem; margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.register-copy p { max-width: 37rem; color: var(--muted); font-size: 1.05rem; }

.delivery-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 7vw, 7rem);
  color: white;
  background: var(--forest);
}
.delivery-section h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.delivery-copy > p { max-width: 38rem; color: #c1d4cb; font-size: 1.05rem; }
.delivery-status { display: flex; align-items: center; gap: .7rem; margin-top: 1.5rem; }
.light-pulse { background: white; }
.delivery-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: 1.3rem; }
.delivery-detail-grid article { display: grid; padding: .9rem; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: .8rem; }
.delivery-detail-grid strong { color: white; font-size: .95rem; }
.delivery-detail-grid span { color: #bfd5ca; font-size: .76rem; }

.menu-hero {
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.2rem, 7vw, 7rem) 1.5rem;
  text-align: center;
  background: #f6f3ef;
}
.menu-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.5rem); }

.category-section {
  padding: 1.5rem clamp(1rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem);
  background: #f6f3ef;
}
.compact-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.compact-heading h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.2rem); }
.compact-heading > p { max-width: 35rem; margin: 0; color: var(--muted); }
.category-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; max-width: 76rem; margin: 0 auto; }
.category-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-rows: 14rem auto;
  color: var(--ink);
  background: white;
  border: 1px solid #ebe6e1;
  border-radius: .85rem;
  box-shadow: 0 2px 7px rgba(30, 42, 35, .1);
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.category-tile img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  transition: transform .3s ease;
}
.category-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(30, 42, 35, .13); }
.category-tile:hover img { transform: scale(1.025); }
.category-tile.is-active { border-color: var(--green); box-shadow: 0 0 0 3px var(--green), 0 10px 24px rgba(30, 42, 35, .13); }
.tile-overlay {
  display: grid;
  align-content: center;
  gap: .35rem;
  min-height: 5.4rem;
  padding: 1rem 1.2rem;
  background: white;
}
.tile-overlay strong { font-size: clamp(1.1rem, 1.7vw, 1.45rem); letter-spacing: -.03em; }
.tile-overlay small { color: var(--muted); font-size: .78rem; }

.menu-section {
  scroll-margin-top: 6rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  color: var(--ink);
  background: #f6f3ef;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 1.15rem;
  max-width: 92rem;
  margin: 0 auto;
}
.catalog-sidebar {
  position: sticky;
  top: 6.8rem;
  align-self: start;
  display: grid;
  gap: .2rem;
  padding: .7rem;
  background: white;
  border: 1px solid #e8e3dc;
  border-radius: .85rem;
  box-shadow: 0 2px 10px rgba(30, 42, 35, .07);
}
.sidebar-category {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: center;
  gap: .75rem;
  min-height: 3.9rem;
  padding: .4rem .55rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: .7rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: .88rem;
  font-weight: 820;
  transition: background .2s ease, color .2s ease;
}
.sidebar-category img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: .55rem;
}
.sidebar-category:hover { background: #f3f7ef; }
.sidebar-category.is-active { color: var(--forest); background: #e7f5df; }
.catalog-content { min-width: 0; }
.menu-section .eyebrow.light { color: #3d9724; }
.menu-section .section-heading {
  grid-template-columns: 1fr;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}
.section-heading h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.section-heading > p { max-width: 44rem; margin: 0; color: var(--muted); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.menu-grid[hidden],
.menu-notes[hidden],
.option-group[hidden] { display: none; }
.meal-card {
  min-height: 23rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10.5rem;
  grid-template-areas:
    "top image"
    "title image"
    "description image"
    "macros macros"
    "note note"
    "footer footer";
  grid-template-rows: auto auto minmax(3.8rem, auto) auto auto auto;
  gap: .7rem 1rem;
  padding: 1.15rem;
  background: white;
  border: 1px solid #e8e3dc;
  border-radius: .9rem;
  box-shadow: 0 2px 9px rgba(30, 42, 35, .08);
  transition: box-shadow .25s, transform .25s;
}
.meal-card:hover { box-shadow: 0 12px 28px rgba(30, 42, 35, .13); transform: translateY(-3px); }
.meal-top { grid-area: top; display: flex; justify-content: flex-end; gap: .6rem; align-items: center; margin: 0; }
.tag { padding: .32rem .6rem; color: #2f8120; background: #edf8e8; border: 1px solid #cfe8c5; border-radius: 999px; font-size: .65rem; white-space: nowrap; }
.meal-card h3 { grid-area: title; min-height: 0; margin: 0; font-size: 1.35rem; line-height: 1.08; }
.meal-card > p:not(.serving-note) { grid-area: description; min-height: 0; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.meal-image { grid-area: image; align-self: center; width: 100%; height: 9.5rem; object-fit: contain; border-radius: .7rem; }
#main-meals-grid .meal-image { height: 11.25rem; transform: scale(1.03); transform-origin: center; filter: drop-shadow(0 14px 18px rgba(7, 60, 42, .14)); }
.wrap-card .meal-image { height: 10.5rem; filter: drop-shadow(0 12px 14px rgba(7, 60, 42, .12)); }
.sandwich-card .meal-image,
.soup-card .meal-image,
.side-card .meal-image,
.snack-card .meal-image,
.special-card .meal-image { height: 10.5rem; filter: drop-shadow(0 12px 14px rgba(7, 60, 42, .12)); }
.soup-card .meal-image,
.side-card .meal-image,
.snack-card .meal-image,
.special-card .meal-image { object-fit: cover; border-radius: 1rem; }
.signature-tag { color: white; background: var(--forest); border-color: var(--forest); }
.macro-row { grid-area: macros; display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin: 0; }
.macro-row span { display: grid; min-width: 0; padding: .58rem; color: #5f7369; background: #f1f7ed; border-radius: .62rem; font-size: .64rem; }
.macro-row strong { color: var(--forest); font-size: .95rem; }
.serving-note { grid-area: note; margin: 0; color: #74857c; font-size: .68rem; }
.card-footer { grid-area: footer; display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: .15rem; padding-top: .85rem; border-top: 1px solid #e8e3dc; }
.price-stack { display: grid; gap: .08rem; }
.price-stack span,
.dialog-price span { display: flex; align-items: center; gap: .42rem; }
.price-stack del,
.dialog-price del { color: #b32626; text-decoration-color: #d61f1f; text-decoration-thickness: 2px; font-size: .8rem; font-weight: 800; }
.price-stack em,
.dialog-price em { padding: .28rem .52rem; color: white; background: #d91524; border-radius: 999px; box-shadow: 0 4px 12px rgba(217, 21, 36, .3); font-size: .66rem; font-style: normal; font-weight: 950; letter-spacing: .055em; animation: discount-pop 2.2s ease-in-out infinite; }
.price-stack strong { color: #198b20; font-size: 1.45rem; font-weight: 950; }
@keyframes discount-pop { 0%, 80%, 100% { transform: scale(1); } 88% { transform: scale(1.09); } }
.add-button { padding: .65rem .85rem; color: var(--forest); background: var(--green-bright); border: 0; border-radius: 999px; cursor: pointer; font-size: .75rem; font-weight: 900; }
.add-button:hover { background: #90ec63; }
.menu-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.3rem 0 0; color: #718079; font-size: .74rem; }
.menu-notes p { margin: 0; }
.supplement-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.supplement-hub[hidden],
.supplement-products[hidden],
.supplement-product-grid[hidden],
.drinks-grid[hidden] { display: none; }
.supplement-category-card {
  min-height: 26rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: 18rem 1fr;
  padding: 0;
  color: var(--ink);
  background: white;
  border: 1px solid #e8e3dc;
  border-radius: 1rem;
  box-shadow: 0 3px 12px rgba(30, 42, 35, .09);
  cursor: pointer;
  text-align: left;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.supplement-category-card:hover {
  transform: translateY(-4px);
  border-color: #aedb9f;
  box-shadow: 0 16px 34px rgba(7, 60, 42, .15);
}
.supplement-category-card img {
  width: 100%;
  height: 18rem;
  object-fit: contain;
  padding: 1rem;
  background: linear-gradient(145deg, #fff, #eef7e9);
  transition: transform .28s ease;
}
.supplement-category-card:hover img { transform: scale(1.035); }
.supplement-category-card > span {
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1.15rem 1.25rem;
}
.supplement-category-card small {
  color: #3d9724;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.supplement-category-card strong { font-size: 1.55rem; }
.supplement-category-card em { color: var(--muted); font-size: .78rem; font-style: normal; font-weight: 760; }
.supplement-products { display: grid; gap: 1rem; }
.supplement-back {
  justify-self: start;
  padding: .68rem 1rem;
  color: var(--forest);
  background: white;
  border: 1px solid #cfdcd4;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: .76rem;
  font-weight: 900;
}
.supplement-back:hover { background: #eaf7e4; }
.supplement-card .meal-image,
.drink-card .meal-image { height: 11rem; object-fit: contain; filter: drop-shadow(0 12px 14px rgba(7, 60, 42, .1)); }
.supplement-card:not(.tub-card) .meal-image { width: calc(100% + .5rem); margin-left: -.25rem; border-radius: .8rem; }
.protein-bar-card {
  grid-template-areas:
    "top image"
    "title image"
    "description image"
    "macros macros"
    "note note"
    "facts facts"
    "footer footer";
}
.protein-bar-card .meal-image { height: 8.8rem; }
.packaged-drink-card .meal-image { height: 11.5rem; }
.house-drink-card { border-color: rgba(69, 181, 45, .34); box-shadow: inset 0 4px 0 var(--green-bright); }
.house-shake-card .meal-image,
.coffee-card .meal-image { height: 12.5rem; object-fit: cover; border-radius: .9rem; filter: none; }
.nutrition-facts {
  grid-area: facts;
  overflow: hidden;
  border: 1px solid #dce7dd;
  border-radius: .75rem;
  background: #f7fbf5;
}
.nutrition-facts summary {
  padding: .7rem .8rem;
  color: var(--forest);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  list-style-position: inside;
}
.nutrition-facts[open] summary { border-bottom: 1px solid #dce7dd; }
.nutrition-facts img {
  display: block;
  width: 100%;
  max-height: 30rem;
  object-fit: contain;
  padding: .65rem;
  background: white;
}
.house-protein-cookie { border-color: rgba(69, 181, 45, .48); box-shadow: inset 0 4px 0 var(--green-bright); }
.jacobs-special { order: -10; border-color: rgba(69, 181, 45, .62); box-shadow: inset 0 5px 0 var(--green-bright), 0 4px 16px rgba(7, 60, 42, .09); }
.jacobs-special .signature-tag,
.jacobs-special .meal-top .tag { color: white; background: var(--forest); border-color: var(--forest); }
.house-nutrition-body { padding: .85rem; color: var(--forest); background: white; }
.house-nutrition-body strong { display: block; margin-bottom: .3rem; font-size: .82rem; }
.house-nutrition-body p { margin: 0 0 .55rem; color: var(--ink); font-size: .78rem; line-height: 1.45; }
.house-nutrition-body small { display: block; color: var(--muted); font-size: .68rem; line-height: 1.45; }
.tub-card .meal-image,
.drink-card .meal-image { background: linear-gradient(145deg, #fff, #f0f8ec); }
.supplement-product-grid:has(.tub-card:only-child) { grid-template-columns: minmax(0, 40rem); }
.category-empty { min-height: 25rem; display: grid; place-content: center; justify-items: center; padding: 3rem; background: white; border: 1px solid #e8e3dc; border-radius: .9rem; text-align: center; }
.category-empty[hidden] { display: none; }
.category-empty span { margin-bottom: 1rem; padding: .42rem .75rem; color: var(--forest); background: var(--green-bright); border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.category-empty h3 { max-width: 40rem; margin-bottom: .8rem; font-size: clamp(2rem, 5vw, 4rem); }
.category-empty p { max-width: 34rem; margin: 0; color: var(--muted); }

footer {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.1rem, 6vw, 6rem);
  color: white;
  background: var(--forest-dark);
}
.footer-top,
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-top { padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, .17); }
.footer-brand img { width: 3rem; height: 3rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem 1.2rem; color: #d5e4dd; font-size: .76rem; font-weight: 700; }
.footer-links a:hover,
.footer-links button:hover { color: var(--green-bright); }
.footer-links button { padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font-weight: inherit; }
.footer-bottom > p { max-width: 35rem; margin: 0; color: #9fb8ad; font-size: .72rem; }
.footer-meta { font-size: .75rem !important; white-space: nowrap; }
.social-links { display: flex; gap: .55rem; }
.social-links button { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; color: white; background: transparent; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; cursor: pointer; font-size: .82rem; font-weight: 900; }
.social-links button:nth-child(1) { background: radial-gradient(circle at 30% 105%, #ffd600 0 25%, #ff7a00 38%, #ff0169 58%, #d300c5 78%, #7638fa 100%); border-color: transparent; }
.social-links button:nth-child(2) { background: #1877f2; border-color: transparent; }
.social-links button:nth-child(3) { background: #ff0033; border-color: transparent; }
.social-links button:hover { transform: translateY(-2px) scale(1.05); filter: brightness(1.08); }
.social-links svg { width: 1.25rem; height: 1.25rem; overflow: visible; }
.social-links svg rect,
.social-links svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-links svg .social-dot { fill: currentColor; stroke: none; }
.social-links svg path { fill: currentColor; }
.social-links svg .social-play { fill: currentColor; }

.customizer {
  width: min(94vw, 50rem);
  max-height: 92dvh;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}
.register-dialog {
  width: min(94vw, 34rem);
  max-height: 92dvh;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}
.register-dialog::backdrop { background: rgba(1, 20, 14, .66); backdrop-filter: blur(4px); }
.register-form { display: grid; gap: .9rem; padding: clamp(1.2rem, 4vw, 2rem); }
.register-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.register-header h2 { margin: 0; font-size: clamp(1.8rem, 5vw, 2.6rem); }
.close-register { width: 2.5rem; height: 2.5rem; flex: 0 0 auto; background: white; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1; }
.register-form > p { margin: 0; color: var(--muted); }
.register-form > label:not(.consent) { display: grid; gap: .35rem; font-size: .8rem; font-weight: 800; }
.register-form input[type="email"],
.register-form input[type="tel"],
.register-form input[type="text"] { width: 100%; min-height: 3rem; padding: .7rem .8rem; background: white; border: 1px solid var(--line); border-radius: .7rem; font: inherit; }
.register-form fieldset { display: flex; gap: 1.2rem; margin: 0; padding: .8rem; background: white; border: 1px solid var(--line); border-radius: .7rem; }
.register-form legend { padding: 0 .3rem; font-size: .78rem; font-weight: 800; }
.register-form fieldset label,
.consent { display: flex; align-items: center; gap: .45rem; font-size: .8rem; }
.register-form > small { color: #6e7c75; font-size: .7rem; }
.register-form .referred-toggle { grid-template-columns: auto 1fr; align-items: center; gap: .7rem; padding: .8rem; background: #f0faeb; border: 1px solid #cde9c1; border-radius: .8rem; cursor: pointer; }
.referred-toggle input { width: 1.1rem; height: 1.1rem; accent-color: var(--green); }
.referred-toggle span { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.referred-toggle small { color: var(--green); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.referrer-fields { display: grid; gap: .3rem; padding: .8rem; background: white; border: 1px solid var(--line); border-radius: .8rem; }
.referrer-fields[hidden] { display: none; }
.referrer-fields label { display: grid; gap: .35rem; font-size: .8rem; font-weight: 800; }
.referrer-fields > small { color: var(--muted); font-size: .7rem; }
.member-referral-code { grid-template-columns: 1fr auto; align-items: center; gap: .15rem .8rem; padding: .85rem 1rem; color: white; background: var(--forest); border-radius: .85rem; }
.member-referral-code:not([hidden]) { display: grid; }
.member-referral-code span { color: #bfdbcf; font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.member-referral-code strong { grid-row: 2; color: var(--green-bright); font-size: 1.3rem; letter-spacing: .06em; }
.member-referral-code button { grid-column: 2; grid-row: 1 / 3; padding: .55rem .75rem; color: var(--forest); background: white; border: 0; border-radius: 999px; cursor: pointer; font-size: .7rem; font-weight: 900; }
.registration-status { min-height: 1.25rem; color: #27751c !important; font-size: .78rem; font-weight: 750; }
.customizer::backdrop { background: rgba(1, 20, 14, .66); backdrop-filter: blur(4px); }
.customizer-shell { position: relative; isolation: isolate; display: grid; gap: 1.2rem; overflow: hidden; padding: clamp(1.2rem, 4vw, 2rem); }
.customizer-shell > *:not(.customizer-art) { position: relative; z-index: 1; }
.customizer-art { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.customizer-food-art { position: absolute; top: -4%; right: -5%; width: 72%; height: 48%; object-fit: contain; opacity: .1; filter: saturate(.7); mask-image: linear-gradient(130deg, #000 0 35%, transparent 78%); }
.customizer-logo-art { position: absolute; left: -3rem; bottom: 2rem; width: 22rem; opacity: .035; transform: rotate(-9deg); }
.customizer-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.customizer-header h2 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); }
.close-customizer,
.close-cart { width: 2.5rem; height: 2.5rem; flex: 0 0 auto; background: white; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1; }
.option-group { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 0; padding: 0; border: 0; }
.option-group legend { grid-column: 1 / -1; width: 100%; margin-bottom: .45rem; font-size: 1.05rem; font-weight: 850; }
.portion-options,
.drink-size-options { grid-template-columns: repeat(3, 1fr); }
.coffee-choice-symbol { width: 3.75rem; height: 3.75rem; display: grid; place-items: center; flex: 0 0 auto; background: #eef8e9; border-radius: .8rem; font-size: 1.65rem; }
.compact-choice-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.choice-card,
.sauce-choice,
.visual-choice { background: white; border: 1px solid var(--line); border-radius: .85rem; }
.choice-card { display: flex; gap: .7rem; align-items: center; padding: .85rem; cursor: pointer; }
.choice-card:has(input:checked),
.sauce-choice:has(input:checked),
.visual-choice:has(input:checked) { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green), 0 8px 20px rgba(7, 60, 42, .08); }
.choice-card span,
.sauce-choice label span { display: grid; }
.choice-card small,
.sauce-choice small { color: var(--muted); font-size: .73rem; }
.sauce-group { grid-template-columns: 1fr; }
.sauce-choice { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .75rem .85rem; }
.sauce-choice label { display: flex; align-items: center; gap: .7rem; cursor: pointer; }
.two-choice-grid,
.topping-choice-grid,
.cheese-choice-grid { grid-column: 1 / -1; display: grid; gap: .65rem; }
.two-choice-grid { grid-template-columns: repeat(2, 1fr); }
.topping-choice-grid,
.cheese-choice-grid { grid-template-columns: repeat(2, 1fr); }
.visual-choice { position: relative; min-height: 6.4rem; display: grid; grid-template-columns: auto 4.4rem 1fr; align-items: center; gap: .55rem; overflow: hidden; padding: .48rem .65rem; cursor: pointer; }
.visual-choice > input { accent-color: var(--green); }
.visual-choice > span:last-child { min-width: 0; display: grid; }
.visual-choice small { color: var(--muted); font-size: .68rem; line-height: 1.3; }
.option-photo,
.option-logo { width: 4.4rem; height: 4.4rem; display: block; flex: 0 0 auto; border-radius: .7rem; object-fit: contain; background-repeat: no-repeat; filter: drop-shadow(0 5px 7px rgba(7, 60, 42, .12)); }
.option-logo { padding: .25rem; opacity: .28; }
.doneness-photo { background-size: 300% 100%; }
.doneness-salmon { background-image: url('assets/options/doneness-salmon.webp'); }
.doneness-beef { background-image: url('assets/options/doneness-beef.webp'); }
.doneness-chicken { background-image: url('assets/options/doneness-chicken.webp'); }
.doneness-ground { background-image: url('assets/options/doneness-ground.webp'); }
.doneness-steamed { background-image: url('assets/options/doneness-steamed.webp'); }
.doneness-deli { background-image: url('assets/options/doneness-deli.webp'); }
.doneness-tuna { background-image: url('assets/options/doneness-tuna.webp'); }
.doneness-steamed-salmon { background-image: url('assets/options/doneness-steamed-salmon.webp'); }
.doneness-fish { background-image: url('assets/options/doneness-fish.webp'); }
.doneness-hotdog { background-image: url('assets/options/doneness-hotdog.webp'); }
.doneness-sausage { background-image: url('assets/options/doneness-sausage.webp'); }
.option-position-1 { background-position: left center; }
.option-position-2 { background-position: center center; }
.option-position-3 { background-position: right center; }
.onion-photo,
.bread-photo { background-size: 200% 100%; }
.onion-photo { background-image: url('assets/options/onion-board.webp'); }
.onion-raw,
.bread-whole { background-position: left center; }
.onion-cooked,
.bread-white { background-position: right center; }
.bread-photo { background-image: url('assets/options/protein-bread-board.webp'); }
.sandwich-bread-photo { background-size: 200% 100%; }
.uses-burger-bun .sandwich-bread-photo { background-image: url('assets/options/burger-bun-board.webp'); }
.uses-hotdog-bun .sandwich-bread-photo { background-image: url('assets/options/hotdog-bun-board.webp'); }
.cheese-photo { background-image: url('assets/options/cheese-board.webp'); background-size: 400% 100%; }
.cheese-gouda { background-position: 0 center; }
.cheese-cheddar { background-position: 33.333% center; }
.cheese-mozzarella { background-position: 66.666% center; }
.cheese-swiss { background-position: 100% center; }
.salad-photo { background-image: url('assets/options/salad-toppings-board.webp'); background-size: 300% 100%; }
.salad-corn { background-position: left center; }
.salad-cucumber { background-position: center center; }
.salad-egg { background-position: right center; }
.texture-photo { background-image: url('assets/options/protein-chips-texture-board.webp'); background-size: 200% 100%; }
.texture-classic { background-position: left center; }
.texture-crunchy { background-position: right center; }
.texture-photo.uses-meal-photo { border: 1px solid rgba(7, 60, 42, .12); }
.texture-photo.extra-crisp-photo { filter: saturate(1.25) contrast(1.18) brightness(.88) drop-shadow(0 5px 7px rgba(7, 60, 42, .12)); }
.soup-parsley-choice { grid-column: 1 / -1; }
.sauce-photo { background-image: url('assets/options/sauces-board.webp'); background-size: 300% 200%; }
.sauce-yogurt { background-position: 0 0; }
.sauce-garlic { background-position: 50% 0; }
.sauce-hot { background-position: 100% 0; }
.sauce-red { background-position: 0 100%; }
.sauce-mustard { background-position: 50% 100%; }
.sauce-mayo { background-position: 100% 100%; }
.sauce-ranch,
.sauce-bbq,
.sauce-buffalo,
.sauce-honey-garlic { background-image: url('assets/options/new-sauces-board.webp'); background-size: 200% 200%; }
.sauce-ranch { background-position: left top; }
.sauce-bbq { background-position: right top; }
.sauce-buffalo { background-position: left bottom; }
.sauce-honey-garlic { background-position: right bottom; }
.wing-flavour-grid,
.supplement-flavour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.wing-flavour-photo { width: 4.4rem; height: 4.4rem; display: block; border-radius: .7rem; background-image: url('assets/options/wing-flavours-board.webp'); background-size: 300% 200%; background-repeat: no-repeat; filter: drop-shadow(0 5px 7px rgba(7, 60, 42, .12)); }
.wing-salt { background-position: 0 0; }
.wing-bold-bbq { background-position: 50% 0; }
.wing-honey { background-position: 100% 0; }
.wing-buffalo { background-position: 0 100%; }
.wing-hot { background-position: 50% 100%; }
.wing-classic-bbq { background-position: 100% 100%; }
.option-help { grid-column: 1 / -1; margin: .2rem 0 0; padding: .7rem .8rem; color: var(--forest); background: #eef9e9; border-radius: .7rem; font-size: .76rem; font-weight: 750; }
.supplement-flavour-choice img { object-fit: contain; background: white; }
.toast-choice-symbol { width: 4.4rem; height: 4.4rem; display: grid; place-items: center; border-radius: .7rem; color: var(--forest); background: linear-gradient(145deg, #f2d39b, #a96125); font-size: 2.4rem; box-shadow: inset 0 0 0 1px rgba(7, 60, 42, .12); }
.topping-photo { background-image: url('assets/options/wrap-toppings-board.webp'); background-size: 400% 200%; }
.topping-eggplant { background-position: 0 0; }
.topping-tomato { background-position: 33.333% 0; }
.topping-pickles { background-position: 66.666% 0; }
.topping-lettuce { background-position: 100% 0; }
.topping-parsley { background-position: 0 100%; }
.topping-cottage { background-position: 33.333% 100%; }
.topping-mozzarella { background-position: 66.666% 100%; }
.sauce-choice { padding: .45rem .65rem; }
.sauce-choice label { width: 100%; display: grid; grid-template-columns: auto 4rem 1fr; }
.sauce-choice .option-photo { width: 4rem; height: 4rem; }
.citrus-choice-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.citrus-choice { position: relative; min-height: 6.6rem; display: grid; grid-template-columns: 4.6rem 1fr; align-items: center; gap: .35rem; overflow: hidden; padding: .55rem .8rem .55rem .35rem; background: rgba(255, 255, 255, .93); border: 1px solid var(--line); border-radius: .9rem; cursor: pointer; }
.citrus-choice:has(input:checked) { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green), 0 8px 20px rgba(7, 60, 42, .09); }
.citrus-choice input { position: absolute; top: .65rem; right: .65rem; accent-color: var(--green); }
.citrus-choice img { width: 4.8rem; height: 4.8rem; object-fit: contain; filter: drop-shadow(0 7px 7px rgba(7, 60, 42, .16)); }
.citrus-choice span { display: grid; }
.citrus-choice small { color: var(--muted); font-size: .7rem; }
.no-citrus { grid-template-columns: 1fr; padding-left: .85rem; background: linear-gradient(135deg, white, #f1f7ed); }
.live-macros { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; padding: 1rem; color: white; background: var(--forest); border-radius: 1rem; }
.live-macros span { display: grid; color: #bdd2c8; font-size: .75rem; }
.live-macros strong { color: white; font-size: 1.35rem; }
.customizer-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.dialog-price { display: grid; }
.dialog-price strong { font-size: 1.45rem; }
.dialog-price strong { color: var(--forest); }

.cart-backdrop { position: fixed; z-index: 40; inset: 0; background: rgba(1, 20, 14, .58); backdrop-filter: blur(3px); }
.cart-panel { position: fixed; z-index: 50; top: 0; right: 0; width: min(100%, 28rem); height: 100dvh; display: flex; flex-direction: column; overflow-y: auto; padding: 1.4rem; background: var(--cream); box-shadow: -20px 0 70px rgba(1, 20, 14, .25); transform: translateX(110%); transition: transform .3s ease; }
.cart-panel.is-open { transform: translateX(0); }
.cart-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 2rem; }
.cart-explainer { margin: 1.2rem 0; color: var(--muted); font-size: .87rem; }
.cart-items { display: grid; gap: .7rem; overflow-y: auto; }
.empty-cart { padding: 2rem 0; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: .8rem; padding: 1rem; background: white; border: 1px solid var(--line); border-radius: 1rem; }
.cart-item small { display: block; margin-top: .2rem; color: var(--muted); }
.remove-item { align-self: center; color: #6c776f; background: transparent; border: 0; cursor: pointer; text-decoration: underline; font-size: .78rem; }
.cart-summary { display: grid; gap: .55rem; margin-top: auto; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; gap: 1rem; }
.discount-line { color: #3d8b20; font-size: .88rem; }
.cart-total { margin-top: .35rem; padding-top: .8rem; border-top: 1px solid var(--line); font-size: 1.05rem; }
.delivery-preferences { display: grid; gap: .55rem; margin-top: 1rem; padding: .85rem; background: white; border: 1px solid var(--line); border-radius: .85rem; }
.delivery-preferences label { display: grid; grid-template-columns: 7rem 1fr; align-items: center; gap: .6rem; color: var(--muted); font-size: .75rem; font-weight: 750; }
.delivery-preferences input,
.delivery-preferences select { min-width: 0; width: 100%; padding: .52rem; background: var(--cream); border: 1px solid var(--line); border-radius: .55rem; font: inherit; font-size: .76rem; }
.coupon-box { display: grid; gap: .45rem; margin-top: .7rem; padding: .85rem; background: #eff9ea; border: 1px solid #cde7c1; border-radius: .85rem; }
.coupon-box > label { color: var(--forest); font-size: .75rem; font-weight: 900; }
.coupon-box > div { display: grid; grid-template-columns: 1fr auto; gap: .45rem; }
.coupon-box input { min-width: 0; width: 100%; padding: .6rem .7rem; background: white; border: 1px solid #bcd5b2; border-radius: .55rem; font: inherit; font-size: .78rem; text-transform: uppercase; }
.coupon-box button { padding: .55rem .85rem; color: white; background: var(--forest); border: 0; border-radius: .55rem; cursor: pointer; font-size: .75rem; font-weight: 900; }
.coupon-box p { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.coupon-box .coupon-success { color: #247116; font-weight: 800; }
.coupon-box .coupon-error { color: #a12626; font-weight: 800; }
.minimum-message { margin: 0 0 .75rem; padding: .65rem .75rem; color: #247116; background: #edf8e8; border: 1px solid #cde7c1; border-radius: .65rem; font-size: .75rem; font-weight: 850; }
.minimum-message.is-error { color: #a3131f; background: #fff0f1; border-color: #efb6bb; }
.button-disabled { width: 100%; color: #718079; background: #dfe5df; cursor: not-allowed; }
.toast { position: fixed; z-index: 60; left: 50%; bottom: 1.2rem; padding: .8rem 1rem; color: white; background: var(--forest); border-radius: 999px; box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, 1rem); pointer-events: none; transition: .25s; font-size: .85rem; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

:focus-visible { outline: 3px solid #80dc54; outline-offset: 3px; }

@media (max-width: 1050px) {
  .site-header { gap: .75rem; padding-inline: 1rem; }
  .nav-left a { padding-inline: .65rem; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 50rem; padding: 2.5rem 1rem 0; }
  .hero-food-showcase { width: min(100%, 50rem); min-height: 34rem; margin: 0 auto; }
  .offer-strip { grid-template-columns: 1fr 1fr; }
  .register-section { grid-template-columns: 1fr 1fr; }
  .offer-strip .button { grid-column: 1 / -1; justify-self: start; }
  .featured-slider { grid-template-columns: .92fr 1.08fr; }
  .featured-stage { border-radius: 3rem 0 0 3rem; }
  .referral-offer { grid-template-columns: auto 1fr; }
  .referral-action { grid-column: 1 / -1; width: min(100%, 30rem); justify-self: center; }
  .category-gallery { grid-template-columns: repeat(2, 1fr); }
  .supplement-hub { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-layout { grid-template-columns: 13rem minmax(0, 1fr); }
  .meal-card { grid-template-columns: minmax(0, 1fr) 8.3rem; }
}

@media (max-width: 900px) and (min-width: 721px) {
  .menu-grid { grid-template-columns: 1fr; }
  .supplement-hub { grid-template-columns: 1fr; }
  .supplement-category-card { min-height: 0; grid-template-columns: 9rem 1fr; grid-template-rows: 11rem; }
  .supplement-category-card img { height: 11rem; }
  .meal-card { grid-template-columns: minmax(0, 1fr) 11rem; }
}

@media (max-width: 720px) {
  .launch-bar { font-size: .7rem; }
  .delivery-ribbon { justify-content: flex-start; overflow-x: auto; gap: 1.3rem; font-size: .72rem; white-space: nowrap; }
  .delivery-ribbon strong { font-size: .78rem; }
  .site-header { min-height: 4.8rem; grid-template-columns: 1fr auto 1fr; padding: .55rem .7rem; gap: .35rem; }
  .nav-left { gap: 0; }
  .nav-left a { display: none; }
  .menu-toggle { width: 2.7rem; height: 2.7rem; }
  .brand-lockup.brand-centered img { width: 3.8rem; height: 3.8rem; }
  .brand-lockup img { width: 2.8rem; height: 2.8rem; }
  .brand-lockup strong { font-size: .88rem; }
  .brand-lockup small { font-size: .52rem; }
  .order-link { width: 2.8rem; height: 2.8rem; padding: 0; font-size: 0; }
  .order-link span { font-size: 1.2rem; }
  .cart-trigger { width: 2.8rem; height: 2.8rem; padding: 0; font-size: 0; }
  .cart-trigger span { font-size: .75rem; }
  .sign-button { min-height: 2.6rem; padding: .5rem .7rem; font-size: .72rem; }
  .sign-button { display: none; }
  .header-actions { gap: .35rem; }
  .home-hero { gap: 2rem; padding: 7.2rem 1rem 3.5rem; }
  .floating-order-wrap { top: 1.25rem; }
  .floating-order-button { min-width: 11rem; min-height: 3.85rem; padding-inline: 1.6rem; }
  .floating-order-button span { font-size: 1rem; }
  .home-hero-copy { padding: 0; }
  .home-hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero-brand-mark { width: 7.2rem; }
  .hero-benefits { gap: .7rem 1rem; }
  .hero-food-showcase { min-height: 25rem; }
  .hero-food-primary { inset: 0 2% 8% 5%; border-radius: 2rem 1rem 2rem 1rem; }
  .hero-food-salmon { width: 40%; height: 29%; }
  .hero-food-pancakes { width: 34%; height: 30%; }
  .hero-order-badge { right: 0; width: 6rem; height: 6rem; border-width: .3rem; }
  .hero-order-badge strong { font-size: 1rem; }
  .featured-slider { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .featured-copy { padding: 3.2rem 1rem 2rem; }
  .featured-copy h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .featured-description { font-size: .95rem; }
  .featured-stage { min-height: 27rem; border-radius: 2.2rem 2.2rem 0 0; }
  .featured-slider .slider-controls { right: 50%; bottom: 1rem; transform: translateX(50%); }
  .slider-prev { left: .8rem; }
  .slider-next { right: .8rem; }
  .offer-strip,
  .referral-offer,
  .quick-values,
  .story-section,
  .register-section,
  .delivery-section,
  .compact-heading,
  .section-heading { grid-template-columns: 1fr; }
  .offer-strip .button { grid-column: auto; }
  .referral-offer { text-align: center; }
  .referral-badge { margin: 0 auto; }
  .referral-copy > p:last-child { margin-inline: auto; }
  .referral-action { width: 100%; text-align: left; }
  .quick-values article { min-height: auto; padding: 2.5rem 1rem; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .delivery-detail-grid { grid-template-columns: 1fr; }
  .story-mark { max-width: 25rem; margin: 0 auto; }
  .menu-hero { padding-top: 2.5rem; }
  .menu-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .compact-heading,
  .section-heading { gap: 1rem; }
  .category-section { padding-right: 1rem; }
  .category-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .category-tile { grid-template-rows: 9.5rem auto; }
  .category-tile img { height: 9.5rem; }
  .tile-overlay { min-height: 5.7rem; padding: .85rem; }
  .tile-overlay strong { font-size: 1rem; line-height: 1.05; }
  .menu-section { padding: 1rem; }
  .catalog-layout { grid-template-columns: 1fr; gap: 1rem; }
  .catalog-sidebar {
    position: static;
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    padding: .5rem;
    scrollbar-width: thin;
  }
  .sidebar-category { flex: 0 0 auto; grid-template-columns: 2.5rem auto; min-height: 3.1rem; padding: .3rem .65rem .3rem .35rem; }
  .sidebar-category img { width: 2.5rem; height: 2.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .supplement-hub { grid-template-columns: 1fr; }
  .supplement-category-card { min-height: 0; grid-template-columns: 8.5rem 1fr; grid-template-rows: 10.5rem; }
  .supplement-category-card img { height: 10.5rem; }
  .meal-card { min-height: 0; grid-template-columns: minmax(0, 1fr) 9.5rem; }
  .menu-notes,
  .option-group { grid-template-columns: 1fr; }
  .compact-choice-grid,
  .citrus-choice-grid,
  .two-choice-grid,
  .topping-choice-grid,
  .cheese-choice-grid { grid-template-columns: 1fr; }
  .menu-notes { gap: .7rem; }
  .customizer-footer { align-items: stretch; flex-direction: column; }
  .customizer-footer .button { width: 100%; }
  .footer-top,
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-meta { white-space: normal; }
}

@media (max-width: 480px) {
  .brand-centered span { display: none; }
  .brand-lockup.brand-centered img { width: 3.3rem; height: 3.3rem; }
  .featured-stage { min-height: 22rem; }
  .featured-stamp { width: 5.5rem; height: 5.5rem; right: 4%; }
  .drawer-brand { min-height: 15rem; }
  .meal-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "top"
      "title"
      "description"
      "macros"
      "note"
      "footer";
  }
  .protein-bar-card {
    grid-template-areas:
      "image"
      "top"
      "title"
      "description"
      "macros"
      "note"
      "facts"
      "footer";
  }
  .meal-image { height: 12rem; }
  .delivery-preferences label { grid-template-columns: 1fr; gap: .25rem; }
  .coupon-box > div { grid-template-columns: 1fr; }
  .register-form fieldset { flex-direction: column; gap: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
