/* ============================================================
   Cardinal Cake Co. — single-page site (minimal)
   One cream page, one dark moment, one red accent.
   ============================================================ */

/* ---- Fonts ------------------------------------------------ */
@font-face {
  font-family: "Garet";
  src: url("assets/fonts/Garet-Book.woff2") format("woff2"),
       url("assets/fonts/Garet-Book.woff") format("woff");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Garet";
  src: url("assets/fonts/Garet-Heavy.woff2") format("woff2"),
       url("assets/fonts/Garet-Heavy.woff") format("woff");
  font-weight: 800; font-display: swap;
}
@font-face {
  font-family: "Le Jour Serif";
  src: url("assets/fonts/LeJourSerif.otf") format("opentype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Satisfy";
  src: url("assets/fonts/Satisfy-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "TAY Milkbar";
  src: url("assets/fonts/TAYMilkbarRegular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}

/* ---- Tokens ----------------------------------------------- */
:root {
  --paper:   #F7F1E6;   /* oat-milk cream                    */
  --ink:     #332B26;   /* warm cocoa ink                    */
  --ink-soft:#5C534C;
  --terra:   #C47A5C;   /* terracotta clay — the pop         */
  --terra-deep:#A05A3F;
  --sage:    #A8B69B;   /* sage whisper                      */
  --olive:   #5C6647;   /* olive grove — the dark moment     */
  --blush:   #E9CFC5;   /* blush petal                       */
  --blush-l: #F3E4DC;   /* light blush band                  */
  --line:    #E5DAC9;

  --display:"TAY Milkbar", "Garet", "Arial Rounded MT Bold", sans-serif;
  --serif:  "Le Jour Serif", "Cormorant Garamond", Georgia, serif;
  --script: "Satisfy", "Snell Roundhand", cursive;
  --sans:   "Garet", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ------------------------------------------------ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2.5px solid var(--terra); outline-offset: 3px; border-radius: 2px; }

/* ---- Shared ----------------------------------------------- */
.wrap { width: 100%; max-width: 1020px; margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 680px; }

.label {
  font-family: var(--sans); font-weight: 800; font-size: .7rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--terra);
  margin: 0 0 14px;
}
.title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.08;
  letter-spacing: .01em; margin: 0;
}
/* small emblem tucked after a heading, e.g. "Start an Order" */
.title__emblem {
  height: 1em; width: auto; display: inline-block;
  vertical-align: baseline; margin-left: .18em;
  transform: translateY(.16em) rotate(8deg);
}
.lede { color: var(--ink-soft); margin: 18px 0 0; }

.sec { padding: clamp(56px, 8vw, 92px) 0; }
/* keep anchor targets clear of the sticky nav */
section[id] { scroll-margin-top: 80px; }
/* land the porch box mid-screen when jumped to from the hero sticker */
#porch-stand { scroll-margin-top: calc(50vh - 150px); }
.sec--line { border-top: 1px solid var(--line); }
.sec__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding: 1.1em 2em; border: 1.5px solid var(--terra); border-radius: 999px;
  background: var(--terra); color: var(--paper); cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { background: var(--terra-deep); border-color: var(--terra-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: transparent; color: var(--paper); border-color: color-mix(in srgb, var(--paper) 55%, transparent); }
.btn--light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
/* "Coming Soon" placeholder: same look as a button, but not a link */
.btn--soon { cursor: default; }
.btn--soon:hover { background: var(--terra); border-color: var(--terra); }

/* Shop paused: each card's Order link stays in the HTML but is hidden.
   Relaunch by removing class="shop-paused" from <body>. */
.shop-paused .ccard__order { display: none; }
/* With the Order link hidden, centre the name and description in the space
   under the photo, so shorter cards don't end in a block of empty space. */
.shop-paused .ccard__name { margin-top: auto; }
.shop-paused .ccard__desc { margin-bottom: auto; }

/* Announcement bar above the nav */
.announce {
  background: var(--terra-deep); color: var(--paper);
  font-family: var(--sans); font-weight: 800; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  text-align: center; padding: 9px 16px; line-height: 1.4;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__brand { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.nav__logo { height: 66px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-family: var(--sans); font-weight: 800; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-soft); transition: color .25s var(--ease);
}
.nav__links a:hover { color: var(--terra); }
.nav__cta { padding: .85em 1.5em; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: var(--ink);
}
.nav__toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero — compact olive panel on vertical stripes
   ============================================================ */
.hero {
  background: repeating-linear-gradient(90deg,
    color-mix(in srgb, var(--sage) 34%, var(--paper)) 0 26px,
    var(--paper) 26px 52px);
  padding: clamp(26px, 4.5vw, 52px) 0;
  text-align: center;
}
.hero__panel {
  position: relative; z-index: 0; max-width: 940px; margin: 0 auto;
  background: var(--olive); border-radius: 26px;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 8vw, 110px);
  color: var(--paper);
}
/* faint scattered whisk-and-rolling-pin emblems across the olive panel */
.hero__panel::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit; pointer-events: none;
  opacity: .14;
  background-image: url("assets/img/emblem-tile.svg");
  background-repeat: repeat;
  background-size: 320px 320px;
}
.hero__card {
  position: absolute; width: clamp(140px, 16vw, 200px);
  aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 14px; border: 5px solid var(--paper);
  box-shadow: 0 10px 30px rgba(51,43,38,.25);
}
.hero__card--left { left: -40px; top: 42px; transform: rotate(-4deg); }
.hero__card--right { right: -64px; bottom: 64px; transform: rotate(3deg); }
.hero__script {
  font-family: var(--script); font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: color-mix(in srgb, var(--blush) 85%, white); line-height: 1; margin: 0 0 6px;
}
.hero__script::first-letter { text-transform: uppercase; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 4.4rem); line-height: 1.02;
  letter-spacing: .01em; margin: .24em 0 0;
  color: var(--paper);
}
/* sticker pills (from flyer inspo) */
.stickers { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.sticker {
  font-family: var(--sans); font-weight: 800; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .65em 1.2em; border-radius: 999px;
}
.sticker--blush { background: var(--blush); color: #7C4634; transform: rotate(-2deg); }
.sticker--sage  { background: var(--sage);  color: #2F3A25; transform: rotate(1.5deg); }
.sticker--cream { background: var(--paper); color: var(--olive); transform: rotate(-1deg); }
.hero__lede {
  max-width: 440px; margin: 22px auto 34px;
  color: color-mix(in srgb, var(--paper) 88%, transparent); font-size: 1.04rem;
}
.hero__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* thin checkerboard ribbon (footer bookend) */
.checker {
  height: 20px;
  background: repeating-conic-gradient(var(--blush) 0 90deg, var(--paper) 0 180deg);
  background-size: 20px 20px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   Marquee ribbon
   ============================================================ */
.marquee { background: var(--olive); overflow: hidden; padding: 13px 0; }
.marquee__track {
  display: flex; width: max-content; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--sans); font-weight: 800; font-size: .72rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 92%, transparent);
  padding: 0 16px;
}
.marquee__track span::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--blush); transform: rotate(45deg);
  margin-left: 32px; vertical-align: middle;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Cookie carousel — swipeable photo cards
   ============================================================ */
.cookie-carousel { position: relative; margin-top: 8px; }
.cookie-track {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  padding: 30px 4px 12px;
  scrollbar-width: none;
}
.cookie-track::-webkit-scrollbar { display: none; }
.ccard {
  flex: 0 0 250px; scroll-snap-align: start;
  background: #FFFDF8; border: 1.5px solid var(--line); border-radius: 18px;
  padding: 0 20px 22px; text-align: center;
  display: flex; flex-direction: column;
}
/* cookie photo pops just over the card's top edge */
.ccard__img { width: 168px; height: 168px; margin: -24px auto 10px; flex-shrink: 0; }
.ccard__img img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(51, 43, 38, .18));
}
.ccard__name {
  font-family: var(--sans); font-weight: 800; font-size: .95rem;
  line-height: 1.3; margin: 0 0 8px;
}
.ccard__desc { font-size: .8rem; line-height: 1.55; color: var(--ink-soft); margin: 0 0 16px; }
.ccard__order {
  margin-top: auto; align-self: center;
  font-family: var(--sans); font-weight: 800; font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra); text-decoration: none;
  border-bottom: 2px dotted var(--terra); padding-bottom: 2px;
  transition: color .25s var(--ease);
}
.ccard__order:hover { color: var(--terra-deep); }
/* reuses the chocolate chip shot, turned so it reads as its own cookie.
   shadow moves to the wrapper so it still falls downward, not sideways. */
.ccard__img--tilt { filter: drop-shadow(0 10px 14px rgba(51, 43, 38, .18)); }
.ccard__img--tilt img { transform: rotate(30deg); filter: none; }
.ccard__img--soon {
  background: var(--blush-l); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.ccard__img--soon img { width: 52px; height: 52px; opacity: .45; filter: none; }
.ccard__img--soon span {
  font-family: var(--sans); font-weight: 800; font-size: .52rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--terra);
}
.cookie-nav { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }

/* Phones, tablets and laptops: the row keeps the text column's width here, so
   size the cards as an exact fraction of it. A whole number of cards always
   fits, so no card is ever sliced at the right edge on any screen. */
@media (max-width: 599px) {
  /* One cookie centred, with a sliver of the previous and next either side, so
     it reads as a row you can move both ways. 96px of the track is given over
     to the two gutters; the 18px gap eats part of each, leaving ~30px showing. */
  .cookie-track { scroll-snap-type: x mandatory; }
  .ccard { flex: 0 0 calc(100% - 96px); scroll-snap-align: center; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .ccard { flex: 0 0 calc((100% - 18px) / 2); }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .ccard { flex: 0 0 calc((100% - 36px) / 3); }
}

/* Big monitors: the row reaches past the text column, and its width is built
   from a whole number of cards so the last one is never sliced at the edge.
   The +8px is the track's own left/right padding. */
@media (min-width: 1100px) {
  .cookie-carousel {
    --cols: 3;
    --card: 330px;
    --gap: 18px;
    --band: calc(var(--cols) * var(--card) + (var(--cols) - 1) * var(--gap) + 8px);
    width: var(--band);
    margin-inline: calc((100% - var(--band)) / 2);
  }
  .ccard { flex: 0 0 var(--card); }
  .ccard__img { width: 216px; height: 216px; margin-top: -30px; }
  .ccard__name { font-size: 1.04rem; }
  .ccard__desc { font-size: .85rem; }
}
@media (min-width: 1500px) { .cookie-carousel { --cols: 4; --card: 340px; } }
@media (min-width: 1860px) { .cookie-carousel { --cols: 5; --card: 340px; } }

/* ============================================================
   Porch stand callout
   ============================================================ */
.porch {
  max-width: 620px; margin: clamp(32px, 5vw, 44px) auto 0;
  /* soft sage gingham — picnic-blanket nod to the porch stand */
  background:
    repeating-linear-gradient(0deg, rgba(168,182,155,.18) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(90deg, rgba(168,182,155,.18) 0 12px, transparent 12px 24px),
    var(--paper);
  border: 1.5px solid var(--sage);
  border-radius: 18px; padding: 26px 30px; text-align: center;
}
.porch .porch__title {
  font-family: var(--display); font-size: 1.7rem; margin: 0 0 10px;
  color: var(--olive); letter-spacing: .01em; text-transform: none;
}
.porch p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.porch__hours {
  font-family: var(--sans); font-weight: 800; font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  line-height: 1.7; margin: 0;
}

/* ============================================================
   Cookie menu
   ============================================================ */
.menu { max-width: 620px; margin: 0 auto; }
.mitem {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: baseline; gap: 0 14px;
  text-decoration: none; color: var(--ink); padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.mitem:first-child { border-top: 1px solid var(--line); }
.mitem__name { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; line-height: 1.3; transition: color .25s var(--ease); }
.mitem:hover .mitem__name { color: var(--terra); }
.mitem__leader {
  border-bottom: 1.5px dotted color-mix(in srgb, var(--ink-soft) 45%, transparent);
  transform: translateY(-4px); min-width: 24px;
}
.mitem__go {
  font-family: var(--sans); font-weight: 800; font-size: .7rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terra); white-space: nowrap;
}
.menu__foot { text-align: center; margin-top: clamp(36px, 5vw, 52px); }
.note { font-size: .84rem; color: var(--ink-soft); margin: 16px 0 0; }
.note a { color: var(--terra); font-weight: 800; text-decoration: none; }

/* ============================================================
   Cakes & more — photo + list
   ============================================================ */
.offers-grid {
  display: grid; grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(36px, 5vw, 68px); align-items: center;
}
.offers-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 18px; transform: rotate(-1.5deg);
  border: 6px solid var(--paper);
}
.offers { list-style: none; margin: 0 auto; padding: 0; max-width: 620px; }
.offers-grid .offers { max-width: none; margin: 0; }
.offers li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.offers li:first-child { border-top: 1px solid var(--line); }
.offers b { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.offers span { font-size: .86rem; color: var(--ink-soft); text-align: right; }

/* ============================================================
   Cakes & More — scalloped blush band
   ============================================================ */
.sec--blush {
  position: relative; background: var(--blush-l); border-top: 0;
  margin-top: 16px;
}
.sec--blush::before {
  content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 15px;
  background: radial-gradient(circle at 15px 15px, var(--blush-l) 0 14px, transparent 14.5px);
  background-size: 30px 15px; background-repeat: repeat-x;
}
.sec--blush .offers li, .sec--blush .offers li:first-child { border-color: #E2C6BA; }

/* ============================================================
   The Trolley — the one dark moment (olive), scalloped into
   the blush band above (no gap between the two sections)
   ============================================================ */
.trolley {
  position: relative; background: var(--olive); color: var(--paper);
  margin-top: 0;
}
.trolley::before {
  content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 16px;
  background: radial-gradient(circle at 16px 16px, var(--olive) 0 15px, transparent 15.5px);
  background-size: 32px 16px; background-repeat: repeat-x;
}
/* light dot pattern on the olive only; content sits above it */
.trolley::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(color-mix(in srgb, var(--paper) 10%, transparent) 2.2px, transparent 2.8px),
    radial-gradient(color-mix(in srgb, var(--paper) 10%, transparent) 2.2px, transparent 2.8px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
}
.trolley .wrap { position: relative; z-index: 1; }
.trolley__grid {
  display: grid; grid-template-columns: minmax(280px, 400px) 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.trolley__photos { position: relative; }
.trolley__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 18px;
}
.trolley__photo--accent {
  position: absolute; width: 44%; right: -16px; bottom: -26px;
  aspect-ratio: 3 / 4; border-radius: 14px;
  border: 5px solid var(--olive); transform: rotate(3deg);
}
.trolley .label { color: color-mix(in srgb, var(--terra) 65%, white); }
.trolley .title { color: var(--paper); }
.trolley__body {
  max-width: 54ch; margin: 16px 0 30px;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}

/* ============================================================
   Quotes — three across
   ============================================================ */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px); text-align: center;
}
.quote { margin: 0; padding: 0; }
.quote::before {
  content: ""; display: block; width: 9px; height: 9px;
  background: var(--terra); transform: rotate(45deg);
  margin: 0 auto 18px;
}
.quote p {
  font-family: var(--sans); font-size: 1rem;
  line-height: 1.6; margin: 0;
}
.quote cite {
  display: block; margin-top: 14px; font-style: normal;
  font-family: var(--sans); font-weight: 800; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
}
/* two pages of three reviews, arrow-paged */
.quotes__page { display: none; }
.quotes__page.is-active { display: grid; animation: quotesIn .45s var(--ease); }
@keyframes quotesIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}
.quotes-nav { display: flex; justify-content: center; gap: 12px; margin-top: 38px; }
.quotes-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--terra); background: transparent; color: var(--terra);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; transition: background .25s var(--ease), color .25s var(--ease);
}
.quotes-arrow:hover:not(:disabled) { background: var(--terra); color: var(--paper); }
.quotes-arrow:disabled { opacity: .35; cursor: default; }
.quotes-arrow svg { width: 15px; height: 15px; display: block; }

/* ============================================================
   About — photo left, story right
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.about__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; }
.about__body { max-width: 54ch; margin: 16px 0 0; color: var(--ink-soft); }
.about__body p { margin: 0 0 16px; }
.about__sign {
  font-family: var(--script); color: var(--terra);
  font-size: clamp(1.5rem, 3vw, 1.9rem); margin: 10px 0 0; line-height: 1.2;
}
.about__sign::first-letter { text-transform: uppercase; }

/* ============================================================
   Contact
   ============================================================ */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 72px); align-items: end;
}
.contact__info .label { margin-bottom: 26px; }
.contact__info p { color: var(--ink-soft); margin: 18px 0 0; }
.contact__list { list-style: none; margin: 28px 0 0; padding: 0; }
.contact__list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact__list li:first-child { border-top: 1px solid var(--line); }
.contact__list a { text-decoration: none; font-weight: 800; font-size: .95rem; transition: color .25s var(--ease); }
.contact__list a:hover { color: var(--terra); }
.contact__list small { display: block; color: var(--ink-soft); font-size: .8rem; }

.contact__photos { display: flex; gap: 14px; margin-bottom: 24px; }
.contact__photos img {
  height: clamp(150px, 17vw, 215px); object-fit: cover;
  border-radius: 16px; min-width: 0;
}
.contact__photos .ph-land { flex: 1.7 1 0; }
.contact__photos .ph-tall { flex: 1 1 0; }

.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-family: var(--sans); font-weight: 800; font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .96rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1.5px solid var(--line);
  border-radius: 0; padding: 9px 2px; transition: border-color .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terra); }
.field textarea { resize: vertical; min-height: 96px; }
/* flags a required field only after the visitor has actually tried it, not on load */
.field input:user-invalid, .field textarea:user-invalid { border-bottom-color: var(--terra-deep); }
/* Custom dropdown. A native select's open list is drawn by the operating
   system and cannot be themed, so the whole control is built here instead. */
.pick { position: relative; }
.pick__btn {
  position: relative; width: 100%; text-align: left; cursor: pointer;
  font-family: var(--sans); font-size: .96rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1.5px solid var(--line);
  border-radius: 0; padding: 9px 26px 9px 2px;
  transition: border-color .25s var(--ease);
}
.pick__btn:focus-visible { outline: none; border-color: var(--terra); }
.pick.is-open .pick__btn { border-color: var(--terra); }
/* chevron, drawn in CSS so it flips when the list opens */
.pick__btn::after {
  content: ""; position: absolute; right: 5px; top: 50%; margin-top: -6px;
  width: 7px; height: 7px;
  border-right: 2px solid var(--terra); border-bottom: 2px solid var(--terra);
  border-radius: 1px; transform: rotate(45deg);
  transition: transform .25s var(--ease), margin-top .25s var(--ease);
}
.pick.is-open .pick__btn::after { transform: rotate(-135deg); margin-top: -2px; }

.pick__list {
  position: absolute; z-index: 20; top: calc(100% + 7px); left: 0; right: 0;
  margin: 0; padding: 6px; list-style: none;
  background: #FFFDF8; border: 1.5px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 34px rgba(51, 43, 38, .15);
  max-height: 264px; overflow-y: auto;
  animation: pickIn .18s var(--ease);
}
@keyframes pickIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: none; }
}
.pick__opt {
  font-family: var(--sans); font-size: .92rem; color: var(--ink);
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.pick__opt:hover, .pick__opt.is-active { background: var(--blush-l); }
.pick__opt[aria-selected="true"] { color: var(--terra-deep); font-weight: 800; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form .btn { width: 100%; margin-top: 10px; }
.form__hp { position: absolute; left: -9999px; }
.form__msg { margin-top: 14px; font-size: .9rem; color: var(--terra); font-weight: 800; display: none; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: clamp(44px, 6vw, 64px) 0; text-align: center; }
.footer__script { font-family: var(--script); font-size: 1.7rem; color: var(--terra); margin: 0 0 14px; }
.footer__script::first-letter { text-transform: uppercase; }
.footer__links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin: 0 0 18px; }
.footer__group { display: inline-flex; gap: 26px; }
.footer__links a {
  font-family: var(--sans); font-weight: 800; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-soft); transition: color .25s var(--ease);
}
.footer__links a:hover { color: var(--terra); }
.footer__copy { font-size: .78rem; color: var(--ink-soft); margin: 0; }
.footer__legal { font-size: .72rem; color: var(--ink-soft); margin: 8px 0 0; }
.footer__legal a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: var(--terra); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0; padding: 8px 28px 20px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: block; }
  .nav__logo { height: 52px; }
  .hero__card { display: none; }
  .hero__panel { border-radius: 20px; padding: 34px 16px 30px; }
  .hero__title { font-size: 3rem; }
  .hero__lede { margin: 14px auto 22px; font-size: .98rem; }
  .hero__ctas { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
  /* The two hero buttons share one row. Their type scales with the screen so
     the longer "See the Cookies" label fits; on a phone too narrow for both,
     min-width lets them stack instead of spilling past the panel. */
  .hero__ctas .btn {
    flex: 1 1 0; min-width: max-content; padding-inline: 8px;
    font-size: clamp(.6rem, 2.85vw, .78rem); letter-spacing: .1em;
    text-align: center; white-space: nowrap;
  }
  /* keep "Nationwide Shipping Coming Soon" on one line on phones */
  .menu__foot .btn--soon {
    white-space: nowrap; max-width: 100%; padding-inline: 1.3em;
    font-size: clamp(.6rem, 3vw, .78rem); letter-spacing: .09em;
  }
  .stickers { margin-top: 18px; gap: 7px; margin-inline: -6px; }
  .sticker { font-size: .55rem; letter-spacing: .07em; padding: .55em .85em; }
  .title { font-size: 2.45rem; text-wrap: balance; }
  .porch { padding: 24px 14px; }
  .porch .porch__title { font-size: 1.25rem; }
  .footer__links { flex-direction: column; align-items: center; gap: 12px; }
  .offers li { flex-direction: column; gap: 2px; }
  .offers span { text-align: left; }
  .trolley__grid, .about__grid, .offers-grid { grid-template-columns: 1fr; text-align: center; }
  .trolley__photos { max-width: 340px; margin: 0 auto 14px; }
  .offers-photo { max-width: 320px; margin: 0 auto; }
  .offers-grid .offers { text-align: left; }
  .about__photo { width: min(260px, 66%); margin: 0 auto; }
  .trolley__body, .about__body { margin-inline: auto; }
  .quotes { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .mitem__name, .nav__links, .nav__links a, .contact__list a { transition: none; }
  .marquee__track { animation: none; }
  .quotes__page.is-active { animation: none; }
  .pick__list { animation: none; }
  .pick__btn::after { transition: none; }
}
