:root {
  /* Surface palette sampled from the bright plates, shop walls, and window light in the provided photography. */
  --paper: #fbf8ee;
  --cream: #fffdf7;
  --butter: #fff4c9;
  --green-white: #f2f7ed;
  --ink: #1d2a26;
  --ink-soft: #52605a;
  --rule: #cbd3c9;

  /* Berry smoothie held on Grand Street, o (15).jpg. */
  --berry: #7b284f;
  /* Pink smoothie at the prep counter, o (10).jpg. */
  --dragonfruit: #cf6685;
  /* Sunlit fresh juice, o (11).jpg. */
  --mango: #eaa23a;
  /* Green açai base and kiwi, o (8).jpg. */
  --matcha: #63843d;
  /* Yellow storefront lettering and fridge signage. */
  --citrus: #efc83e;
  /* Deep açai and the brand cup label. */
  --acai: #57233f;

  --accent: var(--berry);
  --accent-soft: #f4dce5;
  --accent-ink: #ffffff;
  --radius-small: 14px;
  --radius-large: 32px;
  --shadow-soft: 0 14px 42px rgba(39, 54, 47, .10);
  --shadow-lift: 0 24px 70px rgba(39, 54, 47, .16);
  --page: min(1320px, calc(100% - 36px));

  /* Intended: Archivo / Inter / Martian Mono. Reliable system fallbacks are used because assets/fonts contains no .woff2 files. */
  --font-display: "Archivo", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Martian Mono", "IBM Plex Mono", Consolas, "Courier New", monospace;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

body[data-batch="acai"] {
  --accent: var(--acai);
  --accent-soft: #eadde7;
}

body[data-batch="juice"] {
  --accent: var(--mango);
  --accent-soft: #fae9c3;
  --accent-ink: var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure, h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:where(a, button):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.page-progress {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: background-color .35s ease;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  background: #16233f;
  transition: transform .35s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-type { display: none; }
.desktop-nav { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}
.header-actions .button { display: none; }
.header-phone {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.menu-toggle {
  position: relative;
  z-index: 110;
  display: grid;
  place-content: center;
  gap: 6px;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  will-change: transform;
  animation: menu-toggle-in .7s .12s var(--ease) backwards;
  transition:
    background-color .35s ease,
    box-shadow .35s ease,
    transform .35s var(--ease);
}
.menu-toggle:hover {
  transform: scale(1.045);
  box-shadow: 0 8px 24px rgba(29, 42, 38, .12);
}
.menu-toggle:active {
  transform: scale(.96);
}
.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 253, 247, .82);
  box-shadow: 0 8px 28px rgba(29, 42, 38, .08);
}
.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .42s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@keyframes menu-toggle-in {
  from {
    opacity: 0;
    transform: translateX(14px) scale(.86) rotate(8deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 110px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 17px;
  background: var(--butter);
  opacity: 0;
  transform: translateX(-100%);
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform .62s var(--ease),
    opacity .34s ease,
    visibility 0s linear .62s;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(31px, 10vw, 52px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.055em;
  opacity: 0;
  transform: translateX(-38px);
  will-change: transform, opacity;
  transition:
    transform .54s var(--ease),
    opacity .38s ease,
    color .25s ease,
    background-color .25s ease,
    background-size .45s var(--ease),
    box-shadow .3s ease;
  transition-delay: 0s;
}
.mobile-nav.is-open a {
  opacity: 1;
  transform: none;
  animation: mobile-nav-item-in .48s var(--ease) backwards;
}
.mobile-nav.is-open a:nth-child(1) { animation-delay: .10s; }
.mobile-nav.is-open a:nth-child(2) { animation-delay: .15s; }
.mobile-nav.is-open a:nth-child(3) { animation-delay: .20s; }
.mobile-nav.is-open a:nth-child(4) { animation-delay: .25s; }
.mobile-nav.is-open a:nth-child(5) { animation-delay: .30s; }
.mobile-nav.is-open a:nth-child(6) { animation-delay: .35s; }
@keyframes mobile-nav-item-in {
  from {
    opacity: 0;
    transform: translateX(-38px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.mobile-nav.is-open a:hover,
.mobile-nav.is-open a:focus-visible {
  transform: translateX(7px);
}
.mobile-nav .mobile-nav-link {
  --menu-accent: var(--berry);
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 430px);
  padding: 3px 48px 7px 0;
  background-image: linear-gradient(90deg, var(--menu-accent), var(--menu-accent));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
}
.mobile-nav .mobile-nav-link:nth-child(1) { --menu-accent: var(--dragonfruit); }
.mobile-nav .mobile-nav-link:nth-child(2) { --menu-accent: var(--mango); }
.mobile-nav .mobile-nav-link:nth-child(3) { --menu-accent: var(--matcha); }
.mobile-nav .mobile-nav-link:nth-child(4) { --menu-accent: var(--acai); }
.mobile-nav .mobile-nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--butter);
  border-radius: 50%;
  background: var(--menu-accent);
  box-shadow: 0 0 0 1px var(--menu-accent);
  opacity: 0;
  transform: translateY(-50%) scale(.3);
  transition: opacity .25s ease, transform .38s var(--ease);
}
.mobile-nav .mobile-nav-link::after {
  content: attr(data-menu-index) "  ↗";
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--menu-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  opacity: 0;
  transform: translate(12px, -50%);
  transition: opacity .25s ease, transform .38s var(--ease);
}
.mobile-nav.is-open .mobile-nav-link:hover,
.mobile-nav.is-open .mobile-nav-link:focus-visible {
  color: var(--menu-accent);
  background-size: 100% 3px;
  transform: translateX(13px);
}
.mobile-nav .mobile-nav-link:hover::before,
.mobile-nav .mobile-nav-link:focus-visible::before,
.mobile-nav .mobile-nav-link:hover::after,
.mobile-nav .mobile-nav-link:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.mobile-nav a:nth-last-child(-n + 2) {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0;
}
.mobile-nav .mobile-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 260px);
  min-height: 52px;
  margin-top: 20px;
  padding: 0 19px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-ink);
  background: var(--accent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 28%, transparent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.mobile-nav .mobile-order-link span {
  font-size: 19px;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.mobile-nav.is-open .mobile-order-link:hover,
.mobile-nav.is-open .mobile-order-link:focus-visible {
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 38%, transparent);
}
.mobile-nav.is-open .mobile-order-link:hover span,
.mobile-nav.is-open .mobile-order-link:focus-visible span {
  transform: translate(3px, -3px);
}
body.menu-open { overflow: hidden; }

.spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  transition: color .25s ease, background-color .25s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}
.button span { font-size: 18px; line-height: 1; }
.button:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.button-primary { color: var(--accent-ink); background: var(--accent); transition: color .35s, background-color .35s, transform .3s var(--ease), box-shadow .3s var(--ease); }
.button-small { min-height: 44px; padding-inline: 18px; background: var(--cream); }
.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 970px;
  padding: 116px 18px 70px;
  background: var(--butter);
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -35%;
  width: 105%;
  height: 63%;
  border-radius: 0 0 0 65%;
  background: var(--green-white);
}
.hero-copy { position: relative; z-index: 3; }
.hero-copy > .spec-label { margin-bottom: 22px; color: var(--ink-soft); }
.hero h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.072em;
}
.hero h1 { max-width: 780px; font-size: clamp(58px, 16.5vw, 112px); }
.hero h1 span { color: var(--accent); transition: color .35s ease; }
.hero-subhead {
  max-width: 600px;
  margin-top: 25px;
  font-size: clamp(17px, 4.8vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}
.hero-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; margin-top: 28px; }
.hero-facts {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}
.hero-facts div { display: grid; grid-template-columns: 78px 1fr; gap: 10px; }
.hero-facts .spec-label { color: var(--ink-soft); }
.hero-facts strong { font-size: 13px; line-height: 1.4; }
.hero-facts strong.is-open { color: var(--matcha); }
.hero-facts strong.is-closed { color: var(--berry); }

.hero-photography {
  position: relative;
  z-index: 2;
  height: 490px;
  margin-top: 44px;
}
.hero-main-photo {
  position: absolute;
  top: 0;
  right: -18px;
  width: 84%;
  height: 455px;
  border-radius: var(--radius-large) 0 0 var(--radius-large);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.hero-main-photo img { object-position: 50% 72%; }
.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -80px 90px rgba(20, 34, 28, .16);
  pointer-events: none;
}
.hero-main-photo figcaption,
.hero-secondary-photo figcaption,
.process-images figcaption,
.feed-layout figcaption,
.grand-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: var(--radius-small);
  color: white;
  background: rgba(29, 42, 38, .86);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.3;
}
.hero-main-photo figcaption { top: 14px; right: 14px; bottom: auto; }
.hero-main-photo figcaption span { display: block; color: var(--citrus); }
.hero-secondary-photo {
  position: absolute;
  z-index: 3;
  left: -5px;
  bottom: -10px;
  width: 40%;
  height: 250px;
  border: 6px solid var(--paper);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  transform: rotate(-3deg);
}
.hero-secondary-photo img { object-position: 50% 55%; }
.hero-secondary-photo figcaption { right: 7px; bottom: 7px; left: 7px; padding: 7px; font-size: 11px; }
.hero-batch-stamp {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: -5px;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--citrus);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.hero-batch-stamp strong { font-family: var(--font-display); font-size: 17px; }
.hero-scroll { display: none; }

.formula-section {
  position: relative;
  padding: 92px 18px 110px;
  background: var(--cream);
}
.formula-heading { display: grid; gap: 28px; }
.formula-heading .spec-label { margin-bottom: 17px; color: var(--accent); transition: color .35s; }
h2 { font-size: clamp(52px, 14vw, 108px); }
.formula-heading > p:last-child { max-width: 480px; color: var(--ink-soft); font-size: 17px; }

.category-grid {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}
.category-card {
  position: relative;
  display: grid;
  align-content: start;
  border: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .55s var(--ease), transform .45s var(--ease), box-shadow .55s var(--ease);
}
.category-card:nth-child(4n + 1) { border-radius: var(--radius-large) var(--radius-small) var(--radius-small) var(--radius-small); }
.category-card:nth-child(4n + 2) { border-radius: var(--radius-small); }
.category-card:nth-child(4n + 3) { border-radius: var(--radius-small) var(--radius-large) var(--radius-small) var(--radius-small); }
.category-card:nth-child(4n) { border-radius: var(--radius-small) var(--radius-small) var(--radius-large) var(--radius-small); }
.category-card:hover { z-index: 2; border-color: var(--accent); box-shadow: var(--shadow-lift); }

/* The cards enter from the left so the row resolves left to right on scroll.
   The transition is respecified here because .reveal's shorthand appears later
   in the file and would otherwise drop border-color, making hover snap. The
   stagger delay is attached per property so only the entrance waits: hover
   colour has to answer immediately, even on the last card in the row. */
.category-card.reveal {
  transform: translate(-38px, 20px);
  transition:
    opacity .7s ease var(--delay, 0ms),
    transform .8s var(--ease) var(--delay, 0ms),
    border-color .5s var(--ease) 0ms,
    box-shadow .5s var(--ease) 0ms;
}
.category-card.reveal.is-visible { transform: none; }

.category-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.category-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 55%);
  transition: transform .6s var(--ease);
}
.category-card:hover .category-media img { transform: scale(1.04); }
.category-media::after {
  content: attr(data-batch-label);
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 9px 11px;
  color: var(--accent-ink, #fff);
  background: var(--accent);
  border-radius: var(--radius-small);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.category-body { padding: 22px; display: grid; align-content: start; }
.category-index { color: var(--accent); }
.category-card h3 {
  margin: 16px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 850;
  line-height: .96;
  letter-spacing: -.045em;
}
.category-card > .category-body > p { max-width: 420px; color: var(--ink-soft); font-size: 14.5px; }

.ingredient-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 19px; list-style: none; }
.ingredient-tags li {
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--rule));
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  transition: border-color .35s;
}

.menu-note {
  display: grid;
  gap: 22px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
}
.menu-note .spec-label { display: block; margin-bottom: 14px; color: var(--accent); }
.menu-note h3 {
  font-family: var(--font-display);
  font-size: clamp(27px, 6vw, 40px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.045em;
}
.menu-note p { max-width: 560px; margin-top: 14px; color: var(--ink-soft); font-size: 15px; }
.menu-note .button { justify-self: start; }

.closing-row {
  display: grid;
  gap: 40px;
  margin-top: 70px;
  align-items: end;
}

/* Mockup watermark. Remove this block and the .wip-mark markup at launch. */
.wip-mark {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 86px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 7%, transparent);
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--ink) 16%, transparent);
  user-select: none;
}
.wip-mark small {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--ink) 38%, transparent);
  -webkit-text-stroke: 0;
}

.also-served {
  max-width: 920px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.also-served ul { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 16px; list-style: none; }
.also-served li { font-family: var(--font-display); font-size: clamp(24px, 7vw, 43px); font-weight: 800; letter-spacing: -.04em; }
.also-served li:not(:last-child)::after { content: "/"; margin-left: 24px; color: var(--accent); }

.process-section {
  padding: 100px 18px;
  display: grid;
  gap: 56px;
  background: var(--green-white);
}
.process-copy > .spec-label { margin-bottom: 18px; color: var(--matcha); }
.process-copy > p:not(.spec-label) { max-width: 570px; margin-top: 28px; color: var(--ink-soft); font-size: 17px; }
.process-steps { margin-top: 42px; border-top: 1px solid var(--ink); list-style: none; }
.process-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 3px 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.process-steps span { grid-row: 1 / 3; font-family: var(--font-mono); font-size: 11px; }
.process-steps strong { font-size: 15px; }
.process-steps small { color: var(--ink-soft); font-size: 13px; }
.process-images { position: relative; min-height: 650px; }
.process-main,
.process-detail { position: absolute; overflow: hidden; box-shadow: var(--shadow-lift); }
.process-main { top: 0; right: -18px; width: 84%; height: 560px; border-radius: var(--radius-large) 0 0 var(--radius-large); }
.process-main img { object-position: 50% 48%; }
.process-detail { z-index: 2; left: 0; bottom: 0; width: 48%; height: 330px; border: 7px solid var(--green-white); border-radius: var(--radius-small); }
.process-detail img { object-position: 51% 40%; }
.process-images figcaption { right: 10px; bottom: 10px; }

.feed-section { padding: 100px 0 130px; background: var(--paper); overflow: clip; }
.feed-heading { width: var(--page); margin-inline: auto; padding-inline: 0; }
.feed-heading .spec-label { margin-bottom: 17px; color: var(--dragonfruit); }
.feed-heading .text-link { margin-top: 28px; }
.feed-layout { width: var(--page); margin: 65px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; align-items: start; }
.feed-layout figure { position: relative; min-width: 0; overflow: hidden; }
.feed-layout img { transition: transform .8s var(--ease); }
.feed-layout figure:hover img { transform: scale(1.035); }
.feed-layout figcaption { left: 9px; right: auto; bottom: 9px; max-width: calc(100% - 18px); }
.feed-layout figcaption span { color: var(--citrus); }
.feed-bowl { grid-column: 1 / 3; height: 520px; border-radius: var(--radius-large); }
.feed-bowl img { object-position: 50% 60%; }
.feed-juice { grid-column: 1; height: 340px; margin-top: 52px; border-radius: var(--radius-small); }
.feed-juice img { object-position: 52% 55%; }
.feed-salad { grid-column: 2; height: 410px; border-radius: var(--radius-large) var(--radius-small) var(--radius-small) var(--radius-small); }
.feed-salad img { object-position: 50% 78%; }
.feed-toast-wide { grid-column: 1 / 3; height: 500px; margin-top: 35px; border-radius: var(--radius-small); }
.feed-toast-wide img { object-position: 50% 55%; }
.feed-toast-small { grid-column: 1; height: 370px; border-radius: var(--radius-small) var(--radius-small) var(--radius-large) var(--radius-small); }
.feed-toast-small img { object-position: 50% 58%; }
.feed-smoothie { grid-column: 2; height: 450px; margin-top: 65px; border-radius: var(--radius-large) var(--radius-small) var(--radius-small) var(--radius-small); }
.feed-smoothie img { object-position: 50% 54%; }

.grand-section { display: grid; background: var(--cream); }
.grand-photo { position: relative; height: 420px; overflow: hidden; border-radius: 0 0 var(--radius-large) var(--radius-large); }
.grand-photo img { object-position: 50% 32%; }
.grand-photo figcaption { top: 18px; right: auto; bottom: auto; left: 18px; }
.grand-copy { padding: 80px 18px 100px; }
.grand-copy > .spec-label { margin-bottom: 18px; color: var(--berry); }
.grand-copy > p:not(.spec-label) { max-width: 590px; margin-top: 28px; color: var(--ink-soft); font-size: 17px; }
.hours-table { margin-top: 38px; border-top: 1px solid var(--ink); }
.hours-table > div { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--rule); }
.hours-table dt { font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.hours-table dd { font-weight: 700; font-variant-numeric: tabular-nums; }
.hours-table dd.is-open { color: var(--matcha); }
.hours-table dd.is-closed { color: var(--berry); }
.hours-table a { border-bottom: 1px solid var(--ink); }
.grand-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 35px; }

.order-section {
  padding: 100px 18px;
  display: grid;
  gap: 55px;
  background: var(--butter);
}
.order-heading .spec-label { margin-bottom: 18px; }
.order-heading > p:last-child { max-width: 480px; margin-top: 27px; color: var(--ink-soft); font-size: 17px; }
.platform-list { border-top: 1px solid var(--ink); }
.platform-list a {
  --platform-color: var(--accent);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 16px;
  padding: 21px 4px;
  border-bottom: 1px solid var(--ink);
  transition: padding .3s var(--ease), color .25s, background-color .25s;
}
.platform-list a:nth-child(1) { --platform-color: #0ba508; }
.platform-list a:nth-child(2) { --platform-brand: #ff3008; }
.platform-list a:nth-child(3) { --platform-brand: #06c167; }
.platform-list a:nth-child(4) { --platform-brand: #ff5500; }
.platform-list a:nth-child(5) { --platform-brand: #c90117; }
.platform-list a:not(.platform-primary) { --platform-color: var(--ink); }
@media (pointer: fine) {
  .platform-list a:not(.platform-primary):hover,
  .platform-list a:not(.platform-primary):focus-visible { --platform-color: var(--platform-brand); }
}
.platform-list a:not(.platform-primary):focus-visible { --platform-color: var(--platform-brand); }
.platform-list a.platform-primary {
  padding: 30px 4px 32px;
  background: color-mix(in srgb, var(--platform-color) 8%, var(--butter));
}
.platform-list a.platform-primary span {
  font-size: 12px;
  font-weight: 700;
  color: var(--platform-color);
}
.platform-list a.platform-primary strong {
  font-size: clamp(30px, 8.5vw, 50px);
}
.platform-list a.platform-primary strong::before {
  width: clamp(14px, 1.8vw, 22px);
  opacity: 1;
}
.platform-list a:not(.platform-primary) {
  padding: 15px 4px;
}
.platform-list a:not(.platform-primary) strong {
  font-size: clamp(18px, 4.2vw, 25px);
}
.platform-list a:not(.platform-primary) strong::before {
  width: 0;
  opacity: 0;
}
@media (pointer: fine) {
  .platform-list a:not(.platform-primary):hover strong::before,
  .platform-list a:not(.platform-primary):focus-visible strong::before {
    width: clamp(10px, 1.25vw, 16px);
    opacity: 1;
  }
}
.platform-list a:not(.platform-primary):focus-visible strong::before {
  width: clamp(10px, 1.25vw, 16px);
  opacity: 1;
}
.platform-list a:hover,
.platform-list a:focus-visible {
  padding-inline: 15px;
  color: var(--ink);
  background: color-mix(in srgb, var(--platform-color) 10%, var(--butter));
}
.platform-list span { grid-column: 1; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; }
.platform-list strong {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: clamp(25px, 7vw, 43px);
  line-height: 1;
  letter-spacing: -.04em;
}
.platform-list strong::before {
  content: "";
  flex: 0 0 auto;
  width: clamp(10px, 1.25vw, 16px);
  height: 2px;
  border-radius: 999px;
  background: var(--platform-color);
  opacity: .58;
  transition: width .32s var(--ease), opacity .25s ease;
}
.platform-list i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--platform-color);
  font-style: normal;
  font-size: 27px;
  transition: transform .3s var(--ease);
}
.platform-list a:hover strong::before,
.platform-list a:focus-visible strong::before {
  width: clamp(16px, 2vw, 24px);
  opacity: 1;
}
.platform-list a:hover i,
.platform-list a:focus-visible i {
  transform: translate(4px, -4px);
}

.site-footer {
  padding: 70px 18px 30px;
  display: grid;
  gap: 34px;
  border-top: 1px solid var(--ink);
  background: var(--green-white);
}
.footer-brand { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; }
.footer-brand strong { font-family: var(--font-display); font-size: 22px; line-height: 1; letter-spacing: -.04em; }
.footer-brand p { grid-column: 1 / 3; color: var(--ink-soft); }
.site-footer address { font-style: normal; font-size: 14px; }
.site-footer address a { border-bottom: 1px solid var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-links a { border-bottom: 1px solid var(--ink); font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.site-footer > small { color: var(--ink-soft); font-family: var(--font-mono); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .85s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Back-to-top. Revealed by main.js once the hero has scrolled away. */
.to-top {
  position: fixed;
  z-index: 80;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  place-content: center;
  width: 50px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 247, .5);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  /* Glass edge: a bright inner rim on top, a soft ambient shadow underneath. */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .9),
    inset 0 -1px 1px rgba(29, 42, 38, .06),
    0 1px 0 rgba(255, 255, 255, .45),
    0 10px 30px rgba(29, 42, 38, .18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(.86);
  pointer-events: none;
  transition:
    opacity .4s ease,
    transform .5s var(--ease),
    background-color .35s ease;
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:active { transform: scale(.92); background: rgba(255, 253, 247, .68); }
.to-top:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.to-top span {
  display: block;
  width: 11px;
  height: 11px;
  margin-top: 3px;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
  transform: rotate(45deg);
}

@media (pointer: fine) {
  .to-top.is-visible:hover {
    transform: translateY(-2px);
    background: rgba(255, 253, 247, .66);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, .95),
      inset 0 -1px 1px rgba(29, 42, 38, .06),
      0 1px 0 rgba(255, 255, 255, .5),
      0 16px 38px rgba(29, 42, 38, .22);
  }
}

/* The open menu overlay owns the screen. */
body.menu-open .to-top { opacity: 0; pointer-events: none; }

@media (min-width: 680px) {
  :root { --page: min(1320px, calc(100% - 72px)); }
  .brand-type { display: inline; }
  .site-header { padding-inline: 30px; }
  .hero { padding-inline: 36px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div { display: block; }
  .hero-facts strong { display: block; margin-top: 5px; }
  .hero-photography { height: 610px; }
  .hero-main-photo { right: -36px; height: 570px; }
  .hero-secondary-photo { width: 34%; height: 320px; }
  .formula-section, .process-section, .grand-copy, .order-section { padding-inline: 36px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .menu-note { grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
  .process-images { min-height: 820px; }
  .process-main { right: -36px; height: 720px; }
  .process-detail { width: 42%; height: 430px; }
  .feed-layout { gap: 22px; }
  .feed-bowl { height: 650px; }
  .feed-juice { height: 480px; }
  .feed-salad { height: 590px; }
  .feed-toast-wide { height: 680px; }
  .feed-toast-small { height: 530px; }
  .feed-smoothie { height: 620px; }
  .site-footer { grid-template-columns: 1.1fr 1fr; padding-inline: 36px; }
}

@media (min-width: 960px) {
  :root { --page: min(1320px, calc(100% - 120px)); }
  .site-header { min-height: 92px; padding: 18px clamp(42px, 5vw, 78px); grid-template-columns: 1fr auto 1fr; }
  .brand-mark { width: 50px; }
  .desktop-nav { display: flex; gap: clamp(22px, 2.5vw, 42px); }
  .desktop-nav a { position: relative; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease), background-color .35s; }
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-actions .button { display: inline-flex; }
  .menu-toggle { display: none; }
  .to-top { right: max(28px, env(safe-area-inset-right)); bottom: max(28px, env(safe-area-inset-bottom)); width: 54px; }

  .hero { min-height: max(780px, 100svh); padding: 150px clamp(42px, 6vw, 96px) 100px; display: grid; grid-template-columns: minmax(450px, .9fr) minmax(500px, 1.1fr); align-items: center; gap: clamp(30px, 5vw, 90px); }
  .hero::before { right: -12%; width: 63%; height: 100%; border-radius: 45% 0 0 45%; }
  .hero h1 { font-size: clamp(72px, 7.8vw, 126px); }
  .hero-subhead { font-size: clamp(18px, 1.4vw, 22px); }
  .hero-photography { height: min(680px, 74vh); margin: 0; }
  .hero-main-photo { top: 0; right: calc(clamp(42px, 6vw, 96px) * -1); width: 83%; height: 100%; border-radius: var(--radius-large) 0 0 var(--radius-large); }
  .hero-secondary-photo { left: 0; bottom: -2%; width: 39%; height: 45%; }
  .hero-batch-stamp { right: 2%; bottom: 1%; width: 108px; }
  .hero-scroll { position: absolute; left: clamp(42px, 6vw, 96px); bottom: 24px; display: inline-flex; align-items: center; gap: 13px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; }

  .formula-section { padding: 140px clamp(42px, 6vw, 96px) 165px; }
  .formula-heading { grid-template-columns: 1.25fr .75fr; align-items: end; }
  .formula-heading > p:last-child { justify-self: end; padding-bottom: 8px; }
  h2 { font-size: clamp(76px, 8vw, 124px); }
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 70px; }
  .category-body { padding: 26px; }
  .closing-row { grid-template-columns: minmax(0, 1fr) minmax(0, 920px); gap: 56px; }

  .process-section { min-height: 1100px; padding: 150px clamp(42px, 6vw, 96px); grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 7vw, 120px); align-items: start; }
  .process-copy { position: sticky; top: 80px; padding-top: 40px; }
  .process-images { min-height: 930px; }
  .process-main { right: calc(clamp(42px, 6vw, 96px) * -1); width: 85%; height: 820px; }
  .process-detail { left: -7%; bottom: -3%; width: 48%; height: 500px; }

  .feed-section { padding-block: 150px 190px; }
  .feed-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; }
  .feed-heading .spec-label { grid-column: 1 / 3; }
  .feed-heading .text-link { margin: 0 0 10px; }
  .feed-layout { grid-template-columns: 1.2fr .8fr 1fr; grid-auto-rows: auto; gap: 28px; margin-top: 72px; align-items: start; }
  .feed-bowl { grid-column: 1 / 3; grid-row: 1; height: auto; aspect-ratio: 16 / 10; margin-left: calc(clamp(24px, 3vw, 48px) * -1); border-radius: var(--radius-large); }
  .feed-juice { grid-column: 3; grid-row: 1; height: auto; aspect-ratio: 3 / 4; margin-top: 48px; border-radius: var(--radius-small); }
  .feed-toast-wide { grid-column: 1; grid-row: 2; height: auto; aspect-ratio: 3 / 4; margin-top: 0; border-radius: var(--radius-small); }
  .feed-salad { grid-column: 2 / 4; grid-row: 2; height: auto; aspect-ratio: 16 / 9; margin-top: 48px; margin-right: calc(clamp(24px, 3vw, 48px) * -1); border-radius: var(--radius-small); }
  .feed-toast-small { grid-column: 1 / 3; grid-row: 3; height: auto; aspect-ratio: 16 / 10; margin-top: 0; border-radius: var(--radius-small) var(--radius-small) var(--radius-large) var(--radius-small); }
  .feed-smoothie { grid-column: 3; grid-row: 3; height: auto; aspect-ratio: 3 / 4; margin-top: 48px; border-radius: var(--radius-large) var(--radius-small) var(--radius-small) var(--radius-small); }

  .grand-section { grid-template-columns: auto 1fr; min-height: 720px; align-items: stretch; }
  .grand-photo { height: auto; aspect-ratio: 1085 / 1450; width: auto; align-self: stretch; border-radius: 0 var(--radius-large) var(--radius-large) 0; }
  .grand-photo img { object-position: 50% 50%; }
  .grand-copy { padding: 140px clamp(42px, 7vw, 120px); align-self: center; }
  .grand-copy { padding: 140px clamp(42px, 7vw, 120px); align-self: center; }
  .order-section { padding: 140px clamp(42px, 6vw, 96px); grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
  .order-heading { position: sticky; top: 100px; }
  .platform-list { margin-top: 15px; }
  .site-footer { grid-template-columns: 1.1fr .9fr .8fr auto; align-items: end; padding: 80px clamp(42px, 6vw, 96px) 34px; }
  .footer-brand p { grid-column: 2; }
}

@media (min-width: 1380px) {
  .hero-secondary-photo { left: -3%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; transition-delay: 0ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .parallax-media { translate: none !important; }
  .process-copy, .order-heading { position: static !important; }
  .page-progress { display: none; }
}
