/* ÂME LAB — Hydrate & Create
   Static site styles. Palette and type lifted from the Claude Design source. */

:root {
  --bg:        #FBF8F3;
  --sand:      #E8DFD3;
  --panel:     #F2EBE0;
  --clay:      #C69B7B;
  --ink:       #3A342C;
  --ink-soft:  #4C4438;
  --muted:     #6E6152;
  --gold:      #B9A07E;
  --gold-line: rgba(185, 160, 126, 0.5);
  --gold-hair: rgba(185, 160, 126, 0.3);
  --brown:     #8A6A4C;
  --green:     #6E7F5C;
  --green-dk:  #55663F;
  --error:     #8A4B3A;
  --white:     #FFFFFF;

  --serif: Fraunces, Georgia, 'Times New Roman', serif;
  --sans:  Figtree, 'Helvetica Neue', Arial, sans-serif;

  --pad-x: clamp(20px, 5vw, 48px);
}

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

/* The hidden attribute must always win. Any rule that sets `display` on an
   element (.form is display:grid, .cookies and .lightbox are flex/grid) would
   otherwise outrank the user-agent's [hidden] { display: none }, leaving the
   element on screen while JS believes it is hidden. This one line prevents that
   whole class of bug for anything added later. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

a { color: var(--ink); }
a:hover { color: var(--brown); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
img { max-width: 100%; }
input::placeholder, textarea::placeholder { color: #9A8F7E; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg);
  padding: 12px 20px; text-decoration: none; font-size: 14px;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--bg); }

/* ---------- Layout ---------- */

.wrap     { max-width: 1080px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--sm { max-width: 720px; }
.wrap--xs { max-width: 640px; }
.wrap--form { max-width: 560px; }
.wrap--wide { max-width: 1160px; }

.section     { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }
.section--lg { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }
.section--xl { padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(64px, 9vw, 120px); }
.center { text-align: center; }

/* ---------- Type ---------- */

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--wide { letter-spacing: 0.26em; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; }

.h1 {
  margin: 0 auto 20px;
  font-size: clamp(42px, 8vw, 80px); line-height: 1.04;
  letter-spacing: -0.01em; text-wrap: balance;
}
.h2 {
  margin: 0 auto 20px;
  font-size: clamp(28px, 4.5vw, 42px); line-height: 1.18;
  text-wrap: balance;
}
.h2--gap { margin-bottom: 40px; }
.lede {
  margin: 0 auto 28px; max-width: 46ch;
  font-size: clamp(16px, 2vw, 18px); color: var(--ink-soft); text-wrap: pretty;
}
.prose { margin: 0 auto; max-width: 56ch; font-size: 16px; color: var(--ink-soft); text-wrap: pretty; }
.meta  { margin: 0; font-size: 13px; color: var(--muted); }
.fine  { margin: 10px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.55; }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; margin-bottom: 16px;
  border: 1px solid var(--gold); border-radius: 50%;
  font-size: 10px; line-height: 1.15; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 2px;
  font-family: inherit; font-size: 15px; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer;
  transition: background 0.18s ease;
}
.btn:hover { background: var(--ink-soft); color: var(--bg); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; min-height: 56px; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 4px; }
.btn--wa { background: var(--green-dk); }
.btn--wa:hover { background: #48562F; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(58, 52, 44, 0.35); min-height: 46px; padding: 0 24px; font-size: 14px; }
.btn--ghost:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

.pill {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 24px;
  border: 1px solid var(--gold); border-radius: 999px;
  text-decoration: none; font-size: 15px;
}
.pill--green { border-color: var(--green-dk); color: var(--green-dk); }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px var(--pad-x);
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-hair);
}
.nav__logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 52px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 3vw, 28px); }
.nav__link { font-size: 14px; letter-spacing: 0.06em; text-decoration: none; }

/* ---------- Scroll progress ring ---------- */

.ring {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ring svg { width: 94vmin; height: 94vmin; overflow: visible; }
.ring circle {
  fill: none; stroke: var(--gold); stroke-width: 0.35;
  stroke-dasharray: 100; stroke-dashoffset: 100;
}
.page { position: relative; z-index: 2; }

/* ---------- Hero ---------- */

.hero { padding-top: clamp(48px, 8vw, 100px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero__eyebrow { margin: 0 0 20px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.hero__figure {
  margin: 0 auto 20px;
  width: clamp(240px, 60vw, 380px); height: clamp(240px, 60vw, 380px);
  border: 1px solid var(--gold); border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__figure img { width: 82%; height: auto; display: block; }
.hero__spec { margin: 0 0 28px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.hero__note { margin: 12px 0 0; font-size: 13px; color: var(--muted); }

/* ---------- Card grids ---------- */

.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); text-align: left; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--split {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.card { border: 1px solid var(--gold-line); padding: 26px 26px 28px; }
.card__title { margin: 0 0 10px; font-weight: 500; font-size: 21px; }
.card p { margin: 0; font-size: 15px; color: var(--ink-soft); text-wrap: pretty; }

.blend-card { background: var(--sand); padding: 30px 28px 32px; text-align: center; }
.blend-card__name { margin: 0 0 12px; font-weight: 500; font-size: 23px; line-height: 1.2; }
.blend-card__body { margin: 0 0 14px; font-size: 15px; color: var(--ink-soft); text-wrap: pretty; }
.blend-card__dose { margin: 0; font-size: 13px; color: var(--green); }

/* ---------- Ritual ---------- */

.ritual__figure {
  margin: 0 auto 32px;
  width: clamp(260px, 50vw, 360px); height: clamp(260px, 50vw, 360px);
  border: 1px solid var(--gold); border-radius: 50%; overflow: hidden;
}
.ritual__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.steps { display: grid; text-align: left; max-width: 480px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: baseline;
  border-top: 1px solid var(--gold-line); padding: 16px 0;
}
.step__word { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Story ---------- */

.story { background: var(--clay); }
.story .eyebrow { color: rgba(58, 52, 44, 0.7); }
.story p { color: rgba(58, 52, 44, 0.9); }
.story__quote {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--ink);
}

/* ---------- Supplement facts ---------- */

.facts { background: var(--white); border: 1px solid var(--ink); padding: 28px 28px 24px; text-align: left; }
.facts__title {
  margin: 0 0 4px; font-weight: 600; font-size: 24px;
  border-bottom: 3px solid var(--ink); padding-bottom: 10px;
}
.facts__row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; font-size: 14px;
  border-bottom: 1px solid rgba(58, 52, 44, 0.12);
}
.facts__row--head { border-bottom-color: rgba(58, 52, 44, 0.25); }
.facts__row span:last-child { color: var(--muted); text-align: right; }
.facts__row--head span:last-child { color: var(--ink); }

/* ---------- Contact ---------- */

.contact { background: var(--sand); border-top: 1px solid rgba(185, 160, 126, 0.4); }
.form { display: grid; gap: 14px; text-align: left; }
.field { display: grid; gap: 6px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.field input, .field textarea {
  padding: 0 16px; font-size: 16px; font-family: inherit; color: var(--ink);
  background: var(--white); border: 1px solid rgba(58, 52, 44, 0.3); border-radius: 2px;
}
.field input { min-height: 50px; }
.field textarea { padding: 14px 16px; resize: vertical; }
.field__select {
  min-height: 50px; padding: 0 40px 0 12px;
  font-size: 16px; font-family: inherit; color: var(--ink);
  background: var(--white); border: 1px solid rgba(58, 52, 44, 0.3); border-radius: 2px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236E6152' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* Consent checkbox */
.check {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  align-items: start; text-align: left;
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  cursor: pointer;
}
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); cursor: pointer; }

/* Spam honeypot. Web3Forms documents this field as display:none, and hiding it
   any other way (clip/offscreen) leaves screen readers announcing a checkbox
   labelled "leave this empty" to real users. */
.honeypot { display: none; }
.form__error { margin: 0; font-size: 14px; color: var(--error); }
.form__note { margin: 0; font-size: 13px; color: var(--muted); text-align: center; }
.form__sent { border: 1px solid var(--green); background: rgba(110, 127, 92, 0.08); padding: 28px; }
.form__sent p:first-child { margin: 0; font-family: var(--serif); font-size: 22px; }
.form__sent p:last-child { margin: 8px 0 0; font-size: 15px; color: var(--ink-soft); }
.socials { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* ---------- Shop ---------- */

.gallery { display: grid; gap: 14px; }
.gallery__main {
  margin: 0; position: relative;
  background: var(--sand); border: 1px solid rgba(185, 160, 126, 0.4);
  border-radius: 6px; overflow: hidden; aspect-ratio: 1 / 1.05;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__flag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--ink); color: var(--bg);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px;
}
.gallery__thumbs {
  /* auto-flow column keeps the row evenly divided whatever the thumb count,
     so adding or removing an image needs no CSS change. */
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 12px;
}
.gallery__thumb {
  padding: 0; margin: 0; background: var(--sand);
  border: 1px solid rgba(185, 160, 126, 0.4); border-radius: 6px;
  overflow: hidden; aspect-ratio: 1; cursor: pointer;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumb[aria-current="true"] { border: 2px solid var(--ink); }

.product__kicker { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brown); }
.product__title { margin: 0 0 18px; font-size: clamp(38px, 5.5vw, 58px); line-height: 1.05; }
.product__pricing { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 0 22px; }
.product__price { margin: 0; font-family: var(--serif); font-size: 30px; }
.product__promo {
  background: rgba(110, 127, 92, 0.12); border: 1px solid rgba(110, 127, 92, 0.4);
  color: var(--green-dk); font-size: 13px; padding: 6px 12px; border-radius: 3px;
}
.product__desc { margin: 0 0 24px; font-size: 16px; color: var(--ink-soft); max-width: 52ch; text-wrap: pretty; }

.spec {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(185, 160, 126, 0.4); border: 1px solid rgba(185, 160, 126, 0.4);
  border-radius: 4px; overflow: hidden; margin: 0 0 24px;
}
.spec > div { background: var(--panel); padding: 14px 16px; }
.spec dt { margin: 0 0 2px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.spec dd { margin: 0; font-size: 16px; font-weight: 600; }
.spec dd.is-green { color: var(--green-dk); }

.bullets { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.bullets li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: baseline; font-size: 15px; color: var(--ink-soft); }
.bullets li::before { content: "✓"; color: var(--green); font-size: 15px; }

.buy { display: grid; gap: 10px; }
.buy__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin: 12px 0 0; }
.buy__meta p { margin: 0; font-size: 13px; color: var(--muted); }
.buy__meta p:last-child { letter-spacing: 0.08em; text-transform: uppercase; }

.details { background: var(--sand); border-top: 1px solid rgba(185, 160, 126, 0.35); }
.details__row { border-bottom: 1px solid rgba(185, 160, 126, 0.55); padding: 16px 0; }
.details__row dt { margin: 0 0 4px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.details__row dd { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Legal pages ---------- */

.legal { max-width: 760px; }
.legal__updated { margin: 0 0 40px; font-size: 13px; color: var(--muted); }
.legal h2 {
  margin: 44px 0 12px; font-size: clamp(22px, 3vw, 28px); line-height: 1.25;
  padding-top: 20px; border-top: 1px solid var(--gold-line); text-align: left;
}
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 8px; }
.legal h3 { margin: 24px 0 8px; font-weight: 500; font-size: 18px; }
.legal p, .legal li { font-size: 16px; color: var(--ink-soft); text-wrap: pretty; }
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal dl { margin: 0 0 16px; }
.legal dt { font-weight: 600; font-size: 15px; margin: 14px 0 2px; color: var(--ink); }
.legal dd { margin: 0 0 4px; font-size: 15px; color: var(--ink-soft); }
.legal table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--gold-line); vertical-align: top; }
.legal th { font-weight: 600; color: var(--ink); }
.legal td { color: var(--ink-soft); }
.legal__note {
  background: var(--sand); border-left: 3px solid var(--gold);
  padding: 18px 20px; margin: 0 0 28px;
}
.legal__note p { margin: 0; font-size: 15px; }
/* Marks text the brand still has to supply. Deliberately loud — these must not
   reach production unnoticed. */
.todo {
  background: #FBE9C8; border-bottom: 1px solid #C08A2E;
  padding: 1px 5px; border-radius: 2px; font-weight: 600; color: #6B4A12;
}

/* ---------- Footer ---------- */

.footer { background: var(--ink); color: var(--sand); }
.footer .wrap { display: grid; gap: 28px; padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 6vw, 64px); }
.footer__top { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer__logo { height: 72px; width: auto; display: block; filter: brightness(1.35); }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; }
.footer__links a { color: var(--sand); }
.footer__links a:hover { color: var(--white); }
.footer p { margin: 0; font-size: 12.5px; color: rgba(232, 223, 211, 0.65); line-height: 1.6; }
.footer__disclaimer { max-width: 84ch; }

/* ---------- Cookie banner ---------- */

.cookies {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 100; width: min(560px, calc(100vw - 32px));
  background: var(--bg); border: 1px solid var(--gold);
  box-shadow: 0 12px 40px rgba(58, 52, 44, 0.18);
  padding: 22px 24px; display: grid; gap: 14px;
}
.cookies[hidden] { display: none; }
.cookies__title { margin: 0; font-family: var(--serif); font-size: 18px; }
.cookies p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.cookies__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Responsive ---------- */

@media (max-width: 560px) {
  .gallery__thumbs { gap: 8px; }
  .spec { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 12px; }
  .nav__logo img { height: 44px; }
  .footer__top { gap: 18px; }
}

/* ---------- Footer link-button (cookie settings) ---------- */

.footer__linkbtn {
  background: none; border: none; padding: 0; margin: 0;
  font-family: inherit; font-size: 14px; color: var(--sand);
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer;
}
.footer__linkbtn:hover { color: var(--white); }

/* ---------- Order summary (shop order form) ---------- */

.summary {
  background: var(--white); border: 1px solid var(--gold);
  padding: 18px 20px; margin: 4px 0 4px; text-align: left;
}
.summary__row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 15px; color: var(--ink-soft); padding: 5px 0;
}
.summary__row--total {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid var(--gold-line);
  font-family: var(--serif); font-size: 21px; color: var(--ink);
}
.summary__row--total span:last-child { font-weight: 600; }
.summary__note { margin: 10px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ---------- Sticky mobile buy bar (shop) ---------- */

.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold);
  transform: translateY(110%);
  transition: transform 0.22s ease;
}
.buybar.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .buybar { transition: none; } }
.buybar__price { margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.buybar__meta { margin: 0; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.buybar .btn { min-height: 46px; padding: 0 22px; font-size: 14px; white-space: nowrap; }

/* Only on narrow screens — on desktop the buy panel stays in view long enough. */
@media (max-width: 860px) {
  .buybar { display: flex; }
  body.has-buybar { padding-bottom: 76px; }
}

/* ---------- Lightbox (gallery zoom) ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 4vw, 40px);
  background: rgba(40, 35, 28, 0.92);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .lightbox { transition: none; } }
.lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  background: var(--bg); border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--ink);
  border: none; border-radius: 50%;
  font-size: 22px; line-height: 1; font-family: inherit;
  cursor: pointer;
}
.lightbox__hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  margin: 0; font-size: 13px; color: rgba(251, 248, 243, 0.75);
}

/* Signal the main image is zoomable */
.gallery__main { cursor: zoom-in; }
.gallery__zoom {
  position: absolute; bottom: 12px; right: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: rgba(251, 248, 243, 0.92);
  border: 1px solid var(--gold-line); border-radius: 999px;
  font-family: inherit; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  cursor: zoom-in;
}

/* `.lightbox { display: flex }` outranks the UA agent's [hidden] rule, so the
   hidden attribute must be honoured explicitly or the overlay never goes away. */
.lightbox[hidden] { display: none; }

/* Founder discount row + promo feedback */
.summary__row--discount span { color: var(--green-dk); }
.promo-note {
  margin: -6px 0 0; font-size: 13px; line-height: 1.5; color: var(--green-dk);
  text-align: left;
}
.promo-note.is-bad { color: var(--muted); }
