/* ============================================
   acrobo.net — stylesheet
   Typography: Bricolage Grotesque (display) + Newsreader (body)
   Palette: deep forest green + cream + earth accent
   3 page types: .page-home / .page-body / .page-money
   ============================================ */

:root {
  /* cream / paper tones */
  --paper: #F5F1E8;
  --paper-2: #EDE7D9;
  --paper-3: #E3DBC9;

  /* forest greens */
  --forest: #1F3A2E;
  --forest-2: #2E4F3F;
  --forest-3: #3D6B54;
  --forest-faint: #4F8066;

  /* earth accent (warm, not loud) */
  --earth: #B8682E;
  --earth-2: #9A5521;
  --earth-soft: #D9986B;
  --earth-faint: #EBD4BF;

  /* ink / text */
  --ink: #1A241F;
  --ink-2: #3E4C45;
  --ink-3: #6C7A72;

  /* lines */
  --line: #D6CFBE;
  --line-2: #C8BFA9;

  /* status */
  --ok: #4F8066;
  --warn: #B8682E;
  --neutral: #8B8471;

  /* typography */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;

  /* spacing scale */
  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;
  --s-9: 6rem;
  --s-10: 9rem;

  /* layout */
  --max-w: 1180px;
  --max-w-narrow: 820px;
  --gutter: 1.5rem;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--earth-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
a:hover {
  color: var(--earth);
  text-decoration-color: var(--earth);
}

::selection {
  background: var(--forest);
  color: var(--paper);
}

/* ============================================
   TOPBAR (all pages)
   ============================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background-color: color-mix(in srgb, var(--paper) 92%, transparent);
}

.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .9rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  color: var(--forest);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand:hover {
  color: var(--forest);
  text-decoration: none;
}
.brand__mark {
  display: inline-flex;
  color: var(--forest);
}
.brand__text {
  position: relative;
  top: 1px;
}

.nav {
  display: flex;
  gap: .25rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: .96rem;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: .45rem .75rem;
  border-radius: var(--radius);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover {
  color: var(--forest);
  background: var(--paper-2);
  text-decoration: none;
}
.nav a.nav__active {
  color: var(--forest);
  background: var(--paper-3);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: .5rem;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--forest);
  transition: transform .2s ease;
}

/* ============================================
   EYEBROW (all pages, variants)
   ============================================ */

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-3);
  padding: .3rem .65rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: var(--s-5);
}
.eyebrow--body {
  color: var(--forest);
  border-color: var(--forest-faint);
  background: var(--paper-2);
}
.eyebrow--earth {
  color: var(--earth-2);
  border-color: var(--earth-soft);
  background: rgba(235, 212, 191, 0.3);
}

/* ============================================
   BREADCRUMB (body + money)
   ============================================ */

.breadcrumb {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .75rem var(--gutter);
  font-family: var(--display);
  font-size: .85rem;
  color: var(--ink-3);
  display: flex;
  gap: .5rem;
  align-items: center;
}
.breadcrumb a {
  color: var(--forest-3);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--earth);
  text-decoration: underline;
}
.breadcrumb__current {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================
   HOME HERO (.page-home)
   ============================================ */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-8) var(--gutter) var(--s-7);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: var(--s-7);
  align-items: center;
}

.hero__left {
  max-width: 580px;
}

.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--forest);
  margin-bottom: var(--s-5);
}
.hero__title em {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  color: var(--earth);
  letter-spacing: -0.015em;
}

.hero__lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: var(--s-5);
}
.hero__lead strong {
  color: var(--forest);
  font-weight: 600;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: var(--s-6);
}

.chip {
  font-family: var(--display);
  font-weight: 500;
  font-size: .85rem;
  padding: .4rem .85rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-3);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.chip:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
  text-decoration: none;
}

.hero__cta {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.btn {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  padding: .85rem 1.35rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--sm {
  padding: .6rem 1rem;
  font-size: .92rem;
}

.btn--primary {
  background: var(--forest);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--forest-2);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: var(--paper-2);
  color: var(--forest);
  text-decoration: none;
  border-color: var(--forest-faint);
}

.btn--earth {
  background: var(--earth);
  color: var(--paper);
}
.btn--earth:hover {
  background: var(--earth-2);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-1px);
}

/* hero decorative figure */

.hero__right {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.figure {
  position: relative;
  width: 340px;
  height: 340px;
  color: var(--forest-3);
}
.figure__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .25;
}
.figure__ring--outer { width: 340px; height: 340px; opacity: .15; }
.figure__ring--mid   { width: 240px; height: 240px; opacity: .28; }
.figure__ring--inner { width: 140px; height: 140px; opacity: .4; }

.figure__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.figure__dot--1 {
  top: 30px;
  right: 50px;
  background: var(--earth);
}
.figure__dot--2 {
  bottom: 60px;
  left: 40px;
  background: var(--forest);
  width: 10px;
  height: 10px;
}
.figure__dot--3 {
  bottom: 100px;
  right: 80px;
  background: var(--forest-faint);
  width: 8px;
  height: 8px;
}

.figure__stroke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--forest-faint);
}

/* ============================================
   STATS BANDS (home)
   ============================================ */

.bands {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-5) var(--gutter) var(--s-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.band {
  padding: var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  position: relative;
}
.band + .band {
  border-left: 1px solid var(--line);
}
.band__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1;
}
.band__text {
  font-size: .98rem;
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 280px;
}
.bands__source {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: .78rem;
  color: var(--ink-3);
  padding: var(--s-2) var(--s-4) 0;
  margin-top: var(--s-2);
  border-top: 1px dashed var(--line);
}

/* ============================================
   CONTENT (home)
   ============================================ */

.content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s-5);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 640px;
  margin-bottom: var(--s-6);
}

/* INTRO */
.intro {
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--line);
}
.intro__two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-7);
  max-width: 900px;
}
.intro__lead {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.intro p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.65;
}
.intro p strong {
  color: var(--forest);
  font-weight: 600;
  font-family: var(--display);
}

/* PILLARS */
.pillars {
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--line);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-5) var(--s-5);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  min-height: 280px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.pillar-card:hover {
  background: var(--paper-3);
  border-color: var(--forest-faint);
  text-decoration: none;
  color: var(--ink);
  transform: translateY(-2px);
}
.pillar-card:hover::before {
  transform: scaleX(1);
}
.pillar-card__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: .85rem;
  color: var(--forest-3);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pillar-card__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.pillar-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.pillar-card__desc {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: var(--s-5);
  flex: 1;
}
.pillar-card__link {
  font-family: var(--display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--earth);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s ease;
}
.pillar-card:hover .pillar-card__link {
  gap: .65rem;
}

/* APPROACH */
.approach {
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: var(--s-8);
  align-items: start;
}
.approach__text p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: var(--s-4);
  max-width: 560px;
}
.approach__steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.approach__steps li {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--earth);
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--earth-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: .2rem;
}
.approach__steps li p {
  font-size: .98rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.approach__steps li p em {
  color: var(--forest);
  font-style: italic;
}

/* FAQ (home + body) */
.faq {
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--line);
  max-width: 820px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: var(--s-4) 0;
}
.faq details:last-of-type {
  border-bottom: none;
}
.faq summary,
details summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--forest);
  padding: .5rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.faq summary::-webkit-details-marker,
details summary::-webkit-details-marker {
  display: none;
}
.faq summary::after,
details summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--earth);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after,
details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p,
details p {
  padding: var(--s-3) 0 var(--s-4);
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 1.02rem;
}
.faq details p em,
details p em {
  color: var(--forest);
  font-style: italic;
}

/* EDITORIAL */
.editorial {
  padding: var(--s-8) 0 var(--s-9);
}
.editorial__inner {
  max-width: 780px;
  padding: var(--s-6) var(--s-6);
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius);
  position: relative;
}
.editorial__inner .eyebrow {
  color: var(--earth-soft);
  border-color: rgba(235, 212, 191, 0.3);
}
.editorial__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--paper);
  margin-bottom: var(--s-5);
}
.editorial__quote a {
  color: var(--earth-soft);
  text-decoration-color: rgba(235, 212, 191, 0.5);
}
.editorial__quote a:hover {
  color: var(--paper);
  text-decoration-color: var(--paper);
}
.editorial__meta {
  display: flex;
  gap: var(--s-3);
  font-family: var(--display);
  font-size: .88rem;
  color: var(--earth-faint);
  align-items: center;
}
.editorial__meta a {
  color: var(--earth-soft);
  text-decoration-color: rgba(235, 212, 191, 0.5);
}

/* ============================================
   BODY-PART PAGE (.page-body)
   ============================================ */

.body-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-7) var(--gutter) var(--s-6);
  border-bottom: 1px solid var(--line);
}
.body-hero__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
.body-hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin-bottom: var(--s-5);
}
.body-hero__lead {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
}
.body-hero__meta {
  padding: var(--s-5);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 3px solid var(--forest-3);
}
.body-hero__meta dl {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.body-hero__meta dt {
  font-family: var(--display);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-3);
  margin-bottom: .15rem;
}
.body-hero__meta dd {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
}

/* SYMPTOM SELECTOR */
.symptom-selector {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: var(--s-7) var(--gutter);
}
.symptom-selector__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.symptom-selector__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.symptom-selector__sub {
  color: var(--ink-2);
  margin-bottom: var(--s-5);
  font-size: 1rem;
}
.symptom-selector__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.symptom {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: var(--s-5) var(--s-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.symptom:hover {
  border-color: var(--forest);
  background: var(--paper);
  transform: translateY(-2px);
  color: var(--ink);
  text-decoration: none;
}
.symptom__icon {
  font-size: 1.4rem;
  color: var(--earth);
  margin-bottom: .3rem;
  font-family: var(--display);
}
.symptom__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--forest);
}
.symptom__desc {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.4;
}

/* BODY LAYOUT (content + sticky TOC) */
.body-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-7) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: var(--s-7);
  align-items: start;
}

.body-content {
  max-width: 740px;
}
.body-content section {
  margin-bottom: var(--s-7);
  scroll-margin-top: 90px;
}
.body-content h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  line-height: 1.15;
}
.body-content h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--forest-2);
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.body-content p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.body-content p strong {
  color: var(--forest);
  font-weight: 600;
}
.body-content p em {
  color: var(--forest);
  font-style: italic;
}
.body-content a {
  color: var(--forest);
}

.cause-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0;
}
.cause-list li {
  padding: var(--s-3) 0 var(--s-3) var(--s-6);
  position: relative;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  border-bottom: 1px dashed var(--line);
}
.cause-list li:last-child {
  border-bottom: none;
}
.cause-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 24px;
  height: 1px;
  background: var(--earth);
}
.cause-list li strong {
  color: var(--forest);
  font-family: var(--display);
  font-weight: 600;
}

/* CALLOUTS */
.callout {
  padding: var(--s-4) var(--s-5);
  background: var(--paper-2);
  border-left: 3px solid var(--forest-3);
  border-radius: var(--radius);
  margin: var(--s-5) 0;
}
.callout strong {
  color: var(--forest);
  font-family: var(--display);
  font-weight: 600;
}
.callout p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-2);
}
.callout--warning {
  border-left-color: var(--earth);
  background: rgba(235, 212, 191, 0.35);
}
.callout--info {
  border-left-color: var(--forest);
  background: var(--paper-3);
}

/* EXERCISE LIST */
.exercise-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.exercise-list li {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.exercise-list li:hover {
  border-color: var(--forest-faint);
}
.exercise__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest);
  min-width: 42px;
  height: 42px;
  background: var(--paper-2);
  border: 1px solid var(--forest-faint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* HELP BLOCK (commercial reusable) */
.help-block {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-6);
  margin: var(--s-7) 0;
  position: relative;
}
.help-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--earth);
  border-radius: var(--radius) var(--radius) 0 0;
}
.help-block__header {
  margin-bottom: var(--s-5);
}
.help-block__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.help-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.help-item {
  padding: var(--s-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.help-item__kind {
  font-family: var(--display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--earth);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.help-item p {
  font-size: .96rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.help-item a {
  color: var(--forest);
}
.help-block__footer {
  text-align: left;
}

/* TOC (sticky) */
.toc {
  position: sticky;
  top: 90px;
  align-self: start;
}
.toc__inner {
  padding: var(--s-4);
  border-left: 1px solid var(--line);
}
.toc__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-3);
  margin-bottom: var(--s-3);
}
.toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc-counter;
}
.toc ol li {
  counter-increment: toc-counter;
  margin-bottom: .3rem;
}
.toc ol li a {
  font-family: var(--display);
  font-size: .88rem;
  color: var(--ink-2);
  text-decoration: none;
  display: block;
  padding: .35rem .5rem .35rem 0;
  border-left: 2px solid transparent;
  padding-left: .6rem;
  transition: color .15s ease, border-color .15s ease;
}
.toc ol li a:hover {
  color: var(--forest);
  border-left-color: var(--earth);
  text-decoration: none;
}
.toc ol li a::before {
  content: counter(toc-counter, decimal-leading-zero) " ";
  font-size: .7rem;
  color: var(--ink-3);
  font-weight: 500;
  margin-right: .3rem;
}

/* CROSS LINKS (body page) */
.cross-links {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: var(--s-7) 0;
}
.cross-links__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cross-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.cross-card {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
.cross-card:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
  color: var(--ink);
  text-decoration: none;
}
.cross-card__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: .4rem;
}
.cross-card__desc {
  font-family: var(--serif);
  font-size: .96rem;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ============================================
   MONEY PAGE (.page-money)
   ============================================ */

.money-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-7) var(--gutter) var(--s-5);
  border-bottom: 1px solid var(--line);
}
.money-hero__inner {
  max-width: 820px;
}
.money-hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin-bottom: var(--s-4);
}
.money-hero__lead {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: var(--s-5);
}
.money-hero__lead strong {
  color: var(--forest);
  font-weight: 600;
}
.money-hero__disclosure {
  padding: var(--s-4);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--earth-soft);
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.money-hero__disclosure strong {
  color: var(--forest);
  font-family: var(--display);
  font-weight: 600;
}

/* COMPARE TABLE */
.money-summary {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-7) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.money-summary__inner {
  max-width: 100%;
}
.money-summary__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}
.compare-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  min-width: 700px;
}
.compare-table thead {
  background: var(--forest);
  color: var(--paper);
}
.compare-table th {
  font-family: var(--display);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: var(--s-4);
}
.compare-table td {
  padding: var(--s-4);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-2);
  line-height: 1.5;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: var(--paper-2);
}
.compare-table td strong {
  color: var(--forest);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
}

.evidence {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.evidence--high {
  background: rgba(79, 128, 102, 0.18);
  color: var(--forest);
  border: 1px solid var(--forest-faint);
}
.evidence--medium {
  background: rgba(235, 212, 191, 0.5);
  color: var(--earth-2);
  border: 1px solid var(--earth-soft);
}
.evidence--mixed {
  background: var(--paper-3);
  color: var(--ink-2);
  border: 1px solid var(--line-2);
}

/* MONEY CONTENT */
.money-content {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--s-7) var(--gutter);
}
.money-content section {
  margin-bottom: var(--s-7);
}
.money-content h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  line-height: 1.15;
}
.money-content p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.money-content p strong {
  color: var(--forest);
  font-weight: 600;
}
.money-content p em {
  color: var(--forest);
  font-style: italic;
}

/* TWO ITEMS (wärme/kälte) */
.two-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin: var(--s-5) 0;
}
.item-block {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--forest-3);
}
.item-block__label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: var(--s-3);
}
.item-block p {
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: var(--s-3);
}
.item-block__link {
  display: inline-block;
  font-family: var(--display);
  font-size: .9rem;
  color: var(--earth);
  font-weight: 500;
  text-decoration: none;
}
.item-block__link:hover {
  color: var(--earth-2);
  text-decoration: underline;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin: var(--s-5) 0;
}
.product-card {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover {
  border-color: var(--forest-faint);
  transform: translateY(-2px);
}
.product-card__badge {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-3);
  background: var(--paper-2);
  padding: .2rem .5rem;
  border-radius: 3px;
  align-self: flex-start;
}
.product-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.product-card__desc {
  font-family: var(--serif);
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink-2);
  flex: 1;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-2) 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.product-card__rating {
  display: flex;
  gap: .2rem;
}
.product-card__rating .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-2);
}
.product-card__rating .dot--on {
  background: var(--earth);
}
.product-card__label {
  font-family: var(--display);
  font-size: .78rem;
  color: var(--ink-3);
  font-weight: 500;
}

/* SUPPLEMENT TABLE (rating bars) */
.supplement-table {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.supp-row {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-5);
  align-items: center;
}
.supp-row__name {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.supp-row__name strong {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--forest);
  font-weight: 600;
}
.supp-row__price {
  font-family: var(--display);
  font-size: .85rem;
  color: var(--ink-3);
  font-weight: 400;
}
.supp-row__bars {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bar {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .75rem;
  align-items: center;
}
.bar__label {
  font-family: var(--display);
  font-size: .8rem;
  color: var(--ink-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bar__track {
  position: relative;
  height: 6px;
  background: var(--paper-3);
  border-radius: 3px;
  overflow: hidden;
}
.bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 3px;
}
.bar--evidence .bar__fill {
  background: var(--forest);
}
.bar--safety .bar__fill {
  background: var(--earth);
}
.supp-row__note {
  grid-column: 1 / -1;
  padding-top: var(--s-3);
  margin-top: var(--s-3);
  border-top: 1px dashed var(--line);
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 0;
}

/* PRIORITY LIST */
.priority-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.priority-list li {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  border-radius: var(--radius);
}
.priority-list li:nth-child(1) { border-left-color: var(--forest); }
.priority-list li:nth-child(2) { border-left-color: var(--forest-2); }
.priority-list li:nth-child(3) { border-left-color: var(--forest-3); }
.priority-list li:nth-child(4) { border-left-color: var(--earth-soft); }
.priority-list li:nth-child(5) { border-left-color: var(--earth); }
.priority__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest);
  min-width: 38px;
  height: 38px;
  background: var(--paper-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.priority-list li strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--forest);
  display: block;
  margin-bottom: .3rem;
}
.priority-list li p {
  font-size: .98rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* CLOSING */
.closing-note {
  padding: var(--s-6);
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius);
  margin-top: var(--s-7);
}
.closing-note__text {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--paper);
  margin: 0;
}
.closing-note__text em {
  color: var(--earth-soft);
  font-style: italic;
}

/* ============================================
   FOOTER (all pages)
   ============================================ */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: var(--s-7) 0 var(--s-5);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: var(--s-7);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.brand--footer .brand__text {
  font-size: 1.2rem;
}
.site-footer__brand p {
  color: var(--ink-2);
  font-size: .96rem;
  line-height: 1.55;
  max-width: 280px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.site-footer__col h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--forest);
  margin-bottom: var(--s-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer__col a {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: .98rem;
  color: var(--ink-2);
  text-decoration: none;
  padding: .25rem 0;
  transition: color .15s ease;
}
.site-footer__col a:hover {
  color: var(--forest);
  text-decoration: none;
}
.site-footer__bottom {
  max-width: var(--max-w);
  margin: var(--s-6) auto 0;
  padding: var(--s-4) var(--gutter) 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: .85rem;
  color: var(--ink-3);
  text-align: center;
}

/* ============================================
   REGION PREVIEW (pillar page)
   ============================================ */

.region-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.region-card {
  display: block;
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
  position: relative;
}
.region-card:hover {
  border-color: var(--forest);
  transform: translateX(2px);
  text-decoration: none;
  color: var(--ink);
}
.region-card__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: .82rem;
  color: var(--earth);
  letter-spacing: 0.1em;
  margin-bottom: .3rem;
}
.region-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: .4rem;
  letter-spacing: -0.02em;
}
.region-card p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: var(--s-3);
}
.region-card__link {
  font-family: var(--display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--earth);
}
.region-card:hover .region-card__link {
  color: var(--earth-2);
}

/* ============================================
   LEGAL PAGES (.page-legal)
   ============================================ */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-7) var(--gutter) var(--s-8);
}
.legal-hero {
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}
.legal-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--s-3);
}
.legal-lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.legal-content h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: var(--s-4);
}
.legal-content p strong {
  color: var(--forest);
  font-weight: 600;
}
.legal-content a {
  color: var(--forest);
}
.legal-content .callout {
  margin: var(--s-5) 0;
}



@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .hero__right {
    display: none;
  }
  .intro__two-col {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .pillars__grid {
    grid-template-columns: 1fr;
  }
  .approach {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .body-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .symptom-selector__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .body-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    display: none;
  }
  .help-block__grid {
    grid-template-columns: 1fr;
  }
  .two-items {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .supp-row {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  .cross-links__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .site-footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Navigation collapses to hamburger at 960px */
  .menu-toggle {
    display: flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: var(--s-4);
    gap: 0;
    box-shadow: 0 8px 24px rgba(31, 58, 46, 0.08);
  }
  .nav--open {
    display: flex;
  }
  .nav a {
    padding: .75rem;
    border-bottom: 1px solid var(--line);
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .topbar__inner {
    position: relative;
  }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .hero { padding: var(--s-6) var(--gutter) var(--s-5); }
  .bands {
    grid-template-columns: 1fr;
  }
  .band + .band {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
  }
  .compare-table {
    font-size: .88rem;
  }
  .symptom-selector__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest);
  color: var(--paper);
  border-top: 3px solid var(--earth);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-5) var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-5);
  align-items: center;
}
.cookie-banner__content {
  max-width: 720px;
}
.cookie-banner__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--paper);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.cookie-banner__text {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--paper);
  margin: 0;
  opacity: 0.92;
}
.cookie-banner__text a {
  color: var(--earth-soft);
  text-decoration: underline;
  text-decoration-color: rgba(235, 212, 191, 0.5);
}
.cookie-banner__text a:hover {
  color: var(--paper);
  text-decoration-color: var(--paper);
}
.cookie-banner__actions {
  display: flex;
  gap: var(--s-3);
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--earth);
  color: var(--paper);
}
.cookie-btn--accept:hover {
  background: var(--earth-2);
}
.cookie-btn--reject {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245, 241, 232, 0.35);
}
.cookie-btn--reject:hover {
  background: rgba(245, 241, 232, 0.1);
  border-color: var(--paper);
}

/* Footer consent link */
.site-footer__consent-link {
  background: none;
  border: none;
  padding: .25rem 0;
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: .98rem;
  color: var(--ink-2);
  cursor: pointer;
  text-align: left;
  display: block;
  transition: color .15s ease;
}
.site-footer__consent-link:hover {
  color: var(--forest);
}

@media (max-width: 720px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding: var(--s-4) var(--gutter);
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: row;
  }
  .cookie-btn {
    flex: 1;
    padding: 0.8rem 1rem;
  }
  .cookie-banner__title {
    font-size: 1.05rem;
  }
  .cookie-banner__text {
    font-size: 0.92rem;
  }
}
