:root {
  --paper: #f5f3ee;
  --ink: #282828;
  --muted: #77726c;
  --line: rgba(40,40,40,.16);
  --card: rgba(255,255,255,.78);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Raleway, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  height: 116px;
  z-index: 20;
  background: var(--paper);
  display: grid;
  grid-template-columns: 170px minmax(260px, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 32px 58px 18px;
  pointer-events: none;
}

.floating-logo, .brand-mark, .nav { pointer-events: auto; }
.floating-logo { display: block; width: 95px; transform: rotate(-4deg); }
.floating-logo img { display: block; width: 100%; height: auto; }

.brand-mark { padding-top: 9px; }
.brand-name {
  font-size: 18px;
  letter-spacing: .74em;
  font-weight: 500;
  white-space: nowrap;
}
.brand-subtitle {
  margin-top: 11px;
  font-size: 13px;
  letter-spacing: .45em;
  color: var(--ink);
  font-weight: 400;
  text-transform: lowercase;
}
.nav {
  display: flex;
  gap: 34px;
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: .34em;
  font-weight: 500;
}
.nav a { position: relative; padding-bottom: 8px; }
.instagram-link { padding-bottom: 0 !important; display: inline-flex; align-items: center; }
.instagram-link svg, .contact-instagram svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.instagram-link::after { display: none !important; }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: .42em;
  bottom: 0;
  height: 1px;
  background: var(--ink);
}

.pebbles-stage {
  min-height: calc(100vh - 116px);
  position: relative;
  padding-top: 0;
}
.mobile-hint { display: none; }
.pebble-field {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 700px;
}

.pebble {
  position: absolute;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: var(--ink);
  cursor: pointer;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(calc(var(--r) * 1deg)) scale(var(--s));
  transition: filter .2s ease;
  text-align: left;
}
.pebble:hover,
.pebble:focus-visible {
  filter: drop-shadow(0 8px 10px rgba(40, 40, 40, .08));
  outline: none;
}
.pebble img {
  display: block;
  width: 210px;
  height: auto;
  filter: drop-shadow(12px 18px 13px rgba(40,40,40,.12));
  pointer-events: none;
}

.pebble-olive { left: 9vw; top: 19vh; }
.pebble-tonka { right: 24vw; top: 8vh; }
.pebble-pistachio { left: 35vw; top: 32vh; }
.pebble-blackcurrant { right: 15vw; top: 48vh; }
.pebble-bergamot { left: 45vw; top: 66vh; }
.pebble-nasturtium { left: -12vw; top: 56vh; }

.pebble-nasturtium img { width: 260px; }
.pebble-pistachio img { width: 255px; }
.pebble-olive img { width: 230px; }
.pebble-blackcurrant img { width: 205px; }
.pebble-tonka img { width: 175px; }
.pebble-bergamot img { width: 230px; }

.label {
  position: absolute;
  display: block;
  white-space: nowrap;
  letter-spacing: .42em;
  transform: rotate(calc(var(--r) * -1deg));
}
.label b {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.label em {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: .18em;
  color: var(--ink);
  font-weight: 400;
  text-transform: lowercase;
}
.label-right { left: 88%; top: 52%; }
.label-bottom { left: 50%; top: 105%; transform: translateX(-50%) rotate(calc(var(--r) * -1deg)); text-align: center; }
.pebble-nasturtium .label-right { left: 83%; top: 60%; }
.pebble-tonka .label-right { left: 82%; top: 58%; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  opacity: .88;
}
.floating-links {
  position: absolute;
  left: 12vw;
  right: 12vw;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: .45em;
  color: var(--ink);
}

section:not(.pebbles-stage) {
  padding: 120px 24px;
}
.order-section { padding-top: 150px !important; }
.contact-section { padding-top: 96px !important; padding-bottom: 140px !important; }
.section-inner { max-width: 980px; margin: 0 auto; }
.narrow { max-width: 720px; }
.eyebrow { letter-spacing: .52em; text-transform: uppercase; font-size: 13px; margin: 0 0 22px; }
h2 { font-size: clamp(32px, 5vw, 58px); line-height: 1.05; letter-spacing: .03em; font-weight: 400; margin: 0 0 20px; }
.muted { color: var(--muted); font-size: 18px; }
.muted em { display: inline-block; margin-top: 8px; color: var(--ink); font-style: normal; }

.order-form { margin-top: 48px; }
fieldset { border: 0; padding: 0; margin: 0 0 34px; }
legend, .order-form > label, .form-grid label {
  display: block;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-row label { margin: 0; }
.pill-row input { position: absolute; opacity: 0; }
.pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.pill-row input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.flavour-lines { display: grid; gap: 10px; }
.flavour-lines label {
  display: grid;
  grid-template-columns: 24px 1fr 82px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: .23em;
  font-size: 13px;
  font-weight: 600;
}
.flavour-lines input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--ink); }
.flavour-lines input[type="number"] {
  width: 82px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 0;
  text-align: center;
  color: var(--ink);
}
.flavour-lines .mix { grid-template-columns: 24px 1fr; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
input[type="text"], input[type="tel"], textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.26);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: rgba(40,40,40,.55); }
.submit-button {
  margin-top: 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 14px 24px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.hidden { display: none; }
.contact-title { font-size: 22px; letter-spacing: .12em; text-transform: none; margin: 0 0 16px; }
.contact-copy { max-width: 480px; color: var(--muted); margin: 0; font-size: 16px; }
.contact-list { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 42px; letter-spacing: .18em; font-size: 13px; }
.contact-instagram { display: inline-flex; align-items: center; gap: 10px; }

.modal { position: fixed; inset: 0; z-index: 60; display: none; }
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(245,243,238,.45); backdrop-filter: blur(4px); }
.ingredient-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
  max-height: 84vh;
  overflow: auto;
  background: var(--card);
  color: var(--ink);
  border: 1px solid rgba(40,40,40,.10);
  box-shadow: 0 24px 80px rgba(40,40,40,.16);
  padding: 42px;
}
.close-button {
  position: absolute;
  right: 18px; top: 12px;
  border: 0; background: transparent;
  color: var(--ink);
  font-size: 30px; line-height: 1;
  cursor: pointer;
}
.ingredient-card h2 {
  font-size: 22px;
  letter-spacing: .42em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-right: 26px;
}
.ingredient-card h3 {
  margin: 28px 0 8px;
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.ingredient-card p { margin: 0; color: var(--ink); }
.modal-desc { color: var(--muted) !important; }

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    background: var(--paper);
    height: auto;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 22px 24px 16px;
    align-items: center;
  }
  .floating-logo { width: 66px; }
  .brand-mark { padding-top: 0; }
  .brand-name { font-size: 13px; letter-spacing: .46em; }
  .brand-subtitle { margin-top: 5px; font-size: 10px; letter-spacing: .24em; }
  .nav { grid-column: 1 / -1; justify-content: center; gap: 30px; padding-top: 20px; font-size: 10px; letter-spacing: .26em; }
  .pebbles-stage { min-height: 1080px; padding-top: 0; overflow: hidden; }
  .mobile-hint { display: none; }
  .pebble-field {
    height: 900px;
    min-height: 900px;
    padding: 0;
    display: block;
  }
  .pebble {
    position: absolute;
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(calc(var(--r) * 1deg)) scale(var(--mobile-s, .9));
    text-align: left;
  }
  .pebble:hover,
  .pebble:focus-visible {
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(calc(var(--r) * 1deg)) scale(var(--mobile-s, .9));
  }
  .pebble img { width: 142px !important; }
  .pebble-tonka { left: 55vw; top: 38px; --mobile-s: .74; }
  .pebble-olive { left: 4vw; top: 194px; --mobile-s: .96; }
  .pebble-pistachio { left: 19vw; top: 420px; --mobile-s: 1.28; }
  .pebble-blackcurrant { left: 58vw; top: 642px; --mobile-s: .94; }
  .pebble-bergamot { left: 9vw; top: 765px; --mobile-s: 1.06; }
  .pebble-nasturtium { left: -36vw; top: 900px; --mobile-s: 1.30; }
  .label { white-space: nowrap; }
  .label b { font-size: 11px; letter-spacing: .32em; }
  .label em { font-size: 11px; letter-spacing: .14em; }
  .label-right { left: 82%; top: 56%; }
  .label-bottom { left: 50%; top: 108%; }
  .pebble-blackcurrant .label-right { left: 48%; top: 112%; text-align: center; }
  .pebble-tonka .label-right { left: 50%; top: 112%; text-align: center; }
  .pebble-nasturtium .label-right { left: 75%; top: 58%; }
  .floating-links { display: none; }
  section:not(.pebbles-stage) { padding: 78px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .ingredient-card { padding: 34px 26px; width: min(92vw, 460px); }
  .ingredient-card h2 { font-size: 18px; letter-spacing: .24em; }
}

@media (max-width: 480px) {
  .site-header { padding-inline: 22px; }
  .nav { gap: 22px; }
  .pebbles-stage { min-height: 1120px; }
  .pebble-field { height: 930px; min-height: 930px; }
  .pebble img { width: 126px !important; }
  .pebble-tonka { left: 56vw; top: 38px; --mobile-s: .72; }
  .pebble-olive { left: 4vw; top: 188px; --mobile-s: .94; }
  .pebble-pistachio { left: 16vw; top: 410px; --mobile-s: 1.25; }
  .pebble-blackcurrant { left: 55vw; top: 635px; --mobile-s: .92; }
  .pebble-bergamot { left: 8vw; top: 760px; --mobile-s: 1.04; }
  .pebble-nasturtium { left: -38vw; top: 910px; --mobile-s: 1.30; }
  .label b { font-size: 10px; }
  .label em { font-size: 10px; }
  .pill-row span { min-width: 50px; height: 40px; padding-inline: 14px; }
  .flavour-lines label { grid-template-columns: 22px 1fr 62px; gap: 10px; letter-spacing: .14em; font-size: 12px; }
  .flavour-lines input[type="number"] { width: 62px; }
}


@media (prefers-reduced-motion: reduce) {
  .pebble-field { animation: none !important; }
  .pebble { transition: none !important; }
}

/* v5 refinements */
.site-header {
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav a[href="#order"] { white-space: nowrap; }
@media (max-width: 900px) {
  .nav a[href="#order"] { max-width: 11em; text-align: center; line-height: 1.35; }
}

/* v6 editorial order + soft ending refinements */
.site-header {
  background: var(--paper) !important;
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav { text-transform: lowercase; }
.nav a::after { display: none !important; }

.order-section {
  padding-top: 170px !important;
  padding-bottom: 145px !important;
  text-align: center;
}
.order-section .narrow { max-width: 780px; }
.order-section h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: lowercase;
  margin-bottom: 18px;
}
.order-section .muted {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .07em;
  color: var(--muted);
  text-transform: lowercase;
  margin: 0 auto;
}
.order-section .muted em {
  font-style: normal;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
}
.order-form {
  margin: 58px auto 0;
  max-width: 680px;
  text-align: left;
}
.order-form fieldset:first-of-type { text-align: center; }
legend, .order-form > label, .form-grid label {
  text-transform: lowercase;
  letter-spacing: .20em;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
}
.tin-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 24px;
  margin-top: 24px;
}
.tin-options label { position: relative; margin: 0; }
.tin-options input { position: absolute; opacity: 0; }
.tin-options span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 142px;
  min-height: 88px;
  padding: 18px 22px;
  color: var(--ink);
  border: 1px solid rgba(40,40,40,.18);
  background: rgba(255,255,255,.16);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.tin-options label:nth-child(1) span { border-radius: 58% 42% 48% 52% / 44% 55% 45% 56%; transform: rotate(-3deg); }
.tin-options label:nth-child(2) span { border-radius: 48% 52% 58% 42% / 52% 43% 57% 48%; transform: rotate(2deg); }
.tin-options label:nth-child(3) span { border-radius: 43% 57% 45% 55% / 58% 47% 53% 42%; transform: rotate(-1deg); }
.tin-options label:nth-child(4) span { border-radius: 55% 45% 52% 48% / 46% 57% 43% 54%; transform: rotate(3deg); }
.tin-options strong {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: lowercase;
  line-height: 1.3;
}
.tin-options em {
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: lowercase;
}
.tin-options input:checked + span {
  background: rgba(40,40,40,.08);
  border-color: rgba(40,40,40,.48);
}
.tin-options input:focus-visible + span { outline: 1px solid var(--ink); outline-offset: 4px; }
.flavour-lines label {
  text-transform: lowercase;
  letter-spacing: .16em;
  font-weight: 500;
}
.flavour-lines input[type="number"]::placeholder,
textarea::placeholder { text-transform: lowercase; color: rgba(119,114,108,.74); }
.contact-pills span {
  text-transform: lowercase;
  height: 40px;
  padding: 0 18px;
}
.submit-button {
  display: block;
  margin: 34px auto 0;
  text-transform: lowercase;
  letter-spacing: .18em;
  font-weight: 400;
  padding: 13px 28px;
}
.contact-section {
  margin-top: 120px;
  padding-top: 150px !important;
  padding-bottom: 180px !important;
  text-align: center;
}
.contact-section .narrow { max-width: 580px; }
.contact-section .eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: none;
  color: var(--muted);
  margin-bottom: 30px;
}
.contact-title {
  font-size: 18px;
  letter-spacing: .16em;
  font-weight: 400;
  margin-bottom: 18px;
}
.contact-copy {
  max-width: 440px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.contact-list {
  justify-content: center;
  margin-top: 36px;
  gap: 18px;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink);
}

@media (max-width: 900px) {
  .pebbles-stage { min-height: 1040px; }
  .pebble-field { height: 860px; min-height: 860px; }
  .pebble-tonka { left: 56vw; top: 34px; --mobile-s: .76; }
  .pebble-olive { left: 5vw; top: 165px; --mobile-s: 1.02; }
  .pebble-pistachio { left: 23vw; top: 365px; --mobile-s: 1.34; }
  .pebble-blackcurrant { left: 55vw; top: 590px; --mobile-s: .98; }
  .pebble-bergamot { left: 4vw; top: 690px; --mobile-s: 1.20; }
  .pebble-nasturtium { left: -42vw; top: 825px; --mobile-s: 1.24; }
  .label-right { left: 80%; top: 55%; }
  .pebble-blackcurrant .label-right { left: 45%; top: 112%; }
  .pebble-tonka .label-right { left: 44%; top: 110%; }
  .pebble-nasturtium .label-right { left: 76%; top: 56%; }
  .order-section { padding-top: 120px !important; }
  .order-form { max-width: 520px; }
  .tin-options { gap: 18px 16px; }
  .tin-options span { width: 132px; min-height: 84px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-section { margin-top: 90px; padding-top: 120px !important; }
}

@media (max-width: 480px) {
  .nav { gap: 18px; letter-spacing: .18em; font-size: 9px; }
  .nav a[href="#order"] { max-width: 9.8em; }
  .pebbles-stage { min-height: 1060px; }
  .pebble-field { height: 875px; min-height: 875px; }
  .pebble img { width: 124px !important; }
  .pebble-tonka { left: 58vw; top: 28px; --mobile-s: .78; }
  .pebble-olive { left: 3vw; top: 155px; --mobile-s: 1.02; }
  .pebble-pistachio { left: 22vw; top: 350px; --mobile-s: 1.36; }
  .pebble-blackcurrant { left: 53vw; top: 575px; --mobile-s: .98; }
  .pebble-bergamot { left: 5vw; top: 685px; --mobile-s: 1.22; }
  .pebble-nasturtium { left: -46vw; top: 825px; --mobile-s: 1.22; }
  .tin-options { gap: 16px 12px; }
  .tin-options span { width: 128px; min-height: 82px; padding: 16px 16px; }
  .tin-options strong { font-size: 12px; }
  .order-section h2 { font-size: 32px; }
  .order-section .muted { font-size: 12px; }
}

/* v7 final refinements: quiet atelier, pebble UI, lighter contact */
.nav {
  gap: 38px;
  font-size: 12px;
  letter-spacing: .28em;
}
.nav a[href="#order"] { max-width: none !important; }

/* More readable small typography */
.brand-subtitle { font-size: 14px; }
.label b { font-size: 16px; }
.muted,
.contact-copy,
.modal-desc,
.ingredient-card p,
.flavour-lines label,
input[type="text"],
input[type="tel"],
textarea {
  font-size: 15px;
}
legend, .order-form > label, .form-grid label {
  font-size: 12px;
}

/* Tin selectors as soft collected objects rather than UI pills */
.tin-options {
  gap: 28px 32px;
  align-items: center;
}
.tin-options span {
  width: 148px;
  min-height: 104px;
  padding: 21px 20px;
  border: 1px solid rgba(40,40,40,.14);
  background: rgba(255,255,255,.10);
  box-shadow: none;
}
.tin-options label:nth-child(1) span {
  width: 136px;
  min-height: 96px;
  border-radius: 58% 42% 51% 49% / 45% 56% 44% 55%;
  transform: rotate(-4deg);
}
.tin-options label:nth-child(2) span {
  width: 154px;
  min-height: 102px;
  border-radius: 46% 54% 60% 40% / 53% 42% 58% 47%;
  transform: rotate(2.5deg);
}
.tin-options label:nth-child(3) span {
  width: 150px;
  min-height: 112px;
  border-radius: 41% 59% 47% 53% / 59% 46% 54% 41%;
  transform: rotate(-1.8deg);
}
.tin-options label:nth-child(4) span {
  width: 166px;
  min-height: 98px;
  border-radius: 56% 44% 49% 51% / 43% 58% 42% 57%;
  transform: rotate(3.5deg);
}
.tin-options label:hover span { border-color: rgba(40,40,40,.28); }
.tin-options input:checked + span {
  background: rgba(40,40,40,.045);
  border-color: rgba(40,40,40,.46);
}
.tin-options strong { font-size: 14px; }
.tin-options em { font-size: 13px; }

/* Preferred contact: text-first, pebble outline only when selected */
.contact-pills {
  justify-content: flex-start;
  gap: 22px;
}
.contact-pills span {
  height: auto;
  min-width: 0;
  padding: 8px 12px 9px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 54% 46% 50% 50% / 47% 54% 46% 53%;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: .12em;
}
.contact-pills label:nth-child(2) span { border-radius: 46% 54% 58% 42% / 54% 44% 56% 46%; }
.contact-pills label:nth-child(3) span { border-radius: 57% 43% 44% 56% / 42% 57% 43% 58%; }
.contact-pills input:checked + span {
  background: transparent;
  color: var(--ink);
  border-color: rgba(40,40,40,.35);
}
.contact-pills input:focus-visible + span { outline: 1px solid rgba(40,40,40,.35); outline-offset: 4px; }

/* Softer request button */
.submit-button {
  border-color: #6f6a63;
  background: #6f6a63;
  color: var(--paper);
}
.submit-button:hover { background: #5f5a54; border-color: #5f5a54; }

/* Contact as a quiet signature */
.contact-section {
  margin-top: 210px;
  padding-top: 190px !important;
  padding-bottom: 210px !important;
}
.contact-section .narrow { max-width: 430px; }
.contact-section .eyebrow { font-size: 12px; letter-spacing: .22em; }
.contact-title { font-size: 17px; letter-spacing: .14em; }
.contact-copy { max-width: 360px; font-size: 15px; }
.contact-list { font-size: 13px; letter-spacing: .10em; gap: 16px; }

@media (max-width: 900px) {
  .nav { gap: 32px; font-size: 11px; letter-spacing: .22em; }
  .order-section .muted { font-size: 14px; }
  .tin-options { gap: 24px 20px; }
  .tin-options span { width: 142px; min-height: 98px; }
  .contact-section { margin-top: 150px; padding-top: 150px !important; }
  .contact-section .narrow { max-width: 380px; }
}
@media (max-width: 480px) {
  .nav { gap: 24px; font-size: 10px; letter-spacing: .16em; }
  .brand-subtitle { font-size: 11px; }
  .tin-options { gap: 20px 14px; }
  .tin-options label:nth-child(1) span,
  .tin-options label:nth-child(2) span,
  .tin-options label:nth-child(3) span,
  .tin-options label:nth-child(4) span {
    width: 136px;
    min-height: 94px;
  }
  .contact-pills { gap: 14px; }
  .contact-pills span { font-size: 14px; padding-inline: 10px; }
  .contact-section { margin-top: 130px; padding-top: 135px !important; }
}

/* v8 refinements: closer labels, calmer readable order text, airier contact options */
/* Bring flavour names closer to pebbles while keeping intentional unevenness */
.label-right { left: 74%; top: 50%; }
.label-bottom { left: 72%; top: 50%; transform: rotate(calc(var(--r) * -1deg)); text-align: left; }
.pebble-olive .label-right { left: 76%; top: 48%; }
.pebble-tonka .label-right { left: 76%; top: 56%; }
.pebble-pistachio .label-right { left: 72%; top: 46%; }
.pebble-blackcurrant .label-right { left: 76%; top: 47%; }
.pebble-nasturtium .label-right { left: 70%; top: 57%; }
.pebble-bergamot .label-bottom { left: 72%; top: 38%; transform: rotate(calc(var(--r) * -1deg)); text-align: left; }
.label b {
  font-family: Raleway, system-ui, sans-serif;
  font-size: 15px;
  letter-spacing: .36em;
  font-weight: 600;
}
.pebble-nasturtium .label b { color: var(--ink); font-size: 14px; letter-spacing: .34em; }
.pebble-bergamot .label b { font-size: 14px; letter-spacing: .34em; }

/* Keep bergamot visually separate from the order section */
.pebbles-stage { padding-bottom: 54px; }
.pebble-field { min-height: 730px; }
.pebble-bergamot { top: 62vh; left: 49vw; }

/* Improve readability of order intro and labels without making the section heavy */
.order-section .muted {
  font-size: 16px !important;
  line-height: 1.95;
  color: #5f5a54 !important;
  letter-spacing: .055em;
}
.order-section .muted em {
  font-size: 15px !important;
  color: #5f5a54 !important;
  letter-spacing: .055em;
}
legend, .order-form > label, .form-grid label {
  font-size: 13px !important;
  color: #4f4a45;
}

/* Preferred contact: more air, three distinct irregular outlines */
.order-form fieldset:nth-of-type(3) { margin-top: 44px; margin-bottom: 44px; }
.contact-pills {
  gap: 36px;
  align-items: center;
  margin-top: 22px;
}
.contact-pills span {
  padding: 12px 18px 13px;
  font-size: 15px;
  letter-spacing: .14em;
  border: 1px solid transparent;
}
.contact-pills label:nth-child(1) span {
  border-radius: 61% 39% 48% 52% / 43% 58% 42% 57%;
  transform: rotate(-2.4deg);
}
.contact-pills label:nth-child(2) span {
  border-radius: 44% 56% 63% 37% / 57% 39% 61% 43%;
  transform: rotate(1.7deg);
}
.contact-pills label:nth-child(3) span {
  border-radius: 53% 47% 40% 60% / 36% 62% 38% 64%;
  transform: rotate(-.7deg);
}
.contact-pills input:checked + span {
  border-color: rgba(40,40,40,.34);
  background: transparent;
}

@media (max-width: 900px) {
  .label b { font-size: 11px; letter-spacing: .30em; }
  .pebble-nasturtium .label b, .pebble-bergamot .label b { font-size: 10.5px; }
  .label-right { left: 72%; top: 52%; }
  .label-bottom { left: 72%; top: 50%; text-align: left; }
  .pebble-tonka .label-right { left: 56%; top: 100%; text-align: center; }
  .pebble-blackcurrant .label-right { left: 42%; top: 104%; text-align: center; }
  .pebble-bergamot .label-bottom { left: 68%; top: 38%; text-align: left; }
  .pebble-bergamot { left: 2vw; top: 670px; }
  .order-section .muted { font-size: 15px !important; }
  .order-section .muted em { font-size: 14px !important; }
  .contact-pills { justify-content: center; gap: 28px 30px; }
}

@media (max-width: 480px) {
  .label b { font-size: 10.5px; letter-spacing: .26em; }
  .pebble-bergamot { left: 4vw; top: 660px; }
  .pebble-bergamot .label-bottom { left: 68%; top: 36%; }
  .pebble-nasturtium .label-right { left: 70%; top: 55%; }
  .order-section .muted { font-size: 14px !important; line-height: 1.9; }
  .order-section .muted em { font-size: 13.5px !important; }
  legend, .order-form > label, .form-grid label { font-size: 12.5px !important; }
  .contact-pills { gap: 24px 22px; }
  .contact-pills span { font-size: 14px; padding: 11px 15px 12px; }
}

/* v9 refinement round: calmer transition, softer form, quieter signature, stronger logo presence */
.site-header {
  grid-template-columns: 190px minmax(280px, 1fr) auto;
  gap: 36px;
  padding-top: 34px;
}
.brand-mark { padding-top: 13px; }
.brand-subtitle {
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: .43em;
}
.floating-logo { width: 100px; }

/* More intentional air before the order section */
.pebbles-stage {
  min-height: calc(100vh - 116px + 110px);
  padding-bottom: 120px;
}
.pebble-field {
  height: calc(100vh - 116px + 80px);
  min-height: 790px;
}
.order-section {
  padding-top: 190px !important;
}
.order-section h2 {
  font-size: clamp(27px, 3.7vw, 44px) !important;
  letter-spacing: .13em;
  margin-bottom: 22px;
}

/* Softer form outlines and selected tin state */
:root { --line: rgba(40,40,40,.105); }
input[type="text"], input[type="tel"], textarea,
.flavour-lines label,
.flavour-lines input[type="number"] {
  border-color: rgba(40,40,40,.105) !important;
}
input:focus, textarea:focus { border-color: rgba(40,40,40,.34) !important; }
.tin-options span {
  border-color: rgba(40,40,40,.13) !important;
  background: rgba(255,255,255,.08) !important;
}
.tin-options input:checked + span {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(40,40,40,.40) !important;
  box-shadow: 0 0 0 1px rgba(40,40,40,.14);
}

/* Mobile pebble composition: less list-like, preserve curated asymmetry */
@media (max-width: 900px) {
  .site-header { gap: 20px; }
  .brand-subtitle { font-size: 11.5px; margin-top: 7px; }
  .pebbles-stage { min-height: 1130px; padding-bottom: 110px; }
  .pebble-field { height: 940px; min-height: 940px; }
  .pebble-tonka { left: 57vw; top: 46px; --mobile-s: .78; }
  .pebble-tonka .label-right { left: 50%; top: 109%; text-align: center; }
  .pebble-olive { left: 0vw; top: 200px; --mobile-s: 1.02; }
  .pebble-olive .label-right { left: 78%; top: 58%; }
  .pebble-pistachio { left: 18vw; top: 415px; --mobile-s: 1.35; }
  .pebble-pistachio .label-right { left: 63%; top: 103%; text-align: left; }
  .pebble-blackcurrant { left: 58vw; top: 630px; --mobile-s: .96; }
  .pebble-blackcurrant .label-right { left: 42%; top: 106%; text-align: center; }
  .pebble-bergamot { left: 13vw; top: 775px; --mobile-s: 1.10; }
  .pebble-bergamot .label-bottom { left: 67%; top: 72%; text-align: left; }
  .pebble-nasturtium { left: -42vw; top: 910px; --mobile-s: 1.18; }
  .pebble-nasturtium .label-right { left: 75%; top: 50%; }
  .order-section { padding-top: 150px !important; }
}

@media (max-width: 480px) {
  .site-header { padding-top: 24px; }
  .pebbles-stage { min-height: 1120px; padding-bottom: 105px; }
  .pebble-field { height: 935px; min-height: 935px; }
  .pebble-tonka { left: 55vw; top: 38px; --mobile-s: .78; }
  .pebble-olive { left: -1vw; top: 188px; --mobile-s: 1.00; }
  .pebble-pistachio { left: 15vw; top: 405px; --mobile-s: 1.34; }
  .pebble-blackcurrant { left: 56vw; top: 635px; --mobile-s: .94; }
  .pebble-bergamot { left: 14vw; top: 774px; --mobile-s: 1.08; }
  .pebble-nasturtium { left: -49vw; top: 900px; --mobile-s: 1.16; }
  .label b { font-size: 10.5px; letter-spacing: .25em; }
  .pebble-pistachio .label-right { left: 58%; top: 102%; }
  .pebble-bergamot .label-bottom { left: 67%; top: 72%; }
  .order-section { padding-top: 140px !important; }
}

/* Contact: 60–70% of order width, closer but still quiet, tighter internal rhythm */
.contact-section {
  margin-top: 105px !important;
  padding-top: 118px !important;
  padding-bottom: 175px !important;
}
.contact-section .narrow {
  max-width: 500px !important;
}
.contact-section .eyebrow {
  margin-bottom: 22px;
  line-height: 1.35;
}
.contact-title {
  margin-bottom: 12px;
  line-height: 1.35;
}
.contact-copy {
  max-width: 440px;
  line-height: 1.55;
}
.contact-list {
  margin-top: 26px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .contact-section { margin-top: 90px !important; padding-top: 105px !important; }
  .contact-section .narrow { max-width: min(72vw, 430px) !important; }
}
@media (max-width: 480px) {
  .contact-section { margin-top: 76px !important; padding-top: 96px !important; }
  .contact-section .narrow { max-width: 74vw !important; }
  .contact-copy { font-size: 14px; }
}

/* v10 final polish */
/* Header: text-only nav, logo cluster as one unit */
.site-header {
  grid-template-columns: 132px minmax(320px, 1fr) auto !important;
  gap: 20px !important;
  height: 108px !important;
  padding: 28px 58px 16px !important;
  align-items: start !important;
}
.floating-logo { width: 88px !important; transform: rotate(-4deg); }
.brand-mark { padding-top: 14px !important; }
.brand-name { font-size: 17px; letter-spacing: .68em; }
.brand-subtitle { margin-top: 12px !important; font-size: 14px !important; letter-spacing: .40em; }
.nav { padding-top: 16px !important; gap: 34px !important; }
.instagram-link { display: none !important; }

/* Desktop pebble composition: reveal nasturtium, keep editorial asymmetry */
.pebbles-stage {
  min-height: calc(100vh - 108px + 45px) !important;
  padding-bottom: 62px !important;
}
.pebble-field {
  height: calc(100vh - 108px + 35px) !important;
  min-height: 735px !important;
}
.pebble-nasturtium { left: -8.5vw !important; top: 52vh !important; }
.pebble-nasturtium img { width: 285px !important; }
.pebble-nasturtium .label-right { left: 76% !important; top: 56% !important; }
.pebble-bergamot { top: 60vh !important; left: 47vw !important; }
.pebble-bergamot img { width: 240px !important; }
.pebble-bergamot .label-bottom { left: 73% !important; top: 48% !important; text-align: left; }
.pebble-pistachio { top: 31vh !important; left: 34vw !important; }
.pebble-blackcurrant { top: 46vh !important; right: 13vw !important; }
.pebble-olive { top: 18vh !important; left: 8vw !important; }
.pebble-tonka { top: 7vh !important; right: 23vw !important; }
.label b { color: var(--ink); }

/* Fill your tin: connected transition, softer heading and form */
.order-section {
  padding-top: 105px !important;
  padding-bottom: 132px !important;
}
.order-section h2 {
  font-size: clamp(25px, 3.3vw, 39px) !important;
  margin-bottom: 20px !important;
}
.order-section .muted { color: #5f5a54 !important; }
.order-section .muted em { color: #5f5a54 !important; }
:root { --line: rgba(40,40,40,.085); }
input[type="text"], input[type="tel"], textarea,
.flavour-lines label,
.flavour-lines input[type="number"] {
  border-color: rgba(40,40,40,.085) !important;
}
input[type="text"], input[type="tel"], textarea {
  padding: 15px 16px !important;
  background: rgba(255,255,255,.18) !important;
}
.order-form > label, .form-grid label { line-height: 1.35; }
.order-form > label textarea { margin-top: 12px; }
.tin-options input:checked + span {
  border-color: rgba(40,40,40,.36) !important;
  box-shadow: 0 0 0 1px rgba(40,40,40,.11) !important;
}

/* Contact as a narrower quiet signature */
.contact-section {
  margin-top: 70px !important;
  padding-top: 92px !important;
  padding-bottom: 155px !important;
}
.contact-section .narrow { max-width: 440px !important; }
.contact-title { font-size: 18px !important; margin-bottom: 10px !important; }
.contact-copy { max-width: 380px !important; line-height: 1.48 !important; }
.contact-list { margin-top: 23px !important; gap: 18px 24px !important; }

/* Mobile: composed specifically, not stacked; quieter header */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 70px 1fr !important;
    gap: 12px 16px !important;
    height: auto !important;
    padding: 22px 22px 14px !important;
    align-items: center !important;
  }
  .floating-logo { width: 62px !important; }
  .brand-mark { padding-top: 0 !important; }
  .brand-name { font-size: 12.5px !important; letter-spacing: .42em !important; }
  .brand-subtitle { margin-top: 6px !important; font-size: 11px !important; letter-spacing: .18em !important; }
  .nav {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 34px !important;
    padding-top: 16px !important;
    font-size: 10.5px !important;
    letter-spacing: .22em !important;
  }

  .pebbles-stage { min-height: 1030px !important; padding-bottom: 56px !important; overflow: hidden; }
  .pebble-field { height: 850px !important; min-height: 850px !important; }
  .pebble img { width: 128px !important; }

  .pebble-tonka { left: 56vw !important; top: 42px !important; --mobile-s: .82 !important; }
  .pebble-tonka .label-right { left: 45% !important; top: 108% !important; text-align: center !important; }

  .pebble-olive { left: 0vw !important; top: 190px !important; --mobile-s: 1.08 !important; }
  .pebble-olive .label-right { left: 76% !important; top: 55% !important; text-align: left !important; }

  .pebble-pistachio { left: 19vw !important; top: 388px !important; --mobile-s: 1.42 !important; }
  .pebble-pistachio .label-right { left: 62% !important; top: 103% !important; text-align: left !important; }

  .pebble-blackcurrant { left: 57vw !important; top: 590px !important; --mobile-s: 1.02 !important; }
  .pebble-blackcurrant .label-right { left: 34% !important; top: 108% !important; text-align: center !important; }

  .pebble-bergamot { left: 12vw !important; top: 712px !important; --mobile-s: 1.18 !important; }
  .pebble-bergamot .label-bottom { left: 70% !important; top: 63% !important; text-align: left !important; }

  .pebble-nasturtium { left: -32vw !important; top: 812px !important; --mobile-s: 1.32 !important; }
  .pebble-nasturtium .label-right { left: 76% !important; top: 48% !important; text-align: left !important; }

  .label b { font-size: 11px !important; letter-spacing: .25em !important; }
  .pebble-nasturtium .label b, .pebble-bergamot .label b { font-size: 10.8px !important; }

  .order-section { padding-top: 86px !important; padding-bottom: 106px !important; }
  .order-section h2 { font-size: 30px !important; }
  .form-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .contact-section { margin-top: 62px !important; padding-top: 84px !important; padding-bottom: 128px !important; }
  .contact-section .narrow { max-width: min(68vw, 390px) !important; }
}

@media (max-width: 480px) {
  .site-header { padding: 22px 20px 14px !important; }
  .floating-logo { width: 60px !important; }
  .brand-name { font-size: 12px !important; letter-spacing: .36em !important; }
  .brand-subtitle { font-size: 10.5px !important; letter-spacing: .14em !important; }
  .nav { gap: 25px !important; font-size: 10px !important; letter-spacing: .18em !important; }

  .pebbles-stage { min-height: 1015px !important; padding-bottom: 50px !important; }
  .pebble-field { height: 835px !important; min-height: 835px !important; }
  .pebble img { width: 122px !important; }
  .pebble-tonka { left: 55vw !important; top: 32px !important; --mobile-s: .82 !important; }
  .pebble-olive { left: -2vw !important; top: 178px !important; --mobile-s: 1.06 !important; }
  .pebble-pistachio { left: 16vw !important; top: 372px !important; --mobile-s: 1.40 !important; }
  .pebble-blackcurrant { left: 55vw !important; top: 574px !important; --mobile-s: 1.00 !important; }
  .pebble-bergamot { left: 13vw !important; top: 696px !important; --mobile-s: 1.16 !important; }
  .pebble-nasturtium { left: -36vw !important; top: 800px !important; --mobile-s: 1.30 !important; }
  .label b { font-size: 10.3px !important; letter-spacing: .22em !important; }

  .order-section { padding-top: 76px !important; }
  .contact-section .narrow { max-width: 72vw !important; }
}

/* v11 — order form e-mail integration */
input[type="email"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255,255,255,.18);
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
}
input[type="email"]:focus {
  border-color: rgba(40,40,40,.24);
}
input[type="email"].field-error,
input[type="text"].field-error,
input[type="tel"].field-error,
fieldset.field-error .tin-options span,
fieldset.field-error .contact-pills span {
  border-color: rgba(95, 70, 52, .38) !important;
}
.contact-grid {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-message {
  min-height: 1.45em;
  margin: 22px auto 20px;
  max-width: 560px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .04em;
  color: #655f58;
}
.form-message.success { color: #5d6658; }
.form-message.error { color: #7b5f52; }
.submit-button:disabled {
  opacity: .62;
  cursor: wait;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* v12 — language toggle + final form alignment */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
  margin-left: 2px;
  color: var(--muted);
  letter-spacing: .18em;
  white-space: nowrap;
}
.lang-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lang-button.is-active { color: var(--ink); }
.lang-button:hover { color: var(--ink); }

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: end;
  gap: 22px !important;
}
.contact-grid label {
  min-width: 0;
  margin-bottom: 0 !important;
}
.order-form label > span[data-i18n] {
  display: block;
  margin-bottom: 10px;
}
.contact-grid input {
  margin-top: 0 !important;
}

.contact-pills {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px !important;
  margin-top: 12px;
}
.contact-pills label {
  flex: 0 0 auto;
}
.contact-pills span {
  min-width: 104px !important;
  height: 48px !important;
  padding: 0 22px !important;
  border-radius: 52% 48% 46% 54% / 58% 42% 56% 44% !important;
  border-color: rgba(40,40,40,.19) !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: lowercase;
}
.contact-pills label:nth-child(2) span { border-radius: 47% 53% 55% 45% / 44% 58% 42% 56% !important; transform: rotate(-1.5deg); }
.contact-pills label:nth-child(3) span { border-radius: 58% 42% 48% 52% / 50% 44% 56% 50% !important; transform: rotate(1.2deg); }
.contact-pills label:nth-child(4) span { border-radius: 46% 54% 51% 49% / 57% 48% 52% 43% !important; transform: rotate(-.8deg); }
.contact-pills input:checked + span {
  border-color: rgba(40,40,40,.42) !important;
  box-shadow: 0 0 0 1px rgba(40,40,40,.10) !important;
  background: transparent !important;
  color: var(--ink) !important;
}

.order-section .muted,
.order-section .muted em,
legend,
.order-form > label,
.form-grid label {
  color: #5e5953 !important;
}

@media (max-width: 900px) {
  .lang-switch {
    margin-left: 0;
    gap: 6px;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .contact-pills {
    gap: 10px !important;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .contact-pills span {
    min-width: 82px !important;
    height: 44px !important;
    padding: 0 12px !important;
    font-size: 11.5px !important;
    letter-spacing: .04em !important;
  }
}

@media (max-width: 420px) {
  .nav {
    gap: 17px !important;
    letter-spacing: .14em !important;
  }
  .lang-switch,
  .lang-button {
    letter-spacing: .08em !important;
  }
  .contact-pills {
    gap: 7px !important;
  }
  .contact-pills span {
    min-width: 70px !important;
    padding: 0 8px !important;
    font-size: 10.5px !important;
  }
}

/* v13 — final polish: pencil contact underline, softer placeholders, nasturtium balance */
/* Preferred contact: selected word gets a thin hand-drawn underline, no pebble/capsule outline */
.contact-pills {
  gap: 30px !important;
  margin-top: 18px !important;
}
.contact-pills span {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 4px 2px 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  transform: none !important;
}
.contact-pills label:nth-child(2) span,
.contact-pills label:nth-child(3) span,
.contact-pills label:nth-child(4) span {
  border-radius: 0 !important;
  transform: none !important;
}
.contact-pills span::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 1px;
  height: 5px;
  opacity: 0;
  transform: rotate(-1deg) scaleX(.88);
  transform-origin: left center;
  transition: opacity .18s ease, transform .18s ease;
  background:
    linear-gradient(176deg, transparent 0 40%, rgba(40,40,40,.36) 43% 54%, transparent 58% 100%);
}
.contact-pills label:nth-child(2) span::after { transform: rotate(1.4deg) scaleX(.86); }
.contact-pills label:nth-child(3) span::after { transform: rotate(-.6deg) scaleX(.92); }
.contact-pills label:nth-child(4) span::after { transform: rotate(.9deg) scaleX(.84); }
.contact-pills input:checked + span {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.contact-pills input:checked + span::after {
  opacity: 1;
  transform: rotate(-1deg) scaleX(1);
}
.contact-pills label:nth-child(2) input:checked + span::after { transform: rotate(1.4deg) scaleX(1); }
.contact-pills label:nth-child(3) input:checked + span::after { transform: rotate(-.6deg) scaleX(1); }
.contact-pills label:nth-child(4) input:checked + span::after { transform: rotate(.9deg) scaleX(1); }
.contact-pills input:focus-visible + span {
  outline: 1px dotted rgba(40,40,40,.32) !important;
  outline-offset: 5px !important;
}

/* Nasturtium: slightly further left on desktop, visible and intentional on mobile */
.pebble-nasturtium { left: -10.5vw !important; }
@media (max-width: 900px) {
  .pebble-nasturtium { left: -20vw !important; top: 812px !important; --mobile-s: 1.30 !important; }
  .pebble-nasturtium .label-right { left: 70% !important; top: 50% !important; }
}
@media (max-width: 480px) {
  .pebble-nasturtium { left: -22vw !important; top: 796px !important; --mobile-s: 1.28 !important; }
  .pebble-nasturtium .label-right { left: 68% !important; top: 49% !important; }
}

/* Make input helper placeholders quieter */
input::placeholder,
textarea::placeholder,
.flavour-lines input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder {
  color: rgba(119,114,108,.42) !important;
}

/* Bring About & Contact closer to the order form */
.contact-section {
  margin-top: 34px !important;
  padding-top: 58px !important;
}
@media (max-width: 900px) {
  .contact-section { margin-top: 28px !important; padding-top: 52px !important; }
  .contact-pills { gap: 22px !important; }
  .contact-pills span { font-size: 12px !important; letter-spacing: .06em !important; padding: 4px 0 8px !important; }
}
@media (max-width: 420px) {
  .contact-pills { gap: 16px !important; }
  .contact-pills span { font-size: 11px !important; letter-spacing: .035em !important; }
}

/* v14 — mobile language position, nasturtium visibility, contact links cleanup */
.contact-list {
  gap: 28px !important;
}

/* Keep roughly one third of Nasturtium visible on mobile */
@media (max-width: 900px) {
  .pebble-nasturtium {
    left: -12vw !important;
    top: 804px !important;
    --mobile-s: 1.28 !important;
  }
  .pebble-nasturtium .label-right {
    left: 68% !important;
    top: 50% !important;
  }

  /* Put language selector in the upper-right corner on mobile */
  .site-header {
    position: sticky !important;
  }
  .lang-switch {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 25 !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }
  .nav {
    padding-right: 56px !important;
  }
}

@media (max-width: 480px) {
  .pebble-nasturtium {
    left: -12vw !important;
    top: 792px !important;
    --mobile-s: 1.24 !important;
  }
  .pebble-nasturtium .label-right {
    left: 66% !important;
    top: 49% !important;
  }
  .lang-switch {
    top: 16px !important;
    right: 16px !important;
  }
  .nav {
    padding-right: 48px !important;
  }
}


/* v15 — final launch refinements: mobile composition, form reliability, softer editorial rhythm */
.form-target {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border-color: rgba(40,40,40,.105) !important;
  background: rgba(255,255,255,.18) !important;
}
input:focus,
textarea:focus {
  border-color: rgba(40,40,40,.32) !important;
}
input.field-error,
fieldset.field-error input + span,
fieldset.field-error .tin-options span {
  border-color: rgba(122,72,58,.55) !important;
}
.form-message {
  min-height: 1.6em;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .06em;
  color: #5e5953;
  text-align: center;
}
.form-message.error { color: #7a483a; }
.form-message.success { color: #4f5b45; }

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: end;
}
.order-form label span,
legend {
  line-height: 1.25;
}
.order-section {
  padding-top: 84px !important;
}
.order-section h2 {
  font-size: clamp(25px, 3.2vw, 40px) !important;
  margin-bottom: 18px !important;
}
.order-section .muted {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.tin-options input:checked + span {
  border-color: rgba(40,40,40,.40) !important;
  background: rgba(40,40,40,.018) !important;
  box-shadow: none !important;
}
.tin-options label:nth-child(4) span {
  width: 154px !important;
  min-height: 100px !important;
}

.contact-section {
  margin-top: 12px !important;
  padding-top: 42px !important;
  padding-bottom: 118px !important;
}
.contact-section .narrow {
  max-width: 455px !important;
}
.contact-copy {
  line-height: 1.55 !important;
}
.contact-list {
  justify-content: center;
  margin-top: 28px !important;
}

/* desktop pebble balance and label safety */
.pebble-nasturtium {
  left: -8.5vw !important;
  top: 55vh !important;
}
.pebble-nasturtium .label-right {
  left: 75% !important;
  top: 56% !important;
}
.pebble-bergamot {
  top: 60vh !important;
  left: 48vw !important;
}
.pebble-bergamot .label-bottom {
  left: 76% !important;
  top: 54% !important;
}
.pebble-pistachio .label-right { left: 75% !important; top: 47% !important; }
.pebble-blackcurrant .label-right { left: 78% !important; top: 48% !important; }
.pebble-tonka .label-right { left: 79% !important; top: 55% !important; }
.pebble-olive .label-right { left: 78% !important; top: 49% !important; }

/* mobile: manually recomposed, not stacked */
@media (max-width: 900px) {
  .site-header {
    padding: 17px 20px 13px !important;
    grid-template-columns: 58px 1fr !important;
    gap: 13px !important;
  }
  .floating-logo { width: 58px !important; }
  .brand-name { font-size: 12px !important; letter-spacing: .38em !important; }
  .brand-subtitle { font-size: 10.5px !important; letter-spacing: .19em !important; margin-top: 4px !important; }
  .nav {
    grid-column: 1 / -1 !important;
    padding-top: 13px !important;
    padding-right: 56px !important;
    gap: 26px !important;
    font-size: 10.5px !important;
    letter-spacing: .17em !important;
  }
  .lang-switch {
    top: 15px !important;
    right: 16px !important;
  }

  .pebbles-stage {
    min-height: 940px !important;
    overflow: hidden !important;
  }
  .pebble-field {
    height: 780px !important;
    min-height: 780px !important;
  }
  .pebble img { width: 130px !important; }
  .label b {
    font-size: 11px !important;
    letter-spacing: .24em !important;
  }

  .pebble-tonka {
    left: 55vw !important;
    top: 20px !important;
    --mobile-s: .78 !important;
  }
  .pebble-tonka .label-right {
    left: 49% !important;
    top: 108% !important;
    text-align: center !important;
  }

  .pebble-olive {
    left: 4vw !important;
    top: 142px !important;
    --mobile-s: 1.00 !important;
  }
  .pebble-olive .label-right {
    left: 78% !important;
    top: 51% !important;
  }

  .pebble-pistachio {
    left: 18vw !important;
    top: 302px !important;
    --mobile-s: 1.32 !important;
  }
  .pebble-pistachio .label-right {
    left: 76% !important;
    top: 48% !important;
  }

  .pebble-blackcurrant {
    left: 57vw !important;
    top: 500px !important;
    --mobile-s: .96 !important;
  }
  .pebble-blackcurrant .label-right {
    left: 44% !important;
    top: 110% !important;
    text-align: center !important;
  }

  .pebble-bergamot {
    left: 8vw !important;
    top: 600px !important;
    --mobile-s: 1.12 !important;
  }
  .pebble-bergamot .label-bottom {
    left: 74% !important;
    top: 52% !important;
    text-align: left !important;
  }

  .pebble-nasturtium {
    left: -22vw !important;
    top: 705px !important;
    --mobile-s: 1.24 !important;
  }
  .pebble-nasturtium .label-right {
    left: 112% !important;
    top: 57% !important;
    text-align: left !important;
  }

  .order-section {
    padding-top: 50px !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 17px !important;
  }
  .order-section .muted,
  .order-section .muted em,
  .contact-copy,
  .label em {
    font-size: 14px !important;
  }
  .contact-section {
    margin-top: 6px !important;
    padding-top: 34px !important;
    padding-bottom: 92px !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 15px 17px 12px !important;
  }
  .floating-logo { width: 54px !important; }
  .brand-name { font-size: 11px !important; letter-spacing: .32em !important; }
  .brand-subtitle { font-size: 10px !important; letter-spacing: .145em !important; }
  .nav {
    justify-content: flex-start !important;
    padding-left: 70px !important;
    padding-right: 50px !important;
    gap: 18px !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }
  .lang-switch { top: 14px !important; right: 14px !important; }

  .pebbles-stage { min-height: 910px !important; }
  .pebble-field { height: 750px !important; min-height: 750px !important; }
  .pebble img { width: 118px !important; }
  .label b { font-size: 10.5px !important; letter-spacing: .21em !important; }

  .pebble-tonka { left: 54vw !important; top: 16px !important; --mobile-s: .76 !important; }
  .pebble-olive { left: 3vw !important; top: 134px !important; --mobile-s: .98 !important; }
  .pebble-pistachio { left: 16vw !important; top: 292px !important; --mobile-s: 1.30 !important; }
  .pebble-blackcurrant { left: 55vw !important; top: 485px !important; --mobile-s: .96 !important; }
  .pebble-bergamot { left: 7vw !important; top: 582px !important; --mobile-s: 1.12 !important; }
  .pebble-nasturtium { left: -22vw !important; top: 684px !important; --mobile-s: 1.22 !important; }
  .pebble-nasturtium .label-right { left: 113% !important; top: 58% !important; }

  .order-section { padding-top: 42px !important; }
  .order-section h2 { font-size: 28px !important; }
  .tin-options label:nth-child(1) span,
  .tin-options label:nth-child(2) span,
  .tin-options label:nth-child(3) span,
  .tin-options label:nth-child(4) span {
    width: 134px !important;
    min-height: 88px !important;
  }
  .contact-section .narrow { max-width: 78vw !important; }
}

/* v16 — final production polish */
#pebbles,
#order,
#contact {
  scroll-margin-top: 132px;
}

.site-header {
  grid-template-columns: 124px minmax(330px, auto) minmax(360px, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
  padding: 24px 54px 16px !important;
  height: 104px !important;
}
.floating-logo { width: 82px !important; }
.brand-mark { padding-top: 0 !important; }
.brand-name { font-size: 17px !important; letter-spacing: .66em !important; }
.brand-subtitle { margin-top: 8px !important; font-size: 13.5px !important; letter-spacing: .38em !important; }
.nav {
  justify-content: flex-end !important;
  gap: 32px !important;
  padding-top: 2px !important;
  font-size: 12px !important;
  letter-spacing: .24em !important;
}
.nav a { opacity: .58; transition: opacity .18s ease; }
.nav a:hover,
.nav a.is-active { opacity: 1; }
.nav a.is-active::after {
  display: block !important;
  content: "";
  position: absolute;
  left: 0;
  right: .24em;
  bottom: 0;
  height: 1px;
  background: rgba(40,40,40,.56);
}
.instagram-link { display: none !important; }

.pebbles-stage { min-height: calc(100vh - 104px) !important; }
.pebble-field { height: calc(100vh - 104px) !important; min-height: 670px !important; }
.pebble-nasturtium { left: -7.2vw !important; top: 53vh !important; }
.pebble-nasturtium img { width: 272px !important; }
.pebble-nasturtium .label-right { left: 77% !important; top: 58% !important; }
.pebble-pistachio { top: 30vh !important; }
.pebble-blackcurrant { top: 45vh !important; }
.pebble-bergamot { top: 58vh !important; left: 48vw !important; }
.pebble-bergamot .label-bottom { left: 80% !important; top: 54% !important; }
.label b { font-size: 15px !important; letter-spacing: .35em !important; }

.order-section {
  padding-top: 58px !important;
  padding-bottom: 98px !important;
}
.order-section h2 {
  font-size: clamp(24px, 3vw, 36px) !important;
  letter-spacing: .12em !important;
}
.order-section .muted,
.order-section .muted em {
  font-size: 14px !important;
  color: #5f5a54 !important;
}
.order-form { margin-top: 46px !important; }
.tin-options label:nth-child(4) span {
  width: 142px !important;
  min-height: 88px !important;
}
.tin-options input:checked + span {
  border-color: rgba(40,40,40,.44) !important;
  background: rgba(255,255,255,.10) !important;
  box-shadow: 0 0 0 1px rgba(40,40,40,.07) !important;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border-color: rgba(40,40,40,.095) !important;
  background: rgba(255,255,255,.14) !important;
}
input::placeholder,
textarea::placeholder,
.flavour-lines input[type="number"]::placeholder {
  color: rgba(119,114,108,.36) !important;
}
legend,
.order-form > label,
.form-grid label {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.contact-pills {
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 42px !important;
  margin-top: 18px !important;
}
.contact-pills span {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 4px 2px 9px !important;
  font-size: 13px !important;
  letter-spacing: .08em !important;
}
.contact-pills span::after {
  height: 5px !important;
  background: linear-gradient(176deg, transparent 0 38%, rgba(40,40,40,.38) 42% 53%, transparent 59% 100%) !important;
}
.submit-button { background: #7a736b !important; border-color: #7a736b !important; }
.submit-button:hover { background: #69635d !important; border-color: #69635d !important; }

.contact-section {
  margin-top: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 100px !important;
}
.contact-section .narrow { max-width: 470px !important; }
.contact-title { margin-bottom: 10px !important; }
.contact-copy {
  line-height: 1.5 !important;
  font-size: 14.5px !important;
}
.contact-list {
  margin-top: 22px !important;
  gap: 30px !important;
  align-items: center !important;
}
.contact-list a { opacity: .84; transition: opacity .18s ease; }
.contact-list a:hover { opacity: 1; }
.contact-list svg { width: 16px !important; height: 16px !important; }

@media (max-width: 900px) {
  #pebbles, #order, #contact { scroll-margin-top: 128px; }
  .site-header {
    height: auto !important;
    min-height: 118px !important;
    grid-template-columns: 52px 1fr !important;
    gap: 10px 12px !important;
    padding: 13px 17px 12px !important;
    align-items: center !important;
  }
  .floating-logo { width: 52px !important; }
  .brand-name { font-size: 11.5px !important; letter-spacing: .31em !important; }
  .brand-subtitle { font-size: 10px !important; letter-spacing: .13em !important; margin-top: 3px !important; }
  .nav {
    grid-column: 1 / -1 !important;
    justify-content: flex-start !important;
    padding-top: 10px !important;
    padding-left: 64px !important;
    padding-right: 58px !important;
    gap: 18px !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }
  .lang-switch {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    font-size: 10px !important;
    letter-spacing: .10em !important;
  }

  .pebbles-stage {
    min-height: 840px !important;
    overflow: hidden !important;
  }
  .pebble-field {
    height: 700px !important;
    min-height: 700px !important;
  }
  .pebble img { width: 124px !important; }
  .label b { font-size: 10.5px !important; letter-spacing: .20em !important; }
  .label em { display: none !important; }
  .pebble-tonka { left: 55vw !important; top: 8px !important; --mobile-s: .76 !important; }
  .pebble-tonka .label-right { left: 47% !important; top: 111% !important; text-align: center !important; }
  .pebble-olive { left: 3vw !important; top: 118px !important; --mobile-s: .96 !important; }
  .pebble-olive .label-right { left: 82% !important; top: 52% !important; }
  .pebble-pistachio { left: 20vw !important; top: 265px !important; --mobile-s: 1.28 !important; }
  .pebble-pistachio .label-right { left: 76% !important; top: 48% !important; }
  .pebble-blackcurrant { left: 56vw !important; top: 435px !important; --mobile-s: .94 !important; }
  .pebble-blackcurrant .label-right { left: 34% !important; top: 112% !important; text-align: center !important; }
  .pebble-bergamot { left: 9vw !important; top: 535px !important; --mobile-s: 1.08 !important; }
  .pebble-bergamot .label-bottom { left: 78% !important; top: 50% !important; text-align: left !important; }
  .pebble-nasturtium { left: -8vw !important; top: 635px !important; --mobile-s: 1.18 !important; }
  .pebble-nasturtium .label-right { left: 98% !important; top: 56% !important; text-align: left !important; }

  .order-section { padding-top: 34px !important; padding-bottom: 78px !important; }
  .order-form { max-width: 520px !important; margin-top: 38px !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 17px !important; }
  .contact-pills { gap: 28px !important; }
  .contact-pills span { font-size: 12px !important; letter-spacing: .055em !important; }
  .contact-section { padding-top: 24px !important; padding-bottom: 82px !important; }
  .contact-section .narrow { max-width: 70vw !important; }
}

@media (max-width: 480px) {
  #pebbles, #order, #contact { scroll-margin-top: 122px; }
  .site-header { padding: 12px 15px 11px !important; }
  .floating-logo { width: 50px !important; }
  .brand-name { font-size: 11px !important; letter-spacing: .28em !important; }
  .brand-subtitle { font-size: 9.8px !important; letter-spacing: .10em !important; }
  .nav { padding-left: 62px !important; padding-right: 50px !important; gap: 16px !important; font-size: 9.8px !important; }
  .lang-switch { top: 13px !important; right: 13px !important; }

  .pebbles-stage { min-height: 815px !important; }
  .pebble-field { height: 675px !important; min-height: 675px !important; }
  .pebble img { width: 116px !important; }
  .pebble-tonka { left: 54vw !important; top: 6px !important; --mobile-s: .75 !important; }
  .pebble-olive { left: 2vw !important; top: 113px !important; --mobile-s: .95 !important; }
  .pebble-pistachio { left: 17vw !important; top: 254px !important; --mobile-s: 1.26 !important; }
  .pebble-blackcurrant { left: 54vw !important; top: 414px !important; --mobile-s: .93 !important; }
  .pebble-bergamot { left: 8vw !important; top: 510px !important; --mobile-s: 1.07 !important; }
  .pebble-nasturtium { left: -7vw !important; top: 605px !important; --mobile-s: 1.16 !important; }
  .pebble-nasturtium .label-right { left: 99% !important; top: 57% !important; }
  .label b { font-size: 10px !important; letter-spacing: .18em !important; }

  .order-section { padding-top: 28px !important; }
  .order-section h2 { font-size: 26px !important; }
  .order-section .muted, .order-section .muted em { font-size: 13.5px !important; }
  .tin-options label:nth-child(1) span,
  .tin-options label:nth-child(2) span,
  .tin-options label:nth-child(3) span,
  .tin-options label:nth-child(4) span {
    width: 130px !important;
    min-height: 84px !important;
  }
  .contact-pills { gap: 22px !important; }
  .contact-list { gap: 22px !important; flex-wrap: wrap !important; }
  .contact-section .narrow { max-width: 74vw !important; }
}


/* v18 chocolate spreads */
.nav a[href="spreads/"], .nav a[href="../spreads/"], .nav a[href="../#order"], .nav a[href="../#contact"], .nav a[href="../#pebbles"] { white-space: nowrap; }
.spreads-page { background: var(--paper); }
.spreads-hero {
  min-height: calc(100vh - 116px);
  padding: 110px 24px 120px;
}
.spreads-hero .section-inner { max-width: 1080px; }
.spreads-intro { text-align: center; margin-bottom: 74px; }
.spreads-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: .10em;
  font-weight: 400;
  text-transform: lowercase;
}
.spreads-intro p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .08em;
  text-transform: lowercase;
}
.spread-sticker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}
.spread-sticker {
  text-align: center;
}
.spread-sticker img {
  width: min(100%, 280px);
  height: auto;
  display: block;
  margin: 0 auto 28px;
  filter: drop-shadow(14px 18px 16px rgba(40,40,40,.12));
}
.spread-sticker h2 {
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: .30em;
  font-weight: 500;
  text-transform: uppercase;
}
.spread-sticker .spread-price {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .12em;
  line-height: 1.9;
}
.spread-sticker .spread-ingredients {
  margin: 0 auto;
  max-width: 290px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: .04em;
  text-transform: lowercase;
}
.spreads-order-cta {
  margin-top: 78px;
  text-align: center;
}
.spreads-order-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  padding: 13px 28px;
  letter-spacing: .18em;
  text-transform: lowercase;
  font-size: 12px;
}
.fieldset-note {
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: lowercase;
}
.spread-checks {
  display: grid;
  gap: 18px;
}
.spread-check-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
}
.spread-check-group p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: lowercase;
}
.spread-check-group label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: lowercase;
  white-space: nowrap;
}
.spread-check-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--ink); }
@media (max-width: 900px) {
  .spreads-hero { padding: 76px 22px 96px; }
  .spread-sticker-grid { gap: 34px; }
  .spread-sticker img { width: min(100%, 220px); }
  .spread-sticker h2 { font-size: 12px; letter-spacing: .20em; }
  .spread-check-group { grid-template-columns: 1fr; gap: 12px; }
  .spread-check-group label { width: 100%; justify-content: flex-start; }
}
@media (max-width: 640px) {
  .spread-sticker-grid { grid-template-columns: 1fr; gap: 62px; }
  .spread-sticker img { width: min(78vw, 270px); margin-bottom: 22px; }
  .spreads-intro { margin-bottom: 54px; }
  .spreads-order-cta { margin-top: 58px; }
}

/* v20 spreads page and order refinements */
.spreads-hero { padding-top: 86px !important; }
.spreads-intro { margin-bottom: 64px !important; }
.spreads-intro h1 {
  font-size: clamp(28px, 3.6vw, 46px) !important;
  letter-spacing: .08em !important;
}
.spreads-intro p { display: none !important; }
.spread-sticker-grid {
  max-width: 980px;
  margin: 0 auto;
  gap: clamp(54px, 7vw, 92px) !important;
  align-items: start !important;
}
.spread-sticker img {
  width: min(100%, 205px) !important;
  height: 255px !important;
  object-fit: contain;
  margin-bottom: 30px !important;
  filter: drop-shadow(10px 14px 10px rgba(40,40,40,.10)) !important;
}
.spread-sticker h2 {
  font-size: 13px !important;
  letter-spacing: .25em !important;
  margin-bottom: 14px !important;
}
.spread-sticker .spread-ingredients {
  max-width: 250px !important;
  font-size: 11.5px !important;
  line-height: 1.85 !important;
}
.spreads-order-cta a {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: rgba(40,40,40,.32) !important;
}
.order-section h2 {
  font-size: clamp(28px, 4vw, 44px) !important;
  letter-spacing: .035em !important;
}
.order-subtitle,
.spreads-order-fieldset legend {
  display: block !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
  letter-spacing: .18em !important;
  text-transform: lowercase !important;
  font-weight: 500 !important;
  margin-bottom: 22px !important;
}
.spreads-order-fieldset {
  margin-top: 54px !important;
  margin-bottom: 44px !important;
}
.fieldset-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.estimated-total {
  margin: 38px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.estimated-total span {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
}
.estimated-total strong {
  font-size: 18px;
  letter-spacing: .12em;
  font-weight: 500;
}
@media (max-width: 900px) {
  .spread-sticker-grid { gap: 44px !important; }
  .spread-sticker img { width: min(100%, 180px) !important; height: 225px !important; }
}
@media (max-width: 640px) {
  .spreads-hero { padding-top: 58px !important; }
  .spread-sticker-grid { grid-template-columns: 1fr !important; gap: 58px !important; }
  .spread-sticker img { width: min(68vw, 210px) !important; height: auto !important; }
  .order-subtitle, .spreads-order-fieldset legend { font-size: 15px !important; }
}

/* v21: spreads moved to homepage */
.spreads-home-section {
  min-height: auto !important;
  padding: 92px 24px 106px !important;
  scroll-margin-top: 96px;
}
.spreads-home-section .section-inner {
  max-width: 1060px !important;
}
.spreads-home-section .spreads-intro {
  margin-bottom: 56px !important;
}
.spreads-home-section .spreads-intro h1 {
  font-size: clamp(25px, 3.2vw, 40px) !important;
  letter-spacing: .075em !important;
}
.spreads-home-section .spread-sticker-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(70px, 8vw, 118px) !important;
  align-items: start !important;
}
.spreads-home-section .spread-sticker {
  text-align: center !important;
}
.spreads-home-section .spread-sticker img {
  width: 178px !important;
  height: 224px !important;
  object-fit: contain !important;
  margin-bottom: 28px !important;
  filter: drop-shadow(8px 12px 10px rgba(40,40,40,.10)) !important;
}
.spreads-home-section .spread-sticker h2 {
  font-size: 12px !important;
  letter-spacing: .24em !important;
  margin-bottom: 14px !important;
}
.spreads-home-section .spread-sticker .spread-ingredients {
  max-width: 240px !important;
  font-size: 11.5px !important;
  line-height: 1.85 !important;
}
.spreads-home-section .spreads-order-cta {
  margin-top: 64px !important;
}
.spreads-home-section .spreads-order-cta a {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: rgba(40,40,40,.30) !important;
}
@media (max-width: 900px) {
  .spreads-home-section { padding: 76px 22px 94px !important; }
  .spreads-home-section .spread-sticker-grid { gap: 42px !important; }
  .spreads-home-section .spread-sticker img { width: 150px !important; height: 194px !important; }
}
@media (max-width: 640px) {
  .spreads-home-section { padding-top: 58px !important; }
  .spreads-home-section .spread-sticker-grid { grid-template-columns: 1fr !important; gap: 54px !important; }
  .spreads-home-section .spread-sticker img { width: min(58vw, 170px) !important; height: auto !important; }
}

/* v22: cleaner integrated spreads + quieter order form */
.spreads-home-section .spreads-order-cta { display: none !important; }
.spreads-home-section .spread-sticker-grid {
  gap: clamp(82px, 9vw, 132px) !important;
}
.spreads-home-section .spread-sticker img {
  width: 156px !important;
  height: 216px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  margin-bottom: 26px !important;
}
.order-section {
  padding-top: 78px !important;
}
.order-section .section-inner.narrow {
  max-width: 760px !important;
}
.order-section h2.order-kicker,
.order-section h2 {
  font-size: clamp(18px, 2.2vw, 26px) !important;
  line-height: 1.15 !important;
  letter-spacing: .22em !important;
  text-transform: lowercase !important;
  font-weight: 500 !important;
  margin: 0 0 34px !important;
}
.order-section .muted { display: none !important; }
.order-subtitle,
.spreads-order-fieldset legend {
  text-align: center !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
  letter-spacing: .14em !important;
  margin: 0 0 10px !important;
}
.order-section-note,
.fieldset-note-centered {
  text-align: center !important;
  margin: 0 auto 28px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}
.spreads-order-fieldset {
  margin-top: 62px !important;
  margin-bottom: 44px !important;
  padding-top: 10px !important;
}
.spread-checks {
  margin-top: 20px !important;
}
@media (max-width: 900px) {
  .spreads-home-section .spread-sticker-grid { gap: 52px !important; }
  .spreads-home-section .spread-sticker img { width: 140px !important; height: 196px !important; }
}
@media (max-width: 640px) {
  .order-section { padding-top: 58px !important; }
  .order-section h2.order-kicker, .order-section h2 { margin-bottom: 28px !important; }
  .spreads-home-section .spread-sticker img { width: min(58vw, 170px) !important; height: auto !important; }
}

/* v23: spreads use modal ingredients + quieter order start */
.spreads-home-section .spread-sticker {
  cursor: pointer;
  outline: none;
}
.spreads-home-section .spread-sticker h2,
.spreads-home-section .spread-sticker .spread-ingredients {
  display: none !important;
}
.spreads-home-section .spread-sticker:focus-visible img {
  outline: 1px solid rgba(40, 40, 40, .38);
  outline-offset: 10px;
  border-radius: 18px;
}
.order-section .section-inner.narrow {
  padding-top: 0;
}
.order-form > fieldset:first-of-type {
  margin-top: 0 !important;
}
.order-form > fieldset:first-of-type .order-subtitle {
  margin-top: 0 !important;
}

/* v25: larger spread jars + calmer order spacing/contact */
.spreads-home-section {
  padding-bottom: 72px !important;
}
.spreads-home-section .spreads-intro {
  margin-bottom: 42px !important;
}
.spreads-home-section .spreads-intro h1 {
  font-size: clamp(22px, 2.55vw, 34px) !important;
  letter-spacing: .07em !important;
  margin-bottom: 13px !important;
}
.spreads-home-section .spreads-intro p {
  display: block !important;
  margin: 0 auto !important;
  max-width: 360px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  letter-spacing: .075em !important;
  text-transform: lowercase !important;
}
.spreads-home-section .spread-sticker-grid {
  max-width: 940px !important;
  gap: clamp(54px, 7vw, 88px) !important;
  align-items: end !important;
}
.spreads-home-section .spread-sticker img {
  width: 235px !important;
  height: 300px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  margin-bottom: 0 !important;
  filter: drop-shadow(10px 14px 12px rgba(40,40,40,.11)) !important;
}
.order-section {
  padding-top: 32px !important;
}
.order-subtitle,
.spreads-order-fieldset legend {
  font-size: clamp(19px, 2vw, 23px) !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
  letter-spacing: .13em !important;
}
.order-section-note,
.fieldset-note-centered {
  margin-bottom: 32px !important;
}
.order-form > .contact-grid {
  margin-bottom: 34px !important;
}
.order-form fieldset:has(.contact-pills) {
  margin-top: 12px !important;
  padding-top: 6px !important;
}
.order-form fieldset:has(.contact-pills) legend {
  text-align: center !important;
  margin-bottom: 18px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  text-transform: lowercase !important;
}
.contact-pills {
  flex-wrap: wrap !important;
  gap: 14px 18px !important;
  margin-top: 0 !important;
}
.contact-pills span {
  min-width: 96px !important;
}
@media (max-width: 900px) {
  .spreads-home-section .spread-sticker-grid { gap: 34px !important; }
  .spreads-home-section .spread-sticker img { width: 195px !important; height: 255px !important; }
  .order-section { padding-top: 28px !important; }
}
@media (max-width: 640px) {
  .spreads-home-section { padding-bottom: 54px !important; }
  .spreads-home-section .spread-sticker-grid { grid-template-columns: 1fr !important; gap: 38px !important; }
  .spreads-home-section .spread-sticker img { width: min(70vw, 235px) !important; height: auto !important; }
  .order-subtitle,
  .spreads-order-fieldset legend { font-size: 18px !important; }
  .contact-pills { gap: 10px 12px !important; }
  .contact-pills span { min-width: 76px !important; }
}


/* v27: larger spread jars, tighter order transition, clearer contact method */
.spreads-home-section .spread-sticker-grid {
  max-width: 1120px !important;
  gap: clamp(44px, 5.4vw, 74px) !important;
}
.spreads-home-section .spread-sticker img {
  width: 315px !important;
  height: 405px !important;
}
.order-section {
  padding-top: 12px !important;
}
.order-form > .contact-grid {
  margin-bottom: 46px !important;
}
.order-form fieldset:has(.contact-pills) {
  margin-top: 22px !important;
  padding-top: 14px !important;
}
.order-form fieldset:has(.contact-pills) legend {
  display: block !important;
  margin-bottom: 24px !important;
}
.contact-pills {
  gap: 16px 20px !important;
}
@media (max-width: 900px) {
  .spreads-home-section .spread-sticker-grid { gap: 26px !important; max-width: 820px !important; }
  .spreads-home-section .spread-sticker img { width: 245px !important; height: 320px !important; }
  .order-section { padding-top: 10px !important; }
}
@media (max-width: 640px) {
  .spreads-home-section .spread-sticker-grid { gap: 30px !important; }
  .spreads-home-section .spread-sticker img { width: min(84vw, 315px) !important; height: auto !important; }
  .order-section { padding-top: 8px !important; }
}
