/* =========================================================
   Pressed & Blessed
   Brand name lives in ONE place in JS: app.js -> CONFIG.brand
   Palette lives in ONE place here: :root below
   ========================================================= */

:root{
  /* brand */
  --orange:      #F28C28;
  --orange-deep: #DE7714;
  --green:       #2F6B2B;
  --green-deep:  #22501F;
  --green-ink:   #1B3F19;
  --gold:        #F2C14E;
  --cream:       #FBF7F0;
  --ink:         #1E1E1E;

  /* derived */
  --cream-2:  #F3EDE1;
  --on-dark:  #F5F0E6;
  --muted:    #5F5C55;
  --muted-2:  #83807A;
  --line:     rgba(30,30,30,.12);
  --line-2:   rgba(30,30,30,.07);
  --line-light: rgba(245,240,230,.22);

  /* shape */
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 10px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(30,30,30,.05), 0 4px 14px rgba(30,30,30,.05);
  --sh-md: 0 2px 6px rgba(30,30,30,.05), 0 14px 34px rgba(30,30,30,.09);
  --sh-lg: 0 8px 20px rgba(30,30,30,.08), 0 32px 70px rgba(30,30,30,.16);

  /* layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 72px;

  /* type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-display: clamp(3.1rem, 11.5vw, 7rem);
  --fs-h2:      clamp(2.1rem, 6.4vw, 4.1rem);
  --fs-h3:      clamp(1.2rem, 2.4vw, 1.55rem);
  --fs-lead:    clamp(1.02rem, 1.5vw, 1.2rem);

  --ease: cubic-bezier(.22,.7,.24,1);
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* The off-canvas drawer sits past the right edge, so clip the horizontal axis.
   Keep this on body only, and keep it `hidden`: `overflow-x: clip` on the root
   forces the vertical axis to clip as well, which stops the page scrolling. */
body{ overflow-x: hidden; }
body.is-locked{ overflow: hidden; }
img, svg{ display: block; max-width: 100%; }
img{ height: auto; }
h1,h2,h3,h4,p,figure,dl,dd{ margin: 0; }
ul,ol{ margin: 0; padding: 0; list-style: none; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font: inherit; color: inherit; }
button{ background: none; border: 0; cursor: pointer; }
fieldset{ margin: 0; padding: 0; border: 0; }
legend{ padding: 0; }

:focus-visible{
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--why :focus-visible,
.footer :focus-visible,
.jar-card--feature :focus-visible,
.drawer :focus-visible{ outline-color: var(--gold); }

/* ---------- utilities ---------- */
.wrap{
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link{
  position: fixed; top: 10px; left: 10px; z-index: 200;
  transform: translateY(-200%);
  background: var(--green); color: var(--on-dark);
  padding: 10px 18px; border-radius: var(--r-sm); font-weight: 500;
}
.skip-link:focus{ transform: none; }

.grain{ position: relative; isolation: isolate; }
.grain::before{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("img/grain.svg");
  background-size: 200px 200px;
  opacity: .16; pointer-events: none;
}

.eyebrow{
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before{
  content: ""; width: 26px; height: 2px; background: var(--orange); flex: none;
}
.eyebrow--light{ color: var(--gold); }
.eyebrow--light::before{ background: var(--gold); }

.section{ padding-block: clamp(72px, 11vw, 140px); }
.section__head{ max-width: 46rem; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--center{
  margin-inline: auto; text-align: center;
}
.section__head--center .eyebrow{ justify-content: center; }
.section__title{
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.section__lead{
  margin-top: 22px;
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 34rem;
}
.section__head--center .section__lead{ margin-inline: auto; }

/* ---------- buttons ---------- */
.btn{
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px;
  border-radius: var(--r-md);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 500; font-size: .98rem; letter-spacing: .01em;
  white-space: nowrap;   /* the label must never break across lines */
  border: 1.5px solid transparent;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  will-change: transform;
}
.btn--primary{ --btn-bg: var(--orange); box-shadow: 0 6px 18px rgba(242,140,40,.28); }
.btn--primary:hover{ --btn-bg: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242,140,40,.34); }
.btn--gold{ --btn-bg: var(--gold); box-shadow: 0 6px 18px rgba(242,193,78,.26); }
.btn--gold:hover{ --btn-bg: #E9B437; transform: translateY(-2px); }
.btn--ghost{ border-color: rgba(30,30,30,.28); }
.btn--ghost:hover{ background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.btn--sm{ padding: 11px 18px; font-size: .9rem; border-radius: var(--r-sm); }
.btn--block{ width: 100%; }

.icon-btn{
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: var(--r-sm); color: inherit;
  transition: background-color .2s var(--ease);
}
.icon-btn svg{ width: 22px; height: 22px; }
.icon-btn:hover{ background: rgba(30,30,30,.07); }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(251,247,240,.72);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.nav.is-stuck{
  background: rgba(251,247,240,.86);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  box-shadow: 0 1px 0 var(--line-2), 0 10px 30px rgba(30,30,30,.07);
}
.nav__inner{
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.logo{ display: inline-flex; align-items: center; gap: 12px; color: var(--green); }
.logo__mark{ width: 34px; height: 34px; flex: none; }
.logo__text{ display: flex; flex-direction: column; line-height: 1.05; }
.brand-name{
  font-family: var(--serif); font-weight: 700; font-size: 1.16rem;
  letter-spacing: -.02em; color: var(--ink); white-space: nowrap;
}
.logo__sub{
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-2); margin-top: 3px;
}
.logo--light{ color: var(--gold); }
.logo--light .brand-name{ color: var(--on-dark); }

.nav__links{ display: none; }
.nav__links a{
  position: relative; font-size: .96rem; color: var(--ink); padding: 6px 0;
}
.nav__links a::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__links a:hover::after{ transform: scaleX(1); }

.nav__actions{ display: flex; align-items: center; gap: 6px; }

.cart-btn{
  position: relative; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--r-sm); transition: background-color .2s var(--ease);
}
.cart-btn:hover{ background: rgba(47,107,43,.09); }
.cart-btn svg{ width: 25px; height: 25px; color: var(--ink); }
.cart-btn__count{
  position: absolute; top: 3px; right: 1px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--green); color: var(--cream);
  border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 700; line-height: 1;
  transition: transform .3s var(--ease);
}
.cart-btn__count[data-count="0"]{ background: rgba(30,30,30,.24); }
.cart-btn__count.is-bump{ transform: scale(1.35); }

.nav__toggle{
  width: 44px; height: 44px; display: grid; place-content: center; gap: 5px;
  border-radius: var(--r-sm);
}
.nav__toggle span{
  display: block; width: 20px; height: 1.8px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.8px) rotate(-45deg); }

@media (max-width: 899px){
  .nav__links.is-open{
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    padding: 14px var(--gutter) 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
  }
  .nav__links.is-open a{
    font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
    padding: 12px 0; border-bottom: 1px solid var(--line-2);
  }
}
@media (min-width: 900px){
  .nav__links{ display: flex; gap: clamp(22px, 3vw, 40px); }
  .nav__toggle{ display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(32px, 7vw, 74px));
  padding-bottom: clamp(56px, 8vw, 104px);
  overflow: hidden;
}
.hero__bg{
  position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background:
    radial-gradient(58% 46% at 82% 8%, rgba(242,193,78,.42) 0%, rgba(242,193,78,0) 62%),
    radial-gradient(52% 42% at 6% 78%, rgba(47,107,43,.16) 0%, rgba(47,107,43,0) 60%);
  z-index: 0; pointer-events: none;
}
.hero__inner{
  position: relative; z-index: 1;
  display: grid; gap: clamp(44px, 6vw, 64px);
  align-items: center;
}
.hero__title{
  font-family: var(--serif); font-optical-sizing: auto;
  font-weight: 600; font-size: var(--fs-display);
  line-height: .94; letter-spacing: -.04em;
  margin-bottom: 26px;
}
.hero__title em{
  font-style: italic; font-weight: 500; color: var(--green);
}
.hero__sub{
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--muted); max-width: 30rem;
}
.hero__cta{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
@media (max-width: 520px){
  /* stacked buttons look sloppy at mixed widths, so match them */
  .hero__cta{ flex-direction: column; align-items: stretch; }
}
.hero__facts{
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--muted); letter-spacing: .01em;
}
.hero__facts li{ display: flex; align-items: center; gap: 9px; }
.hero__facts li::before{
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex: none;
}

.hero__media{ position: relative; }
.hero__frame{
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.hero__frame img{ width: 100%; height: 100%; object-fit: cover; object-position: 54% 30%; }
.hero__media::before{
  content: ""; position: absolute; inset: 20px -18px -18px 20px;
  border: 1.5px solid var(--green); border-radius: var(--r-lg);
  z-index: -1;
}
.hero__cut{
  position: absolute; left: -22px; bottom: -26px;
  width: clamp(88px, 15vw, 138px); height: auto;
  filter: drop-shadow(0 14px 24px rgba(30,30,30,.24));
  transform: rotate(-12deg);
  pointer-events: none;
}
.hero__note{
  position: absolute; right: 8px; bottom: -46px;
  font-family: var(--serif); font-style: italic; font-size: .96rem;
  color: var(--muted-2);
}

@media (min-width: 900px){
  .hero__inner{ grid-template-columns: 1.02fr .98fr; gap: clamp(48px, 6vw, 88px); }
  .hero__media::before{ inset: 26px -26px -26px 26px; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee{
  background: var(--green-deep); color: var(--on-dark);
  overflow: hidden; padding-block: 20px;
  border-block: 1px solid rgba(0,0,0,.14);
}
.marquee__track{
  display: flex; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__group{ display: flex; flex: none; }
.marquee__group span{
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: -.01em;
  padding-inline: clamp(18px, 2.4vw, 34px);
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px);
  white-space: nowrap;
}
.marquee__group span::after{
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); opacity: .85;
}
.marquee:hover .marquee__track{ animation-play-state: paused; }
@keyframes marquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}

/* =========================================================
   JUICES
   ========================================================= */
.grid-juices{ display: grid; gap: clamp(18px, 2.2vw, 28px); }

.jar-card{
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.jar-card:hover{ transform: translateY(-6px); box-shadow: var(--sh-md); }
.jar-card__media{
  background: var(--tint, var(--cream-2));
  display: grid; place-items: end center;
  padding: var(--media-pad) 20px 0;
  /* The jar height is driven off this variable rather than a percentage.
     A percentage height on the image resolves against the grid area and
     silently falls back to intrinsic sizing, which overflows the tile. */
  --media-h: clamp(280px, 42vw, 330px);
  --media-pad: 26px;
  height: var(--media-h);
  overflow: hidden;
}
/* fill the box and let object-fit do the scaling. `width:auto` would be
   clamped by the global img max-width, which then drives the height and
   overflows the tile. */
.jar-card__media img{
  width: 100%; height: calc(var(--media-h) - var(--media-pad));
  object-fit: contain; object-position: bottom center;
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 18px 26px rgba(30,30,30,.18));
}
.jar-card:hover .jar-card__media img{ transform: translateY(-6px) scale(1.035); }

.jar-card__body{
  display: flex; flex-direction: column; flex: 1;
  padding: clamp(22px, 2.4vw, 30px);
}
.jar-card__name{
  font-family: var(--serif); font-weight: 600; font-size: var(--fs-h3);
  letter-spacing: -.02em; line-height: 1.15;
}
.jar-card__ing{
  margin-top: 8px; font-size: .82rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--green); font-weight: 500;
}
.jar-card__blurb{
  margin-top: 14px; font-size: .95rem; color: var(--muted);
}
.chips{ display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.chips li{
  font-size: .74rem; font-weight: 500; letter-spacing: .02em;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(47,107,43,.08); color: var(--green);
}
.chips--light li{ background: rgba(245,240,230,.14); color: var(--gold); }

.jar-card__foot{
  margin-top: auto; padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;   /* if the pair ever gets too tight, stack instead of squashing */
}
.price{
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: -.02em;
}

/* feature card */
.jar-card--feature{
  background: var(--green-deep); color: var(--on-dark);
  border-color: transparent;
}
.jar-card--feature .jar-card__name{ color: var(--on-dark); }
.jar-card--feature .jar-card__ing{ color: var(--gold); }
.jar-card--feature .jar-card__blurb{ color: rgba(245,240,230,.76); }
.jar-card--feature .price{ color: var(--gold); }
.jar-card--feature .jar-card__media{
  padding: 0; height: auto; aspect-ratio: 16 / 10; background: var(--green-ink);
}
.jar-card--feature .jar-card__media img{
  width: 100%; height: 100%; max-height: none; object-fit: cover; filter: none;
  object-position: 50% 62%;
}
.jar-card--feature:hover .jar-card__media img{ transform: scale(1.04); }

@media (min-width: 720px){
  .grid-juices{ grid-template-columns: repeat(2, 1fr); }
  /* the 6-pack reads as a banner under the four single jars */
  .grid-juices > .jar-card--feature{
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
  }
  .jar-card--feature .jar-card__media{ flex: 0 0 44%; aspect-ratio: auto; }
  .jar-card--feature .jar-card__body{
    padding: clamp(28px, 3.4vw, 48px);
    justify-content: center;
  }
}
@media (min-width: 1040px){
  .grid-juices{ grid-template-columns: repeat(4, 1fr); }
}

/* coming soon */
.soon{
  margin-top: clamp(46px, 6vw, 76px);
  padding: clamp(26px, 3.4vw, 40px);
  border: 1px dashed rgba(47,107,43,.32);
  border-radius: var(--r-lg);
  background: rgba(47,107,43,.035);
  text-align: center;
}
.soon__title{
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: -.02em;
}
.soon__lead{ margin-top: 8px; color: var(--muted); font-size: .95rem; }
.soon__list{
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(14px, 3vw, 40px); margin-top: 28px;
}
.soon__list li{
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: .95rem;
}
.soon__list img{
  width: 54px; height: 54px; object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(30,30,30,.16));
}

/* =========================================================
   HOW IT IS MADE
   ========================================================= */
/* overflow guard: the apple cutout is offset past the media frame */
.section--how{ background: var(--cream-2); overflow: hidden; }
.how__inner{ display: grid; gap: clamp(44px, 6vw, 80px); align-items: center; }

.how__media{ position: relative; }
.how__frame{
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.how__frame img{ width: 100%; height: 100%; object-fit: cover; object-position: 42% 50%; }
.how__cut{
  position: absolute; right: -18px; top: -26px;
  width: clamp(78px, 12vw, 116px); height: auto;
  transform: rotate(14deg);
  filter: drop-shadow(0 12px 20px rgba(30,30,30,.22));
  pointer-events: none;
}

.steps{ display: grid; gap: 30px; margin-top: 8px; }
.step{ display: flex; gap: 20px; align-items: flex-start; }
.step__num{
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; border: 1.5px solid var(--green);
  font-family: var(--serif); font-weight: 600; font-size: .92rem; color: var(--green);
  background: var(--cream);
  position: relative;
}
.step:not(:last-child) .step__num::after{
  content: ""; position: absolute; top: 52px; left: 50%;
  width: 1.5px; height: calc(100% + 14px);
  background: linear-gradient(var(--green), rgba(47,107,43,.12));
  transform: translateX(-50%);
}
.step h3{
  font-family: var(--serif); font-weight: 600; font-size: 1.28rem;
  letter-spacing: -.02em; margin-bottom: 6px;
}
.step p{ color: var(--muted); font-size: .98rem; max-width: 30rem; }

.how__note{
  display: flex; align-items: center; gap: 12px;
  margin-top: 38px; padding: 16px 20px;
  background: rgba(242,140,40,.1);
  border-radius: var(--r-md);
  font-size: .92rem; color: #7A4A10; font-weight: 500;
}
.how__note svg{ width: 22px; height: 22px; flex: none; color: var(--orange-deep); }

@media (min-width: 900px){
  .how__inner{ grid-template-columns: .88fr 1.12fr; }
}

/* =========================================================
   WHY FRESH
   ========================================================= */
.section--why{
  background: var(--green-deep); color: var(--on-dark);
}
.section--why .section__title{ color: var(--on-dark); }
.section--why .section__lead{ color: rgba(245,240,230,.72); }

.tiles{ display: grid; gap: clamp(16px, 2vw, 24px); }
.tile{
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  background: rgba(245,240,230,.035);
  transition: transform .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
}
.tile:hover{
  transform: translateY(-5px);
  background: rgba(245,240,230,.07);
  border-color: rgba(242,193,78,.5);
}
.tile__icon{ width: 34px; height: 34px; color: var(--gold); margin-bottom: 22px; }
.tile h3{
  font-family: var(--serif); font-weight: 600; font-size: 1.24rem;
  letter-spacing: -.02em; margin-bottom: 10px;
}
.tile p{ color: rgba(245,240,230,.72); font-size: .95rem; }

@media (min-width: 640px){ .tiles{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .tiles{ grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   ORDER
   ========================================================= */
.section--order{ position: relative; overflow: hidden; }
.order__cut{
  position: absolute; right: -70px; top: 4%;
  width: clamp(140px, 20vw, 250px); height: auto;
  opacity: .16; transform: rotate(14deg);
  pointer-events: none; z-index: 0;
}
.order__inner{
  position: relative; z-index: 1;
  display: grid; gap: clamp(40px, 5vw, 72px); align-items: start;
}
.order__facts{ display: grid; gap: 20px; margin-top: 40px; }
.order__facts div{ border-top: 1px solid var(--line); padding-top: 16px; }
.order__facts dt{
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700; margin-bottom: 5px;
}
.order__facts dd{ font-size: .98rem; }

.order-form{
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: clamp(24px, 3.2vw, 40px);
  display: grid; gap: 20px;
}
.field{ display: grid; gap: 8px; }
.field label,
.qty-set legend{
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.field input, .field select{
  width: 100%; padding: 14px 16px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input::placeholder{ color: #A9A69F; }
.field input:hover, .field select:hover{ border-color: rgba(30,30,30,.24); }
.field input:focus, .field select:focus{
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(47,107,43,.14);
}
.field select{
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%232F6B2B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 42px;
}
.field.is-bad input, .field.is-bad select{ border-color: #C1462F; background: #FDF3F1; }
.field__err{ font-size: .8rem; color: #C1462F; min-height: 0; }
.field__err:empty{ display: none; }

.qty-set{ border-top: 1px solid var(--line-2); padding-top: 22px; }
.qty-list{ display: grid; gap: 8px; margin-top: 14px; }
.qty-row{
  display: flex; align-items: center; gap: 12px;
  padding: 9px 10px 9px 14px; border-radius: var(--r-sm);
  background: var(--cream);
  transition: background-color .2s var(--ease);
}
.qty-row.is-on{ background: rgba(47,107,43,.09); }
.qty-row__name{ flex: 1; min-width: 0; font-size: .95rem; font-weight: 500; }
.qty-row__price{ font-size: .85rem; color: var(--muted-2); }
.stepper{ display: flex; align-items: center; gap: 2px; flex: none; }
.stepper button{
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  background: #fff; color: var(--ink);
  font-size: 1.05rem; line-height: 1;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.stepper button:hover:not(:disabled){ border-color: var(--green); color: var(--green); }
.stepper button:disabled{ opacity: .38; cursor: not-allowed; }
.stepper input{
  width: 44px; text-align: center; padding: 6px 2px;
  border: 0; background: transparent; font-weight: 600;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.qty-total{
  margin-top: 14px; font-size: .88rem; color: var(--muted); font-weight: 500;
}

.sub-toggle{ border-top: 1px solid var(--line-2); padding-top: 22px; }
.switch{ display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.switch input{
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.switch__track{
  width: 50px; height: 29px; border-radius: var(--r-pill);
  background: rgba(30,30,30,.16); padding: 3px; flex: none;
  transition: background-color .28s var(--ease);
}
.switch__thumb{
  display: block; width: 23px; height: 23px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.24);
  transition: transform .28s var(--ease);
}
.switch input:checked + .switch__track{ background: var(--green); }
.switch input:checked + .switch__track .switch__thumb{ transform: translateX(21px); }
.switch input:focus-visible + .switch__track{ outline: 3px solid var(--green); outline-offset: 3px; }
.switch__label{ font-weight: 500; }
.sub-note{
  margin-top: 14px; padding: 14px 16px;
  background: rgba(242,193,78,.2);
  border-radius: var(--r-sm);
  font-size: .9rem;
}
.sub-note strong{ color: var(--green); }
.order-form__fine{ font-size: .8rem; color: var(--muted-2); text-align: center; }

@media (min-width: 900px){
  .order__inner{ grid-template-columns: 1fr 1fr; }
  .order-form{ position: sticky; top: calc(var(--nav-h) + 24px); }
}

/* =========================================================
   ORDER PAGE (order.html)
   ========================================================= */
.page-head{
  padding-top: calc(var(--nav-h) + clamp(34px, 6vw, 72px));
  padding-bottom: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(52% 60% at 88% 0%, rgba(242,193,78,.34) 0%, rgba(242,193,78,0) 62%),
    var(--cream);
}
.crumbs{
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; color: var(--muted-2); margin-bottom: 26px;
}
.crumbs a{ text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover{ color: var(--green); }
.page-head__title{
  font-family: var(--serif); font-optical-sizing: auto;
  font-weight: 600; font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: .98; letter-spacing: -.035em;
}
.page-head__lead{
  margin-top: 22px; font-size: var(--fs-lead);
  color: var(--muted); max-width: 34rem;
}

.section--orderpage{
  position: relative; overflow: hidden;
  padding-top: clamp(40px, 5vw, 64px);
}
.menu-title{
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.menu-list{ display: grid; gap: 10px; margin-bottom: 40px; }
.menu-row{
  display: grid;
  /* narrow screens: the name and ingredients get the full width, with the
     price and button on their own line underneath */
  grid-template-columns: 56px 1fr auto;
  grid-template-areas: "img text text" "img price btn";
  align-items: center; gap: 10px 14px;
  padding: 12px 14px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.menu-row:hover{ border-color: rgba(47,107,43,.3); box-shadow: var(--sh-sm); }
.menu-row__img{
  grid-area: img;
  width: 56px; height: 62px; border-radius: var(--r-sm);
  background: var(--tint, var(--cream-2));
  display: grid; place-items: end center; overflow: hidden; padding-top: 5px;
}
.menu-row__img img{ width: auto; height: 100%; object-fit: contain; }
.menu-row__text{ grid-area: text; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.menu-row__name{ font-weight: 500; font-size: 1rem; }
.menu-row__ing{ font-size: .82rem; color: var(--muted-2); }
.menu-row__price{
  grid-area: price; justify-self: start;
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem;
  letter-spacing: -.02em;
}
.menu-row .add-btn{ grid-area: btn; justify-self: end; }

.order-form__title{
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: -.02em; margin-bottom: 4px;
}

/* the FAQ block reuses the quote cards, with a tighter answer style */
.section--reviews .quote footer strong{ font-size: 1rem; color: var(--green); }

@media (min-width: 560px){
  .menu-row{
    grid-template-columns: 56px 1fr auto auto;
    grid-template-areas: "img text price btn";
    gap: 18px;
  }
  .menu-row__price{ justify-self: end; }
}
@media (min-width: 900px){
  .section--orderpage .order__inner{ grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.section--reviews{ background: var(--cream-2); }
.quotes{
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.quotes::-webkit-scrollbar{ display: none; }
.quote{
  flex: 0 0 min(84%, 380px); scroll-snap-align: center;
  background: var(--cream); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 22px;
}
.quote p{
  font-family: var(--serif); font-weight: 400; font-size: 1.12rem;
  line-height: 1.45; letter-spacing: -.015em; flex: 1;
}
.quote footer{ display: flex; flex-direction: column; gap: 2px; }
.quote strong{ font-weight: 700; font-size: .92rem; }
.quote span{ font-size: .82rem; color: var(--muted-2); }

@media (min-width: 900px){
  .quotes{
    display: grid; grid-template-columns: repeat(3, 1fr);
    overflow: visible; margin-inline: 0; padding-inline: 0;
    gap: clamp(18px, 2.2vw, 28px);
  }
  .quote{ flex: initial; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background: var(--green-ink); color: var(--on-dark);
  padding-top: clamp(56px, 7vw, 88px);
}
.footer__inner{
  display: grid; gap: 40px;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer__tag{
  margin-top: 18px; font-family: var(--serif); font-style: italic;
  color: rgba(245,240,230,.66); font-size: 1rem;
}
.footer__col h2{
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.footer__col{ display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer__col a, .footer__col p{
  color: rgba(245,240,230,.76); font-size: .95rem;
  transition: color .2s var(--ease);
}
.footer__col a:hover{ color: var(--gold); }

.footer__legal{
  border-top: 1px solid var(--line-light);
  padding-block: 28px 34px;
  display: grid; gap: 10px;
}
.footer__legal p{ font-size: .8rem; color: rgba(245,240,230,.55); max-width: 62rem; }
.disclaimer{ font-style: italic; }
.footer__copy{ margin-top: 6px; }
.footer__copy .brand-name{ font-size: .8rem; color: rgba(245,240,230,.55); }

@media (min-width: 720px){
  .footer__inner{ grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
}

/* =========================================================
   CART DRAWER + OVERLAY
   ========================================================= */
.overlay{
  position: fixed; inset: 0; z-index: 150;
  background: rgba(20,26,19,.46);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .34s var(--ease);
}
.overlay.is-on{ opacity: 1; }

.drawer-shell{
  position: fixed; inset: 0; z-index: 160;
  overflow: hidden;
  pointer-events: none;   /* only the drawer itself takes clicks */
}
.drawer{
  position: absolute; top: 0; right: 0; bottom: 0;
  pointer-events: auto;
  width: min(420px, 92vw);
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(102%);
  transition: transform .42s var(--ease);
  box-shadow: -20px 0 60px rgba(30,30,30,.22);
  visibility: hidden;
}
.drawer.is-open{ transform: none; visibility: visible; }
.drawer__head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 20px 26px;
  border-bottom: 1px solid var(--line-2);
}
.drawer__head h2{
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em;
}
.drawer__body{ flex: 1; overflow-y: auto; padding: 22px 26px; }
.drawer__empty{ color: var(--muted-2); font-size: .95rem; padding: 30px 0; text-align: center; }

.cart-list{ display: grid; gap: 14px; }
.cart-item{
  display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center;
  padding: 12px; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-md);
}
.cart-item__img{
  width: 58px; height: 58px; border-radius: var(--r-sm);
  background: var(--tint, var(--cream-2));
  display: grid; place-items: center; overflow: hidden;
}
.cart-item__img img{ width: 100%; height: 100%; object-fit: cover; }
.cart-item__name{ display: block; font-weight: 500; font-size: .94rem; line-height: 1.3; }
.cart-item__price{ display: block; font-size: .82rem; color: var(--muted-2); margin-top: 2px; }
.cart-item__side{ display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item .stepper button{ width: 28px; height: 28px; font-size: .95rem; }
.cart-item .stepper input{ width: 34px; font-size: .9rem; }
.cart-item__remove{
  font-size: .76rem; color: var(--muted-2); text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-item__remove:hover{ color: #C1462F; }

.drawer__foot{
  border-top: 1px solid var(--line-2);
  padding: 22px 26px calc(22px + env(safe-area-inset-bottom));
  background: #fff;
  display: grid; gap: 12px;
}
.drawer__row{
  display: flex; align-items: baseline; justify-content: space-between;
}
.drawer__row span{ font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.drawer__row strong{ font-family: var(--serif); font-size: 1.6rem; font-weight: 600; letter-spacing: -.02em; }
.drawer__fine{ font-size: .78rem; color: var(--muted-2); }
.drawer .btn--primary:disabled{
  opacity: .4; cursor: not-allowed; box-shadow: none; transform: none;
}

/* =========================================================
   MODAL
   ========================================================= */
.modal[hidden]{ display: none; }   /* a class-level display would otherwise beat [hidden] */
.modal{
  position: fixed; inset: 0; z-index: 170;
  display: grid; place-items: center; padding: 24px;
  background: rgba(20,26,19,.5);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .28s var(--ease);
}
.modal.is-on{ opacity: 1; }
.modal__card{
  position: relative;
  width: min(460px, 100%);
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--sh-lg);
  transform: translateY(14px) scale(.98);
  transition: transform .32s var(--ease);
}
.modal.is-on .modal__card{ transform: none; }
.modal__close{ position: absolute; top: 12px; right: 12px; }
.modal__card h2{
  font-family: var(--serif); font-weight: 600; font-size: 1.7rem;
  letter-spacing: -.025em; line-height: 1.1; margin-bottom: 12px;
}
.modal__card p{ color: var(--muted); font-size: .98rem; }
.modal__actions{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* =========================================================
   TOAST
   ========================================================= */
.toast{
  position: fixed; z-index: 180;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 22px);
  background: var(--ink); color: var(--cream);
  padding: 15px 24px; border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  font-size: .94rem; font-weight: 500;
  max-width: calc(100vw - 32px); text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-on{ opacity: 1; transform: translate(-50%, 0); }

/* on phones the bottom of the screen belongs to the drawer's Checkout
   button, so the toast drops down from the top instead */
@media (max-width: 640px){
  .toast{
    bottom: auto;
    top: calc(var(--nav-h) + 10px);
    transform: translate(-50%, -18px);
  }
  .toast.is-on{ transform: translate(-50%, 0); }
}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in{ opacity: 1; transform: none; }
.reveal:nth-child(2){ transition-delay: .06s; }
.reveal:nth-child(3){ transition-delay: .12s; }
.reveal:nth-child(4){ transition-delay: .18s; }
.reveal:nth-child(5){ transition-delay: .24s; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1; transform: none; }
  .marquee{ overflow-x: auto; }
  .marquee__track{ animation: none; }
  .jar-card:hover, .tile:hover, .btn:hover{ transform: none; }
}
