:root {
  --cream: #fff8ef;
  --paper: #f6eadb;
  --peach: #efb184;
  --caramel: #bd6b3d;
  --coffee: #21140f;
  --muted: #76655b;
  --pistachio: #a8b957;
  --line: rgba(33, 20, 15, .16);
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(62, 31, 16, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--coffee);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.announcement {
  min-height: 36px;
  padding: max(9px, env(safe-area-inset-top)) 20px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--coffee);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lang-toggle {
  position: absolute;
  right: max(18px, env(safe-area-inset-right));
  top: max(5px, env(safe-area-inset-top));
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 4px 9px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.site-header {
  height: 82px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,248,239,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(255,248,239,.98);
  box-shadow: 0 12px 35px rgba(49,24,12,.09);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--coffee);
  border-radius: 50%;
  position: relative;
}
.brand-mark::before, .brand-mark i, .brand-mark i::after {
  content: "";
  display: block;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}
.brand-mark::before { width: 24px; height: 24px; position: absolute; }
.brand-mark i { width: 15px; height: 15px; display: grid; place-items: center; }
.brand-mark i::after { width: 6px; height: 6px; }
.brand-name { font: 40px/1 "Italiana", serif; letter-spacing: -.05em; }
.brand-name > span { color: var(--caramel); }
.desktop-nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.bag-button {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 11px 15px 11px 18px;
  background: var(--coffee);
  color: white;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.bag-count {
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pistachio);
  color: var(--coffee);
}

.hero {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: min(790px, calc(100vh - 118px));
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: clamp(70px, 9vw, 140px) 5vw 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  z-index: 2;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--caramel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Italiana", serif; font-weight: 400; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(62px, 7.1vw, 116px);
  line-height: .89;
  letter-spacing: -.055em;
}
.hero-lede {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 18px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(33,20,15,.18); }
.button-dark { background: var(--coffee); color: white; }
.button-lime { background: var(--pistachio); color: var(--coffee); }
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--coffee); padding-bottom: 4px; }
.social-proof { display: flex; align-items: center; margin-top: 70px; }
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-right: -8px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.avatar-one { background: var(--peach); }
.avatar-two { background: var(--pistachio); }
.avatar-three { background: #f1dfc9; }
.social-proof p { margin: 0 0 0 22px; font-size: 13px; line-height: 1.6; color: var(--muted); }
.social-proof strong { color: var(--coffee); }
.hero-visual { min-width: 0; position: relative; background: var(--peach); overflow: hidden; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 30px 0 70px rgba(46, 24, 14, .08);
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 59% center;
  transform: scale(1.055) translate3d(0, var(--hero-shift, 0px), 0);
  transform-origin: center;
  will-change: transform;
}
.flavor-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255,248,239,.95);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(33,20,15,.13);
}
.flavor-tag b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--coffee); color: white; font-size: 11px; }
.tag-one { top: 17%; right: 7%; }
.tag-two { left: 6%; bottom: 21%; }
.fresh-stamp {
  width: 118px;
  height: 118px;
  position: absolute;
  right: 6%;
  bottom: 6%;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .2em;
}
.fresh-stamp em { font: 25px/1 "Italiana", serif; letter-spacing: .03em; }
.flavor-marquee {
  height: 55px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(239,177,132,.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.flavor-marquee > * {
  transform: translate3d(var(--marquee-shift, 0px), 0, 0);
  will-change: transform;
}

.steps-section, .menu-section, .events-section, .faq-section { padding: 110px 7vw; }
.steps-section { background: var(--coffee); color: var(--cream); }
.steps-section > .eyebrow { text-align: center; color: var(--peach); }
.steps { max-width: 1200px; margin: 55px auto 0; display: grid; grid-template-columns: repeat(3,1fr); }
.steps article { padding: 20px 6vw 10px 0; border-right: 1px solid rgba(255,255,255,.15); }
.steps article + article { padding-left: 6vw; }
.steps article:last-child { border-right: 0; }
.steps span { color: var(--peach); font-size: 11px; letter-spacing: .15em; }
.steps h3 { margin: 25px 0 12px; font: 30px/1.15 "Italiana", serif; }
.steps p { margin: 0; color: #cbbeb5; font-size: 14px; line-height: 1.7; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 55px; }
.section-heading h2, .pickup-section h2, .faq-section h2 { margin: 0; font-size: clamp(48px, 6vw, 86px); line-height: .96; letter-spacing: -.04em; }
.section-heading > p { max-width: 480px; margin: 0; color: var(--muted); line-height: 1.7; }
.menu-section { background: var(--white); }
.filter-row { display: flex; gap: 10px; margin-bottom: 38px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.filter-chip.active { background: var(--coffee); color: white; border-color: var(--coffee); }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.menu-card { min-width: 0; position: relative; background: var(--cream); overflow: hidden; }
.menu-card:nth-child(even) { background: var(--paper); }
.product-image-wrap { aspect-ratio: 1 / .82; position: relative; overflow: hidden; background: #eeb48c; }
.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.menu-card:hover .product-image { transform: scale(1.035); }
.product-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,248,239,.9);
  font-size: 10px;
  letter-spacing: .1em;
}
.favorite-button {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,248,239,.9);
  font-size: 20px;
  cursor: pointer;
}
.favorite-button.active { background: var(--coffee); color: var(--peach); }
.product-info { min-height: 196px; padding: 25px; display: flex; flex-direction: column; }
.product-tag { color: var(--caramel); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.product-info h3 { margin: 9px 0 8px; font: 34px/1 "Italiana", serif; }
.product-description { min-height: 42px; margin-bottom: 22px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 17px; font-weight: 700; }
.add-button {
  border: 1px solid var(--coffee);
  border-radius: 999px;
  padding: 9px 15px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.add-button:hover { background: var(--coffee); color: white; }

.events-section { background: #f2dec9; }
.heading-badges { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.heading-badges .eyebrow { margin: 0; }
.demo-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(189,107,61,.45);
  border-radius: 999px;
  padding: 5px 9px;
  color: #914927;
  background: rgba(255,248,239,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.calendar-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: start; }
.calendar-card { padding: clamp(24px, 3vw, 42px); background: var(--cream); box-shadow: var(--shadow); }
.calendar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.calendar-top div { text-align: center; }
.calendar-top small { color: var(--muted); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.calendar-top h3 { margin: 7px 0 0; font: 27px/1 "Italiana", serif; }
.calendar-top button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; opacity: .45; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.calendar-weekdays span { padding-bottom: 12px; color: var(--muted); text-align: center; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.calendar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
}
button.calendar-day { border-right: 0; border-bottom: 0; border-left: 0; cursor: pointer; }
.calendar-day.empty { color: transparent; }
.calendar-day.event-day { font-weight: 700; }
.calendar-day.event-day::before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  border-radius: 50%;
  background: var(--pistachio);
  transition: transform .2s ease;
}
.calendar-day.event-day:hover::before { transform: scale(1.12); }
.calendar-day.event-day span { position: relative; z-index: 1; }
.calendar-day.event-day::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--caramel);
}
.calendar-legend { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 21px; color: var(--muted); font-size: 11px; }
.calendar-legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--pistachio); }
.event-list { display: grid; gap: 18px; }
.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(33,20,15,.14);
  background: rgba(255,248,239,.62);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.event-card.highlight { transform: translateY(-3px); background: var(--cream); box-shadow: 0 18px 40px rgba(74,39,21,.12); }
.event-date { width: 90px; min-height: 108px; display: grid; place-content: center; border: 1px solid var(--coffee); text-align: center; }
.event-date span { font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.event-date strong { margin-top: 4px; font: 50px/1 "Italiana", serif; }
.event-info h3 { margin: 13px 0 8px; font: 29px/1.1 "Italiana", serif; }
.event-info > p { color: var(--muted); font-size: 12px; }
.event-description { max-width: 560px; line-height: 1.55; }
.event-order { border: 0; border-bottom: 1px solid var(--coffee); padding: 3px 0; background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }
.event-order span { margin-left: 8px; }

.pickup-section {
  padding: 100px 8vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  background: var(--pistachio);
}
.pickup-section > div:first-child { max-width: 770px; }
.pickup-section .eyebrow { color: var(--coffee); }
.pickup-section > div > p:not(.eyebrow) { max-width: 600px; margin: 28px 0; line-height: 1.7; }
.pickup-section .button-lime { background: var(--coffee); color: white; }
.pickup-note { min-width: 270px; display: flex; gap: 15px; align-items: center; border-top: 1px solid rgba(33,20,15,.35); padding-top: 20px; }
.pickup-note > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid; border-radius: 50%; font-size: 22px; }
.pickup-note p { margin: 0; font-size: 12px; line-height: 1.7; }
.story-section { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--coffee); color: var(--cream); }
.story-quote { min-height: 510px; padding: 80px 7vw; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg,#391d12,#7f3d23); }
.story-quote > p { margin: 0 0 -30px; color: var(--peach); font: 100px/1 "Italiana", serif; }
.story-quote h2 { margin: 0; font-size: clamp(50px, 6vw, 88px); line-height: 1; }
.story-copy { padding: 80px 8vw; display: flex; flex-direction: column; justify-content: center; }
.story-copy > p:not(.eyebrow) { color: #cdbfb6; font-size: 18px; line-height: 1.8; }
.story-copy a { width: max-content; margin-top: 25px; color: var(--peach); border-bottom: 1px solid; font-weight: 700; }
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; background: var(--white); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 24px 0; display: flex; justify-content: space-between; list-style: none; font-weight: 700; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 22px; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 40px 22px 0; color: var(--muted); line-height: 1.7; }
footer { padding: 70px 7vw 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; background: var(--cream); }
.footer-brand .brand-name { font-size: 34px; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
footer > p { justify-self: end; font: 28px/1 "Italiana", serif; }
.footer-links { display: flex; gap: 25px; font-size: 12px; font-weight: 700; }
footer small { justify-self: end; color: var(--muted); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(33,20,15,.45);
  backdrop-filter: blur(3px);
}
.cart-drawer {
  width: min(460px, 100%);
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 28px;
  padding-top: max(28px, calc(env(safe-area-inset-top) + 16px));
  padding-bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
  background: var(--cream);
  transform: translateX(102%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 50px rgba(33,20,15,.18);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-header .eyebrow { margin-bottom: 8px; }
.drawer-header h2 { margin: 0; font-size: 48px; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 25px; cursor: pointer; }
.selected-event { margin-top: 18px; padding: 14px; border-radius: 12px; background: #e7edc4; font-size: 11px; line-height: 1.5; }
.selected-event strong { display: block; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-line { padding: 18px 0; display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.cart-line img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.cart-line h3 { margin: 0 0 5px; font: 21px/1 "Italiana", serif; }
.cart-line p { margin: 0; color: var(--muted); font-size: 11px; }
.cart-qty { display: flex; align-items: center; gap: 10px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.empty-cart { margin: auto 0; text-align: center; }
.empty-roll {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: block;
  border: 10px solid #dcc8b5;
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px var(--cream), inset 0 0 0 20px #dcc8b5;
}
.empty-cart h3 { margin-bottom: 10px; font: 28px/1 "Italiana", serif; }
.empty-cart p { color: var(--muted); }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 17px; }
.cart-footer > p { margin: 10px 0 18px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.full-button { width: 100%; justify-content: space-between; }

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.checkout-modal.open { opacity: 1; pointer-events: auto; }
.checkout-shell { width: min(780px, calc(100% - 36px)); min-height: 100dvh; margin: 0 auto; padding: max(24px, env(safe-area-inset-top)) 0 max(70px, env(safe-area-inset-bottom)); }
.checkout-topbar { min-height: 75px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.checkout-topbar .brand-name { font-size: 30px; }
.checkout-topbar .brand-mark { width: 32px; height: 32px; }
.checkout-topbar .icon-button { justify-self: end; }
.checkout-progress { display: flex; align-items: center; }
.checkout-progress span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: 11px; font-weight: 700; }
.checkout-progress span.active { border-color: var(--coffee); background: var(--coffee); color: white; }
.checkout-progress i { width: 32px; height: 1px; background: var(--line); }
.demo-notice { margin: 20px 0 35px; padding: 13px 16px; display: flex; justify-content: center; gap: 8px; border: 1px solid #d6b572; background: #fff1c9; font-size: 11px; text-align: center; }
.checkout-step { display: none; }
.checkout-step.active { display: block; animation: reveal .35s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.checkout-heading { margin-bottom: 32px; text-align: center; }
.checkout-heading .eyebrow { margin-bottom: 10px; }
.checkout-heading h2, .checkout-success h2 { margin-bottom: 12px; font-size: clamp(45px, 7vw, 68px); }
.checkout-heading > p:last-child, .checkout-success > p { color: var(--muted); }
.checkout-line { padding: 15px 0; display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); }
.checkout-line img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; }
.checkout-line h3 { margin: 0 0 6px; font: 21px/1 "Italiana", serif; }
.checkout-line p { margin: 0; color: var(--muted); font-size: 11px; }
.order-totals { margin: 25px 0; padding: 22px; background: var(--paper); }
.order-totals p { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 13px; }
.order-totals p:last-child { margin: 0; }
.order-totals .grand-total { padding-top: 14px; border-top: 1px solid var(--line); font-size: 17px; }
.pickup-options { display: grid; gap: 12px; }
.pickup-option { position: relative; }
.pickup-option input { position: absolute; opacity: 0; }
.pickup-option label { padding: 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.pickup-option input:checked + label { border: 2px solid var(--coffee); padding: 19px; background: #f1f4d8; }
.option-radio { width: 22px; height: 22px; border: 1px solid var(--coffee); border-radius: 50%; }
.pickup-option input:checked + label .option-radio { border: 6px solid var(--coffee); }
.pickup-option h3 { margin: 0 0 5px; font: 23px/1.1 "Italiana", serif; }
.pickup-option p { margin: 0; color: var(--muted); font-size: 11px; }
.pickup-option small { padding: 5px 8px; border-radius: 999px; background: var(--peach); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.checkout-actions { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.text-button { border: 0; background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label > span { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; }
.form-grid input { width: 100%; height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--white); }
.form-grid input:focus { border-color: var(--coffee); box-shadow: 0 0 0 1px var(--coffee); }
.full-field { grid-column: 1 / -1; }
.demo-checkbox { margin-top: 22px; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.demo-checkbox input { margin-top: 2px; }
.checkout-success { padding: 60px 0; text-align: center; }
.success-mark { width: 70px; height: 70px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--pistachio); font-size: 30px; }
.confirmation-card { max-width: 480px; margin: 32px auto; padding: 22px; background: var(--paper); text-align: left; }
.confirmation-card p { display: flex; justify-content: space-between; margin-bottom: 14px; color: var(--muted); font-size: 12px; }
.confirmation-card p:last-child { margin: 0; padding-top: 14px; border-top: 1px solid var(--line); }
.confirmation-card strong { color: var(--coffee); }
.toast {
  position: fixed;
  z-index: 140;
  bottom: 28px;
  left: 50%;
  max-width: calc(100% - 36px);
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--coffee);
  color: white;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.mobile-order-bar { display: none; }

/* Scroll choreography */
.scroll-progress {
  height: 3px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--caramel), var(--pistachio));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  will-change: transform;
}
.motion-ready .hero-copy > * {
  opacity: 0;
  animation: heroCopyIn .8s cubic-bezier(.2,.75,.2,1) forwards;
}
.motion-ready .hero-copy > *:nth-child(1) { animation-delay: .08s; }
.motion-ready .hero-copy > *:nth-child(2) { animation-delay: .17s; }
.motion-ready .hero-copy > *:nth-child(3) { animation-delay: .27s; }
.motion-ready .hero-copy > *:nth-child(4) { animation-delay: .37s; }
.motion-ready .hero-copy > *:nth-child(5) { animation-delay: .49s; }
.motion-ready .hero-visual { clip-path: inset(0 0 100% 0); animation: heroCurtain 1.05s .12s cubic-bezier(.6,0,.2,1) forwards; }
.motion-ready .flavor-tag, .motion-ready .fresh-stamp { opacity: 0; animation: tagIn .6s .85s cubic-bezier(.2,.8,.2,1) forwards; }
.motion-ready .tag-two { animation-delay: .98s; }
.motion-ready .fresh-stamp { animation-delay: 1.1s; }

.motion-ready .scroll-reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .72s var(--reveal-delay, 0ms) cubic-bezier(.2,.75,.2,1),
    transform .72s var(--reveal-delay, 0ms) cubic-bezier(.2,.75,.2,1),
    filter .72s var(--reveal-delay, 0ms) ease;
}
.motion-ready .scroll-reveal.reveal-left { transform: translate3d(-42px, 0, 0); }
.motion-ready .scroll-reveal.reveal-right { transform: translate3d(42px, 0, 0); }
.motion-ready .scroll-reveal.reveal-scale { transform: scale(.94); }
.motion-ready .scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.motion-ready .calendar-card.is-visible .calendar-day:not(.empty) {
  opacity: 0;
  animation: datePop .42s calc(var(--day-delay, 0ms) + 220ms) cubic-bezier(.2,.8,.2,1) forwards;
}
.motion-ready .calendar-card.is-visible .event-day::before {
  animation: eventPulse 2.4s 1.2s ease-in-out infinite;
}
.motion-ready .story-quote.is-visible::after {
  content: "";
  width: 150%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -25%;
  background: linear-gradient(90deg, transparent, rgba(239,177,132,.45), transparent);
  transform: rotate(-17deg) scaleX(0);
  animation: storyLine 1.2s .35s ease forwards;
}
.story-quote { position: relative; overflow: hidden; }
.bag-count.bump { animation: bagBump .35s ease; }

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(24px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroCurtain {
  to { clip-path: inset(0 0 0 0); }
}
@keyframes tagIn {
  from { opacity: 0; transform: translateY(18px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes datePop {
  from { opacity: 0; transform: translateY(9px) scale(.82); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes eventPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,185,87,.2); }
  50% { box-shadow: 0 0 0 8px rgba(168,185,87,0); }
}
@keyframes storyLine {
  to { transform: rotate(-17deg) scaleX(1); }
}
@keyframes bagBump {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.22); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 7vw 70px; }
  .hero-visual { aspect-ratio: 1.28; }
  .hero-visual img { object-position: 60% 52%; }
  .flavor-marquee { position: relative; grid-column: 1; overflow: hidden; gap: 35px; justify-content: flex-start; padding: 0 20px; }
  .section-heading { align-items: start; flex-direction: column; gap: 24px; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .calendar-layout { grid-template-columns: 1fr; }
  .calendar-card { max-width: 680px; width: 100%; margin: 0 auto; }
  .faq-section { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .announcement { justify-content: flex-start; min-height: calc(34px + env(safe-area-inset-top)); padding-left: 16px; padding-right: 64px; font-size: 8px; letter-spacing: .1em; }
  .site-header {
    height: 66px;
    padding: 0 16px;
    position: sticky;
    top: 0;
  }
  .brand { gap: 8px; }
  .brand-mark { width: 31px; height: 31px; }
  .brand-mark::before { width: 20px; height: 20px; }
  .brand-mark i { width: 12px; height: 12px; }
  .brand-name { font-size: 30px; }
  .bag-button { padding: 8px; background: transparent; color: var(--coffee); }
  .bag-button > span:first-child { display: none; }
  .bag-count { min-width: 31px; height: 31px; }
  .hero { min-height: 0; }
  .hero-copy { padding: 55px 20px 50px; }
  h1 { font-size: clamp(58px, 18vw, 78px); line-height: .91; }
  .hero-lede { font-size: 15px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .social-proof { margin-top: 45px; }
  .avatar { width: 36px; height: 36px; }
  .social-proof p { margin-left: 17px; font-size: 11px; }
  .hero-visual { aspect-ratio: 1 / 1.03; min-height: 0; }
  .hero-visual img { object-position: 68% 50%; }
  .flavor-tag { padding: 6px 12px 6px 6px; font-size: 11px; }
  .flavor-tag b { width: 30px; height: 30px; }
  .tag-one { top: 13%; right: 4%; }
  .tag-two { left: 5%; bottom: 18%; }
  .fresh-stamp { width: 88px; height: 88px; right: 4%; bottom: 5%; font-size: 7px; }
  .fresh-stamp em { font-size: 18px; }
  .flavor-marquee { height: 48px; font-size: 9px; }
  .steps-section, .menu-section, .events-section, .faq-section { padding: 76px 20px; }
  .steps { grid-template-columns: 1fr; margin-top: 35px; }
  .steps article, .steps article + article { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .steps article:last-child { border-bottom: 0; }
  .steps h3 { margin: 15px 0 8px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .pickup-section h2, .faq-section h2 { font-size: 52px; }
  .section-heading > p { font-size: 13px; }
  .filter-row { margin-right: -20px; padding-right: 20px; }
  .menu-grid { grid-template-columns: 1fr; }
  .product-image-wrap { aspect-ratio: 1 / .9; }
  .product-info { min-height: 182px; }
  .calendar-card { padding: 20px 14px; }
  .calendar-top { margin-bottom: 22px; }
  .calendar-day { font-size: 11px; }
  .calendar-day.event-day::before { width: 32px; height: 32px; }
  .event-card { grid-template-columns: 72px 1fr; gap: 16px; padding: 18px; }
  .event-date { width: 70px; min-height: 88px; }
  .event-date strong { font-size: 40px; }
  .event-info h3 { font-size: 25px; }
  .event-description { font-size: 11px; }
  .pickup-section { padding: 76px 20px; align-items: start; flex-direction: column; }
  .pickup-note { min-width: 0; width: 100%; }
  .story-section { grid-template-columns: 1fr; }
  .story-quote { min-height: 390px; padding: 60px 20px; }
  .story-copy { padding: 70px 20px; }
  .faq-section { gap: 32px; }
  footer { padding: 55px 20px 36px; grid-template-columns: 1fr; }
  footer > p, footer small { justify-self: start; }
  .footer-links { flex-wrap: wrap; }
  .cart-drawer { padding-right: 20px; padding-left: 20px; }
  .mobile-order-bar {
    height: calc(66px + env(safe-area-inset-bottom));
    padding: 10px 20px max(10px, env(safe-area-inset-bottom));
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.2);
    background: var(--coffee);
    color: white;
    text-align: left;
  }
  .mobile-order-bar small { display: block; color: var(--peach); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
  .mobile-order-bar strong { font-size: 13px; }
  .mobile-order-bar > span:last-child { padding-top: 8px; font-size: 15px; font-weight: 700; }
  .toast { bottom: calc(84px + env(safe-area-inset-bottom)); }
  .checkout-shell { width: calc(100% - 30px); }
  .checkout-topbar { grid-template-columns: 1fr auto; }
  .checkout-progress { grid-column: 1 / -1; grid-row: 2; justify-self: center; margin: 10px 0 18px; }
  .checkout-topbar .icon-button { grid-column: 2; grid-row: 1; }
  .demo-notice { align-items: center; flex-direction: column; line-height: 1.4; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .checkout-actions { align-items: stretch; flex-direction: column-reverse; }
  .checkout-actions .button { width: 100%; }
  .pickup-option label { grid-template-columns: auto 1fr; }
  .pickup-option small { grid-column: 2; width: max-content; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-visual img, .flavor-marquee > * { transform: none !important; }
  .scroll-reveal { opacity: 1 !important; filter: none !important; transform: none !important; }
}
