/* ==========================================================================
   CGK Accounting Services — design system
   Mobile-first. No frameworks, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette.
     Carried over from the original site — lime green (#99CC00), charcoal and
     the warm off-white #E4E2DC — but pushed harder: the greens are more
     saturated, the neutrals warmer, and gold/tangerine come in as accents. */
  --ink-900: #101207;
  --ink-800: #1c2014;
  --ink-700: #282d1c;
  --char-600: #3a4029;
  --char-500: #4e5440;

  --lime-300: #dcfb5a;
  --lime-400: #b6ec1f;
  --lime-500: #8fc400;
  --lime-600: #5f8500;

  --gold-300: #ffe08a;
  --gold-400: #ffc42e;
  --gold-500: #f0a500;

  --forest-500: #1e9e57;
  --tangerine-500: #ff6a1f;
  --danger-500: #d5342b;

  --stone-50: #f8f8f4;
  --stone-100: #f0efe9;
  --stone-200: #e4e2dc;
  --stone-300: #c8c6bd;
  --stone-500: #7c7b76;
  --stone-600: #5c5b54;
  --stone-700: #3d3c36;

  --white: #ffffff;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--stone-50);
  --text: var(--ink-800);
  --text-muted: var(--stone-600);
  --border: var(--stone-200);
  --accent: var(--lime-600);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--lime-400) 0%, var(--lime-500) 55%, #6c9a00 100%);
  /* Deeper version for gradient-clipped text, which needs to stay legible on white. */
  --grad-brand-deep: linear-gradient(135deg, #79ab00 0%, var(--lime-600) 60%, #47660a 100%);
  --grad-warm: linear-gradient(135deg, var(--gold-400) 0%, #ff7a1f 100%);
  --grad-dark: linear-gradient(160deg, var(--ink-900) 0%, #1b2112 45%, #2a3a14 100%);
  --grad-text: linear-gradient(100deg, var(--lime-300) 0%, var(--lime-400) 42%, var(--gold-300) 100%);

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(16, 18, 7, 0.06), 0 1px 3px rgba(16, 18, 7, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 18, 7, 0.07), 0 12px 28px rgba(16, 18, 7, 0.08);
  --shadow-lg: 0 10px 24px rgba(16, 18, 7, 0.09), 0 28px 60px rgba(16, 18, 7, 0.13);
  /* Accent glows are centred (no y-offset) with a spread radius, so the halo
     sits evenly around the whole element instead of pooling underneath it.
     A separate hairline shadow does the grounding. */
  --shadow-lime: 0 0 16px 1px rgba(143, 196, 0, 0.32), 0 1px 3px rgba(16, 18, 7, 0.12);
  --shadow-lime-lift: 0 0 26px 5px rgba(143, 196, 0, 0.42), 0 2px 6px rgba(16, 18, 7, 0.14);
  --shadow-gold: 0 0 16px 1px rgba(240, 165, 0, 0.3), 0 1px 3px rgba(16, 18, 7, 0.12);
  --shadow-gold-lift: 0 0 26px 5px rgba(240, 165, 0, 0.4), 0 2px 6px rgba(16, 18, 7, 0.14);

  /* Geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Layout */
  --wrap: 1160px;
  --wrap-narrow: 760px;
  --gutter: 20px;
  --header-h: 68px;

  /* Type */
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 720px) {
  :root {
    --gutter: 32px;
    --header-h: 80px;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--ink-900);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.05rem, 6.2vw, 3.65rem);
  letter-spacing: -0.032em;
}
h2 {
  font-size: clamp(1.65rem, 4.4vw, 2.5rem);
  letter-spacing: -0.028em;
}
h3 {
  font-size: clamp(1.18rem, 2.6vw, 1.4rem);
}
h4 {
  font-size: 1.0625rem;
}

p {
  margin: 0 0 1.15em;
  text-wrap: pretty;
}

a {
  color: var(--lime-600);
  text-decoration-color: color-mix(in srgb, var(--lime-600) 35%, transparent);
  text-underline-offset: 3px;
  transition: color 0.18s var(--ease), text-decoration-color 0.18s var(--ease);
}

a:hover {
  color: var(--ink-900);
  text-decoration-color: currentColor;
}

ul,
ol {
  padding-left: 1.2em;
}

li + li {
  margin-top: 0.35em;
}

strong {
  font-weight: 700;
  color: var(--ink-900);
}

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--lime-400);
  color: var(--ink-900);
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

.section {
  padding-block: clamp(3.25rem, 8vw, 6rem);
}

.section--tight {
  padding-block: clamp(2.25rem, 5vw, 3.5rem);
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--grad-dark);
  color: #cfe0ef;
  position: relative;
  overflow: hidden;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark strong {
  color: var(--white);
}

.section--dark a {
  color: var(--lime-300);
}
.section--dark a:hover {
  color: var(--white);
}

.stack > * + * {
  margin-top: 1.1rem;
}

/* Stop short grid items from stretching to match their tallest neighbour. */
.grid--start {
  align-items: start;
}

.grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 620px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 620px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 940px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 620px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-600);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
}

.section--dark .eyebrow {
  color: var(--lime-300);
}

.lede {
  font-size: clamp(1.075rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 450;
}

.section--dark .lede {
  color: #a9b09a;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* An h2 that sits inside a card or panel rather than leading a section. */
.h-compact {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--grad-brand);
  --btn-fg: #18250a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.55rem;
  min-height: 52px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-lime);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), filter 0.18s var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  filter: saturate(1.15) brightness(1.04);
  box-shadow: var(--shadow-lime-lift);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  --btn-bg: var(--grad-warm);
  --btn-fg: #3a2205;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  box-shadow: var(--shadow-gold-lift);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink-900);
  box-shadow: none;
  border: 2px solid var(--stone-300);
}
.btn--ghost:hover {
  box-shadow: none;
  border-color: var(--ink-900);
  background: var(--white);
}

/* Ghost buttons sitting on any dark surface */
.section--dark .btn--ghost,
.hero .btn--ghost,
.page-hero .btn--ghost,
.cta-band .btn--ghost,
.quote .btn--ghost {
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.quote .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--sm {
  min-height: 44px;
  padding: 0.6rem 1.15rem;
  font-size: 0.9375rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.text-center .btn-row,
.section-head--center .btn-row {
  justify-content: center;
}

.btn .ico {
  width: 18px;
  height: 18px;
  flex: none;
}

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--lime-600);
}

.arrow-link::after {
  content: "→";
  transition: transform 0.18s var(--ease);
}

.arrow-link:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

/* The frosted backdrop lives on a pseudo-element rather than the header
   itself: backdrop-filter on an element makes it the containing block for
   position:fixed descendants, which would trap the mobile nav panel inside
   the header's 68px box. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
}

.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(16, 18, 7, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink-900);
  flex: none;
}

.brand:hover {
  color: var(--ink-900);
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lime);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
}

.brand__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
}

@media (max-width: 400px) {
  .brand__tag {
    display: none;
  }
}

/* Nav toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--ink-900);
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background-color 0.2s var(--ease);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.nav-toggle__bars::before {
  top: -7px;
}
.nav-toggle__bars::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.site-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--white);
  padding: 1.25rem var(--gutter) 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-nav__list > li + li {
  margin-top: 0;
  border-top: 1px solid var(--stone-100);
}

.site-nav__link {
  display: block;
  padding: 0.95rem 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  text-decoration: none;
}

.site-nav__link[aria-current="page"] {
  color: var(--lime-600);
}

/* Submenu */
.has-sub {
  position: relative;
}

.sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 0.25rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  text-align: left;
}

.sub-toggle .chev {
  width: 12px;
  height: 12px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.22s var(--ease);
  flex: none;
  color: var(--stone-500);
}

.sub-toggle[aria-expanded="true"] .chev {
  transform: rotate(-135deg) translate(-3px, -3px);
}

.submenu {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0 0 0 0.9rem;
  border-left: 2px solid var(--stone-200);
  display: none;
}

.submenu.is-open {
  display: block;
}

.submenu li + li {
  margin-top: 0;
}

.submenu a {
  display: block;
  padding: 0.6rem 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-700);
  text-decoration: none;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  color: var(--lime-600);
}

.site-nav__cta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.7rem;
}

/* Desktop nav */
@media (min-width: 1000px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    overflow: visible;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav__list > li + li {
    border-top: 0;
  }

  .site-nav__link,
  .sub-toggle {
    padding: 0.5rem 0.8rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--r-pill);
    width: auto;
    gap: 0.35rem;
    transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
  }

  .site-nav__link:hover,
  .sub-toggle:hover {
    background: var(--stone-100);
  }

  .site-nav__link[aria-current="page"] {
    background: color-mix(in srgb, var(--lime-400) 18%, transparent);
    color: var(--lime-600);
  }

  .sub-toggle .chev {
    width: 7px;
    height: 7px;
    border-width: 2px;
  }

  .submenu {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    margin: 0;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  }

  .has-sub::after {
    /* hover bridge so the menu doesn't close in the gap */
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }

  .has-sub:hover .submenu,
  .has-sub:focus-within .submenu,
  .submenu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu a {
    padding: 0.6rem 0.75rem;
    border-radius: var(--r-sm);
    font-size: 0.9375rem;
  }

  .submenu a:hover {
    background: var(--stone-100);
  }

  .site-nav__cta {
    margin: 0 0 0 0.75rem;
    display: flex;
    gap: 0.5rem;
  }

  .site-nav__cta .btn--ghost {
    display: none;
  }
}

@media (min-width: 1120px) {
  .site-nav__cta .btn--ghost {
    display: inline-flex;
  }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: #d4d8c8;
  overflow: hidden;
  padding-block: clamp(3rem, 9vw, 6.5rem) clamp(3.5rem, 9vw, 7rem);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 46vw;
  min-width: 320px;
  aspect-ratio: 1;
  top: -14%;
  right: -12%;
  background: radial-gradient(circle, var(--lime-500) 0%, transparent 68%);
}

.hero::after {
  width: 40vw;
  min-width: 280px;
  aspect-ratio: 1;
  bottom: -22%;
  left: -14%;
  background: radial-gradient(circle, var(--forest-500) 0%, transparent 68%);
  opacity: 0.4;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.6em;
}

.hero .lede {
  color: #a9b09a;
  max-width: 34rem;
}

.hero .btn-row {
  margin-top: 1.75rem;
}

.hero__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #8a9179;
}

/* Badge pill above headline */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem 0.42rem 0.5rem;
  margin-bottom: 1.3rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #dfe3d4;
}

.hero__badge b {
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--grad-warm);
  color: #3a2205;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

a.hero__badge,
a.hero__badge:hover,
a.hero__badge:focus,
a.hero__badge:visited {
  color: #dfe3d4;
  text-decoration: none;
  cursor: pointer;
}

/* Hero card (right column) */
.hero__card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r-xl);
  padding: clamp(1.4rem, 3.5vw, 2rem);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.hero__card h2 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.checklist li {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  font-size: 0.975rem;
  line-height: 1.5;
  color: #d0d5c3;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--grad-brand);
  /* checkmark */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm5 7.2-6.3 6.3a1 1 0 0 1-1.4 0L6 12.2l1.4-1.4 2.6 2.6 5.6-5.6L17 9.2Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm5 7.2-6.3 6.3a1 1 0 0 1-1.4 0L6 12.2l1.4-1.4 2.6 2.6 5.6-5.6L17 9.2Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.checklist--light li {
  color: var(--stone-700);
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--grad-dark);
  color: #a9b09a;
  overflow: hidden;
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(2.75rem, 7vw, 4.75rem);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 44vw;
  min-width: 300px;
  aspect-ratio: 1;
  top: -35%;
  right: -10%;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  background: radial-gradient(circle, var(--lime-500) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lede {
  max-width: 46rem;
  color: #a9b09a;
}

/* Breadcrumbs */
.crumbs {
  margin-bottom: 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.crumbs li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8a9179;
}

.crumbs li + li::before {
  content: "/";
  color: #5c6450;
}

.crumbs a {
  color: #a9b09a;
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--lime-300);
}

/* --------------------------------------------------------------------------
   8. Trust bar
   -------------------------------------------------------------------------- */
.trustbar {
  border-block: 1px solid var(--border);
  background: var(--white);
  padding-block: 1.1rem;
}

.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trustbar__list li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--stone-600);
}

.trustbar__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.3rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.card:hover::before,
.card:focus-within::before {
  transform: scaleX(1);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card h2 {
  font-size: clamp(1.22rem, 2.8vw, 1.5rem);
  margin-bottom: 0.45rem;
}

.card h2 a {
  color: inherit;
  text-decoration: none;
}

.card h2 a:hover {
  color: var(--lime-600);
}

.card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1rem;
}

.card > :last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--lime-400) 16%, transparent);
  color: var(--lime-600);
  flex: none;
}

.card__icon svg {
  width: 25px;
  height: 25px;
}

.card--gold .card__icon {
  background: color-mix(in srgb, var(--gold-400) 22%, transparent);
  color: #b56f00;
}
.card--gold::before {
  background: var(--grad-warm);
}

.card--forest .card__icon {
  background: color-mix(in srgb, var(--forest-500) 14%, transparent);
  color: var(--forest-500);
}
.card--forest::before {
  background: linear-gradient(135deg, var(--forest-500), #6fe0a6);
}

.card--tangerine .card__icon {
  background: color-mix(in srgb, var(--tangerine-500) 14%, transparent);
  color: var(--tangerine-500);
}
.card--tangerine::before {
  background: linear-gradient(135deg, var(--tangerine-500), #ffb573);
}

/* Full-card link overlay */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Plain info card (no hover lift) */
.panel {
  padding: clamp(1.4rem, 3.5vw, 2rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.panel > :last-child {
  margin-bottom: 0;
}

.panel--accent {
  border-left: 4px solid var(--lime-500);
}

.section--dark .panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* Icon + prose callout. Stacks on small screens so the text column keeps its
   full measure instead of being squeezed beside the icon. */
.callout {
  display: grid;
  gap: 0.9rem;
}

.callout > :last-child > :last-child {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .callout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.4rem;
  }
}

/* Notice / policy callout */
.notice {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--gold-400) 13%, var(--white));
  border: 1px solid color-mix(in srgb, var(--gold-500) 34%, transparent);
  font-size: 0.9688rem;
}

.notice__icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: #b56f00;
  margin-top: 2px;
}

.notice > div > :last-child {
  margin-bottom: 0;
}

.notice strong {
  color: #7a4a00;
}

/* Pull quote */
.quote {
  position: relative;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--r-xl);
  background: var(--grad-dark);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.quote::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -10% -60% auto;
  right: -8%;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-500) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.55;
}

.quote p {
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.quote footer {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-300);
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 860px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: var(--white);
  padding: 1.4rem 1.1rem;
  text-align: center;
}

.stat__num {
  display: block;
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  background: var(--grad-brand-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--stone-600);
}

/* --------------------------------------------------------------------------
   11. Feature list / split layouts
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split--reverse > :first-child {
    order: 2;
  }
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  margin: 0;
}

.feature__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--lime-400) 16%, transparent);
  color: var(--lime-600);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.section--dark .feature__icon {
  background: rgba(182, 236, 31, 0.16);
  color: var(--lime-300);
}

.feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.2rem;
}

.feature p {
  margin: 0;
  font-size: 0.9688rem;
  color: var(--text-muted);
}

.section--dark .feature p {
  color: #a9b09a;
}

/* Numbered steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.steps > li {
  counter-increment: step;
  position: relative;
  margin: 0;
  padding: 1.25rem 1.4rem 1.25rem 4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.2rem;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad-brand);
  color: #18250a;
  font-size: 0.9375rem;
  font-weight: 800;
}

.steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

/* The step cards are a light surface even when the section around them is
   dark, so they opt out of the dark section's white heading colour. */
.section--dark .steps > li h3 {
  color: var(--ink-900);
}

.steps p {
  margin: 0;
  font-size: 0.9688rem;
  color: var(--text-muted);
}

/* Pill tag list */
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.taglist li {
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.9062rem;
  font-weight: 700;
  color: var(--stone-700);
  box-shadow: var(--shadow-sm);
}

.section--alt .taglist li {
  background: var(--white);
}

/* --------------------------------------------------------------------------
   12. Tables (resources)
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 420px;
}

caption {
  text-align: left;
  padding: 1rem 1.15rem 0;
  font-weight: 800;
  color: var(--ink-900);
}

th,
td {
  padding: 0.85rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--stone-100);
  vertical-align: top;
}

thead th {
  background: var(--stone-50);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-600);
  border-bottom-color: var(--border);
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: var(--stone-50);
}

td.dates {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
}

/* Link list */
.linklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.linklist li {
  margin: 0;
}

.linklist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-900);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.linklist a:hover {
  transform: translateY(-2px);
  border-color: var(--lime-400);
  box-shadow: var(--shadow-md);
}

.linklist span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stone-500);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   13. FAQ accordion
   -------------------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq details[open] {
  border-color: color-mix(in srgb, var(--lime-400) 55%, transparent);
  box-shadow: var(--shadow-md);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-size: 1.0312rem;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--stone-100);
  background-image: linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 2px, 2px 10px;
  color: var(--stone-600);
  transition: transform 0.24s var(--ease), background-size 0.24s var(--ease);
}

.faq details[open] summary::after {
  background-size: 10px 2px, 2px 2px;
  transform: rotate(180deg);
  color: var(--lime-600);
}

.faq summary:hover {
  color: var(--lime-600);
}

.faq__body {
  padding: 0 1.3rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9688rem;
}

.faq__body > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(1.9rem, 5vw, 3.25rem);
  background: var(--grad-dark);
  color: #bcc2ad;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-band::before {
  width: 300px;
  aspect-ratio: 1;
  top: -45%;
  left: -6%;
  background: radial-gradient(circle, var(--lime-500) 0%, transparent 70%);
  opacity: 0.55;
}

.cta-band::after {
  width: 280px;
  aspect-ratio: 1;
  bottom: -55%;
  right: -4%;
  background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
  opacity: 0.35;
}

.cta-band h2 {
  color: var(--white);
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  color: #a9b09a;
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-field--full {
    grid-column: 1 / -1;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}

.form-field .req {
  color: var(--danger-500);
  margin-left: 0.15rem;
}

.form-field .hint {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--stone-500);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 52px;
  font: inherit;
  font-size: 1rem; /* >=16px prevents iOS zoom on focus */
  color: var(--ink-900);
  background: var(--white);
  border: 1.5px solid var(--stone-300);
  border-radius: var(--r-sm);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234d5c73'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 20px;
  padding-right: 2.6rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--lime-500);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lime-400) 26%, transparent);
}

input::placeholder,
textarea::placeholder {
  color: var(--stone-500);
  opacity: 1;
}

/* Validation states — only after the user has interacted */
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--danger-500);
}

.form-field.is-invalid input:focus,
.form-field.is-invalid textarea:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger-500) 22%, transparent);
}

.field-error {
  display: none;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c02a22;
}

.form-field.is-invalid .field-error {
  display: block;
}

/* Character counter */
.counter {
  align-self: flex-end;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--stone-500);
}

.counter.is-near {
  color: #b56f00;
  font-weight: 700;
}

/* Honeypot — hidden from humans, reachable by bots. Never use display:none
   alone; some bots skip those. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Form status message */
.form-status {
  display: none;
  gap: 0.7rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: flex;
}

.form-status--error {
  background: color-mix(in srgb, var(--danger-500) 9%, var(--white));
  border: 1px solid color-mix(in srgb, var(--danger-500) 34%, transparent);
  color: #9c2118;
}

.form-status--ok {
  background: color-mix(in srgb, var(--lime-400) 14%, var(--white));
  border: 1px solid color-mix(in srgb, var(--lime-500) 40%, transparent);
  color: #405c00;
}

.btn[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.form-legal {
  font-size: 0.8125rem;
  color: var(--stone-500);
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. Contact details
   -------------------------------------------------------------------------- */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  gap: 0.9rem;
  margin: 0;
  align-items: flex-start;
}

.contact-list .feature__icon {
  width: 42px;
  height: 42px;
}

.contact-list dt,
.contact-list .label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 0.1rem;
}

.contact-list .value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.4;
}

.contact-list .value a {
  color: var(--ink-900);
  text-decoration: none;
}

.contact-list .value a:hover {
  color: var(--lime-600);
}

.contact-list .sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-500);
}

/* Map facade card */
.map-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, #e9f3d5 0%, #f0efe9 55%, #f8ecd4 100%);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.map-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.map-card__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(40, 45, 28, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 45, 28, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-card__body {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 210px;
  justify-content: center;
}

.map-card__pin {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #18250a;
  box-shadow: var(--shadow-lime);
}

.map-card__pin svg {
  width: 24px;
  height: 24px;
}

.map-card address {
  font-style: normal;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--ink-900);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: #9aa189;
  font-size: 0.9375rem;
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.site-footer a {
  color: #d3d8c6;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lime-300);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
  }
}

.site-footer .brand {
  color: var(--white);
  margin-bottom: 1rem;
}
.site-footer .brand:hover {
  color: var(--white);
}
.site-footer .brand__tag {
  color: #7e846f;
  display: flex;
}

.footer-about p {
  max-width: 34ch;
  font-size: 0.9062rem;
  line-height: 1.6;
}

.footer-col h2 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-col li {
  margin: 0;
}

/* Label sits above the value, matching the contact page layout. */
.footer-contact .label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7e846f;
  margin-bottom: 0.1rem;
}

.footer-contact .value {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.footer-contact ul {
  gap: 1rem;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-badges span {
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 700;
  color: #bcc2ad;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #7e846f;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  flex: 1 0 100%;
}

/* Sticky mobile call bar */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.28s var(--ease);
}

.callbar.is-visible {
  transform: none;
}

@media (min-width: 1000px) {
  .callbar {
    display: none;
  }
}

body:has(.callbar) .site-footer {
  padding-bottom: 6rem;
}

@media (min-width: 1000px) {
  body:has(.callbar) .site-footer {
    padding-bottom: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   18. Motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-group.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-group.is-visible > :nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-group.is-visible > :nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-group.is-visible > :nth-child(4) {
  transition-delay: 0.24s;
}
.reveal-group.is-visible > :nth-child(5) {
  transition-delay: 0.32s;
}
.reveal-group.is-visible > :nth-child(6) {
  transition-delay: 0.4s;
}

/* No-JS fallback: never hide content */
.no-js .reveal,
.no-js .reveal-group > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-lg {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .callbar,
  .cta-band,
  .site-nav,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .hero,
  .page-hero,
  .section--dark {
    background: #fff !important;
    color: #000 !important;
  }

  .hero h1,
  .page-hero h1,
  .section--dark h2 {
    color: #000 !important;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
}
