@charset "utf-8";
/* ==========================================================================
   Nutrition Goods — "PRESS & COCOA" design system
   A short food-desk review. Warm near-white stock, espresso ink, one tomato
   accent. Editorial serif headlines over a neutral sans, a narrow measure,
   a four-tile spec strip and a dashed-border reader-offer card.

   palette  paper #fdfeff · cream #f2f6f9 · ink #1b2c5e · text #2b3352
            muted #6b7490 · line #dfe4ee · tomato #2f8f9b · leaf #4A7C59
   type     Newsreader (display) + Inter (text)
   ========================================================================== */

:root {
  --paper: #fdfeff;
  --cream: #f2f6f9;
  --ink: #1b2c5e;
  --text: #2b3352;
  --muted: #6b7490;
  --line: #dfe4ee;
  --tomato: #2f8f9b;
  --tomato-dk: #246f79;
  --tomato-lt: #e8f4f6;
  --leaf: #4a7c59;
  --r: 10px;
  --measure: 680px;
  --wide: 1040px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--tomato-dk); }
p { margin: 0 0 1.15em; }

h1, h2, h3, h4 {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 600; line-height: 1.22; margin: 0; color: var(--ink);
}

.col { width: min(var(--measure), 88%); margin-inline: auto; }
.col-wide { width: min(var(--wide), 92%); margin-inline: auto; }

/* the article sits on a white sheet floating over the cream ground */
.sheet {
  background: var(--paper); border: 1px solid var(--line);
  max-width: 860px; margin: 0 auto; padding: 0 0 40px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--tomato); color: #fff; padding: 10px 16px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--tomato); outline-offset: 2px; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--tomato); color: #fff; text-decoration: none;
  padding: 15px 30px; border: 0; border-radius: var(--r);
  font-family: Inter, sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; text-align: center;
  transition: background .15s ease;
}
.btn:hover { background: var(--tomato-dk); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .86rem; }
.btn-line { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-line:hover { background: var(--cream); color: var(--ink); }

/* ---------- masthead ---------- */

.masthead { background: var(--paper); border-bottom: 1px solid var(--line); }
.masthead-in { display: flex; align-items: center; justify-content: center; padding: 12px 0; }
.masthead img { height: 48px; width: auto; }

.adbar {
  text-align: center; padding: 7px 12px; background: var(--cream);
  color: var(--muted); border-bottom: 1px solid var(--line);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600;
}

/* ---------- article head ---------- */

.head { padding: 34px 0 0; }
.rubric {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tomato); margin-bottom: 12px;
}
.head h1 { font-size: clamp(1.85rem, 4.4vw, 2.6rem); margin-bottom: 14px; letter-spacing: -.01em; }
.standfirst { font-size: 1.04rem; color: var(--muted); margin-bottom: 18px; }
.byline { display: flex; align-items: center; gap: 11px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.byline img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.byline-t { font-size: .82rem; line-height: 1.45; }
.byline-t strong { display: block; font-size: .87rem; color: var(--ink); }
.byline-t span { color: var(--muted); }

figure.plate { margin: 24px 0; }
figure.plate img { width: 100%; }
figure.plate figcaption {
  font-size: .78rem; color: var(--muted); margin-top: 9px; line-height: 1.55;
  padding-left: 12px; border-left: 2px solid var(--tomato);
}

/* ---------- article ---------- */

.article { padding: 4px 0 0; }
.article h2 { font-size: clamp(1.28rem, 2.8vw, 1.6rem); margin: 34px 0 12px; }
.article strong { color: var(--ink); font-weight: 600; }

.lead {
  margin: 26px 0; padding: 18px 22px; background: var(--cream);
  border-left: 3px solid var(--ink); border-radius: 0 var(--r) var(--r) 0;
}
.lead p { font-family: Newsreader, Georgia, serif; font-size: 1.15rem; color: var(--ink); margin: 0; line-height: 1.45; }

/* spec strip */
.spec { border: 1px solid var(--line); border-left: 3px solid var(--tomato); margin: 28px 0; }
.spec h3 {
  font-family: Inter, sans-serif; font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  padding: 11px 18px; margin: 0; border-bottom: 1px solid var(--line);
}
.spec-row { display: grid; grid-template-columns: repeat(2, 1fr); }
.spec-row > div { padding: 16px 18px; text-align: center; border-top: 1px solid var(--line); }
.spec-row > div:nth-child(-n+2) { border-top: 0; }
.spec-row > div:nth-child(2n) { border-left: 1px solid var(--line); }
.spec .ic { font-size: 1.25rem; line-height: 1; }
.spec b { display: block; font-family: Newsreader, Georgia, serif; font-size: 1.5rem; color: var(--ink); margin: 6px 0 2px; }
.spec span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 620px) {
  .spec-row { grid-template-columns: repeat(4, 1fr); }
  .spec-row > div { border-top: 0; border-left: 1px solid var(--line); }
  .spec-row > div:first-child { border-left: 0; }
}

/* claim-attribution note */
.note {
  background: var(--tomato-lt); border: 1px solid #f5d6cb;
  border-radius: var(--r); padding: 18px 20px; margin: 28px 0;
}
.note h3 { font-family: Inter, sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--tomato-dk); margin: 0 0 8px; }
.note p { font-size: .92rem; color: #7c4433; margin: 0 0 .6em; }
.note p:last-child { margin: 0; }

/* how it works steps */
.how { display: grid; gap: 12px; margin: 26px 0; }
.how > div { background: var(--cream); border-radius: var(--r); padding: 17px 19px; }
.how b { display: block; font-family: Newsreader, Georgia, serif; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.how p { margin: 0; font-size: .92rem; color: var(--muted); }
@media (min-width: 700px) { .how { grid-template-columns: repeat(3, 1fr); } }

/* tips */
.tips { counter-reset: t; margin: 24px 0; padding: 0; list-style: none; }
.tips li { counter-increment: t; position: relative; padding-left: 42px; margin: 14px 0; }
.tips li::before {
  content: counter(t); position: absolute; left: 0; top: 1px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-family: Newsreader, serif; font-size: .9rem;
}
.tips b { color: var(--ink); }

/* ---------- reader offer ---------- */

.offer {
  margin: 34px 0 0; padding: 28px 24px; text-align: center;
  background: var(--tomato-lt); border: 1px solid #f5d6cb; border-radius: var(--r);
}
.offer .lbl { font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--tomato-dk); margin-bottom: 14px; }
.coupon {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
  border: 2px dashed var(--tomato); border-radius: 999px;
  padding: 9px 20px; margin-bottom: 16px; background: #fff;
}
.coupon b { font-family: Newsreader, Georgia, serif; font-size: 1.1rem; color: var(--tomato-dk); }
.coupon span { font-size: .8rem; color: var(--muted); }
.offer h2 { font-size: 1.5rem; margin-bottom: 16px; }
.offer .fine { font-size: .78rem; color: var(--muted); margin: 14px 0 0; }
.rating { font-size: .82rem; color: var(--muted); margin: 12px 0 0; }
.rating .stars { color: var(--tomato); letter-spacing: 1px; }

/* ---------- FAQ ---------- */

.faq { margin: 24px 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: Newsreader, Georgia, serif; font-weight: 600; font-size: 1.05rem; color: var(--ink);
  cursor: pointer; list-style: none; padding: 15px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: Inter, sans-serif; font-size: 1.3rem; color: var(--tomato); font-weight: 300; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .a { padding: 0 0 16px; font-size: .93rem; color: var(--muted); }
.faq .a p:last-child { margin: 0; }

/* ---------- disclosure ---------- */

.disc { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; }
.disc h3 { font-family: Inter, sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.disc p { font-size: .82rem; color: var(--muted); }
.disc p:last-child { margin: 0; }

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

.site-footer { margin-top: 40px; background: var(--ink); color: #98a3bd; padding: 32px 0 20px; font-size: 14px; }
.foot-top { display: grid; gap: 26px; grid-template-columns: 1fr; padding-bottom: 22px; }
.foot-brand img { height: 46px; width: auto; margin-bottom: 12px; }
.foot-brand p { margin: 0; color: #7d879f; font-size: .85rem; max-width: 38ch; }
.foot-h { font-family: Inter, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #7cc3cd; margin-bottom: 11px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot-col a { color: #ccd5e2; text-decoration: none; }
.foot-col a:hover { color: #fff; }
.foot-id { font-style: normal; }
.foot-id p { margin: 0 0 4px; color: #7d879f; font-size: .85rem; line-height: 1.55; }
.foot-id a { color: #ccd5e2; text-decoration: none; }
.foot-id a:hover { color: #fff; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.5fr .8fr 1.2fr; } }
@media (min-width: 980px) { .foot-top { grid-template-columns: 1.7fr .7fr .7fr 1.1fr; } }
.foot-bottom { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.1); }
.foot-bottom p { margin: 0 0 8px; font-size: 12.5px; }
.disclaimer, .foot-compliance { font-size: 11.5px; color: #6d7690; line-height: 1.65; margin: 8px 0 0; }

/* ==========================================================================
   Sub-pages
   ========================================================================== */

.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 40px 0 32px; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 8px 0 12px; }
.page-hero > .col-wide > p { color: var(--muted); max-width: 66ch; margin: 0; }
.crumbs { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0; }
.crumbs a { color: var(--tomato-dk); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.band { padding: 42px 0; background: var(--paper); }
.band-sand { background: var(--paper); }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.3rem; margin: 32px 0 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.04rem; margin: 22px 0 6px; }
.prose ul, .prose ol { margin: 0 0 1.15em; padding-left: 22px; }
.prose li { margin: 7px 0; }

.info-grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 16px 0 24px; }
.info-card { background: var(--cream); border-left: 3px solid var(--tomato); border-radius: 0 var(--r) var(--r) 0; padding: 16px 18px; }
.info-card h3 { margin: 0 0 6px; font-size: 1rem; }
.info-card p { margin: 0; font-size: .9rem; color: var(--muted); }
@media (min-width: 780px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }

.form { display: grid; gap: 14px; max-width: 540px; margin-top: 8px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .88rem; }
.field input, .field select, .field textarea {
  font: inherit; color: inherit; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: var(--r); background: #fff; width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--tomato); outline: none; box-shadow: 0 0 0 3px rgba(47,143,155,.16);
}
.form-note { font-size: .84rem; color: var(--muted); margin: 0; }
.form-status { font-size: .9rem; margin: 0; }

/* ---------- cookie bar ---------- */

.cookie {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px;
  width: min(900px, 94%); z-index: 70; background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 16px 38px rgba(26,22,20,.14);
  padding: 15px 18px; display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: .86rem; color: var(--muted); flex: 1 1 320px; }
.cookie-actions { display: flex; gap: 9px; }

/* ---------- reveals + motion ---------- */

.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

@media print { .adbar, .cookie, .btn { display: none !important; } body { background: #fff; } }

/* footer logo chip — the supplied marks are dark artwork on transparency,
   so they need a light ground to stay legible on the dark footer */
.foot-brand img { background: #fff; padding: 7px 11px; border-radius: 8px; }
