:root {
  --bg: #f3ecdf;
  --surface: rgba(255, 250, 241, 0.88);
  --surface-strong: #fffaf2;
  --surface-soft: rgba(255, 247, 233, 0.74);
  --ink: #1f2a1e;
  --muted: #5a6858;
  --line: rgba(31, 42, 30, 0.1);
  --olive: #5c6d3a;
  --forest: #27462d;
  --clay: #b56d42;
  --gold: #ce9a2a;
  --cream: #f9f3e7;
  --shadow: 0 18px 60px rgba(42, 51, 28, 0.14);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(206, 154, 42, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(39, 70, 45, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 48%, #ede3d0 100%);
}

a {
  color: inherit;
}

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

img[loading="lazy"] {
  content-visibility: auto;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 239, 0.84);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--olive));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.nav-group {
  position: relative;
}

.nav-group-trigger::after {
  content: " ▾";
  font-size: 0.75rem;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 260px;
  display: none;
  padding: 12px;
  border: 1px solid rgba(39, 70, 45, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.98);
  box-shadow: var(--shadow);
}

.nav-submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(39, 70, 45, 0.06);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.open .nav-submenu {
  display: block;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--forest);
}

.hero,
.page-hero {
  padding: 72px 0 32px;
}

.hero-card,
.page-hero-card,
.cta,
.notice,
.story-card,
.list-card,
.card,
.contact-card,
.review-card {
  box-shadow: var(--shadow);
}

.hero-card,
.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(39, 70, 45, 0.97), rgba(92, 109, 58, 0.93)),
    #27462d;
}

.hero-card::before,
.hero-card::after,
.page-hero-card::before,
.page-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 246, 224, 0.08);
}

.hero-card::before,
.page-hero-card::before {
  width: 320px;
  height: 320px;
  top: -72px;
  right: -90px;
}

.hero-card::after,
.page-hero-card::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -56px;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 54px;
}

.hero-grid {
  grid-template-columns: 1.18fr 0.82fr;
}

.page-hero-grid {
  grid-template-columns: 1fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 248, 235, 0.2);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.08);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
.page-title {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5.4rem);
}

.page-title {
  max-width: 12ch;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
}

.hero-copy p,
.page-hero-copy p {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(249, 243, 231, 0.86);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 720px;
  margin-top: 24px;
}

.hero-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 248, 235, 0.22);
  background: rgba(255, 251, 244, 0.1);
  color: var(--cream);
  font: inherit;
}

.hero-search input::placeholder {
  color: rgba(249, 243, 231, 0.68);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #2e2817;
  background: linear-gradient(135deg, #f1d79e, var(--gold));
  box-shadow: 0 12px 24px rgba(206, 154, 42, 0.22);
}

.button-secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 248, 235, 0.22);
  background: rgba(255, 251, 244, 0.05);
}

.brand-showcase {
  padding: 28px;
  border: 1px solid rgba(39, 70, 45, 0.1);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(248, 242, 231, 0.78));
  box-shadow: var(--shadow);
}

.brand-showcase img {
  width: min(100%, 720px);
}

.science-banner,
.science-grid {
  display: grid;
  gap: 18px;
}

.science-banner {
  grid-template-columns: 1fr;
}

.science-panel {
  overflow: hidden;
  border: 1px solid rgba(39, 70, 45, 0.08);
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
}

.science-panel img {
  width: 100%;
}

.science-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}

.brand-points {
  display: grid;
  gap: 12px;
}

.brand-point {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(39, 70, 45, 0.08);
  background: rgba(255, 250, 241, 0.88);
}

.brand-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.award-strip,
.hub-badge-grid {
  display: grid;
  gap: 18px;
}

.award-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-badge-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.award-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(39, 70, 45, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.95), rgba(248, 242, 231, 0.84));
  box-shadow: var(--shadow);
}

.award-card .kicker {
  color: var(--clay);
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(39, 70, 45, 0.08);
  border: 1px solid rgba(39, 70, 45, 0.1);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.award-badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f1d79e);
  box-shadow: 0 0 0 4px rgba(206, 154, 42, 0.14);
}

.award-badge-value::before {
  background: linear-gradient(135deg, #b56d42, #e2b08b);
  box-shadow: 0 0 0 4px rgba(181, 109, 66, 0.12);
}

.award-badge-shipping::before {
  background: linear-gradient(135deg, #5c6d3a, #aac16c);
  box-shadow: 0 0 0 4px rgba(92, 109, 58, 0.14);
}

.brand-note {
  color: var(--muted);
  font-size: 0.96rem;
}

.button-ghost {
  color: var(--forest);
  border: 1px solid rgba(39, 70, 45, 0.16);
  background: rgba(255, 250, 241, 0.76);
}

.stat-panel {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.08);
  border: 1px solid rgba(255, 248, 235, 0.12);
}

.stat-grid {
  display: grid;
  gap: 16px;
}

.stat-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
}

.stat-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
  color: #fff4d7;
}

.stat-block span {
  color: rgba(249, 243, 231, 0.8);
  font-size: 0.98rem;
}

section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.jump-nav {
  padding: 20px 22px;
  border: 1px solid rgba(39, 70, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: var(--shadow);
}

.jump-nav strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(39, 70, 45, 0.12);
  background: rgba(255, 247, 233, 0.7);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-head p,
.lede,
.muted {
  color: var(--muted);
}

.section-head p {
  max-width: 56ch;
  margin: 8px 0 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  line-height: 1.15;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.contact-card,
.review-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(31, 42, 30, 0.08);
  border-radius: var(--radius);
}

.card-link {
  text-decoration: none;
  display: block;
}

.kicker {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3,
.contact-card h3,
.review-card h3 {
  margin-top: 10px;
  font-size: 1.35rem;
}

.card p,
.contact-card p,
.review-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.review-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(31, 42, 30, 0.08);
}

.review-media {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.supplier-hero-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(31, 42, 30, 0.08);
  box-shadow: 0 24px 50px rgba(26, 36, 20, 0.18);
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(26, 36, 20, 0.18);
}

.stars {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(92, 109, 58, 0.1);
  border: 1px solid rgba(92, 109, 58, 0.14);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.review-list li + li {
  margin-top: 8px;
}

.copy-btn {
  cursor: pointer;
  border: 0;
  font: inherit;
  color: #2e2817;
  background: linear-gradient(135deg, #f1d79e, var(--gold));
  box-shadow: 0 12px 24px rgba(206, 154, 42, 0.18);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #d6ebc1, #8fb26f);
}

.shop-link {
  color: var(--forest);
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.lede-grid,
.resource-grid,
.supplier-grid,
.verify-layout,
.result-grid {
  display: grid;
  gap: 18px;
}

.lede-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.supplier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.verify-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.score-box {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(31, 42, 30, 0.08);
  box-shadow: var(--shadow);
}

.score-box strong {
  display: block;
  margin-top: 10px;
  color: var(--forest);
  font-size: 1.7rem;
  line-height: 1;
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(31, 42, 30, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.74);
  box-shadow: var(--shadow);
  padding: 8px;
}

.compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 42, 30, 0.08);
  color: var(--muted);
  vertical-align: top;
}

.compare-table th {
  color: var(--forest);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(39, 70, 45, 0.05);
}

.compare-table td strong {
  color: var(--ink);
}

.finder-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filter-panel,
.finder-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.filter-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.filter-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--forest);
}

.filter-form input,
.filter-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(39, 70, 45, 0.18);
  border-radius: 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.95);
}

.finder-results-grid {
  display: grid;
  gap: 18px;
}

.finder-card h3 {
  margin-bottom: 10px;
}

.finder-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 14px;
}

.finder-meta div,
.finder-compounds {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 247, 233, 0.72);
  border: 1px solid rgba(39, 70, 45, 0.08);
}

.finder-meta strong,
.finder-compounds strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.finder-note {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: var(--muted);
  font-weight: 700;
}

.checklist {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li + li {
  margin-top: 8px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(39, 70, 45, 0.08);
  border: 1px solid rgba(39, 70, 45, 0.1);
  color: var(--forest);
  font-size: 0.88rem;
}

.tiny {
  font-size: 0.92rem;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-weight: 700;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(39, 70, 45, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--ink);
  font: inherit;
}

.textarea {
  min-height: 112px;
  resize: vertical;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.status-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(39, 70, 45, 0.06);
  border: 1px solid rgba(39, 70, 45, 0.1);
  color: var(--forest);
}

.status-box.error {
  background: rgba(181, 109, 66, 0.08);
  border-color: rgba(181, 109, 66, 0.18);
  color: #7a4021;
}

.score-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff9f0, #f2eadc);
  border: 1px solid rgba(31, 42, 30, 0.08);
}

.score-pill {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(39, 70, 45, 0.08);
  border: 1px solid rgba(39, 70, 45, 0.1);
  color: var(--forest);
  font-weight: 700;
}

.score-big {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  margin: 14px 0 0;
}

.mini-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
}

.feature-layout,
.two-column,
.contact-layout {
  display: grid;
  gap: 22px;
}

.feature-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.two-column,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  padding: 30px;
  border: 1px solid rgba(31, 42, 30, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff8ef, #f2eadc);
}

.story-card p {
  margin-top: 14px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(92, 109, 58, 0.1);
  border: 1px solid rgba(92, 109, 58, 0.14);
  color: var(--forest);
  font-size: 0.92rem;
}

.list-card {
  padding: 10px;
  border: 1px solid rgba(31, 42, 30, 0.08);
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.5);
}

.list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
}

.list-item + .list-item {
  margin-top: 6px;
}

.list-item:nth-child(odd) {
  background: rgba(255, 252, 246, 0.84);
}

.list-item:nth-child(even) {
  background: rgba(242, 234, 220, 0.8);
}

.list-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.list-item h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.list-item p {
  margin-top: 8px;
  color: var(--muted);
}

.faq-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.notice {
  padding: 28px;
  border: 1px solid rgba(181, 109, 66, 0.2);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(181, 109, 66, 0.08), rgba(206, 154, 42, 0.08));
}

.notice p {
  margin-top: 12px;
  color: var(--muted);
}

.cta {
  padding: 28px;
  border-radius: 34px;
  color: #fff6e7;
  background: linear-gradient(135deg, #233525, #4d5f34 62%, #7f6036);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta p {
  max-width: 54ch;
  margin: 12px 0 0;
  color: rgba(255, 246, 231, 0.8);
}

.quote {
  padding-left: 18px;
  border-left: 3px solid rgba(39, 70, 45, 0.18);
  font-style: italic;
}

.footer {
  padding: 24px 0 48px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.reveal {
  animation: rise 700ms ease both;
}

.delay-1 {
  animation-delay: 90ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 270ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-layout,
  .two-column,
  .contact-layout,
  .cards,
  .faq-grid,
  .review-grid,
  .cta-grid,
  .lede-grid,
  .resource-grid,
  .supplier-grid,
  .finder-layout,
  .brand-row,
  .verify-layout,
  .result-grid,
  .finder-meta,
  .award-strip,
  .hub-badge-grid,
  .science-grid,
  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .page-hero-grid {
    padding: 34px 24px;
  }

  h1,
  .page-title {
    max-width: none;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .cta-grid {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding: 14px 0;
    align-items: start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav-group {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
  }

  .hero,
  .page-hero {
    padding-top: 32px;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card,
  .story-card,
  .notice,
  .cta,
  .contact-card,
  .review-card {
    padding: 22px;
  }
}
