/* Me+ Health — Unpublished Draft Homepage
   Palette: cream ground, terracotta #AB5C33, charcoal-green #2F3D36
   Aesthetic: AG1 depth · LMNT confidence · Previnex warmth — Me+ voice
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --cream: #F7F3EC;
  --cream-deep: #EDE6DA;
  --cream-soft: #FBF9F5;
  --terracotta: #AB5C33;
  --terracotta-hover: #944E2A;
  --terracotta-soft: rgba(171, 92, 51, 0.12);
  --terracotta-wash: rgba(171, 92, 51, 0.06);
  --charcoal: #2F3D36;
  --charcoal-mid: #3D4F46;
  --muted: #5A6B62;
  --muted-light: #8A948C;
  --line: #D9D1C4;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 12px 40px rgba(47, 61, 54, 0.08);
  --shadow-card: 0 4px 24px rgba(47, 61, 54, 0.06);
  --shadow-pouch: 0 32px 64px rgba(47, 61, 54, 0.18), 0 8px 24px rgba(171, 92, 51, 0.12);
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --nav-h: 72px;
  --max: 1120px;
  --max-wide: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }
button { cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

/* ——— Typography ——— */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.85rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5.8vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
}

.claim-note {
  font-size: 0.75rem;
  color: var(--muted-light);
  line-height: 1.5;
  margin-top: 2rem;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3.25rem;
}

.section-head .lead {
  margin: 0.9rem auto 0;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
}

.section-head-left .lead {
  margin-left: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
  box-shadow: 0 4px 16px rgba(171, 92, 51, 0.28);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(171, 92, 51, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--charcoal);
  background: var(--white);
}

.btn-nav {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

/* ——— Nav ——— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 243, 236, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--charcoal);
}

.nav-toggle svg { width: 22px; height: 22px; }

/* ——— Hero ——— */
.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, var(--terracotta-wash) 0%, transparent 60%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-copy .lead { margin-bottom: 0.65rem; }

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
}

.hero-trust img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pouch-stage {
  position: relative;
  width: min(100%, 400px);
  padding: 2rem 1.5rem 2.5rem;
}

.pouch-glow {
  position: absolute;
  inset: 5% 0% 8%;
  background: radial-gradient(ellipse at 50% 55%, rgba(171, 92, 51, 0.18) 0%, rgba(171, 92, 51, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(8px);
}

.pouch-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 36px 50px rgba(47, 61, 54, 0.22)) drop-shadow(0 8px 20px rgba(171, 92, 51, 0.1));
  border-radius: 8px;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
}

.pouch-stage:hover .pouch-photo {
  transform: perspective(900px) rotateY(-1deg) rotateX(0deg) translateY(-4px);
}

.pouch-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 0.5rem;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  line-height: 1.2;
}

.pouch-badge-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--terracotta);
}

.pouch-badge-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ——— Philosophy strip ——— */
.philosophy-strip {
  padding: 1.35rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(247, 243, 236, 0.06);
  border-bottom: 1px solid rgba(247, 243, 236, 0.06);
}

.philosophy-line {
  text-align: center;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 236, 0.85);
  line-height: 1.6;
}

/* ——— Benefits (6 pillars) ——— */
.benefits {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--cream-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 1.15rem;
}

.benefit-icon-wrap img {
  width: 56px;
  height: 56px;
}

.benefit-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.benefit-card p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ——— Formula theater ——— */
.formula {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    linear-gradient(180deg, var(--terracotta-wash) 0%, transparent 18%),
    var(--cream);
}

.formula-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

.formula-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.25s ease, color 0.25s ease;
}

.formula-tab img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.formula-tab:hover {
  color: var(--charcoal);
  background: var(--cream);
}

.formula-tab.is-active {
  background: var(--charcoal);
  color: var(--cream-soft);
}

.formula-tab.is-active img {
  filter: brightness(1.1);
}

.formula-panels {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.formula-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.formula-panel[hidden] {
  display: none;
}

.formula-panel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.formula-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: 1.15rem;
}

.formula-helps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.formula-helps li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.formula-helps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.formula-table-wrap {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.formula-table th,
.formula-table td {
  padding: 0.85rem 1.15rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.formula-table th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  background: var(--cream-deep);
}

.formula-table tr:last-child td {
  border-bottom: none;
}

.formula-table td:last-child {
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  text-align: right;
}

.formula-table .ing-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted-light);
  margin-top: 0.25rem;
  line-height: 1.4;
  white-space: normal;
}

.tbd {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

.formula-footnote {
  font-size: 0.8rem;
  color: var(--muted-light);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* ——— Spotlights ——— */
.spotlights {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--cream-deep);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.spotlight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 92, 51, 0.35);
}

.spotlight-dose {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.spotlight-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.spotlight-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Ritual ——— */
.ritual {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--cream);
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ritual-step {
  position: relative;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.ritual-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.ritual-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-soft);
  border-radius: 50%;
}

.ritual-icon img {
  width: 40px;
  height: 40px;
}

.ritual-step h3 {
  margin-bottom: 0.5rem;
}

.ritual-step p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 16rem;
  margin-inline: auto;
}

/* ——— Transparency ——— */
.transparency {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.transparency-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.transparency-copy h2 {
  margin-bottom: 1rem;
}

.transparency-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

.compare-yes {
  background: var(--white);
  border: 1.5px solid rgba(171, 92, 51, 0.35);
  box-shadow: var(--shadow-card);
}

.compare-no {
  background: var(--cream-deep);
  border: 1px solid var(--line);
}

.compare-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.compare-yes h3 { color: var(--terracotta); }

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}

.compare-card li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.compare-no li {
  padding-left: 0.85rem;
  position: relative;
}

.compare-no li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted-light);
}

/* ——— Give ——— */
.give {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--charcoal);
  color: var(--cream);
}

.give .eyebrow { color: #D4A078; }
.give h2 { color: var(--cream-soft); margin-bottom: 1.15rem; }
.give .lead { color: rgba(247, 243, 236, 0.72); max-width: 34rem; }
.give-extra { margin-top: 1rem; }

.give-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.give-card {
  background: rgba(247, 243, 236, 0.06);
  border: 1px solid rgba(247, 243, 236, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.15rem;
}

.give-card .big {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: #D4A078;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.give-card p {
  color: rgba(247, 243, 236, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.give-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.give .btn-primary {
  background: #D4A078;
  color: var(--charcoal);
  box-shadow: none;
}

.give .btn-primary:hover { background: #E0B28E; }

.give .btn-ghost {
  border-color: rgba(247, 243, 236, 0.25);
  color: var(--cream-soft);
}

.give .btn-ghost:hover {
  border-color: var(--cream-soft);
  background: rgba(247, 243, 236, 0.08);
}

/* ——— Story ——— */
.story {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--cream-soft);
}

.story-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.story-extra { margin-top: 1rem; }

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.story-pillar-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.35rem;
}

.story-pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Upcoming ——— */
.upcoming {
  padding: 0 0 clamp(4.5rem, 9vw, 6rem);
  background: var(--cream-soft);
}

.upcoming-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.product-teaser {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-card);
}

.teaser-mark {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-mark.protein { background: linear-gradient(145deg, #EDE6DA, #D9CFC0); }
.teaser-mark.coffee { background: linear-gradient(145deg, #3D4F46, #2F3D36); }
.teaser-mark svg { width: 36px; height: 36px; }

.teaser-body .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.teaser-body h3 { margin-bottom: 0.35rem; }

.teaser-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ——— Waitlist ——— */
.waitlist {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
}

.waitlist-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 4vw, 3.25rem);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.waitlist-card h2 { margin-bottom: 0.75rem; }

.waitlist-card .lead {
  margin: 0 auto 1.75rem;
  font-size: 1rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: flex;
  gap: 0.65rem;
}

.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--charcoal);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input[type="email"]::placeholder { color: var(--muted-light); }

.form-row input[type="email"]:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}

.form-row input[aria-invalid="true"] {
  border-color: #B54A3A;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.45;
}

.form-success {
  display: none;
  padding: 1.5rem 1rem;
}

.form-success.is-visible { display: block; }
.waitlist-form.is-hidden { display: none; }

.form-success h3 {
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— FAQ ——— */
.faq {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(171, 92, 51, 0.35);
}

.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--terracotta);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ——— Footer ——— */
.site-footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 22rem;
  line-height: 1.55;
}

.footer-url {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--terracotta);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--charcoal); }

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 52rem;
  margin-bottom: 1rem;
}

.draft-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .benefit-grid,
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formula-panel-grid,
  .transparency-inner,
  .story-inner,
  .give-inner {
    grid-template-columns: 1fr;
  }

  .transparency-compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .lead,
  .hero-slogan {
    margin-inline: auto;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  /* Copy + CTAs first on mobile so primary actions stay above the fold */
  .hero-visual { order: 0; }

  .pouch-stage {
    width: min(100%, 220px);
    padding: 0.5rem 0.5rem 1.25rem;
    margin-top: 0.5rem;
  }

  .pouch-photo {
    transform: none;
    width: min(100%, 200px);
  }

  .pouch-stage:hover .pouch-photo {
    transform: translateY(-2px);
  }

  .pouch-badge {
    right: -0.25rem;
    bottom: 0.75rem;
  }

  .ritual-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .upcoming-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a:not(.btn) {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .formula-tabs {
    border-radius: var(--radius-lg);
    justify-content: stretch;
  }

  .formula-tab {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
  }

  .formula-table td:last-child {
    white-space: normal;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row .btn { width: 100%; }

  .section-head-left {
    text-align: center;
    margin-inline: auto;
  }

  .section-head-left .lead {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1.75rem, var(--max)); }

  .benefit-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-line {
    letter-spacing: 0.03em;
    font-size: 0.78rem;
  }

  .product-teaser {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .logo img { height: 44px; }

  .formula-tab span {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .pouch-photo { transform: none !important; }
}
