/* WellnessLabs® — wellnesslabs.net
   Brand system: green #2F9E5E · blue #1E74B8 · teal #1A8190 · mint #EDF4F2 · deep green #0E3A33 */

:root {
  --green: #2F9E5E;
  --blue: #1E74B8;
  --teal: #1A8190;
  --mint: #EDF4F2;
  --ink: #0E3A33;
  --white: #FFFFFF;
  --line: rgba(14, 58, 51, 0.14);
  --shadow: 0 18px 40px -24px rgba(14, 58, 51, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--mint);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

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

a { color: var(--blue); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.site-logo img { height: 46px; width: auto; }
nav.site-nav { display: flex; gap: 6px; }
nav.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
}
nav.site-nav a:hover { background: var(--mint); }
nav.site-nav a[aria-current="page"] { background: var(--ink); color: var(--white); }

/* ---------- Eyebrow / type ---------- */
.eyebrow {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(38px, 5.4vw, 62px); letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: 22px; }
.lede { font-size: clamp(17px, 1.6vw, 20px); max-width: 56ch; color: rgba(14,58,51,0.82); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.btn.primary { background: var(--green); border-color: var(--green); color: var(--white); }
.btn.primary:hover { background: #278a50; border-color: #278a50; }
.btn.ghost { color: var(--ink); background: transparent; }
.btn.ghost:hover { background: var(--white); }

.hero-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-photo img { width: 100%; height: 460px; object-fit: cover; }

/* ---------- Pillars ---------- */
.pillars { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillars .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 34px 28px;
  border-left: 1px solid var(--line);
}
.pillar:first-child { border-left: none; }
.pillar strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  margin-bottom: 6px;
}
.pillar p { font-size: 15px; color: rgba(14,58,51,0.75); }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
.section-head { max-width: 62ch; margin-bottom: 40px; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card .photo { position: relative; }
.card .photo img { width: 100%; height: 230px; object-fit: cover; }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge.green { background: var(--green); }
.badge.teal { background: var(--teal); }
.card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { color: var(--ink); }
.card .desc { font-size: 15px; color: rgba(14,58,51,0.78); flex: 1; }
.card .meta {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 12.5px;
  color: var(--teal);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ---------- Ingredient ledger ---------- */
.ledger {
  background: var(--ink);
  color: var(--mint);
  border-radius: 22px;
  padding: 48px;
}
.ledger .eyebrow { color: #7fd4a8; }
.ledger h2 { color: var(--white); }
.ledger p.note { color: rgba(237,244,242,0.75); max-width: 60ch; margin-top: 10px; }
.ledger-table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 14px;
}
.ledger-table th, .ledger-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(237,244,242,0.18);
  vertical-align: top;
}
.ledger-table th {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7fd4a8;
  font-weight: 600;
}
.ledger-table td.form { color: rgba(237,244,242,0.72); }

/* ---------- Photo band ---------- */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.photo-band figure {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.photo-band img { width: 100%; height: 250px; object-fit: cover; }
.photo-band figcaption {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 12px;
  padding: 10px 14px;
  color: var(--teal);
}

/* ---------- Notify strip ---------- */
.notify {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.notify h2 { font-size: clamp(24px, 3vw, 32px); }
.notify p { color: rgba(14,58,51,0.75); margin-top: 6px; }

/* ---------- About / contact ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.two-col .photo { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.two-col .photo img { width: 100%; height: 420px; object-fit: cover; }
.prose p + p { margin-top: 16px; }
.contact-card {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.contact-card .eyebrow { margin-bottom: 8px; }
.contact-card a { font-weight: 700; font-size: 18px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: rgba(237,244,242,0.85);
  margin-top: 80px;
  padding: 48px 0 36px;
  font-size: 14px;
}
footer.site .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
footer.site .brandline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
footer.site nav { display: flex; gap: 18px; margin-bottom: 14px; }
footer.site a { color: #9fd9bd; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
.disclaimer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(237,244,242,0.18);
  font-size: 12.5px;
  color: rgba(237,244,242,0.62);
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-grid, .two-col, footer.site .foot-grid { grid-template-columns: 1fr; }
  .hero-photo img { height: 320px; }
  .pillars .wrap { grid-template-columns: 1fr; }
  .pillar { border-left: none; border-top: 1px solid var(--line); }
  .pillar:first-child { border-top: none; }
  .product-grid, .photo-band { grid-template-columns: 1fr; }
  .ledger { padding: 32px 24px; }
  .ledger-table { font-size: 12.5px; }
  .site-bar { flex-direction: column; gap: 10px; }
}

/* ---------- Two-product grid & product hero photo ---------- */
.product-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}
.product-grid.two .photo img { height: 300px; object-position: center 40%; }
.card .body .btn { margin-top: 6px; font-size: 14px; padding: 11px 20px; }
.product-hero {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.product-hero img { width: 100%; max-height: 560px; object-fit: cover; object-position: center 55%; }
.product-hero figcaption {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--teal);
  padding: 12px 18px;
}
@media (max-width: 880px) {
  .product-grid.two { grid-template-columns: 1fr; }
}
