:root {
  --cream: #f4efe6;
  --cream-2: #ebe4d3;
  --cream-3: #e0d7c2;
  --ink: #24231e;
  --ink-soft: #3a3831;
  --muted: #6c6a60;
  --line: #dcd3bf;
  --sage: #8a9a6e;
  --sage-dark: #6b7e52;
  --sage-soft: #d9dfc9;
  --red: #e51a1a;
  --red-dark: #b81414;
  --radius: 22px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --container: 1240px;
  --section-y: 120px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html.dark {
  --cream: #1a1815;
  --cream-2: #232019;
  --cream-3: #2b2720;
  --ink: #f1ecdf;
  --ink-soft: #d7d0be;
  --muted: #9a9383;
  --line: #363128;
  --sage-soft: #2f3a28;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
body { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- TYPE ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--muted);
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(44px, 6vw, 92px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em; }

p { color: var(--ink-soft); }
.lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--sage-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-dark); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 50%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav-brand {
  display: flex; align-items: center;
  height: 100%;
}
.nav-brand img {
  height: 100%; width: auto; display: block;
  padding: 6px 0;
  transition: transform .2s ease;
}
.nav-brand:hover img { transform: scale(1.03); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14.5px; color: var(--ink-soft);
  border-radius: 999px; font-weight: 500;
  transition: all .15s ease;
}
.nav-links a:hover { color: var(--ink); background: color-mix(in oklab, var(--ink) 6%, transparent); }
.nav-links a.active { color: var(--ink); background: color-mix(in oklab, var(--ink) 8%, transparent); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
html.dark .hero { background: #0e0d0a; }
.hero-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 80px;
}
.hero h1 {
  color: var(--cream);
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 400;
  color: var(--red);
}
.hero-meta {
  display: flex; flex-direction: column; gap: 28px;
  padding-bottom: 8px;
}
.hero-meta p { color: color-mix(in oklab, var(--cream) 80%, transparent); font-size: 17px; max-width: 40ch; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero .btn-primary { background: var(--cream); color: var(--ink); }
.hero .btn-primary:hover { background: var(--sage); color: var(--ink); }
.hero .btn-ghost { color: var(--cream); border-color: color-mix(in oklab, var(--cream) 30%, transparent); }
.hero .btn-ghost:hover { border-color: var(--cream); }

.hero-marquee {
  display: flex; gap: 48px;
  padding: 20px 0;
  border-top: 1px solid color-mix(in oklab, var(--cream) 12%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 12%, transparent);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 70%, transparent);
  overflow: hidden;
  white-space: nowrap;
}
.hero-marquee .track {
  display: inline-flex; gap: 48px;
  animation: scroll 40s linear infinite;
  flex-shrink: 0;
}
.hero-marquee .track span { display: inline-flex; align-items: center; gap: 12px; }
.hero-marquee .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-photo {
  position: relative;
  padding: 0;
  margin-top: 0;
}
.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay-stats {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex; gap: 12px;
}
.stat-chip {
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 2px;
  min-width: 140px;
}
.stat-chip .n { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.stat-chip .l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

@media (max-width: 880px) {
  .hero-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .hero-photo img { height: 420px; }
  .hero-overlay-stats { left: 16px; bottom: 16px; }
}

/* ---------- SECTIONS ---------- */
.section { padding: var(--section-y) 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-cream-2 { background: var(--cream-2); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink p { color: color-mix(in oklab, var(--cream) 75%, transparent); }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .right { justify-self: end; max-width: 44ch; }
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ---------- TRUST STRIP ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  background: var(--cream);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.trust-item .num {
  font-size: 38px; font-weight: 600; letter-spacing: -0.03em;
}
.trust-item .lbl {
  font-size: 14px; color: var(--muted);
}
@media (max-width: 880px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.service-card .ph {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.service-card .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .ph img { transform: scale(1.04); }
.service-card .num-tag {
  position: absolute; top: 18px; left: 18px;
  display: grid; place-items: center;
}
.service-card .tag-right {
  position: absolute; top: 18px; right: 18px;
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 12px; font-weight: 500;
  padding: 8px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.service-card .body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.service-card h3 { }
.service-card .price {
  margin-top: 14px; display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.service-card .price strong { font-size: 24px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.service-card .more {
  margin-top: 18px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- ABOUT SPLIT ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.split .ph {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split .ph img { width: 100%; height: 100%; object-fit: cover; }
.split .copy { max-width: 50ch; }
.split .copy p + p { margin-top: 16px; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split .ph { aspect-ratio: 4/3; }
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.testi-card .quote {
  font-size: 18px; line-height: 1.5; color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.testi-card .stars { color: var(--sage); font-size: 14px; letter-spacing: 2px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.testi-card .av { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-soft); display: grid; place-items: center; font-weight: 600; color: var(--sage-dark); font-size: 14px; }
.testi-card .n { font-weight: 600; font-size: 14px; }
.testi-card .d { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card { display: flex; flex-direction: column; gap: 18px; cursor: pointer; }
.blog-card .ph {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: var(--sage-soft);
}
.blog-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .ph img { transform: scale(1.05); }
.blog-card .meta { display: flex; gap: 12px; font-size: 13px; color: var(--muted); }
.blog-card h3 { font-size: 22px; }
.blog-card p { font-size: 15px; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--cream); max-width: 18ch; }
.cta-band p { color: color-mix(in oklab, var(--cream) 75%, transparent); }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-band .btn-primary { background: var(--red); color: #fff; }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--ink); }
.cta-band .btn-ghost { color: var(--cream); border-color: color-mix(in oklab, var(--cream) 28%, transparent); }
@media (max-width: 880px) {
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-band .actions { align-items: stretch; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--cream-2);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 64px;
}
.footer h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.footer a { font-size: 15px; color: var(--ink-soft); display: block; padding: 4px 0; }
.footer a:hover { color: var(--ink); }
.footer .brand-col { max-width: 36ch; }
.footer .brand-col p { font-size: 14px; margin-top: 16px; color: var(--muted); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 12px; } }

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: 80px 0 60px;
  background: var(--ink);
  color: var(--cream);
}
.page-header h1 { color: var(--cream); font-weight: 500; }
.page-header h1 em { font-style: italic; font-family: 'Fraunces', serif; color: var(--red); font-weight: 400; }
.page-header p { color: color-mix(in oklab, var(--cream) 75%, transparent); margin-top: 20px; max-width: 55ch; font-size: 19px; }
.page-header .crumbs { font-size: 13px; color: color-mix(in oklab, var(--cream) 60%, transparent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; display: flex; gap: 10px; align-items: center;}
.page-header .crumbs .sep { opacity: 0.4; }

/* ---------- FORMS ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  transition: border-color .15s ease;
  font-size: 15px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--ink);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row.full { grid-column: 1 / -1; }

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  text-align: left;
  color: var(--ink);
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 18px; transition: all .2s ease;
  color: var(--muted);
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--ink); color: var(--cream); border-color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 16px; }

/* ---------- PRICING ---------- */
.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.price-card.highlight { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.price-card.highlight h3, .price-card.highlight .price-num { color: var(--cream); }
.price-card.highlight p { color: color-mix(in oklab, var(--cream) 75%, transparent); }
.price-card.highlight li { color: color-mix(in oklab, var(--cream) 85%, transparent); }
.price-card.highlight .price-num::after { color: color-mix(in oklab, var(--cream) 60%, transparent); }
.price-num {
  font-size: 56px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.price-num small { font-size: 16px; color: var(--muted); font-weight: 400; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); }
.price-card.highlight ul { border-color: color-mix(in oklab, var(--cream) 20%, transparent); }
.price-card li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.price-card li::before { content: "●"; color: var(--sage); font-size: 10px; line-height: 1.6; }
.price-card.highlight li::before { color: var(--sage); }

/* ---------- TWEAKS PANEL ---------- */
.tweaks {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.25);
  padding: 20px;
  width: 300px;
  z-index: 200;
  font-size: 13px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h5 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; color: var(--muted); }
.tweaks .row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tweaks .chip {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-soft);
  transition: all .15s;
}
.tweaks .chip:hover { border-color: var(--ink); }
.tweaks .chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.tweaks .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.tweaks .head strong { font-size: 14px; }
.tweaks .close { width: 28px; height: 28px; border-radius: 50%; background: color-mix(in oklab, var(--ink) 7%, transparent); display: grid; place-items: center; }

/* ---------- MISC ---------- */
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.text-red { color: var(--red); }
.bg-red { background: var(--red); color: #fff; }
.accent-paw {
  width: 18px; height: 18px;
  background: var(--red);
  -webkit-mask: radial-gradient(circle at 30% 30%, #000 35%, transparent 36%) 0 0/10px 10px no-repeat,
                radial-gradient(circle at 70% 30%, #000 35%, transparent 36%) 8px 0/10px 10px no-repeat,
                radial-gradient(circle at 50% 70%, #000 50%, transparent 51%) 3px 6px/14px 14px no-repeat;
  mask: radial-gradient(circle at 50% 60%, #000 48%, transparent 49%);
  display: inline-block;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
}
.badge.badge-red { background: color-mix(in oklab, var(--red) 15%, transparent); color: var(--red); }
.badge.badge-red .dot { background: var(--red); }
.stars { color: var(--red) !important; }
.eyebrow::before { background: var(--red); height: 2px; }
.service-card:hover { border-color: var(--red); }
/* Paw-shaped badge with number — matching the logo style.
   Background is transparent; 4 red beans + big red pad drawn via SVG,
   with the number sitting overlaid on the pad in black. */
.service-card .num-tag {
  position: absolute; top: 14px; left: 14px;
  width: 64px; height: 64px;
  padding: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.service-card .num-tag::before {
  content: "";
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.service-card .num-tag::after {
  position: absolute;
  left: 50%; top: 70%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.02em;
}
/* Per-card: we set the ::after content via the data-num attr from JSX
   (the number already lives in the element's text). Instead, hide text
   and draw paw beans as background. */
.service-card .num-tag { text-indent: -9999px; }
.service-card .num-tag[data-num]::after { content: attr(data-num); text-indent: 0; }

/* The paw is drawn with a single red SVG background */
.service-card .num-tag::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23e51a1a'><ellipse cx='50' cy='70' rx='22' ry='22'/><ellipse cx='18' cy='40' rx='10' ry='12' transform='rotate(-20 18 40)'/><ellipse cx='35' cy='22' rx='9' ry='11' transform='rotate(-8 35 22)'/><ellipse cx='65' cy='22' rx='9' ry='11' transform='rotate(8 65 22)'/><ellipse cx='82' cy='40' rx='10' ry='12' transform='rotate(20 82 40)'/></g></svg>");
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.divider {
  height: 1px; background: var(--line); width: 100%;
}

.scroll-reveal { opacity: 0; transform: translateY(20px); transition: all .7s cubic-bezier(.2,.8,.2,1); }
.scroll-reveal.in { opacity: 1; transform: none; }
