/* ==========================================================================
   GenBionex — style.css
   Tokens → base → layout → components → utilities.
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. TOKENS                                                              */
/* ---------------------------------------------------------------------- */
:root {
  /* brand colour */
  --dark:        #0E2A20;  /* deep forest green — header, hero, dark sections */
  --dark-deep:   #071912;  /* deepest emerald black for top bar, footer base */
  --dark-surface:#143A2D;  /* elevated card background on dark */
  --lime:        #AEE352;  /* vibrant accent green — CTA buttons, highlights, badges */
  --lime-deep:   #8FC93E;  /* hover state for lime fills */
  --lime-soft:   rgba(174, 227, 82, 0.14); /* subtle lime tint */
  --cream:       #F5F2E7;  /* warm page background */
  --cream-light: #FAF8F1;  /* softer cream for elevated cards */
  --white:       #FFFFFF;
  --ink:         #12241C;  /* headings + primary text on light backgrounds */
  --gray:        #505E56;  /* secondary / muted text on light backgrounds */
  --gray-light:  #7D8B84;  /* tertiary muted text */
  --border:      #E2DDD0;  /* hairline borders on cream/white */
  --border-dark: rgba(174, 227, 82, 0.2); /* borders on dark */

  /* type */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-md:   1.0625rem;
  --text-lg:   1.25rem;
  --text-xl:   clamp(1.35rem, 1.2rem + 0.8vw, 1.85rem);
  --text-2xl:  clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --text-3xl:  clamp(2.25rem, 1.6rem + 3vw, 3.5rem);

  --lh-tight:   1.12;
  --lh-snug:    1.28;
  --lh-body:    1.65;
  --lh-relaxed: 1.75;

  --tracking-wide: 0.06em;
  --tracking-wider: 0.12em;

  /* spacing */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --space-9: 7.5rem;

  /* layout */
  --container-wide:  76rem;
  --container-prose: 44rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* shadows */
  --shadow-sm: 0 2px 8px rgba(14, 42, 32, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(14, 42, 32, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(14, 42, 32, 0.12);
  --shadow-dark: 0 24px 48px -12px rgba(0, 0, 0, 0.45);

  /* motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-hover: 180ms;
  --dur-reveal: 450ms;
}

/* ---------------------------------------------------------------------- */
/* 2. FONT FACES                                                          */
/* ---------------------------------------------------------------------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-600-latin.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-800-latin.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------- */
/* 3. RESET + BASE                                                        */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 5.5rem; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--lh-body);
  color: var(--gray);
  background: var(--cream);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

img, svg, picture, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration-thickness: from-font; }
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: var(--lh-tight);
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark { color: rgba(245, 242, 231, 0.82); }
.on-dark a:not(.btn):not(.tag) { color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible, .hero :focus-visible {
  outline: 2px solid var(--lime);
  box-shadow: 0 0 0 5px rgba(14, 42, 32, 0.55);
}

.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -3rem;
  background: var(--white);
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top var(--dur-hover) var(--ease);
}
.skip-link:focus { top: var(--space-3); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------- */
/* 4. TYPE UTILITIES                                                      */
/* ---------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--dark);
}
.eyebrow::before { content: "✳"; color: var(--lime-deep); font-size: 0.85em; }
.on-dark .eyebrow { color: var(--lime); }
.on-dark .eyebrow::before { color: var(--lime); }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(174, 227, 82, 0.12);
  border: 1px solid rgba(174, 227, 82, 0.28);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-2);
}

h1, .h1 { font-size: var(--text-3xl); }
h2, .h2 { font-size: var(--text-2xl); }
h3, .h3 { font-size: var(--text-xl); }
h4, .h4 { font-size: var(--text-lg); }

.lede {
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  color: var(--gray);
  max-width: 40em;
}
.on-dark .lede { color: rgba(245, 242, 231, 0.85); }
.highlight { color: var(--lime-deep); }
.on-dark .highlight, .hero .highlight { color: var(--lime); }

/* ---------------------------------------------------------------------- */
/* 5. LAYOUT                                                              */
/* ---------------------------------------------------------------------- */
.wrap {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.prose {
  max-width: var(--container-prose);
  margin-inline: auto;
}
.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-6); }
.section--extra-tight { padding-block: var(--space-4); }
.section--dark { background: var(--dark); }
.section--dark-deep { background: var(--dark-deep); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.grid { display: grid; gap: var(--space-5); align-items: stretch; }
@media (min-width: 36rem) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 52rem) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Horizontal scroll-snap row — five cards never divide evenly into a fixed
   column count without stranding a lopsided last row, so they scroll in a
   single line instead. */
.grid--5 {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: 0.25rem 0.25rem var(--space-2);
  margin: -0.25rem -0.25rem calc(var(--space-2) * -1);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--lime-deep) transparent;
}
.grid--5::-webkit-scrollbar { height: 8px; }
.grid--5::-webkit-scrollbar-track { background: transparent; }
.grid--5::-webkit-scrollbar-thumb { background: var(--lime-deep); border-radius: var(--radius-pill); }
.grid--5::-webkit-scrollbar-thumb:hover { background: var(--dark); }
.grid--5 > * {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
@media (min-width: 40rem) { .grid--5 > * { flex-basis: 320px; } }

.scroll-row { position: relative; }
.scroll-row__nav {
  display: flex;
  gap: var(--space-2);
  justify-content: flex-end;
  margin-bottom: var(--space-4);
}
.scroll-row__btn {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease), opacity var(--dur-hover) var(--ease);
}
.scroll-row__btn:hover:not(:disabled) { background: var(--dark); color: var(--white); border-color: var(--dark); }
.scroll-row__btn:disabled { opacity: 0.35; cursor: default; }
.scroll-row__btn .icon { width: 20px; height: 20px; }
.scroll-row__viewport { position: relative; }
.scroll-row__viewport::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: var(--space-2);
  width: 72px;
  background: linear-gradient(to right, transparent, var(--cream));
  pointer-events: none;
  transition: opacity var(--dur-hover) var(--ease);
}
.scroll-row__viewport.is-end::after { opacity: 0; }

.span-full { grid-column: 1 / -1; }

.section-head {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
@media (min-width: 56rem) {
  .section-head--split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: var(--space-6);
  }
}

/* ---------------------------------------------------------------------- */
/* 6. ICONS                                                               */
/* ---------------------------------------------------------------------- */
.icon {
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 20px;
  height: 20px;
  max-width: 100%;
}

/* ---------------------------------------------------------------------- */
/* 7. TOP BAR & HEADER                                                    */
/* ---------------------------------------------------------------------- */
.site-topbar {
  background: var(--dark-deep);
  color: rgba(245, 242, 231, 0.72);
  font-size: var(--text-xs);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 0.45rem;
}
.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.site-topbar__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: rgba(245, 242, 231, 0.85);
}
.site-topbar__tagline span.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime); display: inline-block;
}
.site-topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}
.site-topbar__contact a {
  color: rgba(245, 242, 231, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  transition: color var(--dur-hover) var(--ease);
}
.site-topbar__contact a:hover { color: var(--lime); }
@media (max-width: 48rem) {
  .site-topbar__tagline { display: none; }
  .site-topbar__contact { width: 100%; justify-content: space-between; }
}
@media (max-width: 28rem) {
  /* Phone, email and city no longer fit one line at this width without
     wrapping into a messy two-line bar — keep just the tappable phone
     number, which is the one thing worth surfacing this early. */
  .site-topbar__contact a[href^="mailto:"],
  .site-topbar__contact > span:last-child {
    display: none;
  }
  .site-topbar__contact { justify-content: flex-start; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--space-3) var(--space-3) 0;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-hover) var(--ease);
}
.site-header.is-scrolled .site-header__bar {
  box-shadow: var(--shadow-md);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark__logo { display: block; height: 46px; width: auto; object-fit: contain; }
.wordmark__fullname {
  display: none;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray);
  white-space: normal;
  line-height: 1.2;
  max-width: 11rem;
}
.wordmark__fullname .wordmark__gen { color: #0070C0; }
.wordmark__fullname .wordmark__bio { color: #47D45A; }
.wordmark__fullname .wordmark__nex { color: #7030A0; }
@media (min-width: 56rem) { .wordmark__fullname { display: block; } }

.nav-primary { display: none; }
@media (min-width: 64rem) {
  .nav-primary {
    display: flex;
    align-items: center;
    gap: var(--space-5);
  }
  .nav-primary__links { display: flex; gap: 2px; list-style: none; padding: 0; }
  .nav-primary__links a {
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    color: var(--gray);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    display: inline-block;
    transition: color var(--dur-hover) var(--ease), background var(--dur-hover) var(--ease);
  }
  .nav-primary__links a:hover { color: var(--ink); background: var(--cream); }
  .nav-primary__links a[aria-current="page"] {
    color: var(--ink);
    background: var(--lime);
    font-weight: 700;
  }
}

.header-call {
  display: none;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: inherit;
}
@media (min-width: 76rem) { .header-call { display: inline-flex; } }
.header-call__icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.header-call__text { display: flex; flex-direction: column; line-height: 1.25; }
.header-call__text span { font-size: var(--text-xs); color: var(--gray); }
.header-call__text strong { font-size: var(--text-sm); font-weight: 800; color: var(--ink); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--dur-hover) var(--ease);
}
.header-cta:hover { background: var(--dark-surface); }
.header-cta__arrow {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.header-cta__arrow .icon { width: 16px; height: 16px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  min-height: 42px;
  border: 1.5px solid transparent;
}
@media (min-width: 64rem) { .menu-toggle { display: none; } }
/* header hamburger sits on the white header */
.site-header .menu-toggle {
  background: var(--cream);
  border-color: var(--border);
  color: var(--ink);
}
/* close button sits inside the dark mobile drawer */
.menu-sheet .menu-toggle {
  background: rgba(174, 227, 82, 0.1);
  border-color: rgba(174, 227, 82, 0.4);
  color: var(--white);
}

.menu-sheet {
  position: fixed;
  inset: 0;
  background: var(--dark-deep);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--gutter) var(--space-6);
  transform: translateY(-100%);
  transition: transform 300ms var(--ease);
}
.menu-sheet.is-open { transform: translateY(0); }
.menu-sheet__top { display: flex; justify-content: space-between; align-items: center; }
.menu-sheet__links {
  list-style: none;
  padding: 0;
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
}
.menu-sheet__links a {
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--white);
  text-decoration: none;
  transition: color var(--dur-hover) var(--ease);
}
.menu-sheet__links a:hover,
.menu-sheet__links a[aria-current="page"] { color: var(--lime); }
.menu-sheet__cta { margin-top: auto; }

/* ---------------------------------------------------------------------- */
/* 8. BUTTONS & BADGES                                                    */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid transparent;
  background: none;
  transition: background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease), transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(174, 227, 82, 0.3);
}
.btn--accent:hover {
  background: var(--lime-deep);
  box-shadow: 0 6px 20px rgba(174, 227, 82, 0.45);
}
.btn--solid-dark { background: var(--dark); color: var(--white); }
.btn--solid-dark:hover { background: #163A2C; color: var(--white); }
.btn--ghost-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost-dark:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(174, 227, 82, 0.08);
}
.btn--ghost-light {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}
.btn--ghost-light:hover {
  background: var(--ink);
  color: var(--white);
}
.btn--sm {
  min-height: 38px;
  padding: 0.5rem 1.15rem;
  font-size: var(--text-xs);
}
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

.call-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-hover) var(--ease);
}
.call-badge:hover { transform: translateY(-2px); }
.call-badge__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(174, 227, 82, 0.3);
}
.call-badge__text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(245, 242, 231, 0.75);
}
.call-badge__text strong {
  display: block;
  font-size: var(--text-md);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
}

/* ---------------------------------------------------------------------- */
/* 9. HERO SECTION                                                        */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(110deg, rgba(7, 25, 18, 0.95) 0%, rgba(7, 25, 18, 0.88) 28%, rgba(14, 42, 32, 0.6) 60%, rgba(14, 42, 32, 0.38) 100%),
    url('../img/about-ankole-cattle.jpg') center 38% / cover no-repeat;
  color: rgba(245, 242, 231, 0.85);
  overflow: hidden;
  border-bottom: 1px solid rgba(174, 227, 82, 0.15);
}
.hero__inner {
  position: relative;
  padding-block: var(--space-8) var(--space-9);
}
@media (min-width: 62rem) {
  .hero__inner { padding-block: var(--space-9) 8rem; }
}
.hero__content { max-width: 34rem; }
.hero h1 {
  margin-block: var(--space-3) var(--space-4);
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--lime);
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  max-width: 36em;
  margin-bottom: var(--space-5);
  color: rgba(245, 242, 231, 0.9);
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin-top: var(--space-3);
}
.hero__pills li {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: color var(--dur-hover) var(--ease), text-decoration-color var(--dur-hover) var(--ease);
}
.hero__link:hover { color: var(--lime); text-decoration-color: var(--lime); }
.hero__link .icon { width: 16px; height: 16px; flex: none; }

.hero__float {
  position: absolute;
  z-index: 2;
}
.hero__float--top {
  top: 7.5rem; /* clears the fixed floating header, which no longer reserves layout space */
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(7, 25, 18, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}
.hero__float-lines {
  display: grid;
  gap: 3px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--white);
  text-align: right;
}
.hero__float-check {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero__float--bottom {
  bottom: var(--space-6);
  right: var(--gutter);
  background: rgba(7, 25, 18, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(174, 227, 82, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-dark);
  max-width: 12rem;
}
.hero__float-number { display: block; font-size: 2rem; font-weight: 800; color: var(--lime); line-height: 1; }
.hero__float-label { display: block; margin-top: 4px; font-size: var(--text-xs); color: rgba(245, 242, 231, 0.85); }

@media (max-width: 61.99rem) {
  .hero__float {
    position: static;
    margin-top: var(--space-4);
    max-width: none;
    display: inline-flex;
    text-align: left;
  }
  .hero__float-lines { text-align: left; }
}

/* Non-home page banners sit directly under the fixed floating header (no
   .site-topbar above them any more), so they need extra top clearance for
   their own text — the header itself now overlays content rather than
   pushing it down. */
.page-hero { padding-top: 8rem; }

/* ---------------------------------------------------------------------- */
/* 10. TRUST STRIP & PILLARS BAR                                          */
/* ---------------------------------------------------------------------- */
.trust-strip {
  background: var(--dark-deep);
  border-bottom: 1px solid rgba(174, 227, 82, 0.15);
  padding-block: var(--space-5);
}
.trust-strip__grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 40rem) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-item__icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(174, 227, 82, 0.15);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
}
.trust-item h4 {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2px;
}
.trust-item p {
  font-size: var(--text-xs);
  color: rgba(245, 242, 231, 0.7);
  line-height: 1.4;
}

/* ---------------------------------------------------------------------- */
/* 11. VISUAL SERVICE CARDS (HOME & SERVICES)                             */
/* ---------------------------------------------------------------------- */
.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease);
  box-shadow: var(--shadow-sm);
}
.visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 42, 32, 0.2);
}
.visual-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}
.visual-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.visual-card:hover .visual-card__media img {
  transform: scale(1.06);
}
.visual-card__tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(14, 42, 32, 0.9);
  backdrop-filter: blur(8px);
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(174, 227, 82, 0.3);
}
.visual-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.visual-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.visual-card__icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.visual-card--blue .visual-card__icon { background: rgba(0, 112, 192, 0.1); color: #0070C0; }
.visual-card--green .visual-card__icon { background: rgba(38, 132, 63, 0.12); color: #26843F; }
.visual-card--purple .visual-card__icon { background: rgba(112, 48, 160, 0.1); color: #7030A0; }

.visual-card h3 {
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.3;
}
.visual-card p.visual-card__desc {
  color: var(--gray);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  flex: 1 0 auto;
}
.visual-card__deliverables {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-4);
  display: grid;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink);
}
.visual-card__deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.visual-card__deliverables li span.bullet {
  color: var(--lime-deep);
  font-weight: 800;
}
.visual-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur-hover) var(--ease);
}
.visual-card__link:hover { color: var(--lime-deep); }
.visual-card__link .icon {
  width: 18px !important;
  height: 18px !important;
  flex: none;
  transition: transform var(--dur-hover) var(--ease);
}
.visual-card__link:hover .icon { transform: translateX(4px); }

/* ---------------------------------------------------------------------- */
/* 12. INTERACTIVE STRATEGY EXPLORER                                      */
/* ---------------------------------------------------------------------- */
.strategy-explorer {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-6);
}
.strategy-tabs {
  display: flex;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.strategy-tabs::-webkit-scrollbar { display: none; }
.strategy-tab {
  flex: 1 0 auto;
  min-width: 140px;
  padding: var(--space-3) var(--space-4);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
  transition: all var(--dur-hover) var(--ease);
  white-space: nowrap;
}
.strategy-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}
.strategy-tab.is-active {
  color: var(--ink);
  background: var(--white);
  border-bottom-color: var(--lime-deep);
}

.strategy-panel {
  display: none !important;
  padding: var(--space-6);
}
.strategy-panel.is-active {
  display: grid !important;
  gap: var(--space-6);
  animation: fadeIn 300ms var(--ease);
}
@media (min-width: 56rem) {
  .strategy-panel.is-active {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.strategy-panel__content h3 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.strategy-panel__content p.lede {
  margin-bottom: var(--space-4);
}
.strategy-points {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  list-style: none;
  padding: 0;
}
.strategy-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}
.strategy-point__icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: var(--text-xs);
}
.strategy-point strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: 2px;
}
.strategy-point span {
  font-size: var(--text-xs);
  color: var(--gray);
}

.strategy-panel__card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(174, 227, 82, 0.2);
}
.strategy-panel__card h4 {
  font-size: var(--text-md);
  color: var(--lime);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.strategy-panel__card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(245, 242, 231, 0.85);
}
.strategy-panel__card ul li {
  display: flex;
  gap: 0.5em;
}
.strategy-panel__card ul li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 800;
}

/* ---------------------------------------------------------------------- */
/* 12b. VALUE / PRINCIPLE CARDS (ABOUT PAGE)                              */
/* ---------------------------------------------------------------------- */
.value-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card--dark {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(174, 227, 82, 0.25);
}
.value-card--dark:hover { box-shadow: var(--shadow-dark); }
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
  background: var(--dark);
  color: var(--lime);
}
.value-card--dark .value-card__icon { background: rgba(174, 227, 82, 0.18); }
.value-card__title { font-size: var(--text-xl); margin-top: var(--space-2); }
.value-card--dark .value-card__title { color: var(--white); }

.principle-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease), background var(--dur-hover) var(--ease);
}
.principle-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-dark);
}
.principle-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(174, 227, 82, 0.16);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.principle-card h3 { color: var(--white); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.principle-card p { color: rgba(245, 242, 231, 0.75); font-size: var(--text-sm); line-height: var(--lh-relaxed); }

/* ---------------------------------------------------------------------- */
/* 13. SPLIT SECTION & COMPARISON                                         */
/* ---------------------------------------------------------------------- */
.split {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 58rem) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--dur-hover) var(--ease);
}
.split__media:hover { box-shadow: var(--shadow-dark); }
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s var(--ease);
}
.split__media:hover img { transform: scale(1.04); }
.split__chip {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  background: rgba(14, 42, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 18rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(174, 227, 82, 0.25);
}
@media (max-width: 34rem) {
  .split__chip { position: static; margin-top: var(--space-3); max-width: none; }
}
.split__chip-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.split__chip strong { display: block; font-size: var(--text-sm); font-weight: 800; color: var(--white); }
.split__chip span { font-size: var(--text-xs); color: rgba(245, 242, 231, 0.75); }

.chip-list {
  display: grid;
  gap: var(--space-3) var(--space-5);
  list-style: none;
  padding: 0;
  margin-top: var(--space-5);
}
@media (min-width: 30rem) {
  .chip-list { grid-template-columns: repeat(2, 1fr); }
}
.chip-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.chip-list li::before {
  content: '✓';
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--lime-soft);
  color: var(--lime-deep);
  font-weight: 800;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------------- */
/* 14. 4-STEP PROCESS                                                     */
/* ---------------------------------------------------------------------- */
.step-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 44rem) { .step-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .step-list { grid-template-columns: repeat(4, 1fr); } }

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.on-dark .step {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.on-dark .step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(174, 227, 82, 0.3);
}

.step__num {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--space-1);
}
.step__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.on-dark .step__icon {
  background: rgba(174, 227, 82, 0.16);
  color: var(--lime);
}
.step h3 { font-size: var(--text-lg); color: var(--ink); }
.on-dark .step h3 { color: var(--white); }
.step p { font-size: var(--text-sm); line-height: var(--lh-relaxed); color: var(--gray); }
.on-dark .step p { color: rgba(245, 242, 231, 0.75); }

/* ---------------------------------------------------------------------- */
/* 15. FAQ ACCORDION                                                      */
/* ---------------------------------------------------------------------- */
.faq-accordion {
  display: grid;
  gap: var(--space-3);
  max-width: var(--container-prose);
  margin-inline: auto;
  margin-top: var(--space-6);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-hover) var(--ease);
}
.faq-item.is-open {
  border-color: var(--lime-deep);
  box-shadow: var(--shadow-sm);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  text-align: left;
  font-weight: 800;
  font-size: var(--text-md);
  color: var(--ink);
  cursor: pointer;
}
.faq-trigger:hover { color: var(--dark); }
.faq-icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-hover) var(--ease), background var(--dur-hover) var(--ease);
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: var(--lime);
}
.faq-body {
  display: none;
  padding: 0 var(--space-5) var(--space-4);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--gray);
}
.faq-item.is-open .faq-body {
  display: block;
  animation: fadeIn 250ms var(--ease);
}

/* ---------------------------------------------------------------------- */
/* 16. SERVICES PAGE SPECIFICS                                            */
/* ---------------------------------------------------------------------- */
.services-nav-sticky {
  position: sticky;
  top: 89px; /* matches the fixed .site-header's rendered height so the two bars sit flush instead of overlapping */
  z-index: 30;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-2);
}
.services-nav__list {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-nav__list::-webkit-scrollbar { display: none; }
.services-nav__link {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all var(--dur-hover) var(--ease);
}
.services-nav__link:hover,
.services-nav__link.is-active {
  color: var(--ink);
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.service-pillar {
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 9rem; /* clears the fixed header + sticky sub-nav combined (~141px) so a jump-to-pillar link doesn't land partly hidden under them */
}
.service-pillar__grid {
  display: grid;
  gap: var(--space-6);
}
.service-group__head { margin-bottom: var(--space-5); }
@media (min-width: 60rem) {
  .service-pillar__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-8);
    align-items: start;
  }
}
.service-pillar__showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--dur-hover) var(--ease);
}
.service-pillar__showcase:hover { box-shadow: var(--shadow-lg); }
.service-pillar__showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s var(--ease);
}
.service-pillar__showcase:hover img { transform: scale(1.04); }
.service-pillar__badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  background: rgba(14, 42, 32, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  border: 1px solid rgba(174, 227, 82, 0.25);
}
.service-pillar__badge strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--lime);
  margin-bottom: 2px;
}
.service-pillar__badge span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(245, 242, 231, 0.8);
}

.service-cards { display: grid; gap: var(--space-4); }
@media (min-width: 48rem) { .service-cards { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-1);
}
.service-card h3 { font-size: var(--text-md); }
.service-card__outcome { font-size: var(--text-sm); color: var(--gray); line-height: var(--lh-relaxed); }
.service-card__deliverables {
  list-style: none;
  padding: 0;
  margin-top: var(--space-3);
  display: grid;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink);
}
.service-card__deliverables li {
  position: relative;
  padding-left: 1.2em;
  overflow-wrap: break-word;
}
.service-card__deliverables li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime-deep);
  font-weight: 800;
}
.service-card__cta {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

/* A single card standing alone in its pillar (span-full) has the whole row
   to itself — left it as a narrow text column and the rest sat empty, so
   it splits into an intro column + a wider details column instead. */
@media (min-width: 40rem) {
  .service-card.span-full {
    flex-direction: column;
  }
  .service-card.span-full .service-card__row {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
  .service-card.span-full .service-card__intro {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .service-card.span-full .service-card__body {
    flex: 1;
    min-width: 0;
    padding-left: var(--space-6);
    border-left: 1px solid var(--border);
  }
  .service-card.span-full .service-card__deliverables { margin-top: 0; }
  .service-card.span-full .service-card__cta {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
  }
}
/* ---------------------------------------------------------------------- */
/* 17. CONTACT FORM & DETAILS                                             */
/* ---------------------------------------------------------------------- */
.contact-grid { display: grid; gap: var(--space-7); }
@media (min-width: 60rem) { .contact-grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--space-8); } }

.field { display: flex; flex-direction: column; gap: var(--space-1); margin-bottom: var(--space-4); }
.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  min-height: 48px;
  transition: border-color var(--dur-hover) var(--ease), box-shadow var(--dur-hover) var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 42, 32, 0.12);
}
.field-row { display: grid; gap: var(--space-4); }
@media (min-width: 34rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.field--required label::after { content: ' *'; color: var(--lime-deep); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.check-group { border: none; padding: 0; margin: 0 0 var(--space-4); }
.check-group legend {
  padding: 0;
  margin-bottom: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink);
}
.check-group__area {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gray);
  margin-block: var(--space-3) var(--space-1);
}
.check-group__area:first-of-type { margin-top: 0; }
.check-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  padding-block: 0.35em;
  cursor: pointer;
  color: var(--ink);
}
.check-option input { width: 1.15em; height: 1.15em; flex: none; accent-color: var(--dark); }

.form-status {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: none;
  margin-bottom: var(--space-3);
}
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: var(--lime-deep); color: var(--ink); background: rgba(174, 227, 82, 0.14); }
.form-status.is-error { border-color: var(--ink); border-width: 2px; color: var(--ink); background: var(--white); }

.contact-card-premium {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(174, 227, 82, 0.2);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-card-premium dl { display: grid; gap: var(--space-4); }
.contact-card-premium dt {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.25em;
}
.contact-card-premium dd { font-size: var(--text-md); color: var(--white); font-weight: 600; }
.contact-card-premium a { color: var(--white); text-decoration: none; }
.contact-card-premium a:hover { color: var(--lime); }
.contact-card__guarantee {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(174, 227, 82, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  color: rgba(245, 242, 231, 0.85);
}

/* ---------------------------------------------------------------------- */
/* 18. CALL TO ACTION BANDS & COUNTER                                     */
/* ---------------------------------------------------------------------- */
.contact-band {
  background: radial-gradient(circle at right center, rgba(20, 58, 45, 0.7) 0%, var(--dark) 80%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(174, 227, 82, 0.25);
  box-shadow: var(--shadow-dark);
  padding: var(--space-6) var(--space-6);
}
.contact-band__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
}
.contact-band h2 { color: var(--white); margin-top: var(--space-1); }

.contact-counter__inner { text-align: center; display: grid; gap: var(--space-2); justify-items: center; }
.contact-counter__number { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; color: var(--lime); line-height: 1; }
.contact-counter__label { font-size: var(--text-sm); color: rgba(245, 242, 231, 0.75); }

/* ---------------------------------------------------------------------- */
/* 19. BOTTOM QUICK CONTACT BAR (MOBILE)                                  */
/* ---------------------------------------------------------------------- */
.bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark-deep);
  border-top: 1px solid rgba(174, 227, 82, 0.25);
}
@media (min-width: 64rem) { .bottom-bar { display: none; } }
.bottom-bar a, .bottom-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 54px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(245, 242, 231, 0.85);
  text-decoration: none;
  background: none;
  border: none;
  border-right: 1px solid rgba(174, 227, 82, 0.15);
}
.bottom-bar > :last-child { border-right: none; }
body { padding-bottom: 54px; }
@media (min-width: 64rem) { body { padding-bottom: 0; } }

/* ---------------------------------------------------------------------- */
/* 20. FOOTER                                                             */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--dark-deep);
  color: rgba(245, 242, 231, 0.75);
  padding-block: var(--space-8) var(--space-5);
  border-top: 1px solid rgba(174, 227, 82, 0.18);
}
.site-footer__grid { display: grid; gap: var(--space-6); }
@media (min-width: 48rem) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h2 { font-size: var(--text-lg); color: var(--white); margin-bottom: var(--space-3); }
.site-footer__links { list-style: none; padding: 0; display: grid; gap: var(--space-2); font-size: var(--text-sm); }
.site-footer__links a { text-decoration: none; color: rgba(245, 242, 231, 0.75); transition: color var(--dur-hover) var(--ease); }
.site-footer__links a:hover { color: var(--lime); }
.site-footer__bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(245, 242, 231, 0.6);
}
.site-footer__bottom a { color: rgba(245, 242, 231, 0.6); text-decoration: none; }
.site-footer__bottom a:hover { color: var(--lime); }

/* ---------------------------------------------------------------------- */
/* 21. SCROLL REVEAL                                                      */
/* ---------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease);
}
.reveal.reveal-pending { opacity: 0; transform: translateY(14px); }
.reveal.reveal-pending.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
}
