/* ==========================================================================
   Botanic Resources — stylesheet
   Palette derived from the logo:
     sage   #99cb62   (accent / the green squares)
     slate  #7698b5   (the large translucent wordmark)
     navy   #3a4e6b   (the overprinted wordmark)
   ========================================================================== */

:root {
  /* Brand */
  --sage:        #99cb62;
  --sage-deep:   #7aa845;
  --sage-tint:   #eef5e4;
  --slate:       #7698b5;
  --slate-tint:  #e6edf3;
  --navy:        #3a4e6b;
  --navy-deep:   #2b3a51;

  /* Neutrals */
  --paper:       #fbfcfa;
  --paper-alt:   #f2f5f1;
  --ink:         #22303f;
  --ink-soft:    #55697d;
  --rule:        #dde4e9;

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

  /* Scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.8rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --measure: 62ch;

  --radius: 3px;
  --shadow-sm: 0 1px 2px rgba(34,48,63,.06), 0 4px 12px rgba(34,48,63,.05);
  --shadow-md: 0 8px 28px rgba(34,48,63,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--navy);
  font-variation-settings: "SOFT" 20, "WONK" 0;
}
p { margin: 0 0 1.15em; max-width: var(--measure); }
a { color: var(--navy); text-underline-offset: 3px; }
:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: min(1240px, 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-alt); }
.section--navy { background: var(--navy); color: #dbe4ec; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--sage);
  flex: none;
}
.section--navy .eyebrow { color: var(--sage); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 54ch;
}
.section--navy .lede { color: #b9c9d8; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,252,250,.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--rule);
  box-shadow: 0 2px 14px rgba(34,48,63,.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .9rem;
}
.brand { display: block; line-height: 0; flex: none; }
.brand img { width: clamp(160px, 22vw, 215px); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: .55rem .8rem;
  cursor: pointer;
  color: var(--navy);
  font: inherit;
  font-size: var(--step--1);
  font-weight: 600;
  align-items: center;
  gap: .5rem;
}
.nav__toggle svg { width: 18px; height: 18px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: .4rem;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__list a:hover, .nav__list a[aria-current="page"] { color: var(--navy); }
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }

.nav__list .btn { text-transform: none; letter-spacing: 0; color: #fff; }
.nav__list .btn::after { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .01em;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); }
.btn--sage { background: var(--sage); color: var(--navy-deep); }
.btn--sage:hover { background: var(--sage-deep); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--slate);
}
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--onnavy { background: var(--sage); color: var(--navy-deep); }
.btn--onnavy:hover { background: #fff; }

/* ==========================================================================
   Hero — the logo's overlay idea, rebuilt at page scale
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(-45deg, var(--navy-deep), var(--navy), var(--slate), var(--sage-deep));
  background-size: 300% 300%;
  animation: heroDrift 20s ease-in-out infinite;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(43,58,81,.55) 0%, transparent 55%);
}
.hero__inner {
  width: min(1240px, 100% - (var(--gutter) * 2));
  margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero__title {
  font-size: var(--step-4);
  color: #fff;
  max-width: 16ch;
  margin-bottom: 1.1rem;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
/* The overprint: a sage word layered over the white headline, echoing the logo */
.hero__title em {
  font-style: normal;
  color: var(--sage);
  position: relative;
  display: inline-block;
}
.hero__text {
  color: #cfdbe6;
  font-size: var(--step-1);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Small geometric marker lifted from the logo's squares */
.hero__marks {
  display: flex;
  gap: 6px;
  margin-bottom: 1.75rem;
}
.hero__marks span {
  width: 16px; height: 16px;
  background: var(--sage);
}
.hero__marks span:nth-child(2) {
  background: transparent;
  border: 2px solid var(--sage);
}

/* ---------- Intro / two column ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split--media { align-items: center; }
.split__figure { position: relative; }
.split__figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
/* offset sage block behind the image — logo geometry again */
.split__figure::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 55%;
  height: 55%;
  background: var(--sage-tint);
  border-left: 4px solid var(--sage);
  z-index: -1;
}

/* ---------- Services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 42px; height: 42px;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}
.card h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.card p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---------- Process (a real sequence, so numbers are justified) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 2.75rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--sage);
  letter-spacing: .02em;
}
.step::after {
  content: "";
  position: absolute;
  top: 2rem; left: 0;
  width: 32px; height: 2px;
  background: var(--slate);
  opacity: .5;
}
.step h3 { font-size: var(--step-1); margin-bottom: .35rem; }
.step p { font-size: var(--step--1); color: var(--ink-soft); margin: 0; }
.section--navy .step p { color: #b9c9d8; }
.section--navy .step::after { background: var(--slate); opacity: .7; }

/* ==========================================================================
   Gallery — the signature. Sage scrim reveals the caption, as the
   logo's wordmark reveals through its own overlay.
   ========================================================================== */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0 2.5rem;
}
.filter {
  font: inherit;
  font-size: var(--step--1);
  font-weight: 500;
  padding: .5rem 1.1rem;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filter:hover { border-color: var(--slate); color: var(--navy); }
.filter[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.gallery {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }

.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius);
  line-height: 0;
}
.gallery__item img {
  width: 100%;
  transition: transform .6s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,78,107,.88), rgba(122,168,69,.35) 55%, transparent 85%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.25rem;
  text-align: left;
  color: #fff;
  font-family: var(--body);
  font-size: var(--step--1);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.045); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }
.gallery__item:hover .gallery__cap,
.gallery__item:focus-visible .gallery__cap { opacity: 1; transform: none; }

.gallery__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(30,41,56,.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[open], .lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__cap {
  color: #cfdbe6;
  font-size: var(--step--1);
  text-align: center;
  margin-top: 1rem;
  max-width: 60ch;
}
.lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; }
.lightbox__btn {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__btn svg { width: 20px; height: 20px; }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.quote {
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--sage);
  padding: 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote p {
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1rem;
  font-variation-settings: "SOFT" 40;
}
.quote cite {
  font-style: normal;
  font-size: var(--step--1);
  color: var(--sage);
  font-weight: 600;
  letter-spacing: .04em;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .4rem; }
.field label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy);
}
.field .hint { font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--step-0);
  padding: .8rem .95rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(118,152,181,.2);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field .error {
  font-size: .8rem;
  color: #c0392b;
  min-height: 1em;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Captcha widget mount (only used if hCaptcha is enabled — see main.js) */
.captcha-mount { min-height: 78px; }
.captcha-mount[hidden] { display: none; min-height: 0; }

.form__note {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.form__status {
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: var(--step--1);
  display: none;
}
.form__status.is-visible { display: block; }
.form__status--ok { background: var(--sage-tint); border-left: 3px solid var(--sage); color: #33501a; }
.form__status--err { background: #fdecea; border-left: 3px solid #c0392b; color: #922b21; }

.contact__aside {
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.contact__list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__list svg { width: 20px; height: 20px; color: var(--sage-deep); flex: none; margin-top: 3px; }
.contact__list strong { display: block; font-size: var(--step--1); color: var(--navy); }
.contact__list span, .contact__list a { font-size: var(--step--1); color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #9fb2c4;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: var(--step--1);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer img { width: 190px; margin-bottom: 1.1rem; }
.footer h4 {
  color: #fff;
  font-family: var(--body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { color: #9fb2c4; text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: var(--sage); }
.footer p { color: #9fb2c4; }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: .8rem;
}
.footer__base ul { display: flex; gap: 1.25rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translate(-50%, calc(100% + 2rem));
  width: min(760px, calc(100% - 2rem));
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(34,48,63,.2);
  padding: 1.5rem;
  z-index: 250;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  opacity: 0;
  visibility: hidden;
}
.cookie.is-open { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.cookie h2 { font-size: var(--step-1); margin-bottom: .4rem; }
.cookie p { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.6; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__actions .btn { font-size: .85rem; padding: .7rem 1.3rem; }

.cookie__prefs {
  display: none;
  margin: 1rem 0;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  gap: .9rem;
}
.cookie__prefs.is-open { display: grid; }
.cookie__pref {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .85rem;
}
.cookie__pref input { margin-top: .25rem; flex: none; width: 17px; height: 17px; accent-color: var(--sage-deep); }
.cookie__pref strong { display: block; color: var(--navy); }
.cookie__pref span { color: var(--ink-soft); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 68px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter) 1.75rem;
    transform: translateY(-130%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--rule); }
  .nav__list li:last-child { border: 0; padding-top: 1rem; }
  .nav__list a { display: block; padding: .9rem 0; font-size: var(--step-0); }
  .nav__list a::after { display: none; }
  .nav__list .btn { justify-content: center; }
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.stack > * + * { margin-top: 1.5rem; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Legal pages */
.legal { max-width: 78ch; }
.legal h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.legal h3 { font-size: var(--step-1); margin-top: 1.75rem; }
.legal ul { padding-left: 1.25rem; color: var(--ink-soft); }
.legal li { margin-bottom: .5rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: var(--step--1); }
.legal th, .legal td { text-align: left; padding: .75rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.legal th { color: var(--navy); font-weight: 600; }

@keyframes heroDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; background-position: 0% 50%; }
}