/* tsp bakeshop — design system
   Brand magenta #da1984 (Pantone 219 C). Contrast on white is 4.7:1, so it is
   safe for text as well as fills. */

:root {
  --magenta: #da1984;
  --magenta-dark: #a8125f;
  --magenta-tint: #fdeef6;
  --magenta-line: #f6cfe4;

  --ink: #1c1a1d;
  --ink-soft: #5b545f;
  --ink-faint: #8b848f;

  --cream: #fdfaf7;
  --paper: #ffffff;
  --line: #ebe3e7;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(28, 26, 29, .05), 0 12px 32px -12px rgba(28, 26, 29, .14);
  --shadow-lift: 0 2px 6px rgba(28, 26, 29, .07), 0 22px 48px -16px rgba(28, 26, 29, .22);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--magenta-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--magenta); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--magenta-tint); }
.section--paper { background: var(--paper); }

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 .9rem;
}

.lede { font-size: 1.15rem; color: var(--ink-soft); }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--magenta); color: #fff; }
.btn--primary:hover { background: var(--magenta-dark); color: #fff; }

.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--light { border-color: var(--magenta-line); color: var(--magenta-dark); background: #fff; }
.btn--light:hover { border-color: var(--magenta); background: var(--magenta-tint); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ------------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 250, 247, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  -webkit-tap-highlight-color: transparent;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .55rem 0;
}

/* The mark already carries the name and both taglines, so it stands alone —
   no duplicated wordmark beside it. Sized by height; the art is 266x230. */
.brand { display: flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand img { height: 78px; width: auto; object-fit: contain; }

/* Spacing is deliberately tight: seven links plus the CTA have to clear 940px,
   where the hamburger takes over. */
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a {
  padding: .5rem .62rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { background: var(--magenta-tint); color: var(--magenta-dark); }
.nav a[aria-current="page"] { color: var(--magenta-dark); font-weight: 600; }

.nav__cta { margin-left: .5rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  /* Anchored to the sticky header rather than a hard-coded offset, so the panel
     stays put whatever the header height works out to. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1.25rem 1.25rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: .9rem .5rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.02rem;
  }
  .nav__cta { margin: 1rem 0 0; padding: .9rem 1.6rem; }
  .brand img { height: 64px; }
}

/* --------------------------------------------------------------------- hero */

.hero { position: relative; background: var(--paper); border-bottom: 1px solid var(--line); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero__title { margin-bottom: .45em; }
.hero__title em { font-style: italic; color: var(--magenta); }
.hero__meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.hero__meta div { font-size: .9rem; }
.hero__meta dt { font-weight: 600; color: var(--magenta-dark); margin-bottom: .15rem; }
.hero__meta dd { margin: 0; color: var(--ink-soft); }

.hero__collage { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.hero__collage img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.hero__collage img:first-child { grid-row: span 2; aspect-ratio: 3 / 5; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__collage { order: -1; grid-template-columns: 1fr 1fr; }
  .hero__collage img:first-child { grid-row: auto; aspect-ratio: 3 / 4; }
  .hero__collage img:nth-child(3) { display: none; }
}

/* -------------------------------------------------------------------- cards */

.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.card__media { aspect-ratio: 4 / 3; background: var(--magenta-tint); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .35rem; }
.card__body p { color: var(--ink-soft); font-size: .96rem; }
.card__more { margin-top: auto; padding-top: .9rem; font-weight: 600; font-size: .9rem; color: var(--magenta-dark); }
.card__count { font-size: .8rem; color: var(--ink-faint); }

/* ------------------------------------------------------------------ gallery */

.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.25rem; }
.filters a {
  padding: .55rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.filters a:hover { border-color: var(--magenta-line); background: var(--magenta-tint); }
.filters a.is-active { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.filters span { opacity: .65; font-variant-numeric: tabular-nums; }

/* min(46%, 230px) keeps two columns on a phone instead of collapsing to one
   enormous tile, while still giving ~5 columns on a desktop. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(46%, 230px), 1fr));
  gap: 1rem;
}

.tile {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: var(--magenta-tint);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.2, .7, .3, 1);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.055); }
.tile__label {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem .85rem .7rem;
  background: linear-gradient(to top, rgba(20, 16, 20, .74), transparent);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transition: opacity .2s ease;
}
.tile:hover .tile__label, .tile:focus-visible .tile__label { opacity: 1; }

/* Spotlight — the "Cake of the Week" strip pinned above each category grid. */
.spotlight {
  margin-bottom: 2.75rem;
  padding: 1.6rem 1.6rem 1.8rem;
  background: linear-gradient(180deg, var(--magenta-tint), transparent 70%);
  border: 1px solid var(--magenta-line);
  border-radius: var(--radius);
}
.spotlight__head {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
}
.spotlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1rem;
}
.tile--spot { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.tile__badge {
  position: absolute;
  top: .7rem; left: .7rem;
  z-index: 1;
  background: var(--magenta);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.empty {
  padding: 4rem 1rem;
  text-align: center;
  color: var(--ink-faint);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ----------------------------------------------------------------- lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 14, 18, .93);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox__figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; gap: .9rem; }
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #201a20;
}
.lightbox__cap { color: #f3eaf0; text-align: center; font-size: .95rem; }
.lightbox__cap strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.lightbox__cap span { color: #b9adb6; font-size: .85rem; }

.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .22); }
.lightbox__btn--close { top: 1.1rem; right: 1.1rem; font-size: 1.1rem; }
.lightbox__btn--prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 1.1rem; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute; top: 1.35rem; left: 1.35rem;
  color: #cbbfc8; font-size: .85rem; font-variant-numeric: tabular-nums;
}
@media (max-width: 620px) {
  .lightbox__btn--prev { left: .4rem; }
  .lightbox__btn--next { right: .4rem; }
}

/* -------------------------------------------------------------------- forms */

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}

.fieldset { border: 0; padding: 0; margin: 0 0 2.25rem; }
.fieldset:last-of-type { margin-bottom: 1.5rem; }
.fieldset > legend {
  padding: 0;
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}
.fieldset__hint { margin: -.9rem 0 1.25rem; color: var(--ink-faint); font-size: .9rem; }

.field { margin-bottom: 1.15rem; }
.field > label, .field__label {
  display: block;
  margin-bottom: .4rem;
  font-weight: 600;
  font-size: .92rem;
}
.field .req { color: var(--magenta); }
.field__help { margin: .35rem 0 0; font-size: .84rem; color: var(--ink-faint); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field input[type="password"],
.field input[type="file"],
.field select,
.field textarea {
  width: 100%;
  padding: .72rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px var(--magenta-tint);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field-row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 660px) { .field-row, .field-row--3 { grid-template-columns: 1fr; } }

.choices { display: flex; flex-wrap: wrap; gap: .55rem; }
.choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .92rem;
  cursor: pointer;
  user-select: none;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:hover { border-color: var(--magenta-line); }
.choice:has(input:checked) { border-color: var(--magenta); background: var(--magenta-tint); color: var(--magenta-dark); font-weight: 600; }
.choice:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--magenta-tint); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.75rem;
  font-size: .95rem;
}
.alert--error { background: #fdecef; border: 1px solid #f6c6d0; color: #97122f; }
.alert--ok { background: #eaf7ef; border: 1px solid #bfe4cd; color: #14603a; }
.alert ul { margin: .5rem 0 0; padding-left: 1.1rem; }

/* ------------------------------------------------------------------- prose */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--magenta-tint);
  color: var(--magenta-dark);
  font-weight: 700;
  font-size: .95rem;
}
.step h3 { margin-bottom: .2rem; font-size: 1.08rem; font-family: var(--sans); font-weight: 700; }
.step p { color: var(--ink-soft); font-size: .96rem; }

.price-list { border-top: 1px solid var(--line); }
.price-list div {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.price-list dt { font-weight: 600; margin: 0; }
.price-list dd { margin: 0; color: var(--magenta-dark); font-weight: 600; font-variant-numeric: tabular-nums; }

.note {
  border-left: 3px solid var(--magenta);
  padding: .35rem 0 .35rem 1.15rem;
  color: var(--ink-soft);
  font-size: .96rem;
}

/* Owner-editable banner above the online store button. Loud on purpose — it is
   only ever on the page when there is something customers must read. */
.shop-notice {
  display: inline-block;
  max-width: 46rem;
  margin: 2rem auto 0;
  padding: .95rem 1.5rem;
  background: var(--magenta-tint);
  border: 2px solid var(--magenta);
  border-radius: var(--radius);
  color: var(--magenta-dark);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 10px 26px -14px rgba(218, 25, 132, .55);
}

@media (max-width: 620px) {
  .shop-notice { padding: .85rem 1.1rem; font-size: 1rem; }
}

/* Wholesale accounts — a name list that reads as a wall of proof rather than
   a bulleted list. Names wrap naturally; no logos to source or keep current. */
.partners {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.partners--center { justify-content: center; }

.partner {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  padding: .7rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--magenta-line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.section--paper .partner { background: var(--cream); }

.partner__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}

.partner--soon { border-style: dashed; box-shadow: none; }
.partner--soon .partner__name { color: var(--ink-soft); }

.partner__tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--magenta-dark);
}

/* ------------------------------------------------------------------ footer */

.site-footer { background: var(--ink); color: #d9d2d8; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer a { color: #f4e8ef; }
.site-footer a:hover { color: var(--magenta); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h4 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; font-size: .94rem; }
/* The mark is black + magenta, so on the dark footer it sits on a white chip
   rather than being filtered to a flat silhouette. */
.footer-brand__chip {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.15rem;
}
.footer-brand__chip img { height: 96px; width: auto; }
.footer-brand p { font-size: .93rem; color: #a99fa6; max-width: 34ch; }
.footer-bottom {
  margin-top: 2.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .85rem; color: #9b929a;
}

/* Designer credit. The Heateg mark is dark navy artwork built for light
   backgrounds, so it sits on a white chip rather than washing out on the
   dark footer. */
.credit {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: #9b929a;
  transition: color .15s ease;
}
.credit:hover { color: #e9e0e6; }
.credit__label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.credit__chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: .4rem .6rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.credit__chip img { width: 118px; height: auto; }
.credit:hover .credit__chip {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--magenta); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible { outline: 3px solid var(--magenta); outline-offset: 2px; border-radius: 4px; }

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

/* ------------------------------------------------------- phones & tablets */

@media (max-width: 640px) {
  body { font-size: 16px; }

  .wrap, .narrow { width: min(100% - 1.75rem, var(--wrap)); }
  .section { padding: 2.75rem 0; }

  /* Touch targets: 44px minimum on anything tappable. */
  .btn { padding: .95rem 1.5rem; min-height: 48px; }
  .btn-row { gap: .65rem; }
  .btn-row .btn { flex: 1 1 100%; }

  .filters { gap: .45rem; margin-bottom: 1.5rem; }
  .filters a { padding: .7rem 1rem; min-height: 44px; display: inline-flex; align-items: center; }

  .hero__inner { padding: 2.25rem 0 2.75rem; }
  .hero__meta { gap: 1.1rem; margin-top: 1.5rem; padding-top: 1.25rem; }
  .hero__meta div { flex: 1 1 100%; }
  .hero__collage { gap: .6rem; }

  .spotlight { padding: 1.1rem 1rem 1.25rem; margin-bottom: 2rem; }
  .spotlight__head { font-size: 1.15rem; margin-bottom: .9rem; }
  .tile--spot { aspect-ratio: 1; }

  /* Labels are hover-only on desktop; on touch there is no hover, so pin them on. */
  .tile__label { opacity: 1; font-size: .78rem; padding: 1.8rem .6rem .55rem; }
  .tile__badge { font-size: .64rem; padding: .25rem .5rem; top: .5rem; left: .5rem; }

  .gallery-grid { gap: .6rem; }

  /* Stack the label/value rows instead of squeezing them side by side. */
  .price-list div { flex-direction: column; gap: .15rem; padding: .75rem 0; }
  .price-list dd { font-size: .95rem; }

  .step { grid-template-columns: auto 1fr; gap: .85rem; }
  .step::before { width: 34px; height: 34px; font-size: .85rem; }

  .form-card { padding: 1.25rem 1.1rem 1.5rem; border-radius: 12px; }
  .fieldset { margin-bottom: 1.75rem; }
  .fieldset > legend { font-size: 1.15rem; }
  .choice { padding: .65rem 1rem; min-height: 44px; }

  /* 16px inputs stop iOS Safari zooming in on focus. */
  .field input, .field select, .field textarea { font-size: 16px; }

  .lightbox { padding: .75rem; }
  .lightbox__img { max-height: 68vh; }
  .lightbox__btn { width: 44px; height: 44px; }
  .lightbox__btn--prev, .lightbox__btn--next { top: auto; bottom: .75rem; transform: none; }
  .lightbox__btn--prev { left: .75rem; }
  .lightbox__btn--next { right: .75rem; }
  .lightbox__cap { padding: 0 3.5rem; font-size: .88rem; }
  .lightbox__cap strong { font-size: 1rem; }

  .site-footer { padding: 2.5rem 0 1.5rem; }
  .footer-bottom { margin-top: 2rem; gap: 1.25rem; }
  .credit { width: 100%; }
  .footer-brand__chip img { height: 82px; }
}

@media (max-width: 380px) {
  .brand img { height: 56px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------- flavour pickers */

/* The descriptive half of an option ("comes standard with a tasting") reads as
   a note, not as part of the flavour's name -- and it is not part of the answer
   that gets emailed either. */
.choice__note { font-weight: 400; opacity: .72; font-size: .86em; }
.choice:has(input:checked) .choice__note { opacity: .82; }

/* Running total under a picker. Advisory: nothing here blocks a submission. */
.field__count {
  margin: .5rem 0 0; font-size: .84rem; font-weight: 600; color: var(--magenta-dark);
  min-height: 1.2em;
}
.field__count:empty { min-height: 0; }

.field--other { margin-top: .75rem; }
.field--other[hidden] { display: none; }

/* The reassurance under a flavour picker. Sits apart from the count so it does
   not read as another instruction. */
.field__help--note { margin-top: .5rem; font-style: italic; color: var(--ink-soft); }
