:root {
  --ink: #211b16;
  --ink-soft: #51483f;
  --cream: #f7f0e5;
  --cream-deep: #ecdfce;
  --paper: #fffaf2;
  --red: #9f3428;
  --red-dark: #7e271f;
  --gold: #e5a53a;
  /* The brand gold only clears WCAG AA on near-black. On the saturated
     green and red panels it lands at 3.1:1 and 3.9:1, so those use this
     lighter tint instead (4.6:1 and 5.6:1). */
  --gold-on-colour: #f1d099;
  /* The bright gold is 1.9:1 on cream, below AA even for large text.
     Headings use this deeper tone (4.1:1 on cream, 4.5:1 on paper). */
  --gold-ink: #976d26;
  /* Deep forest green is now the primary brand accent, matching the logo's
     wordmark. --red stays literally red, repurposed for error/warning
     states and the meat-icon marker rather than brand decoration. */
  --green: #1b4332;
  --green-dark: #12301f;
  --line: rgba(33, 27, 22, 0.14);
  --shadow: 0 24px 60px rgba(43, 29, 17, 0.13);
  --radius-lg: 32px;
  --radius-md: 20px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, rgba(229, 165, 58, 0.11), transparent 22rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold-ink);
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(33, 27, 22, 0.08);
  background: var(--cream);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  line-height: 1;
}

.brand > span:last-child {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  border-radius: 1px;
  background: var(--cream);
  transform-origin: bottom;
}

.brand-mark::before {
  width: 4px;
  height: 20px;
  transform: translate(-6px, -1px) rotate(30deg);
}

.brand-mark::after {
  width: 4px;
  height: 20px;
  transform: translate(6px, -1px) rotate(-30deg);
}

.brand-mark span {
  bottom: 10px;
  width: 20px;
  height: 4px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 750;
}

.site-header nav > a {
  transition: color 160ms ease;
}

.site-header nav > a:hover {
  color: var(--green);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 8px 0 16px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.cart-button span {
  display: grid;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
}

.hero {
  display: grid;
  min-height: 700px;
  grid-template-columns: 1.02fr 0.98fr;
  overflow: hidden;
  background: var(--ink);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(54px, calc((100vw - var(--max-width)) / 2));
  padding-right: clamp(42px, 6vw, 100px);
  color: var(--cream);
  background:
    radial-gradient(circle at 13% 10%, rgba(229, 165, 58, 0.15), transparent 17rem),
    linear-gradient(145deg, #2b241d, var(--ink));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 92px);
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(247, 240, 229, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 20px 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  font-size: 18px;
}

.button.primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(27, 67, 50, 0.28);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.dark {
  color: white;
  background: var(--ink);
}

.button.cream {
  color: var(--ink);
  background: var(--cream);
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(247, 240, 229, 0.52);
  color: var(--cream);
  font-size: 13px;
  font-weight: 750;
}

.hero-notes {
  display: flex;
  gap: 30px;
  margin: 46px 0 0;
  padding: 0;
  color: rgba(247, 240, 229, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.hero-notes li {
  position: relative;
}

.hero-notes li + li::before {
  position: absolute;
  left: -17px;
  color: var(--gold);
  content: "•";
}

.hero-image {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(33, 27, 22, 0.25), transparent 36%),
    url("assets/samosa-hero.jpg") 58% center / cover no-repeat;
}

/* WebP where supported: 111KB instead of the 151KB JPEG, and a world away
   from the 2.4MB PNG this used to load. */
@supports (background-image: image-set(url("assets/samosa-hero.webp") type("image/webp"))) {
  .hero-image {
    background:
      linear-gradient(90deg, rgba(33, 27, 22, 0.25), transparent 36%),
      image-set(
        url("assets/samosa-hero.webp") type("image/webp"),
        url("assets/samosa-hero.jpg") type("image/jpeg")
      ) 58% center / cover no-repeat;
  }
}

.hero-stamp {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 42px;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(247, 240, 229, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(5deg);
}

.hero-stamp::after {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(33, 27, 22, 0.34);
  border-radius: inherit;
  content: "";
}

.hero-stamp span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-stamp strong {
  margin: 4px 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.route-strip {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.route-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.route-strip > div + div {
  border-left: 1px solid var(--line);
}

.route-strip strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.route-strip span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 108px 24px;
}

.section h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(43px, 5vw, 70px);
}

.value-section {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 140px);
}

.section-intro > p:last-child,
.areas-copy > p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.value-board {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 18px 60px rgba(61, 41, 24, 0.08);
}

.value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.value-row.featured {
  margin: 8px 0 0;
  border: 0;
  border-radius: 17px;
  color: white;
  background: var(--green);
}

.value-label {
  font-weight: 800;
}

.price-line {
  color: var(--ink-soft);
  font-size: 12px;
}

.price-line strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.featured .price-line,
.featured .price-line strong {
  color: white;
}

.value-save {
  display: grid;
  margin-top: 24px;
  padding: 20px 28px;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 17px;
  background: var(--cream-deep);
}

.value-save span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-save strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.value-save small {
  color: var(--ink-soft);
  font-size: 11px;
}

.menu-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.52);
}

.menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 66px;
}

.menu-heading h2 {
  margin-bottom: 0;
}

.prep-toggle {
  display: grid;
  min-width: 320px;
  margin: 0;
  padding: 5px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-deep);
}

.prep-toggle legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.prep-toggle label {
  cursor: pointer;
}

.prep-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.prep-toggle span {
  display: grid;
  min-height: 45px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  transition: 160ms ease;
}

.prep-toggle input:checked + span {
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(33, 27, 22, 0.18);
}

.prep-toggle input:focus-visible + span {
  outline: 3px solid rgba(159, 52, 40, 0.24);
}

.product-group + .product-group {
  margin-top: 62px;
}

.product-group-title {
  display: grid;
  align-items: center;
  margin-bottom: 20px;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
}

.product-group-title h3 {
  margin-bottom: 1px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.product-group-title p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.product-group-title > strong {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  transform: rotate(-5deg);
}

.food-icon.veggie {
  background: var(--green);
}

.food-icon.meat {
  background: var(--red);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bundle-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bundle-card:hover {
  z-index: 2;
  border-color: rgba(27, 67, 50, 0.35);
  box-shadow: 0 18px 34px rgba(51, 33, 18, 0.1);
  transform: translateY(-5px);
}

.bundle-card.best {
  border-color: rgba(27, 67, 50, 0.3);
  background:
    radial-gradient(circle at 100% 0, rgba(229, 165, 58, 0.16), transparent 10rem),
    var(--paper);
}

.bundle-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(27, 67, 50, 0.1);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bundle-quantity {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 4px;
}

.bundle-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.bundle-price span,
.per-piece {
  color: var(--ink-soft);
  font-size: 11px;
}

.per-piece {
  margin-bottom: 23px;
}

.add-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  transition: 160ms ease;
}

.add-button:hover {
  color: white;
  background: var(--ink);
}

.add-button span {
  font-size: 17px;
  font-weight: 400;
}

.menu-note {
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.menu-note span {
  margin-right: 7px;
  color: var(--gold);
}

.how-section {
  display: grid;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
  color: var(--cream);
  background:
    radial-gradient(circle at 0 100%, rgba(27, 67, 50, 0.3), transparent 26rem),
    var(--ink);
}

.how-heading > p:last-child {
  max-width: 430px;
  color: rgba(247, 240, 229, 0.62);
}

.steps {
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  min-height: 144px;
  padding: 22px 0 22px 62px;
  grid-template-columns: 1fr;
  align-content: center;
  border-bottom: 1px solid rgba(247, 240, 229, 0.14);
}

.steps li:first-child {
  border-top: 1px solid rgba(247, 240, 229, 0.14);
}

.steps li > span {
  position: absolute;
  top: 27px;
  left: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.steps h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.steps p {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 240, 229, 0.58);
  font-size: 14px;
}

.areas-section {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 8vw, 110px);
}

.map-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 80%, rgba(229, 165, 58, 0.18), transparent 14rem),
    repeating-linear-gradient(32deg, transparent 0 27px, rgba(255, 255, 255, 0.035) 28px 29px),
    var(--green);
  box-shadow: var(--shadow);
}

.route-line {
  position: absolute;
  top: 77px;
  left: 50%;
  width: 5px;
  height: 314px;
  border-left: 2px dashed rgba(247, 240, 229, 0.7);
  transform: rotate(20deg);
}

.route-dot {
  position: absolute;
  left: -8px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(247, 240, 229, 0.18);
}

.route-dot.squamish { top: 134px; }
.route-dot.whistler { top: -4px; }

.place {
  position: absolute;
  display: grid;
  color: var(--cream);
  line-height: 1.25;
}

.place strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.place span {
  color: rgba(247, 240, 229, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.squamish-place { left: 17%; top: 209px; text-align: right; }
.whistler-place { right: 17%; top: 35px; }

.map-card > p {
  position: absolute;
  bottom: 19px;
  left: 21px;
  margin: 0;
  color: rgba(247, 240, 229, 0.33);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-style: italic;
}

.areas-copy > p {
  margin-bottom: 30px;
}

.faq-section {
  display: grid;
  padding-top: 62px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 300;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  padding: 0 52px 22px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-cta {
  padding: 110px 24px;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 165, 58, 0.24), transparent 19rem),
    linear-gradient(125deg, var(--green-dark), var(--green));
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 35px;
}

.final-cta h2 em {
  color: var(--cream);
  opacity: 0.7;
}

footer {
  display: grid;
  max-width: var(--max-width);
  min-height: 180px;
  margin: 0 auto;
  padding: 42px 24px;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 28px;
}

footer > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

footer > div {
  display: flex;
  gap: 18px;
  font-size: 12px;
  font-weight: 750;
}

footer > small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.mobile-cart-bar {
  position: fixed;
  z-index: 18;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: white;
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(33, 27, 22, 0.28);
}

.mobile-cart-bar > div {
  display: grid;
  line-height: 1.3;
}

.mobile-cart-bar strong {
  font-size: 12px;
}

.mobile-cart-bar span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.mobile-cart-bar button {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.mobile-cart-bar button span {
  color: white;
}

.toast {
  position: fixed;
  z-index: 40;
  bottom: 24px;
  left: 50%;
  padding: 11px 17px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-dialog {
  width: min(620px, 100%);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(33, 27, 22, 0.24);
}

.cart-dialog::backdrop {
  background: rgba(25, 20, 16, 0.62);
  backdrop-filter: blur(4px);
}

.cart-dialog[open] {
  animation: slide-in 240ms ease both;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-shell {
  min-height: 100%;
  padding: 38px clamp(24px, 6vw, 52px) 60px;
}

.cart-shell > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.cart-shell > header .eyebrow {
  margin-bottom: 8px;
}

.cart-shell > header h2 {
  margin: 0;
  font-size: 42px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 27px;
  font-weight: 300;
  cursor: pointer;
}

.cart-lines {
  padding: 18px 0 4px;
}

.empty-cart {
  display: grid;
  min-height: 180px;
  place-content: center;
  color: var(--ink-soft);
  text-align: center;
}

.empty-cart strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.empty-cart p {
  margin: 0;
  font-size: 13px;
}

.cart-line {
  display: grid;
  align-items: center;
  padding: 15px 0;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-line-title {
  display: grid;
  gap: 2px;
}

.cart-line-title strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  text-transform: capitalize;
}

.cart-line-title span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-control {
  display: grid;
  overflow: hidden;
  grid-template-columns: 31px 28px 31px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  display: grid;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.line-total {
  min-width: 48px;
  font-size: 13px;
  font-weight: 850;
  text-align: right;
}

.cart-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 18px 0 4px;
}

.cart-summary > span {
  display: grid;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cart-summary > span strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0;
  text-transform: none;
}

.cart-summary > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.cart-error {
  min-height: 19px;
  margin-bottom: 15px;
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
}

#order-form {
  display: grid;
  gap: 15px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.form-intro h3,
.order-ready h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.form-intro p,
.order-ready > p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#order-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.optional {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
}

#order-form input,
#order-form select,
#order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: border 160ms ease, box-shadow 160ms ease;
}

#order-form textarea {
  min-height: 86px;
  resize: vertical;
}

#order-form input:focus,
#order-form select:focus,
#order-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(159, 52, 40, 0.09);
}

#order-form label:has(small:not(:empty)) input,
#order-form label:has(small:not(:empty)) select {
  border-color: var(--red);
}

#order-form label small {
  min-height: 0;
  color: var(--red);
  font-size: 9px;
  font-weight: 750;
}

.submit-order {
  width: 100%;
  margin-top: 5px;
}

.fine-print {
  margin: -4px 10px 0;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.order-ready {
  padding: 42px 0;
  text-align: center;
}

.order-ready .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}

.ready-check {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 25px;
}

.order-ready .button {
  width: 100%;
  margin: 20px 0 13px;
}

.text-button {
  padding: 5px 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.text-button.muted {
  display: block;
  margin: 14px auto 0;
  border: 0;
  color: var(--ink-soft);
}

[hidden] {
  display: none !important;
}

/* A single-colour ring can't clear 3:1 on both the cream pages and the dark
   hero/footer/pledge sections (the gold this used was 1.58:1 on cream). A
   white ring plus a dark outer ring guarantees one of the two contrasts
   against whatever is behind it, on any background on the site. */
:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 1px;
  box-shadow: 0 0 0 5px var(--ink);
  border-radius: 2px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 640px;
    grid-template-columns: 1.12fr 0.88fr;
  }

  .hero-content {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(51px, 7vw, 68px);
  }

  .bundle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-section,
  .areas-section {
    gap: 52px;
  }

  .how-section,
  .faq-section {
    grid-template-columns: 1fr 1.3fr;
    gap: 52px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .brand strong {
    font-size: 16px;
  }

  .site-header nav > a,
  .header-cart {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
  }

  .hero-image {
    min-height: 390px;
    background-position: 59% center;
  }

  .hero-image::after {
    position: absolute;
    inset: auto 0 0;
    height: 80px;
    background: linear-gradient(transparent, var(--ink));
    content: "";
  }

  .hero-stamp {
    right: 18px;
    bottom: 22px;
    z-index: 1;
    width: 104px;
    height: 104px;
  }

  .hero-stamp strong {
    font-size: 23px;
  }

  .hero-content {
    padding: 47px 22px 52px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-notes {
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 32px;
  }

  .hero-notes li + li::before {
    left: -14px;
  }

  .route-strip {
    padding: 23px 16px;
  }

  .route-strip > div {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .route-strip strong {
    font-size: 24px;
  }

  .route-strip span {
    font-size: 8px;
  }

  .section {
    padding: 76px 20px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .value-section,
  .how-section,
  .areas-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .value-board {
    padding: 12px;
    border-radius: 24px;
  }

  .value-row {
    min-height: 82px;
    padding: 0 17px;
  }

  .value-save {
    padding: 17px;
  }

  .menu-heading {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .prep-toggle {
    min-width: 0;
  }

  .product-group-title {
    grid-template-columns: auto 1fr;
  }

  .product-group-title > strong {
    display: none;
  }

  .bundle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bundle-card {
    padding: 20px 16px 16px;
  }

  .bundle-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .bundle-quantity {
    margin-bottom: 14px;
  }

  .bundle-price strong {
    font-size: 33px;
  }

  .how-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .steps li {
    min-height: 132px;
    padding-left: 48px;
  }

  .map-card {
    min-height: 430px;
  }

  .areas-copy .button {
    width: 100%;
  }

  .faq-section {
    padding-top: 72px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 17px;
  }

  .final-cta {
    padding: 84px 20px 92px;
  }

  footer {
    padding: 42px 20px 112px;
    grid-template-columns: 1fr auto;
  }

  footer > p {
    display: none;
  }

  footer > small {
    text-align: left;
  }

  .mobile-cart-bar:not([hidden]) {
    display: flex;
  }

  .toast {
    bottom: 82px;
  }

  .cart-dialog {
    width: 100%;
  }

  .cart-shell {
    padding: 24px 18px 44px;
  }

  .cart-shell > header h2 {
    font-size: 36px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .hero-image {
    min-height: 340px;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .bundle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .bundle-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
