/* ==========================================================================
   Sompisi Poultry Farm
   Art direction: "Farm Ledger" - agricultural co-op paperwork meets modern
   editorial. Paper ground, olive ink, maize accent, mono stock-board numerals.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colour ---------------------------------------------------------------- */
  --paper:        #F2EDE3;
  --paper-2:      #FBF8F1;
  --paper-3:      #E7E0D1;
  --ink:          #16241B;
  --ink-2:        #2C3D30;
  --ink-soft:     #4A5C4E;
  --muted:        #6E7C6E;
  --maize:        #E0A526;
  --maize-deep:   #B8831A;
  --brick:        #A8412A;
  --brick-soft:   #C9614A;
  --sage:         #8FA48C;

  --color-bg:      var(--paper);
  --color-surface: var(--paper-2);
  --color-text:    var(--ink);
  --color-muted:   var(--muted);
  --color-accent:  var(--maize);
  --color-focus:   #1F5FBF;
  --color-success: #2F6B3C;
  --color-warning: #B8831A;
  --color-danger:  #9E2F1B;

  --line:        color-mix(in srgb, var(--ink) 16%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 34%, transparent);
  --line-dark:   rgba(242, 237, 227, 0.20);

  /* Typography ------------------------------------------------------------ */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body:    "Archivo", "Helvetica Neue", "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --text-xs:    0.75rem;   --leading-xs:   1.45;
  --text-sm:    0.875rem;  --leading-sm:   1.55;
  --text-base:  1.0rem;    --leading-base: 1.65;
  --text-lg:    1.1875rem; --leading-lg:   1.55;
  --text-xl:    1.5rem;    --leading-xl:   1.3;
  --text-2xl:   2rem;      --leading-2xl:  1.15;
  --text-3xl:   clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
  --text-4xl:   clamp(2.8rem, 1.4rem + 6vw, 6.2rem);

  /* Spacing --------------------------------------------------------------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --measure: 62ch;
  --maxw: 1280px;

  /* Radius + shadow ------------------------------------------------------- */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 0 color-mix(in srgb, var(--ink) 12%, transparent);
  --shadow-md: 0 8px 24px -12px rgba(22, 36, 27, 0.35);
  --shadow-lg: 0 26px 60px -30px rgba(22, 36, 27, 0.55);

  /* Motion ---------------------------------------------------------------- */
  --duration-fast: 140ms;
  --duration-base: 280ms;
  --duration-slow: 720ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. RESET + BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-base);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain: fixed overlay, cheap, non-interactive. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.30'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; height: auto; }

/* User-agent margins on these would inset every figure by 40px. */
figure, blockquote, dl, dd, fieldset { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 40;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

::selection { background: var(--maize); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  font: 600 var(--text-sm)/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 7vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 4vw, 4rem); }

.section--ink {
  background: var(--ink);
  color: var(--paper);
  --line: var(--line-dark);
  --line-strong: rgba(242, 237, 227, 0.4);
  --color-muted: #A9B6A6;
  --color-surface: #1E2E23;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Section eyebrow: numbered like a ledger entry. -------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-6);
}
.eyebrow::before {
  content: attr(data-num);
  color: var(--ink);
  background: var(--maize);
  padding: 0.42em 0.55em 0.36em;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  font-weight: 600;
}
.section--ink .eyebrow::before { color: var(--ink); }

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.lede {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  color: var(--ink-soft);
  max-width: 52ch;
}
.section--ink .lede { color: #C8D2C4; }

/* --------------------------------------------------------------------------
   4. BUTTONS + LINKS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--radius-md);
  font: 600 var(--text-sm)/1 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn--accent { --btn-bg: var(--maize); --btn-fg: var(--ink); }
.btn--accent:hover { --btn-bg: var(--maize-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: var(--line-strong);
}
.btn--ghost:hover { --btn-bg: color-mix(in srgb, var(--ink) 8%, transparent); }
.section--ink .btn--ghost:hover { --btn-bg: rgba(242, 237, 227, 0.12); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn .btn__spinner { display: none; }
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn__label { opacity: 0.5; }
.btn.is-loading .btn__spinner {
  display: block;
  width: 15px; height: 15px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Underline link with a maize wipe. */
.link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--maize), var(--maize));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 2px;
  padding-bottom: 1px;
  transition: background-size var(--duration-base) var(--ease-out);
}
.link:hover { background-size: 100% 42%; }

/* --------------------------------------------------------------------------
   5. HEADER + NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--duration-base) var(--ease-out);
}
.site-header.is-stuck { box-shadow: 0 8px 22px -20px rgba(22, 36, 27, 0.9); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 72px;
}

/* Wordmark: stacked, mono kicker, serif name. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 3px;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}
.brand__kicker {
  font: 500 0.6rem/1 var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.6rem); }
.nav__link {
  font: 500 var(--text-sm)/1 var(--font-body);
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink-2);
  padding: 0.7rem 0.35rem;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.35rem; right: 0.35rem; bottom: 0.35rem;
  height: 2px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 19px; height: 1.5px;
  background: currentColor;
  margin-inline: auto;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  min-height: clamp(520px, 74vh, 780px);
}
.hero__copy {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.15rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 44rem;
  margin-left: auto;
  width: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maize);
  border: 1px solid rgba(224, 165, 38, 0.42);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  margin-bottom: var(--space-8);
}
.hero__tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--maize);
  box-shadow: 0 0 0 0 rgba(224, 165, 38, 0.7);
  animation: pulse 2.6s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 165, 38, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(224, 165, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 165, 38, 0); }
}

.hero__title {
  font-size: var(--text-4xl);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 100;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: italic;
  color: var(--maize);
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 100;
}
.hero__lede {
  font-size: clamp(1.02rem, 0.9rem + 0.45vw, 1.25rem);
  line-height: 1.6;
  color: #C8D2C4;
  max-width: 48ch;
  margin-bottom: var(--space-8);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.hero__figure { position: relative; overflow: hidden; }
.hero__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% 60%;
  filter: saturate(0.82) contrast(1.06);
}
/* Duotone wash keeps photography on-palette. */
.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--ink) 0%, rgba(22, 36, 27, 0.55) 32%, rgba(22, 36, 27, 0.06) 68%),
    linear-gradient(0deg, rgba(224, 165, 38, 0.14), rgba(224, 165, 38, 0.14));
  mix-blend-mode: multiply;
}
.hero__caption {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 2;
  font: 500 var(--text-xs)/1.5 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(22, 36, 27, 0.72);
  backdrop-filter: blur(4px);
  border-left: 2px solid var(--maize);
  padding: 0.6rem 0.85rem;
  max-width: 20rem;
}

/* Stat marquee under the hero, mono ledger figures. */
.hero__stats {
  border-top: 1px solid var(--line-dark);
  background: #101B14;
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
  padding: clamp(1.1rem, 2.4vw, 1.9rem) clamp(0.9rem, 2vw, 1.6rem);
  border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: 0; }
.stat__num {
  font: 600 clamp(1.5rem, 1.1rem + 1.6vw, 2.35rem)/1 var(--font-mono);
  color: var(--maize);
  letter-spacing: -0.03em;
  display: block;
}
.stat__label {
  display: block;
  margin-top: 0.55rem;
  font-size: var(--text-xs);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #A9B6A6;
}

/* --------------------------------------------------------------------------
   7. PAGE HEADER (inner pages)
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(2.75rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, rgba(242, 237, 227, 0.045) 0 1px, transparent 1px 11px
  );
  pointer-events: none;
}
.page-head__inner { position: relative; max-width: 60rem; }
.page-head__title {
  font-size: var(--text-3xl);
  margin-block: var(--space-4) var(--space-4);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 100;
}
.page-head .lede { color: #C8D2C4; }

.breadcrumb {
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--maize); }
.breadcrumb span { opacity: 0.5; margin-inline: 0.5rem; }

/* --------------------------------------------------------------------------
   8. SIGNATURE ELEMENT - THE BATCH BOARD
   A live stock ledger: what is in the sheds, what is ready, what is next.
   -------------------------------------------------------------------------- */
.board {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}
.section--ink .board { background: #1B2A20; }

.board__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.95rem 1.15rem;
  border-bottom: 1.5px solid var(--line-strong);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.section--ink .board__head { background: rgba(242, 237, 227, 0.05); }
.board__title {
  font: 600 var(--text-sm)/1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.board__stamp {
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.board__table { width: 100%; border-collapse: collapse; }
.board__table th,
.board__table td {
  text-align: left;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.board__table thead th {
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding-block: 0.75rem;
}
.board__table tbody tr {
  transition: background-color var(--duration-fast) var(--ease-out);
}
.board__table tbody tr:hover { background: color-mix(in srgb, var(--maize) 12%, transparent); }
.board__table tbody tr:last-child td { border-bottom: 0; }
.board__item { font-weight: 600; }
.board__meta {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-weight: 400;
  margin-top: 2px;
}
.board__num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  white-space: nowrap;
}

/* Status pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font: 600 0.68rem/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.pill--ready  { color: var(--color-success); background: rgba(47, 107, 60, 0.10); }
.pill--soon   { color: var(--maize-deep);    background: rgba(224, 165, 38, 0.14); }
.pill--closed { color: var(--brick);         background: rgba(168, 65, 42, 0.10); }
.section--ink .pill--ready  { color: #8FCB9B; background: rgba(143, 203, 155, 0.12); }
.section--ink .pill--soon   { color: var(--maize); background: rgba(224, 165, 38, 0.14); }
.section--ink .pill--closed { color: var(--brick-soft); background: rgba(201, 97, 74, 0.14); }

.board__foot {
  padding: 0.9rem 1.15rem;
  border-top: 1.5px solid var(--line-strong);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  font-size: var(--text-xs);
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
}
.section--ink .board__foot { background: rgba(242, 237, 227, 0.05); }

/* --------------------------------------------------------------------------
   9. PRODUCT CARDS
   -------------------------------------------------------------------------- */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.product {
  background: var(--color-surface);
  padding: clamp(1.25rem, 2.4vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: background-color var(--duration-base) var(--ease-out);
}
.product:hover { background: var(--paper-3); }
.section--ink .product { background: #1B2A20; }
.section--ink .product:hover { background: #223326; }

.product__index {
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--color-muted);
}
.product__name {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.product__desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}
.section--ink .product__desc { color: #B7C3B4; }
.product__price {
  font: 600 1.45rem/1 var(--font-mono);
  letter-spacing: -0.03em;
  color: var(--brick);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.section--ink .product__price { color: var(--maize); }
.product__price small {
  font: 400 var(--text-xs)/1 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   10. PRICE TABLE (products page)
   -------------------------------------------------------------------------- */
.pricelist {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}
.pricelist + .pricelist { margin-top: var(--space-8); }

.pricelist__head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: baseline;
  justify-content: space-between;
  padding: 1.05rem 1.15rem;
  background: var(--ink);
  color: var(--paper);
}
.pricelist__head h3 { font-size: 1.28rem; }
.pricelist__head p {
  margin: 0;
  font: 500 var(--text-xs)/1.5 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.ptable { width: 100%; border-collapse: collapse; min-width: 640px; }
.ptable caption { text-align: left; padding: 0.9rem 1.15rem 0; font-size: var(--text-sm); color: var(--muted); }
.ptable th, .ptable td {
  text-align: left;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.ptable thead th {
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1.5px solid var(--line-strong);
  white-space: nowrap;
}
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable tbody tr:nth-child(even) { background: color-mix(in srgb, var(--ink) 3.5%, transparent); }
.ptable tbody tr:hover { background: color-mix(in srgb, var(--maize) 14%, transparent); }
.ptable td.num {
  font-family: var(--font-mono);
  font-weight: 600;
  white-space: nowrap;
  color: var(--brick);
}
.ptable td strong { display: block; }
.ptable td .note {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 3px;
}

.price-note {
  border-left: 3px solid var(--maize);
  background: color-mix(in srgb, var(--maize) 11%, transparent);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.65;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* --------------------------------------------------------------------------
   11. EDITORIAL BLOCKS
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }

.figure {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
}
.figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform var(--duration-slow) var(--ease-out);
}
.figure:hover img { transform: scale(1.03); }
.figure figcaption {
  position: absolute;
  left: 0; bottom: 0;
  font: 500 var(--text-xs)/1.5 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(22, 36, 27, 0.8);
  border-top: 2px solid var(--maize);
  padding: 0.6rem 0.9rem;
}
/* Intentional grid break: the offset frame behind key images. */
.figure--framed { box-shadow: 18px 18px 0 -1px var(--maize); }

.checks { list-style: none; margin: var(--space-6) 0 0; padding: 0; display: grid; gap: 0.9rem; }
.checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.85rem;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.checks li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 3px;
  background: var(--maize);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='square'/%3E%3C/svg%3E") center / 16px no-repeat,
           linear-gradient(#000, #000);
  -webkit-mask-composite: destination-out;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='square'/%3E%3C/svg%3E") center / 16px no-repeat;
}

/* Numbered process steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1px;
  background: var(--line-strong);
  border-block: 1.5px solid var(--line-strong);
}
.step {
  background: var(--color-bg);
  padding: clamp(1.3rem, 2.5vw, 2rem);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}
.section--ink .step { background: var(--ink); }
.step__num {
  font: 600 2.5rem/0.9 var(--font-mono);
  color: color-mix(in srgb, var(--ink) 22%, transparent);
  letter-spacing: -0.05em;
}
.section--ink .step__num { color: rgba(242, 237, 227, 0.28); }
.step h3 { font-size: 1.16rem; }
.step p { font-size: var(--text-sm); line-height: 1.6; color: var(--ink-soft); margin: 0; }
.section--ink .step p { color: #B7C3B4; }

/* Value cards (about page) */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-6);
}
.value {
  border-top: 3px solid var(--ink);
  padding-top: var(--space-4);
}
.value:nth-child(3n+1) { border-top-color: var(--maize); }
.value:nth-child(3n+2) { border-top-color: var(--brick); }
.value h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value p { font-size: var(--text-sm); line-height: 1.6; color: var(--ink-soft); margin: 0; }
.section--ink .value { border-top-color: var(--sage); }
.section--ink .value p { color: #B7C3B4; }

/* Quote / pull statement */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.028em;
  max-width: 22ch;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 90;
}
.pullquote em { font-style: italic; color: var(--maize); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-4);
}
.gallery .figure img { aspect-ratio: 3 / 4; }
.gallery .figure:nth-child(1) { grid-column: span 2; }
.gallery .figure:nth-child(1) img { aspect-ratio: 16 / 11; }

/* Delivery zone list */
.zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.zone {
  background: var(--color-surface);
  padding: var(--space-6);
}
.zone__name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.zone__detail {
  font: 500 var(--text-xs)/1.5 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}
.zone__fee {
  margin-top: 0.7rem;
  font: 600 1.05rem/1 var(--font-mono);
  color: var(--brick);
}

/* FAQ */
.faq { border-top: 1.5px solid var(--line-strong); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color var(--duration-fast) var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brick); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.35rem; top: 50%;
  width: 13px; height: 13px;
  margin-top: -6px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' fill='none' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' fill='none' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--duration-base) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div {
  padding: 0 2.5rem var(--space-6) 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* --------------------------------------------------------------------------
   12. FORMS
   -------------------------------------------------------------------------- */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.form {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.fieldset { border: 0; margin: 0 0 var(--space-8); padding: 0; }
.fieldset:last-of-type { margin-bottom: var(--space-6); }
.fieldset legend {
  font: 600 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}
.fieldset legend::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
/* align-content:start stops a short field stretching to match a taller
   neighbour that carries hint text. */
.field { display: grid; gap: 0.45rem; align-content: start; }

.field label,
.field .label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
}
.field .hint {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.5;
}
.req { color: var(--brick); font-weight: 700; }

.input, .select, .textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  font: 400 var(--text-base)/1.4 var(--font-body);
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
}
.textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%2316241B' stroke-width='2.2' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 17px;
  padding-right: 2.5rem;
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--ink-soft); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(224, 165, 38, 0.42);
  background: #fff;
}
.input::placeholder, .textarea::placeholder { color: #9AA69A; }
.input:disabled, .select:disabled, .textarea:disabled {
  background: var(--paper-3);
  color: var(--muted);
  cursor: not-allowed;
}
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--color-danger);
  background: rgba(158, 47, 27, 0.05);
}

.error-text {
  display: none;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-danger);
  align-items: center;
  gap: 0.35rem;
}
.error-text.is-visible { display: flex; }
.error-text::before { content: "!"; font-family: var(--font-mono); }

/* Choice chips (radio group styled as ledger tabs) */
.choices { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.choice { position: relative; }
.choice input {
  position: absolute; opacity: 0;
  width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.choice span {
  display: block;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: 500 var(--text-sm)/1.35 var(--font-body);
  background: var(--paper-2);
  transition: all var(--duration-fast) var(--ease-out);
}
.choice input:hover + span { border-color: var(--ink-soft); }
.choice input:checked + span {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.choice input:focus-visible + span {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

/* Consent checkbox */
.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-soft);
}
.consent input {
  width: 22px; height: 22px;
  margin: 1px 0 0;
  accent-color: var(--ink);
  cursor: pointer;
}

/* Live order summary panel */
.summary {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 92px;
  overflow: hidden;
}
.summary__head {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line-dark);
  font: 600 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.summary__body { padding: 1.15rem; }
.summary__row {
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
  padding-block: 0.6rem;
  border-bottom: 1px dashed var(--line-dark);
  font-size: var(--text-sm);
}
.summary__row:last-child { border-bottom: 0; }
.summary__row dt { color: var(--sage); }
.summary__row dd {
  margin: 0;
  font-family: var(--font-mono);
  text-align: right;
  overflow-wrap: anywhere;
}
.summary__empty { font-size: var(--text-sm); color: var(--sage); line-height: 1.6; }
.summary__foot { padding: 0 1.15rem 1.15rem; }

/* Form status banner */
.form-status {
  display: none;
  gap: 0.8rem;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border-left: 3px solid;
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}
.form-status.is-visible { display: flex; }
.form-status--error {
  border-color: var(--color-danger);
  background: rgba(158, 47, 27, 0.08);
  color: #7C2415;
}
.form-status--ok {
  border-color: var(--color-success);
  background: rgba(47, 107, 60, 0.10);
  color: #23522D;
}
.form-status strong { display: block; margin-bottom: 0.2rem; }

/* --------------------------------------------------------------------------
   13. CONTACT + FOOTER
   -------------------------------------------------------------------------- */
.contact-card {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  background: var(--color-surface);
  display: grid;
  gap: var(--space-4);
}
.contact-card dl { margin: 0; display: grid; gap: var(--space-4); }
.contact-card dt {
  font: 500 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.contact-card dd { margin: 0; font-size: var(--text-base); line-height: 1.55; }

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 5vw, 4.5rem) var(--space-8);
  --line: var(--line-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand .brand { color: var(--paper); }
.footer__brand .brand__mark { background: var(--maize); }
.footer__brand .brand__kicker { color: var(--sage); }
.footer__blurb {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: #B7C3B4;
  max-width: 34ch;
}
.footer__col h4 {
  font: 600 var(--text-xs)/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-4);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__col a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: #D6DED2;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--maize); }
.footer__col p { font-size: var(--text-sm); color: #D6DED2; line-height: 1.65; }

.footer__base {
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  font: 500 var(--text-xs)/1.6 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--sage);
}
.footer__base a { color: inherit; }

/* Sticky WhatsApp / order rail on mobile */
.order-rail {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  display: none;
  gap: 1px;
  background: var(--line-strong);
  border-top: 1.5px solid var(--ink);
  box-shadow: 0 -10px 30px -22px rgba(22, 36, 27, 0.9);
}
.order-rail a {
  flex: 1;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font: 600 var(--text-sm)/1 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--paper-2);
  color: var(--ink);
}
.order-rail a.is-primary { background: var(--maize); }

/* --------------------------------------------------------------------------
   14. MOTION - single orchestrated reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.hero__copy > * {
  animation: rise 800ms var(--ease-out) both;
}
.hero__copy > *:nth-child(1) { animation-delay: 60ms; }
.hero__copy > *:nth-child(2) { animation-delay: 140ms; }
.hero__copy > *:nth-child(3) { animation-delay: 220ms; }
.hero__copy > *:nth-child(4) { animation-delay: 300ms; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { max-width: none; padding-inline: var(--gutter); }
  .hero__figure { min-height: 320px; order: -1; }
  .hero__figure img { max-height: 46vh; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-shell { grid-template-columns: 1fr; }
  .summary { position: static; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-2);
    border-bottom: 1.5px solid var(--ink);
    padding: var(--space-2) var(--gutter) var(--space-6);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-base) var(--ease-out),
                transform var(--duration-base) var(--ease-out),
                visibility var(--duration-base);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: var(--text-lg);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin: var(--space-4) 0 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .figure--framed { box-shadow: 10px 10px 0 -1px var(--maize); }
  .hero__stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .gallery .figure:nth-child(1) { grid-column: span 1; }
  .gallery .figure:nth-child(1) img { aspect-ratio: 3 / 4; }
  .order-rail { display: flex; }
  body { padding-bottom: 56px; }
  html { scroll-padding-top: 84px; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  /* Drop table layout entirely on phones: a <table> keeps its intrinsic
     min-content width even when the rows become grids, which pushed the
     status pill past the card edge. */
  .board__table { display: block; width: 100%; }
  .board__table tbody { display: block; }
  .board__table thead { display: none; }
  .board__table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.3rem 1rem;
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid var(--line);
  }
  .board__table tbody td { border: 0; padding: 0; min-width: 0; }
  .board__table tbody td.board__num { white-space: normal; }
  .board__table tbody td:nth-child(1) { grid-column: 1; grid-row: 1; }
  .board__table tbody td:nth-child(2) { grid-column: 1; grid-row: 2; }
  .board__table tbody td:nth-child(3) { grid-column: 1; grid-row: 3; }
  .board__table tbody td:nth-child(4) { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
  .board__table tbody td:nth-child(2)::before,
  .board__table tbody td:nth-child(3)::before {
    content: attr(data-label) ": ";
    font: 500 var(--text-xs)/1 var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
  }
}

@media print {
  .site-header, .order-rail, .nav-toggle, .site-footer, .hero__figure { display: none; }
  body::after { display: none; }
  body { background: #fff; }
  .section { padding-block: 1.2rem; }
}
