/* =========================================================================
   Revive Medical  -  Design System
   Physician-guided peptide care. Clean, premium, optimization-focused.
   ========================================================================= */

/* ----------------------------- Design Tokens ---------------------------- */
:root {
  /* Greens (sage / olive) */
  --green-900: #2f432f;
  --green-800: #3f5639;
  --green-700: #536f46;
  --green-600: #668052;   /* primary brand green */
  --green-500: #7b9166;
  --green-300: #aab79a;
  --green-100: #e5eadb;
  --green-50:  #f1f3ea;

  /* Cream / neutral */
  --cream:      #f6f3eb;
  --cream-soft: #fbfaf5;
  --paper:      #ffffff;
  --paper-2:    #fcfbf4;

  /* Ink / text */
  --ink:    #253425;
  --ink-2:  #4b5145;
  --muted:  #64695c;   /* darkened for WCAG AA (>=4.5:1 on cream at small sizes) */
  --line:   #e4dfd2;
  --line-2: #d5cfbf;

  /* Category accents (kept within the sage family) */
  --cat-metabolic:  #b08a3e;  /* warm gold */
  --cat-recovery:   #6e7c45;  /* green */
  --cat-cognitive:  #5f7d77;  /* slate teal */
  --cat-longevity:  #8a6f4a;  /* bronze */

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(37, 52, 37, .05), 0 1px 3px rgba(37, 52, 37, .05);
  --shadow-md: 0 6px 18px rgba(37, 52, 37, .06), 0 2px 6px rgba(37, 52, 37, .04);
  --shadow-lg: 0 16px 38px rgba(37, 52, 37, .11), 0 6px 16px rgba(37, 52, 37, .06);
  --fade: clamp(48px, 6vw, 92px);   /* section blend distance (~10% of a section) */
  --radius-sm: 8px;
  --radius:    8px;
  --radius-lg: 8px;
  --radius-xl: 10px;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --container-narrow: 880px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--green-600); outline-offset: 3px; border-radius: 4px; }

/* Skip-to-content: invisible until keyboard-focused */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--green-800); color: #fff; font-weight: 600; font-size: .9rem;
  padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
/* anchored sections land clear of the sticky header */
[id] { scroll-margin-top: 84px; }

/* ----------------------------- Typography ------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: 0; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
.serif-italic { font-style: italic; }
p { color: var(--ink-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow.muted { color: var(--muted); }

.lead { font-size: 1.12rem; color: var(--ink-2); }
.display-hyphen {
  display: inline-block;
  transform: translateY(-.035em);
  margin-inline: .015em;
}

/* ------------------------------ Layout ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section.tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-cream { background: var(--cream); }
.bg-soft  { background: var(--cream-soft); }
.bg-paper { background: var(--paper); }
.bg-green {
  background: linear-gradient(160deg, var(--green-50), var(--green-100));
}
.aurora-field {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    url("../assets/aurora-field.png") center / cover no-repeat,
    var(--green-50);
}
.aurora-field > .container,
.aurora-field > .legal-wrap {
  position: relative;
  z-index: 1;
}
body > section + section.section {
  padding-top: clamp(46px, 6vw, 78px);
}
body > section + section.section.tight {
  padding-top: clamp(34px, 4.5vw, 56px);
}

/* --- Smooth section blending ---------------------------------------------
   Each .section fades its own background to the page tone over its top and
   bottom ~10%, so adjacent sections melt into one another instead of meeting
   at a hard seam. Content sits above the fades via z-index. The hero is not a
   .section, so it is intentionally left crisp. */
body > section.section::before,
body > section.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--fade);
  z-index: 0;
  pointer-events: none;
}
body > section.section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cream-soft), rgba(251, 250, 245, 0));
}
body > section.section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--cream-soft), rgba(251, 250, 245, 0));
}
body > section > .container,
body > section > .legal-wrap {
  position: relative;
  z-index: 1;
}
.bg-ink { background: var(--green-900); color: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-head p { margin-top: 14px; }
.center { text-align: center; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-800); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-700); font-size: .92rem; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------- Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* light veil like the reference: the hero scene stays clearly visible through the bar */
  background: rgba(246, 244, 234, .38);
  backdrop-filter: saturate(112%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
/* firm back up once content scrolls underneath, for readability */
.site-header.scrolled { background: rgba(246, 244, 234, .92); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 38px; height: 38px; flex: none; color: var(--green-700); }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; color: var(--ink); }
.brand .wordmark span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a, .nav-links > li > button {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 999px;
  font-size: .94rem; font-weight: 500; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--green-800); background: var(--green-50); }
.nav-links a.active,
.nav-links button.active { color: var(--green-800); font-weight: 600; }
.nav-links a.active::after,
.nav-links button.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-700);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }

/* Dropdown mega menu */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(340px, 90vw);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 14px;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown.open .chev { transform: rotate(180deg); }
.dropdown-copy { padding-right: 14px; border-right: 1px solid var(--line); }
.dropdown-copy h4 { font-family: var(--sans); font-size: .74rem; line-height: 1.55; letter-spacing: 0; text-transform: none; color: var(--ink-2); margin-bottom: 14px; }
.dropdown-copy .tiny { margin: 0; font-size: .72rem; line-height: 1.55; color: var(--ink-2); }
.dropdown-list { display: grid; gap: 9px; }
.dropdown-row { display: flex; align-items: center; gap: 10px; font-size: .76rem; font-weight: 600; color: var(--ink); }
.dropdown-row:hover { color: var(--green-800); }
.dropdown-row .ico { width: 22px; height: 22px; flex: none; display: grid; place-items: center; border-radius: 50%; color: var(--green-700); }
.dropdown-row .ico svg { width: 15px; height: 15px; }
.dropdown-view-all { margin-top: 6px; font-size: .76rem; color: var(--ink); }
.dropdown-item { display: flex; gap: 12px; padding: 12px 14px; border-radius: var(--radius); transition: background .2s; }
.dropdown-item:hover { background: var(--green-50); }
.dropdown-item .ico { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--green-100); color: var(--green-700); }
.dropdown-item .ico svg { width: 19px; height: 19px; }
.dropdown-item b { font-size: .96rem; font-weight: 600; color: var(--ink); }
.dropdown-item small { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.dropdown-all { grid-column: 1 / -1; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); text-align: center; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; margin: auto; }

/* ------------------------------- Hero ----------------------------------- */
.hero { position: relative; padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 72px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 88% 18%, rgba(110,124,69,.12), transparent 60%),
    radial-gradient(50% 60% at 6% 90%, rgba(110,124,69,.10), transparent 60%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero h1 { margin-top: 18px; }
.hero h1 em { color: var(--green-700); }
.hero .lead { margin-top: 22px; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 500; color: var(--ink-2); }
.hero-badge svg { width: 18px; height: 18px; color: var(--green-600); flex: none; }

/* placeholder image helper */
.ph-photo { position: relative; display: grid; place-items: center; color: rgba(56,66,31,.45); }
.ph-photo .ph-ico { width: 54px; height: 54px; opacity: .5; }
.ph-photo .ph-label { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(56,66,31,.5); }

/* ------------------------- Philosophy cards ----------------------------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pcard {
  background: linear-gradient(145deg, rgba(251,250,245,.98), rgba(246,243,235,.94)); border: 1px solid rgba(213,207,191,.78); border-radius: var(--radius-lg);
  padding: 30px 24px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.pcard .badge-ico {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green-600); color: #fff;
}
.pcard .badge-ico svg { width: 28px; height: 28px; }
.pcard h3 { font-size: 1.28rem; margin-bottom: 10px; }
.pcard p { font-size: .92rem; color: var(--muted); }

/* --------------------------- Customer page ------------------------------ */
.customer-hero-panel {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(213,207,191,.78);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.customer-hero-panel h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); margin-top: 10px; }
.customer-hero-panel p { margin-top: 14px; }
.customer-list { display: grid; gap: 12px; margin-top: 24px; }
.customer-list li {
  display: flex; align-items: center; gap: 12px;
  padding-top: 12px; border-top: 1px solid var(--line);
  color: var(--ink); font-weight: 600;
}
.customer-list li span {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-100); color: var(--green-800);
  font-size: .72rem; letter-spacing: .08em;
}
.customer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.customer-card { text-align: left; min-height: 100%; padding: 28px; }
.customer-card .badge-ico { margin: 0 0 18px; }
.customer-card h3 { font-size: 1.36rem; }
.customer-card p { font-size: .94rem; line-height: 1.65; }
.support-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.support-step {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(213,207,191,.72);
  border-radius: var(--radius);
  padding: 20px;
}
.support-step b { display: block; color: var(--ink); font-size: .96rem; margin-bottom: 6px; }
.support-step p { font-size: .9rem; color: var(--muted); }
.customer-note { align-items: flex-start; }
.customer-note span { line-height: 1.7; }

/* --------------------------- Peptide library ---------------------------- */
.lib-intro-grid { display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.lib-intro-grid > * { min-width: 0; }
.lib-intro-grid .stat { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); margin-top: 18px; }
.lib-intro-grid .stat svg { width: 17px; height: 17px; color: var(--green-600); }

.pep-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(232px, 1fr); gap: 18px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; scrollbar-width: thin; min-width: 0; }
.pep-rail::-webkit-scrollbar { height: 7px; }
.pep-rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 10px; }

.pep-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; scroll-snap-align: start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pep-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.pep-card .thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.thumb canvas, .thumb svg { display: block; width: 100%; height: 100%; }
.pep-card .cat-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pep-card .cat-tag svg { width: 13px; height: 13px; flex: none; color: currentColor; }
.pep-card .cat-tag::before { content: none; }
.pep-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pep-card h3 { font-size: 1.3rem; margin-bottom: 3px; }
.pep-card .sub { font-size: .78rem; color: var(--muted); font-weight: 500; margin-bottom: 10px; }
.pep-card p {
  font-size: .88rem; color: var(--ink-2); margin-bottom: 16px; flex: 1;
  /* clamp at line boundaries instead of character-cut "..." truncation */
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pep-card .link-arrow { margin-top: auto; }

/* category tints */
[data-cat="Metabolic Support"] .cat-tag::before { background: var(--cat-metabolic); }
[data-cat="Recovery & Repair"] .cat-tag::before { background: var(--cat-recovery); }
[data-cat="Cognitive Support"] .cat-tag::before { background: var(--cat-cognitive); }
[data-cat="Longevity & Vitality"] .cat-tag::before { background: var(--cat-longevity); }
[data-cat="Metabolic Support"] .cat-tag { color: var(--cat-metabolic); }
[data-cat="Recovery & Repair"] .cat-tag { color: var(--cat-recovery); }
[data-cat="Cognitive Support"] .cat-tag { color: var(--cat-cognitive); }
[data-cat="Longevity & Vitality"] .cat-tag { color: var(--cat-longevity); }

/* Library page grid + filters */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.lib-count { text-align: center; color: var(--muted); font-size: .88rem; margin: -30px 0 36px; }
@media (max-width: 700px) {
  /* one-row swipeable chip rail instead of a 4-row stack */
  .filter-bar {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    margin-inline: -24px; padding: 2px 24px 10px;
    scrollbar-width: thin; -webkit-overflow-scrolling: touch;
  }
  .filter-bar .chip { flex: none; white-space: nowrap; }
  .lib-count { margin-top: -34px; }
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line-2);
  font-size: .88rem; font-weight: 500; color: var(--ink-2); background: var(--paper);
  transition: all .2s var(--ease);
}
.chip .chip-ico { width: 16px; height: 16px; display: inline-grid; place-items: center; color: var(--green-700); }
.chip .chip-ico svg { width: 14px; height: 14px; }
.chip.active .chip-ico { color: #fff; }
.chip:hover { border-color: var(--green-500); color: var(--green-800); }
.chip.active { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.chip .count { opacity: .6; font-size: .78em; margin-left: 4px; }
.lib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lib-grid .pep-card.hide { display: none; }
.lib-empty { text-align: center; color: var(--muted); padding: 60px 0; display: none; }

/* ---------------------- Consultation experience ------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; font-size: 1rem; color: var(--ink); }
.checklist li .tick { width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--green-600); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.checklist li .tick svg { width: 13px; height: 13px; }
.media-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: linear-gradient(150deg, #dfe2cd, #c4cba7); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Video play button */
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease), background .25s;
}
.play-btn:hover { transform: scale(1.08); background: #fff; }
.play-btn svg { width: 26px; height: 26px; color: var(--green-800); margin-left: 3px; }

/* ----------------------------- Process steps ---------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--green-300) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; text-align: center; z-index: 1; }
.step .num { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 6px var(--cream); }
.step .num svg { width: 24px; height: 24px; }
.step .num .n { display: none; }
.step h4 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: .86rem; color: var(--muted); }
.bg-green .step .num { box-shadow: 0 0 0 6px var(--green-50); }

/* ----------------------------- Testimonials ----------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Testimonials carousel */
.reviews { position: relative; }
.rev-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track .quote { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; }

.quote {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; position: relative;
}
.quote .mark { font-family: var(--serif); font-size: 3.4rem; line-height: .6; color: var(--green-300); }
.quote p { font-size: 1rem; color: var(--ink); margin: 6px 0 20px; font-style: italic; flex: 1; }
.quote .who { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; }
.quote .who-meta b { display: block; font-size: .92rem; }
.quote .who-meta span { font-size: .82rem; color: var(--muted); }
.quote .who-avatar { width: 52px; height: 52px; flex: none; border-radius: 50%; object-fit: cover; border: 2px solid var(--paper); box-shadow: 0 0 0 1px var(--line); background: var(--green-50); }

.rev-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.rev-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--ink-2); display: grid; place-items: center; transition: border-color .2s var(--ease), color .2s var(--ease), opacity .2s; }
.rev-arrow svg { width: 18px; height: 18px; }
.rev-arrow:hover:not(:disabled) { border-color: var(--green-600); color: var(--green-800); }
.rev-arrow:disabled { opacity: .35; cursor: default; }
.rev-dots { display: flex; align-items: center; gap: 9px; }
.rev-dots button { width: 8px; height: 8px; border-radius: 999px; background: var(--line-2); transition: width .25s var(--ease), background .25s var(--ease); }
.rev-dots button:hover { background: var(--green-300); }
.rev-dots button.active { width: 24px; background: var(--green-600); }
@media (max-width: 980px) { .rev-track .quote { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 640px) { .rev-track .quote { flex-basis: 86%; } }

/* ------------------------------ Accordion ------------------------------- */
.accordion { display: grid; gap: 14px; }
.acc-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: var(--green-300); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 22px; text-align: left; }
.acc-head .q-ico { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; transition: background .25s, color .25s; }
.acc-head .q-ico svg { width: 17px; height: 17px; } /* was margin-left:2px to optically center the old play triangle */
.acc-item.open .q-ico { background: var(--green-700); color: #fff; }
.acc-head .q-text { flex: 1; }
.acc-head .q-text b { display: block; font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.acc-head .q-text small { color: var(--muted); font-size: .8rem; }
.acc-head .chev { color: var(--muted); }
.acc-item.open .acc-head .chev { transform: rotate(180deg); color: var(--green-700); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel-inner { padding: 0 22px 24px 76px; }
.acc-panel-inner p { font-size: .96rem; color: var(--ink-2); margin-bottom: 16px; }

/* responsive video embed */
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: linear-gradient(150deg, #dfe2cd, #c4cba7); box-shadow: var(--shadow-sm); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed.placeholder { cursor: pointer; }
.video-embed .vlabel { position: absolute; bottom: 14px; left: 16px; right: 16px; color: #fff; font-size: .82rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
/* A video placeholder with no embed URL yet reads as an intentional
   "coming soon" preview instead of a dead play control. The label and the
   default cursor disappear automatically once a data-video URL is added. */
.video-embed.placeholder[data-video=""] { cursor: default; }
.video-embed.placeholder[data-video=""]::after {
  content: "Video coming soon";
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: #fff;
  background: rgba(20, 28, 18, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* main about video */
.about-video { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; position: relative; background: linear-gradient(150deg, #dfe2cd, #c4cba7); }

/* ---------------------- Peptide detail page ----------------------------- */
.pep-hero { padding-block: clamp(36px, 5vw, 56px) 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb svg { width: 13px; height: 13px; }
.pep-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.pep-hero .cat-pill { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--green-700); margin-bottom: 14px; }
.pep-hero .cat-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); }
.pep-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.pep-hero .aka { color: var(--muted); font-size: .95rem; margin-top: 6px; }
.pep-hero .tagline { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--green-700); margin-top: 18px; }
.pep-hero .summary { margin-top: 16px; max-width: 520px; }
.pep-visual { aspect-ratio: 1 / 1; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(155deg, #eef0e2, #d3d9bd); }
.pep-visual .thumb { width: 100%; height: 100%; }

.pep-body { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.prose h2 { font-size: 1.8rem; margin: 0 0 14px; }
.prose h2:not(:first-child) { margin-top: 40px; }
.prose p { margin-bottom: 16px; line-height: 1.75; }
.prose .benefit-list { display: grid; gap: 12px; margin: 8px 0 8px; }
.prose .benefit-list li { display: flex; gap: 12px; align-items: flex-start; }
.prose .benefit-list .tick { width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; margin-top: 2px; }
.prose .benefit-list .tick svg { width: 12px; height: 12px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.tag-row .tag { font-size: .8rem; padding: 5px 12px; border-radius: 999px; background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-100); }

.pep-aside { position: sticky; top: 96px; display: grid; gap: 20px; }
.fact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.fact-card h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.fact-card dl { display: grid; gap: 0; }
.fact-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line); font-size: .9rem; }
.fact-row:first-child { border-top: 0; }
.fact-row dt { color: var(--muted); }
.fact-row dd { color: var(--ink); font-weight: 600; text-align: right; }
.aside-cta { background: var(--green-900); color: var(--cream); border-radius: var(--radius-lg); padding: 26px; }
.aside-cta h4 { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.aside-cta p { color: rgba(246,244,234,.8); font-size: .9rem; margin-bottom: 18px; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.disclaimer-band { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius); padding: 20px 24px; font-size: .85rem; color: var(--ink-2); display: flex; gap: 14px; }
.disclaimer-band svg { width: 22px; height: 22px; color: var(--green-700); flex: none; }

/* "In plain terms" callout on peptide detail pages (renders only when
   peptides.json provides a plainTerms field for the peptide) */
.plain-terms {
  background: var(--green-50); border: 1px solid var(--green-100); border-left: 3px solid var(--green-600);
  border-radius: var(--radius); padding: 16px 20px; margin: 4px 0 22px;
}
.plain-terms .pt-label {
  display: block; font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-700); margin-bottom: 6px;
}
.plain-terms p { margin: 0; color: var(--ink-2); font-size: .95rem; line-height: 1.65; }

/* ------------------------------- Forms ---------------------------------- */
.form-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--cat-metabolic); }
.field label .optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-2); background: var(--cream-soft); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%; min-width: 0; /* long <option> text must not blow out the grid */
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); background: #fff; box-shadow: 0 0 0 4px var(--green-50);
}
/* Inline validation states */
.field.error input, .field.error select, .field.error textarea { border-color: #b0563c; background: #fdf7f4; }
.field-error { display: block; color: #a04a31; font-size: .8rem; margin: 0; }
label.consent + .field-error { margin-top: 6px; }
.form-submit-error { margin-top: 14px; }
.consent.error, .consent.error a { color: #a04a31; }
@media (max-width: 860px) {
  /* >=16px stops iOS Safari from zooming the page on focus */
  .field input, .field select, .field textarea { font-size: 16px; }
}
.field textarea { resize: vertical; min-height: 120px; }
.form-aside { display: grid; gap: 20px; align-content: start; }
.info-tile { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius); padding: 22px; }
.info-tile h4 { font-size: 1.1rem; margin-bottom: 12px; }
.info-tile .checklist { margin-top: 0; }
.info-tile .checklist li { font-size: .9rem; }
.contact-line { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--ink-2); padding: 7px 0; }
.contact-line svg { width: 18px; height: 18px; color: var(--green-600); flex: none; }
.contact-line.address-line { align-items: flex-start; }
.contact-line.address-line svg { margin-top: 3px; }
.contact-line.address-line span { line-height: 1.45; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); }
.consent input { margin-top: 3px; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success .check-circle { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.form-success .check-circle svg { width: 30px; height: 30px; }

/* Shared reference-compass treatment for green circular icon badges */
.pcard .badge-ico,
.step .num,
.form-success .check-circle,
.checklist li .tick,
.prose .benefit-list .tick {
  --compass-frame-inset: -16%;
  --compass-icon-y: 6px;
  --compass-icon-scale: .78;
  position: relative;
  overflow: visible;
  isolation: isolate;
  color: #fff;
  background: transparent !important;
  box-shadow: none !important;
}
.pcard .badge-ico::before,
.step .num::before,
.form-success .check-circle::before,
.checklist li .tick::before,
.prose .benefit-list .tick::before {
  content: "";
  position: absolute;
  inset: var(--compass-frame-inset);
  background: url("../assets/compass-badge-frame.png") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
.pcard .badge-ico::after,
.step .num::after,
.form-success .check-circle::after,
.checklist li .tick::after,
.prose .benefit-list .tick::after {
  content: none;
}
.pcard .badge-ico > svg,
.step .num > svg,
.form-success .check-circle > svg,
.checklist li .tick > svg,
.prose .benefit-list .tick > svg {
  display: block;
  position: relative;
  z-index: 1;
  transform: translateY(var(--compass-icon-y)) scale(var(--compass-icon-scale));
  transform-origin: center;
}
.step .num {
  --compass-frame-inset: -18%;
  --compass-icon-y: 5px;
  --compass-icon-scale: .76;
}
.form-success .check-circle {
  --compass-frame-inset: -16%;
  --compass-icon-y: 6px;
  --compass-icon-scale: .78;
}
.checklist li .tick,
.prose .benefit-list .tick {
  --compass-frame-inset: -20%;
  --compass-icon-y: 2px;
  --compass-icon-scale: .66;
}
/* Audience cards (customers page): plain circular badges, no compass ring —
   varies the iconography so six cards don't repeat one motif */
.customer-card .badge-ico { color: var(--green-700); background: var(--green-100) !important; }
.customer-card .badge-ico::before { content: none; }
.customer-card .badge-ico > svg { transform: none; }

/* ------------------------------- CTA band ------------------------------- */
.cta-band { background: linear-gradient(155deg, var(--green-800), var(--green-900)); color: var(--cream); border-radius: var(--radius-xl); padding: clamp(12px, 1.45vw, 18px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 80% 0%, rgba(255,255,255,.08), transparent 60%); }
.cta-band h2 { color: #fff; font-size: clamp(1.55rem, 2.2vw, 1.98rem); line-height: 1.08; position: relative; }
.cta-band p { color: rgba(246,244,234,.82); max-width: 760px; margin: 4px auto 10px; line-height: 1.35; font-size: .9rem; position: relative; }
.cta-band .hero-actions { justify-content: center; gap: 10px; margin-top: 0; position: relative; }
.cta-band .btn { padding: 8px 18px; min-height: 40px; }

/* ------------------------------- Footer --------------------------------- */
.site-footer { background: var(--green-900); color: rgba(246,244,234,.72); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand .wordmark b { color: #fff; }
.footer-brand .brand .mark { color: var(--green-300); }
.footer-brand p { color: rgba(246,244,234,.6); font-size: .9rem; margin-top: 18px; max-width: 280px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.social a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.social a svg { width: 17px; height: 17px; color: rgba(246,244,234,.85); }
.footer-col h5 { font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(246,244,234,.5); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .92rem; color: rgba(246,244,234,.78); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-cat-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-cat-ico { width: 17px; height: 17px; display: grid; place-items: center; flex: none; color: var(--green-300); }
.footer-cat-ico svg { width: 15px; height: 15px; }
.footer-contact .contact-line { color: rgba(246,244,234,.78); font-size: .9rem; }
.footer-contact .contact-line svg { color: var(--green-300); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 24px; font-size: .82rem; color: rgba(246,244,234,.5); flex-wrap: wrap; }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ------------------------- Reveal animation ----------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------ Legal pages ----------------------------- */
.legal { padding-block: clamp(48px, 6vw, 90px); }
.legal h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: .86rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 14px; line-height: 1.75; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal strong { color: var(--ink); }

/* ------------------------------ Utilities ------------------------------- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.hide { display: none !important; }
.nowrap { white-space: nowrap; }

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .customer-grid { grid-template-columns: 1fr 1fr; }
  .support-steps { grid-template-columns: 1fr; }
  .lib-grid, .related, .quotes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .steps::before { display: none; }
  .pep-body { grid-template-columns: 1fr; }
  .pep-aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .hero-grid, .split, .lib-intro-grid, .pep-hero-grid, .form-grid, .form-layout { grid-template-columns: 1fr !important; }
  .split .media-frame.order-first { order: -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards-4, .customer-grid, .lib-grid, .related, .quotes, .pep-aside { grid-template-columns: 1fr; }
  .customer-hero-panel { padding: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .section { padding-block: 56px; }
  .acc-panel-inner { padding-left: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ------------------------- Mobile menu drawer --------------------------- */
.mobile-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-menu .scrim { position: absolute; inset: 0; background: rgba(40,44,28,.4); opacity: 0; transition: opacity .3s; }
.mobile-menu .drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  background: var(--cream); box-shadow: var(--shadow-lg); padding: 24px;
  transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
}
.mobile-menu.open { visibility: visible; }
.mobile-menu.open .scrim { opacity: 1; }
.mobile-menu.open .drawer { transform: none; }
.mobile-menu .m-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-menu .m-close { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; }
.mobile-menu .m-close svg { width: 24px; height: 24px; }
.mobile-menu nav a { display: block; padding: 14px 4px; font-size: 1.15rem; font-family: var(--serif); border-bottom: 1px solid var(--line); }
.mobile-menu .m-sub { padding-left: 14px; }
.mobile-menu .m-sub a { font-family: var(--sans); font-size: .98rem; color: var(--ink-2); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ---------------------- Reference visual alignment ---------------------- */
.section { padding-block: clamp(46px, 6vw, 78px); }
.section.tight { padding-block: clamp(34px, 4.5vw, 56px); }

/* Consultation ("start a convo with Dr. Rob") — shrink verticality to hug text */
#consultation { padding-block: clamp(24px, 2.8vw, 38px); }
#consultation .checklist { margin-top: 14px; gap: 9px; }
#consultation .hero-actions { margin-top: 16px; }

.btn {
  border-radius: 8px;
  padding: 12px 24px;
  font-size: .88rem;
  box-shadow: none;
}
.btn-sm { padding: 9px 16px; font-size: .8rem; }
.btn-primary { background: var(--green-700); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: rgba(255,255,255,.48); border-color: var(--green-700); color: var(--green-800); }
.btn-ghost:hover { background: #fff; transform: translateY(-1px); }

.site-header {
  /* light veil like the reference: the hero scene stays clearly visible through the bar */
  background: rgba(251, 250, 245, .38);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 250, 245, .93);
  border-bottom-color: rgba(213,207,191,.6);
}
.container.nav { max-width: 1120px; }
.nav { height: 64px; }
.brand { gap: 9px; }
.brand .mark { width: 32px; height: 32px; }
.brand .wordmark b { font-size: 1.68rem; color: var(--green-900); }
.brand .wordmark span { font-size: .5rem; letter-spacing: .24em; }
.brand-logo { display: block; height: auto; object-fit: contain; }
.site-header .brand-logo-horizontal { width: 168px; max-height: 56px; }
.mobile-menu .brand-logo-horizontal { width: 145px; max-height: 48px; }
.footer-brand .brand-footer { display: block; line-height: 0; }
.footer-brand .brand-logo-white { width: 105px; max-width: 100%; }
.nav-links > li > a,
.nav-links > li > button {
  border-radius: 0;
  padding: 8px 18px;
  font-size: .82rem;
  color: #1f2d20;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover {
  background: transparent;
}
.nav-links a.active::after,
.nav-links button.active::after {
  content: "";
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 2px;
  background: var(--green-700);
}
.dropdown {
  top: calc(100% + 7px);
  left: calc(50% - 56px);
  width: min(340px, 90vw);
  grid-template-columns: .92fr 1.08fr;
  gap: 14px;
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.94);
}

.hero {
  padding-block: 0;
  min-height: 494px;
  background: var(--cream);
  border-bottom: 0;
  isolation: isolate;
  /* pull the hero up behind the (now translucent) nav so it shows through */
  margin-top: -64px;
  padding-top: 64px;
}
.hero::before { content: none; }
.hero-backplate {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/hero-backplate-headroom.jpg");
  background-repeat: no-repeat;
  background-position: 50% 71%;
  background-size: auto 172%;
}
.hero-wash {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(18px, calc((100vw - 1120px) / 2 - 18px));
  width: min(690px, 59vw);
  z-index: 1;
  pointer-events: none;
  filter: blur(8px);
  background:
    radial-gradient(ellipse at 42% 48%, rgba(251,250,245,.92) 0%, rgba(251,250,245,.84) 40%, rgba(246,243,235,.42) 62%, rgba(246,243,235,.1) 78%, rgba(246,243,235,0) 100%),
    linear-gradient(90deg, rgba(246,243,235,0) 0%, rgba(246,243,235,.22) 14%, rgba(246,243,235,.66) 31%, rgba(246,243,235,.76) 55%, rgba(246,243,235,.2) 74%, rgba(246,243,235,0) 100%);
}
.container.hero-grid {
  max-width: none;
  min-height: 430px;
  padding-left: max(120px, calc((100vw - 1080px) / 2 + 36px));
  padding-right: 0;
  display: block;
}
.hero-copy {
  width: min(500px, 48vw);
  padding-block: 42px 18px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  display: inline-block;
  max-width: 510px;
  font-size: clamp(2.38rem, 3.05vw, 3rem);
  line-height: 1.02;
  margin-top: 12px;
}
.hero h1 em {
  color: var(--ink);
  display: inline-block;
  font-size: .9em;
}
.hero .lead {
  max-width: 470px;
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.5;
}
.hero-actions { margin-top: 22px; }
.hero-badges {
  width: min(590px, calc(100vw - 496px));
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
  padding-top: 0;
  border-top: 0;
}
.hero-badge { font-size: .68rem; gap: 7px; white-space: nowrap; }
.hero-badge svg { width: 16px; height: 16px; }
.hero-signature {
  position: absolute;
  right: max(78px, calc((100vw - 1120px) / 2 + 42px));
  bottom: 34px;
  z-index: 3;
  pointer-events: none;
}
.hero-signature img {
  display: block;
  width: clamp(190px, 19vw, 245px);
  height: auto;
  filter: drop-shadow(0 2px 9px rgba(20,28,18,.54)) drop-shadow(0 1px 1px rgba(20,28,18,.36));
}
.media-frame > img,
.video-embed > img,
.about-video > img,
.pep-card .thumb img,
.pep-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-section {
  padding-block: 22px 34px;
  background: var(--paper);
}
.approach-section .section-head {
  margin-bottom: 18px;
}
.approach-section h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}
.cards-4 { gap: 20px; }
.pcard {
  border-radius: 8px;
  padding: 26px 22px 24px;
  box-shadow: none;
  background: linear-gradient(145deg, rgba(251,250,245,.96), rgba(246,243,235,.9));
  border-color: rgba(213,207,191,.74);
}
.pcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pcard .badge-ico {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.22), 0 5px 12px rgba(47,67,47,.18);
}
.pcard h3 { font-size: 1.18rem; }
.pcard p { font-size: .82rem; line-height: 1.55; }

.peptide-showcase {
  background:
    linear-gradient(90deg, rgba(246,243,235,.42), rgba(241,243,234,.1) 48%, rgba(246,243,235,.32)),
    url("../assets/aurora-field.png") center / cover no-repeat,
    var(--green-50);
  border-block: 0;
  overflow-x: clip;
}
.approach-section + .peptide-showcase {
  margin-top: 0;
  padding-top: clamp(76px, 8vw, 112px);
}
.lib-intro-grid {
  grid-template-columns: .82fr 1.55fr;
  align-items: start;
  overflow-x: clip;
}
.lib-intro-grid h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}
.lib-intro-grid p {
  max-width: 310px;
  font-size: .88rem;
}
.pep-rail {
  grid-auto-columns: minmax(205px, 1fr);
  gap: 16px;
}
.pep-card {
  border-radius: 8px;
  box-shadow: none;
}
.pep-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pep-card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--green-50);
}
.pep-card .cat-tag { display: inline-flex; }
.pep-card .body { padding: 16px 18px 18px; }
.pep-card h3 {
  font-size: 1.22rem;
  line-height: 1.05;
}
.pep-card .sub {
  font-size: .76rem;
  color: var(--green-800);
}
.pep-card p {
  font-size: .83rem;
  line-height: 1.55;
}

.split { gap: clamp(28px, 4vw, 54px); }
.media-frame,
.about-video,
.video-embed,
.acc-item,
.quote,
.fact-card,
.disclaimer-band,
.form-card,
.info-tile,
.cta-band {
  border-radius: 8px;
}
.media-frame,
.about-video,
.video-embed {
  border: 1px solid var(--line);
  box-shadow: none;
}
.about-hero-portrait {
  overflow: hidden;
  border-radius: 8px;
}
.about-hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* image file is delivered at the container's 4/3.25 aspect with baked-in
     headroom, so no zoom/reposition hacks are needed */
  object-position: 50% 50%;
}
.play-btn {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,.84);
  border: 2px solid rgba(255,255,255,.82);
}
.play-btn svg { width: 22px; height: 22px; }

.process-strip {
  background: linear-gradient(180deg, var(--paper), var(--cream-soft));
  padding-block: 28px 34px;
  border-top: 0;
}
.process-strip .section-head {
  margin-bottom: 22px;
}
.process-strip h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}
.steps { gap: 18px; }
.steps::before {
  top: 26px;
  height: 1px;
  background: var(--line-2);
}
.step .num {
  width: 54px;
  height: 54px;
  box-shadow: 0 0 0 6px var(--cream-soft);
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
}
.step h4 {
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 700;
}
.step p { font-size: .8rem; }

.quotes { gap: 16px; }
.quote {
  padding: 22px 24px;
  box-shadow: none;
}
.quote .mark { font-size: 2.7rem; color: var(--green-700); }
.quote p { font-size: .9rem; }

.cta-band {
  padding: clamp(12px, 1.45vw, 18px);
  background: linear-gradient(155deg, var(--green-800), var(--green-900));
}
.site-footer {
  position: relative;
  padding-top: clamp(44px, 5vw, 60px);
  background: linear-gradient(112deg, #142817 0%, #41664f 46%, #0f2114 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(28px, 3.2vw, 44px);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--cream-soft), rgba(251, 250, 245, 0));
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  grid-template-columns: 1.35fr .82fr .95fr 1fr;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom-color: rgba(255,255,255,.18);
}
.footer-col,
.footer-contact {
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: 24px;
}
.footer-brand .brand .wordmark b { color: #fff; }
.footer-brand p { margin-top: 10px; }
.social { margin-top: 14px; }
.footer-col h5 { margin-bottom: 10px; }
.footer-col ul { gap: 8px; }
.footer-contact .contact-line { padding: 5px 0; }
.footer-bottom { padding-block: 14px 16px; }
.footer-bottom .legal { padding: 0; }

/* ================= LIGHT FOOTER (compact, left-set) =================== */
/* Layer model: cream background (middle) + text columns (top) +
   ship painting (bottom) shown at full opacity only in a small corner. */
.site-footer {
  background: var(--cream);
  color: var(--ink-2);
  border-top: 1px solid var(--green-100);
  overflow: hidden;
  padding-top: clamp(16px, 1.9vw, 24px);
}
.site-footer::before { content: none; }
.site-footer .container { position: relative; z-index: 1; }
/* columns pulled to the left so the ship reads clearly on the right */
.footer-grid {
  max-width: 79%;
  gap: clamp(18px, 2vw, 26px);
  padding-bottom: clamp(8px, 1vw, 12px);
  border-bottom-color: var(--line-2);
}
/* column ratios only above the stacking breakpoints (1080px → 2-col, 620px → 1-col) */
@media (min-width: 1081px) {
  .footer-grid { grid-template-columns: 1.05fr .8fr .97fr 1.18fr; }
}
/* re-assert stacking here: earlier unscoped .footer-grid ratios (compact footer
   block above) would otherwise out-cascade the responsive rules */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-bottom { max-width: none; }
.footer-col,
.footer-contact { border-left-color: var(--line); }
.footer-brand p { color: var(--muted); margin-top: 7px; font-size: .84rem; }
.footer-brand .brand-logo-horizontal { width: 144px; max-width: 100%; }
.footer-col h5 { color: var(--green-700); margin-bottom: 6px; }
.footer-col ul { gap: 4px; }
.footer-col a { color: var(--ink-2); }
.footer-col a:hover { color: var(--green-800); }
.footer-cat-ico { color: var(--green-600); }
.footer-contact .contact-line { padding: 3px 0; }
.footer-contact .contact-line,
.footer-contact .contact-line a { color: var(--ink-2); }
.footer-contact .contact-line a:hover { color: var(--green-800); }
.footer-contact .contact-line svg { color: var(--green-600); }
.footer-bottom { color: var(--muted); border-top: 1px solid var(--line); padding-block: 8px 10px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--green-800); }
@media (max-width: 860px) { .footer-grid, .footer-bottom { max-width: 100%; } }

/* Ship — full opacity in a small bottom-right window, edges dissolve to cream */
.footer-ship {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(230px, 21vw, 320px);
  height: auto;
  bottom: 41px; /* stop above the full-width legal bar */
  object-fit: cover;
  object-position: 72% 42%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  -webkit-mask-image: radial-gradient(125% 130% at 100% 74%, #000 44%, rgba(0,0,0,0) 82%);
  mask-image: radial-gradient(125% 130% at 100% 74%, #000 44%, rgba(0,0,0,0) 82%);
}
@media (max-width: 860px) { .footer-ship { display: none; } }

/* ===== Full-bleed CTA bar, flush on top of the footer (sitewide) ======= */
body > section:has(.cta-band) {
  background: linear-gradient(150deg, var(--green-800), var(--green-900));
  padding-block: clamp(13px, 1.7vw, 22px);
  margin: 0;
}
/* beat the generic `body > section + section.section` padding-top */
body > section + section.section:has(.cta-band) {
  padding-top: clamp(13px, 1.7vw, 22px);
}
body > section:has(.cta-band)::before,
body > section:has(.cta-band)::after { content: none; }
.cta-band {
  background: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  box-shadow: none;
}
.cta-band::before { content: none; }
.cta-band h2 { font-size: clamp(1.28rem, 1.8vw, 1.6rem); margin: 0; }
.cta-band p { margin: 2px auto 7px; font-size: .82rem; line-height: 1.3; max-width: 600px; }
.cta-band .hero-actions { margin-top: 2px; gap: 10px; }
.cta-band .btn { padding: 7px 16px; min-height: 33px; font-size: .82rem; }
/* one compact row like the reference: text block left-of-center, buttons right */
@media (min-width: 861px) {
  .cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "heading actions" "copy actions";
    column-gap: clamp(24px, 4vw, 56px);
    align-items: center;
  }
  .cta-band h2 { grid-area: heading; text-align: center; }
  .cta-band p { grid-area: copy; text-align: center; margin: 3px auto 0; }
  .cta-band .hero-actions { grid-area: actions; justify-content: flex-end; margin: 0; }
}

.pep-visual {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .footer-col,
  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: clamp(300px, 78vw, 390px);
    background: var(--cream);
  }
  .hero-backplate {
    inset: 0 0 auto 0;
    height: clamp(320px, 82vw, 410px);
    background-position: 63% 61%;
    background-size: auto 203%;
  }
  .hero-wash {
    top: clamp(270px, 70vw, 352px);
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    filter: blur(6px);
    background:
      linear-gradient(180deg, rgba(246,243,235,0) 0%, rgba(246,243,235,.76) 56px, rgba(246,243,235,.98) 118px, rgba(246,243,235,.98) 100%),
      radial-gradient(ellipse at 50% 42%, rgba(251,250,245,.78), rgba(251,250,245,0) 78%);
  }
  .container.hero-grid {
    min-height: auto;
    padding-inline: 24px;
    display: block;
  }
  .hero-copy {
    width: 100%;
    padding-block: 34px 42px;
  }
  .hero-signature {
    top: clamp(246px, 65vw, 330px);
    right: 22px;
    bottom: auto;
    transform: scale(.82);
    transform-origin: right bottom;
  }
  .hero-signature img { width: clamp(168px, 44vw, 220px); }
  .lib-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  /* re-assert zoom-safety here so edits to this block can't silently drop it */
  .field input, .field select, .field textarea { font-size: 16px; }
  .hero h1 { font-size: clamp(2.35rem, 10.8vw, 2.75rem); }

  /* Icon-left card rows on phones: pcards (philosophy/audience) + process
     steps become compact list items instead of tall centered totems */
  .pcard {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "ico title" "ico body";
    column-gap: 16px;
    row-gap: 3px;
    align-items: center;
    text-align: left;
    padding: 16px 18px;
  }
  .pcard .badge-ico {
    grid-area: ico;
    width: 46px; height: 46px;
    margin: 0;
    --compass-icon-y: 4px;
    --compass-icon-scale: .72;
  }
  .pcard .badge-ico svg { width: 22px; height: 22px; }
  .pcard h3 { grid-area: title; margin: 0; align-self: end; font-size: 1.08rem; }
  .pcard p { grid-area: body; margin: 0; align-self: start; }
  .cards-4, .customer-grid { gap: 12px; }

  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "ico title" "ico body";
    column-gap: 16px;
    row-gap: 3px;
    align-items: center;
    text-align: left;
  }
  .step .num {
    grid-area: ico;
    width: 46px; height: 46px;
    margin: 0;
    box-shadow: none;
    --compass-icon-y: 4px;
    --compass-icon-scale: .72;
  }
  .step .num svg { width: 20px; height: 20px; }
  .step h4 { grid-area: title; margin: 0; align-self: end; }
  .step p { grid-area: body; margin: 0; align-self: start; }
  .section { padding-block: 46px; }
  .approach-section,
  .process-strip { padding-block: 30px; }
  .pep-rail { grid-auto-columns: minmax(235px, 82vw); }
  .footer-grid { gap: 26px; }
}

/* =========================================================================
   EDUCATION CENTER  -  hub, wide nav dropdown, section placeholders
   ========================================================================= */

/* Wider nav dropdown for the 6-section Education menu */
.dropdown-wide { width: min(560px, 92vw); grid-template-columns: .8fr 1.2fr; }
.dropdown-wide .dropdown-list { grid-template-columns: 1fr 1fr; gap: 9px 18px; }
.dropdown-wide .dropdown-view-all { grid-column: 1 / -1; }

/* Eyebrow inline section icon */
.sec-eyebrow-ico { display: inline-flex; vertical-align: -2px; }
.sec-eyebrow-ico svg { width: 15px; height: 15px; }

/* Hub grid of section cards */
.edu-hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px;
}
.edu-card {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 26px 24px 20px; border-radius: var(--radius-xl);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden; isolation: isolate;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.edu-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%);
}
.edu-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent); opacity: .85;
}
.edu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
/* Compass-medallion icon: same treatment as the homepage .badge-ico
   (shared compass-badge-frame.png medallion + white glyph layered on top) */
.edu-card-ico {
  --compass-frame-inset: -16%;
  --compass-icon-y: 2px;
  --compass-icon-scale: .72;
  position: relative; overflow: visible; isolation: isolate;
  width: 48px; height: 48px; display: grid; place-items: center;
  color: #fff; background: transparent; border: 0; box-shadow: none;
}
.edu-card-ico::before {
  content: ""; position: absolute; inset: var(--compass-frame-inset);
  background: url("../assets/compass-badge-frame.png") center / contain no-repeat;
  pointer-events: none; z-index: 0;
}
.edu-card-ico > svg {
  position: relative; z-index: 1; width: 24px; height: 24px;
  transform: translateY(var(--compass-icon-y)) scale(var(--compass-icon-scale));
  transform-origin: center;
}
.edu-card h3 { font-size: 1.34rem; margin: 6px 0 0; }
.edu-card p { color: var(--ink-2); font-size: .9rem; line-height: 1.5; margin: 0; flex: 1; }
.edu-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.edu-count { font-size: .78rem; font-weight: 600; color: var(--muted); }
.edu-card .link-arrow { font-size: .82rem; color: var(--accent); }

/* Placeholder thumbnails / hero visuals for items without a photo */
.thumb-ph, .pep-visual-ph {
  display: grid; place-items: center; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 0%, color-mix(in srgb, var(--accent) 22%, #f3f5ec), transparent 70%),
    linear-gradient(150deg, color-mix(in srgb, var(--accent) 16%, #eef0e2), color-mix(in srgb, var(--accent) 34%, #cdd6bb));
}
.thumb-ph::after, .pep-visual-ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 82% 78%, rgba(255,255,255,.35), transparent 42%);
}
.thumb-ph .ph-ico, .pep-visual-ph .ph-ico {
  position: relative; z-index: 1; color: #fff; opacity: .92;
  filter: drop-shadow(0 3px 8px color-mix(in srgb, var(--accent) 55%, transparent));
}
.thumb-ph .ph-ico svg { width: 42px; height: 42px; }
.pep-visual-ph { aspect-ratio: 1 / 1; }
.pep-visual-ph .ph-ico svg { width: 96px; height: 96px; }

@media (max-width: 960px) { .edu-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .edu-hub-grid { grid-template-columns: 1fr; }
  .dropdown-wide .dropdown-list { grid-template-columns: 1fr; }
}

/* ------------------- Post-submit services modal ------------------------- */
.svc-modal { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: 18px; }
.svc-modal.open { display: flex; }
.svc-scrim { position: absolute; inset: 0; background: rgba(37, 52, 37, .48); backdrop-filter: blur(3px); }
.svc-dialog {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: min(86vh, 760px); overflow: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: clamp(24px, 3.4vw, 36px); animation: svcIn .24s var(--ease);
}
@keyframes svcIn { from { opacity: 0; transform: translateY(10px) scale(.985); } }
@media (prefers-reduced-motion: reduce) { .svc-dialog { animation: none; } }
.svc-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); background: var(--cream-soft); color: var(--ink-2); cursor: pointer;
}
.svc-close:hover { background: var(--green-50); color: var(--ink); }
.svc-close svg { width: 16px; height: 16px; }
.svc-dialog h3 { font-family: var(--serif); font-size: 1.62rem; line-height: 1.12; margin: 10px 0 8px; }
.svc-sub { color: var(--ink-2); font-size: .92rem; line-height: 1.55; margin-bottom: 14px; }
.svc-list { list-style: none; display: grid; gap: 9px; margin: 0 0 16px; padding: 0; }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; line-height: 1.5; color: var(--ink-2); }
.svc-list li b { color: var(--ink); font-weight: 600; }
.svc-tick { flex: none; width: 21px; height: 21px; margin-top: 1px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); }
.svc-tick svg { width: 12px; height: 12px; }
.svc-note { font-size: .74rem; color: var(--muted); line-height: 1.5; border-top: 1px solid var(--line); padding-top: 12px; margin-bottom: 14px; }
.svc-got { width: 100%; justify-content: center; }
body.svc-lock { overflow: hidden; }
