/* ==========================================================================
   homeo.eco — shared stylesheet
   Plain CSS, mobile-first. No build step, no dependencies.
   ========================================================================== */

:root {
  /* Brand palette */
  --green: #3bb87c;
  --green-dark: #2fa06a;
  --charcoal: #262535;
  --tint: #c6e9d6;
  --accent: #e36237;
  --bg: #ffffff;
  --bg-2: #f4f3f5;
  --text: #262535;
  --muted: #777777;
  --line: #e7e6ea;

  --tint-soft: #eaf7f0;
  --shadow-sm: 0 1px 2px rgba(38, 37, 53, .06), 0 2px 8px rgba(38, 37, 53, .05);
  --shadow-md: 0 10px 30px rgba(38, 37, 53, .10);
  --shadow-lg: 0 24px 60px rgba(38, 37, 53, .14);

  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1140px;
  --gut: clamp(20px, 5vw, 40px);

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--charcoal); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--charcoal); line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.6rem); }
p { color: #3c3b4d; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--charcoal); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(48px, 8vw, 96px); }
.section--tint { background: var(--bg-2); }
.section--green { background: var(--charcoal); color: #eef0f4; }
.section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: #c7c9d6; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--tint); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #4a4960; }
.section--green .lead { color: #cfd1dc; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mx-auto { margin-inline: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap; text-align: center;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(59,184,124,.32); }
.btn--primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(59,184,124,.40); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(227,98,55,.30); }
.btn--accent:hover { color:#fff; transform: translateY(-2px); filter: brightness(.96); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--charcoal); color: var(--charcoal); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--charcoal); }
.btn--light:hover { color: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ----- Header / nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); }
.brand:hover { color: inherit; }
.brand-logo { height: 42px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 36px; } }
.logo-badge { display: inline-flex; align-items: center; background: #fff; padding: 9px 14px; border-radius: 12px; }
.logo-badge img { height: 30px; width: auto; display: block; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-name { font-size: 1.5rem; font-weight: 600; color: var(--charcoal); letter-spacing: -.03em; }
.brand-name .dot { color: var(--green); }

.nav-menu { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: inline-block; padding: 9px 14px; border-radius: 10px;
  color: var(--charcoal); font-weight: 500; font-size: .98rem;
}
.nav-links a:hover { background: var(--bg-2); color: var(--charcoal); }
.nav-links a[aria-current="page"] { color: var(--green-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gut) 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a { padding: 13px 12px; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta { padding-top: 12px; }
  .nav-cta .btn { width: 100%; }
}

/* ----- Hero ----- */
.hero { padding-block: clamp(40px, 7vw, 86px); }
.hero-grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero h1 { margin-bottom: 18px; }
.hero .lead { margin-bottom: 28px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { position: relative; }
.hero-art img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; align-items: center; color: var(--muted); font-size: .95rem; }
.hero-trust strong { color: var(--charcoal); font-family: var(--font-head); }

/* Stat pills */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.section--green .stat { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: var(--green); line-height: 1; }
.section--green .stat .num { color: var(--tint); }
.stat .label { margin-top: 8px; color: var(--muted); font-size: .96rem; }
.section--green .stat .label { color: #c7c9d6; }

/* ----- Section headers ----- */
.sec-head { max-width: 64ch; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 + .lead { margin-top: 14px; }

/* ----- Cards / grids ----- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 8px; }
.card p { color: #4a4960; font-size: .98rem; }
.card .icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--tint-soft); margin-bottom: 16px; }
.card .icon svg { width: 28px; height: 28px; }

/* Solution grid cards (with art) */
.solution-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.solution-card .art { background: var(--bg-2); aspect-ratio: 3 / 2; }
.solution-card .art img { width: 100%; height: 100%; object-fit: cover; }
.solution-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.solution-card .tag { font-family: var(--font-head); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-dark); font-weight: 600; }
.solution-card .more { margin-top: auto; padding-top: 12px; font-family: var(--font-head); font-weight: 600; color: var(--green-dark); }

/* How it works steps */
.steps { display: grid; gap: 22px; counter-reset: step; }
.steps--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step .step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: 16px; font-size: 1.1rem;
}

/* Feature list with checks */
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 36px; color: #3c3b4d; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--tint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232fa06a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E");
  background-size: 15px; background-repeat: no-repeat; background-position: center;
}

/* Split feature blocks (alternating) */
.split { display: grid; gap: clamp(24px, 5vw, 56px); align-items: center; }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse .split-media { order: 2; } }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--bg-2); }
.split + .split { margin-top: clamp(40px, 6vw, 72px); }
.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-top: 22px; }
.mini-grid h4 { font-size: 1.02rem; margin-bottom: 4px; }
.mini-grid p { font-size: .94rem; color: #4a4960; }

/* Anchor offset for sticky header */
[id] { scroll-margin-top: 92px; }

/* ----- Testimonials ----- */
.quote-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px;
}
.quote .stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
.quote blockquote { font-size: 1.1rem; color: var(--charcoal); line-height: 1.55; }
.quote .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote .who img { width: 48px; height: 48px; border-radius: 50%; }
.quote .who .name { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); }
.quote .who .place { color: var(--muted); font-size: .9rem; }

/* ----- Pricing ----- */
.price-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow-md); position: relative; }
.price-card .badge {
  position: absolute; top: -13px; left: 28px; background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.price-card .tier { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--charcoal); }
.price-card .price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 4px; }
.price-card .price .amount { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--charcoal); line-height: 1; }
.price-card .price .was { color: var(--muted); text-decoration: line-through; font-size: 1.05rem; }
.price-card .price .per { color: var(--muted); font-size: .95rem; }
.price-card .blurb { color: var(--muted); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.price-card .checklist li { font-size: .96rem; }
.price-card .btn { margin-top: auto; }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th { font-family: var(--font-head); font-size: .95rem; color: var(--charcoal); background: var(--bg-2); position: sticky; top: 0; }
table.compare thead th:not(:first-child), table.compare td:not(:first-child) { text-align: center; }
table.compare tbody th { font-weight: 500; color: #3c3b4d; font-family: var(--font-body); }
table.compare tbody tr:nth-child(even) td, table.compare tbody tr:nth-child(even) th { background: #fbfbfc; }
table.compare .yes { color: var(--green-dark); font-weight: 700; }
table.compare .no { color: #c9c8d0; }
table.compare .col-pop { background: rgba(59,184,124,.06); }
table.compare small { color: var(--muted); display: block; font-size: .82rem; }

/* ----- FAQ accordion ----- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--charcoal);
}
.faq-q:hover { color: var(--green-dark); }
.faq-q .chev { flex: none; width: 22px; height: 22px; transition: transform .25s ease; color: var(--green); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { overflow: hidden; }
.faq-q[aria-expanded="true"] + .faq-a { max-height: 640px; }
.faq-a p { padding: 0 22px 22px; color: #4a4960; }
.faq-a p + p { padding-top: 14px; }

/* ----- CTA band ----- */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: var(--radius-lg); padding: clamp(34px, 6vw, 64px); color: #fff; text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 56ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 26px; }

/* ----- Contact form ----- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .95rem; margin-bottom: 7px; color: var(--charcoal); }
.field label .req { color: var(--accent); font-weight: 700; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(59,184,124,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.contact-grid { display: grid; gap: clamp(28px, 5vw, 52px); align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-aside .info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-aside .info-item .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--tint-soft); display: grid; place-items: center; flex: none; }
.contact-aside .info-item .icon svg { width: 22px; height: 22px; color: var(--green-dark); }
.contact-aside h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-aside p { color: var(--muted); font-size: .95rem; }

/* ----- Blog ----- */
.post-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .art { aspect-ratio: 16 / 9; background: var(--bg-2); }
.post-card .art img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--muted); font-family: var(--font-head); }
.post-meta .cat { color: var(--green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.post-card h3 { font-size: 1.22rem; line-height: 1.25; }
.post-card h3 a { color: var(--charcoal); }
.post-card h3 a:hover { color: var(--green-dark); }
.post-card .excerpt { color: #4a4960; font-size: .96rem; }
.post-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--green-dark); }

/* Article */
.article-hero { background: var(--bg-2); }
.article-head { max-width: 760px; margin-inline: auto; text-align: center; }
.article-head h1 { margin: 14px 0 16px; }
.article-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--bg-2); }
.article { max-width: 740px; margin-inline: auto; }
.article > * + * { margin-top: 1.15em; }
.article h2 { margin-top: 1.7em; font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.article h3 { margin-top: 1.3em; }
.article p, .article li { color: #36354a; font-size: 1.06rem; line-height: 1.75; }
.article ul, .article ol { padding-left: 1.3em; display: grid; gap: 8px; }
.article a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.article a:hover { color: var(--charcoal); }
.article strong { color: var(--charcoal); }
.article blockquote { border-left: 4px solid var(--green); background: var(--tint-soft); padding: 16px 22px; border-radius: 0 12px 12px 0; font-size: 1.1rem; }
.article .refs { font-size: .9rem; color: var(--muted); }
.article .refs li { font-size: .9rem; color: var(--muted); }
.article-cta { margin-top: 48px; }
.byline { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; color: var(--muted); font-size: .95rem; }
.byline img { width: 40px; height: 40px; border-radius: 50%; }

/* breadcrumb / back */
.crumb { font-size: .92rem; color: var(--muted); margin-bottom: 6px; font-family: var(--font-head); }
.crumb a { color: var(--green-dark); }

/* ----- Footer ----- */
.site-footer { background: var(--charcoal); color: #b9bacb; padding-block: clamp(44px, 6vw, 72px) 32px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer .brand-name { color: #fff; }
.footer-about p { color: #9a9bb0; margin-top: 16px; max-width: 38ch; font-size: .96rem; }
.footer-col h5 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #b9bacb; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #d8d9e6; }
.socials a:hover { background: var(--green); color: #fff; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: .88rem; color: #8a8ba0; }
.footer-bottom a { color: #8a8ba0; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.cookie-note { font-size: .82rem; color: #7c7d92; max-width: 70ch; margin-top: 14px; }

/* Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 26px; }
.mt-3 { margin-top: 40px; }
.hidden { display: none; }
.pill { display: inline-block; background: var(--tint); color: var(--green-dark); font-family: var(--font-head); font-weight: 600; font-size: .8rem; padding: 5px 14px; border-radius: var(--radius-pill); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
