/* ============================================================
   eProcess Consulting — 16th Anniversary Site
   Design system: GREEN & WHITE · light canvas · green-lit depth
   Brand green #009040 sampled directly from the logo mark.
   ============================================================ */

:root {
  /* ---- Brand greens (built from the logo's #009040) ---- */
  --g-brand:   #009040;  /* the logo green — decorative fills, graphics, large type */
  --g-text:    #00762f;  /* text-safe green: 5.8:1 on white, passes WCAG AA */
  --g-btn-a:   #006d2c;  /* button gradient start — white text passes AA    */
  --g-btn-b:   #00853a;  /* button gradient end                             */
  --g-vivid:   #00b851;  /* lifted, for gradients & glows           */
  --g-glow:    #35d07f;  /* highlight / hover energy                */
  --g-mint:    #7fe3ab;  /* soft accent                             */
  --g-forest:  #0a5228;  /* deep panels                             */
  --g-pine:    #06371b;  /* deepest — footer, inverted cards        */

  /* ---- Tints (green mixed into white) ---- */
  --tint-50:  #f4fbf7;
  --tint-100: #e8f7ee;
  --tint-200: #d3f0e0;
  --tint-300: #b3e6c9;

  /* ---- Ink ---- */
  --ink:    #0b2b18;   /* headings — near-black, green undertone */
  --body:   #47624f;   /* paragraphs */
  --muted:  #6b8676;   /* labels, captions */
  --white:  #ffffff;

  /* ---- Lines & light ---- */
  --line:       #dceee4;
  --line-soft:  #edf7f1;
  --ring:       rgba(0, 144, 64, 0.22);

  /* Green-tinted shadows — the detail that makes the page feel green-lit */
  --sh-sm:  0 2px 8px rgba(6, 55, 27, 0.05);
  --sh-md:  0 10px 30px rgba(6, 55, 27, 0.08);
  --sh-lg:  0 24px 60px rgba(6, 55, 27, 0.12);
  --sh-glow: 0 18px 44px rgba(0, 144, 64, 0.22);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--body);
  line-height: 1.68;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--g-mint); color: var(--g-pine); }

img { max-width: 100%; display: block; }
a { color: var(--g-text); text-decoration: none; }
a:hover { color: var(--g-brand); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 700;
}

.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 76px) 0; }

/* ============================================================
   AMBIENT — soft green mesh washes on white
   ============================================================ */
.ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(760px 520px at 88% -8%,  rgba(0, 184, 81, 0.16), transparent 62%),
    radial-gradient(620px 460px at -8% 22%,  rgba(0, 144, 64, 0.12), transparent 62%),
    radial-gradient(720px 620px at 68% 108%, rgba(53, 208, 127, 0.13), transparent 62%),
    var(--white);
}
/* fine dot-grid texture, fading out — gives the white air some tooth */
.ambient::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0, 144, 64, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 88% 62% at 50% 0%, black 5%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 88% 62% at 50% 0%, black 5%, transparent 72%);
}

/* ============================================================
   TYPE
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--g-text);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--g-brand), var(--g-glow));
}

.h-xl { font-size: clamp(41px, 6.6vw, 80px); }
.h-lg { font-size: clamp(32px, 4.7vw, 54px); }
.h-md { font-size: clamp(24px, 3vw, 34px); }

.grad-text {
  background: linear-gradient(96deg, var(--g-forest) 4%, var(--g-brand) 48%, var(--g-vivid) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* hand-drawn marker highlight behind a word */
.hl { position: relative; display: inline-block; z-index: 0; color: var(--ink); }
.hl::before {
  content: ""; position: absolute; z-index: -1;
  left: -0.09em; right: -0.09em; bottom: 0.045em; height: 0.34em;
  background: linear-gradient(90deg, rgba(0, 184, 81, 0.30), rgba(53, 208, 127, 0.55));
  transform: skewY(-1.1deg); border-radius: 0.3em 0.4em 0.35em 0.28em;
}

.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--body); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  padding: 15px 31px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.26s cubic-bezier(.2,.7,.3,1);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--g-btn-a), var(--g-btn-b));
  color: #fff; box-shadow: var(--sh-glow);
}
.btn-primary:hover {
  transform: translateY(-3px); color: #fff;
  box-shadow: 0 24px 54px rgba(0, 144, 64, 0.34);
}
/* sheen sweep on hover */
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,0.42) 48%, transparent 64%);
  transform: translateX(-120%); transition: transform 0.7s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: #fff; color: var(--g-forest); border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover {
  border-color: var(--g-brand); color: var(--g-text);
  transform: translateY(-3px); box-shadow: var(--sh-md);
}
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(5px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 28px rgba(6, 55, 27, 0.06);
}
.nav-inner {
  width: min(1320px, 94vw); margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav-logo { display: flex; align-items: center; }
/* logo sits on white already — no chip needed, just clean spacing */
.nav-logo .logo-chip { background: transparent; padding: 0; box-shadow: none; }
/* the logo is a JPEG with a baked-in white box — multiply drops that box
   into whatever light surface sits behind it */
.nav-logo img { height: 38px; width: auto; mix-blend-mode: multiply; }

.nav-links { display: flex; align-items: center; gap: 3px; list-style: none; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--body);
  padding: 9px 14px; border-radius: 10px; transition: all 0.2s ease;
  white-space: nowrap; position: relative;
}
.nav-links a:hover { color: var(--g-text); background: var(--tint-100); }
.nav-links a.active { color: var(--g-text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2.5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--g-brand), var(--g-glow));
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 23px; font-size: 14px; }
.nav-burger {
  display: none; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; width: 46px; height: 46px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  box-shadow: var(--sh-sm);
}
.nav-burger span { width: 20px; height: 2.5px; border-radius: 2px; background: var(--g-forest); transition: all 0.3s ease; }

@media (max-width: 1100px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
    padding: 18px 6vw 30px; border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 16.5px; }
  .nav-links a.active::after { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .btn { display: none; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 52px) 0 70px; position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.badge-anniv {
  display: inline-flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 20px 7px 7px;
  font-size: 13.5px; font-weight: 600; color: var(--g-forest);
  margin-bottom: 26px; box-shadow: var(--sh-sm);
}
.badge-anniv .num {
  font-family: var(--font-display); font-weight: 700;
  background: linear-gradient(135deg, var(--g-btn-a), var(--g-btn-b));
  color: #fff; border-radius: 999px; padding: 4px 13px; font-size: 13px;
  box-shadow: 0 3px 10px rgba(0, 144, 64, 0.3);
}
.hero p.lede { margin: 24px 0 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat .stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px); color: var(--ink); line-height: 1;
}
.stat .stat-num em {
  font-style: normal;
  background: linear-gradient(135deg, var(--g-brand), var(--g-glow));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .stat-label {
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.09em;
  text-transform: uppercase; font-weight: 600; margin-top: 8px;
}

/* hero visual + organic blobs echoing the logo's circular "e" mark */
.hero-visual { position: relative; min-height: 430px; }
.hero-visual svg { width: 100%; height: auto; position: relative; z-index: 1; }
.orb {
  position: absolute; z-index: 0; filter: blur(56px);
  animation: float 11s ease-in-out infinite;
}
.orb-1 {
  width: 380px; height: 380px; top: -10%; right: -8%;
  background: radial-gradient(circle at 35% 30%, rgba(0, 184, 81, 0.55), rgba(0, 144, 64, 0.18) 62%, transparent 72%);
  border-radius: 62% 38% 46% 54% / 54% 46% 54% 46%;
}
.orb-2 {
  width: 280px; height: 280px; bottom: -4%; left: 2%;
  background: radial-gradient(circle at 60% 40%, rgba(53, 208, 127, 0.5), transparent 68%);
  border-radius: 44% 56% 62% 38% / 42% 58% 42% 58%;
  animation-delay: -5.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-30px) rotate(8deg); }
}

/* ============================================================
   PAGE HERO (interior pages) — mint wash
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + clamp(58px, 9vw, 112px)) 0 clamp(44px, 6vw, 76px);
  position: relative;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--tint-50), transparent 88%);
}
.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--g-text); }

/* ============================================================
   MARQUEE — mint band
   ============================================================ */
.marquee-wrap {
  overflow: hidden; padding: 30px 0; position: relative;
  background: var(--tint-50);
  border-block: 1px solid var(--line-soft);
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
.marquee { display: flex; gap: 54px; width: max-content; animation: scroll-x 46s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee .m-item {
  display: flex; align-items: center; justify-content: center; height: 60px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 14px;
  padding: 10px 24px; box-shadow: var(--sh-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.marquee .m-item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--sh-md); border-color: var(--ring);
}
.marquee .m-item img { height: 100%; width: auto; object-fit: contain; max-width: 132px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   BENTO + CARDS
   ============================================================ */
.bento { display: grid; gap: 20px; grid-template-columns: repeat(12, 1fr); }
.bento > * { grid-column: span 4; }
.bento .b-6 { grid-column: span 6; }
.bento .b-8 { grid-column: span 8; }
.bento .b-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .bento > *, .bento .b-6, .bento .b-8 { grid-column: span 12; }
}

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 38px);
  position: relative; overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.32s cubic-bezier(.2,.7,.3,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
/* cursor-following green light */
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 184, 81, 0.10), transparent 46%);
  opacity: 0; transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ring);
  box-shadow: var(--sh-lg);
}
.card:hover::before { opacity: 1; }

.card h3 { font-size: 21.5px; margin: 16px 0 10px; }
.card p { font-size: 15.5px; color: var(--body); }
.card .icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--tint-100), var(--tint-200));
  border: 1px solid var(--line); color: var(--g-brand);
  box-shadow: inset 0 1px 0 #fff;
}
.card .icon svg { width: 26px; height: 26px; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; margin-top: 18px; color: var(--g-text);
}
.card .card-link .arr { transition: transform 0.22s ease; }
.card:hover .card-link .arr { transform: translateX(5px); }

/* ---- FEATURE CARD: deep-green inverted panel.
   This is what creates the green/white checkerboard rhythm. ---- */
.card-feature {
  background:
    radial-gradient(560px circle at 88% 6%, rgba(53, 208, 127, 0.30), transparent 58%),
    linear-gradient(148deg, var(--g-forest), var(--g-pine));
  border-color: transparent;
  color: rgba(255, 255, 255, 0.86);
  box-shadow: var(--sh-glow);
}
.card-feature::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 80% at 100% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 100% 0%, black, transparent 70%);
}
.card-feature h3, .card-feature h2 { color: #fff; }
.card-feature p { color: rgba(255, 255, 255, 0.82); }
.card-feature .eyebrow { color: var(--g-mint); }
.card-feature .eyebrow::before { background: linear-gradient(90deg, var(--g-mint), transparent); }
.card-feature .card-link { color: var(--g-mint); }
.card-feature .icon {
  background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.2);
  color: var(--g-mint); box-shadow: none;
}
.card-feature .chip-num { color: var(--g-mint); border-color: rgba(127, 227, 171, 0.4); background: rgba(255,255,255,0.06); }
.card-feature .pill {
  color: #fff; background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.card-feature .stat-num { color: #fff; }
.card-feature .stat-num em {
  background: linear-gradient(135deg, var(--g-mint), #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card-feature .stat-label { color: rgba(255, 255, 255, 0.6); }
.card-feature:hover { box-shadow: 0 30px 70px rgba(0, 144, 64, 0.3); }
.card-feature .timeline::before { background: linear-gradient(180deg, var(--g-mint), rgba(127,227,171,0.08)); }
.card-feature .t-item::before { background: var(--g-pine); border-color: var(--g-mint); }
.card-feature .t-item .t-year { color: var(--g-mint); }
.card-feature .t-item h3 { color: #fff; }
.card-feature .t-item p { color: rgba(255,255,255,0.78); }

/* number chip on service cards */
.chip-num {
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--g-text); border: 1px solid var(--ring);
  background: var(--tint-50);
  border-radius: 999px; padding: 5px 14px; display: inline-block;
}

/* ============================================================
   LOGO WALLS
   ============================================================ */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 16px;
  align-items: stretch;
}
/* Every tile is exactly the same box — a fixed height rather than an
   aspect-ratio, so row height can never be pulled around by logo art. */
.logo-tile {
  height: 126px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  display: grid; place-items: center; padding: 18px;
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1), box-shadow 0.28s ease, border-color 0.28s ease;
}
/* cap the logo inside the box so wildly different artwork reads at a
   consistent optical weight instead of some filling and some floating */
.logo-tile img {
  max-height: 74px; max-width: 100%;
  width: auto; height: auto; object-fit: contain;
}
.logo-tile:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--sh-md); border-color: var(--ring);
}

/* ============================================================
   FLAGS / FOOTPRINT
   ============================================================ */
.flag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.flag-card {
  display: flex; align-items: center; gap: 15px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 17px 19px;
  box-shadow: var(--sh-sm);
  transition: all 0.28s cubic-bezier(.2,.7,.3,1);
}
.flag-card:hover {
  border-color: var(--ring); transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.flag-card img {
  width: 54px; height: 37px; object-fit: cover; border-radius: 7px;
  box-shadow: 0 3px 10px rgba(6, 55, 27, 0.18); flex-shrink: 0;
}
.flag-card .fc-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 16.5px; }
.flag-card .fc-tag { font-size: 12.5px; color: var(--muted); }
.flag-card .fc-tag.hq { color: var(--g-text); font-weight: 700; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; margin-top: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2.5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--g-brand), rgba(0, 144, 64, 0.06));
}
.t-item { position: relative; padding: 0 0 40px 66px; }
.t-item:last-child { padding-bottom: 0; }
.t-item::before {
  content: ""; position: absolute; left: 11px; top: 5px;
  width: 19px; height: 19px; border-radius: 50%;
  background: #fff; border: 3.5px solid var(--g-brand);
  box-shadow: 0 0 0 5px rgba(0, 144, 64, 0.1);
}
.t-item .t-year {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--g-text); letter-spacing: 0.1em;
}
.t-item h3 { font-size: 20px; margin: 5px 0 7px; }
.t-item p { font-size: 15px; max-width: 60ch; }

/* ============================================================
   GALLERY
   ============================================================ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 36px; }
.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  background: #fff; color: var(--body);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 21px; cursor: pointer; transition: all 0.22s ease;
  box-shadow: var(--sh-sm); text-decoration: none;
}
.filter-btn:hover { color: var(--g-text); border-color: var(--ring); transform: translateY(-2px); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--g-btn-a), var(--g-btn-b));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 20px rgba(0, 144, 64, 0.28);
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 18px; }
.g-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  border: 1px solid var(--line); cursor: pointer;
  aspect-ratio: 4 / 3; background: var(--tint-50);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.g-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--ring); }
.g-item img, .g-item svg { width: 100%; height: 100%; object-fit: cover; }
.g-item .g-cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 17px 14px;
  background: linear-gradient(transparent, rgba(6, 55, 27, 0.86));
  font-size: 13.5px; font-weight: 700; color: #fff;
}
.g-item .g-cap small { display: block; font-weight: 400; color: rgba(255,255,255,0.72); font-size: 12px; margin-top: 2px; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(6, 55, 27, 0.9); backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 28px; font-size: 36px; color: #fff;
  background: none; border: none; cursor: pointer; line-height: 1;
}

/* ============================================================
   AWARD CARDS
   ============================================================ */
.award-card .award-year {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--g-text);
}
.award-card h3 { margin: 10px 0 8px; font-size: 20.5px; }
.award-card .award-by { font-size: 14.5px; color: var(--muted); }
.award-card .medal {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 20px;
  background: radial-gradient(circle at 32% 26%, var(--g-glow), var(--g-brand) 62%, var(--g-forest));
  box-shadow: 0 10px 26px rgba(0, 144, 64, 0.32), inset 0 2px 4px rgba(255,255,255,0.4);
  color: #fff;
}

/* ============================================================
   AWARD CERTIFICATES — framed grid
   ============================================================ */
.award-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }

.award-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform 0.32s cubic-bezier(.2,.7,.3,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.award-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--ring); }

/* The certificate sits on a mat, like a framed print.
   The image is sized to the frame and letterboxed with object-fit rather than
   relying on max-height:100% — a percentage max-height resolves against an
   auto-sized grid row, so square scans would overrun the frame. */
.award-frame {
  position: relative; height: 300px; flex-shrink: 0;
  background: linear-gradient(160deg, var(--tint-50), #fff 70%);
  border-bottom: 1px solid var(--line);
  padding: 24px; cursor: zoom-in; overflow: hidden;
}
.award-frame img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  filter: drop-shadow(0 6px 16px rgba(6, 55, 27, 0.14));
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1);
}
.award-item:hover .award-frame img { transform: scale(1.045); }

.award-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 7px; flex: 1; }

/* Issuer and year share a row BELOW the frame. The year badge used to float
   over the artwork, which hid the date printed on several certificates. */
.award-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 1px;
}
.award-issuer {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--g-text);
}
.award-yr {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  color: #fff; background: linear-gradient(135deg, var(--g-btn-a), var(--g-btn-b));
  padding: 4px 12px; border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 144, 64, 0.28);
}
.award-name {
  font-family: var(--font-display); font-weight: 700; font-size: 18.5px;
  color: var(--ink); line-height: 1.34; letter-spacing: -0.01em;
}
.award-links {
  margin-top: auto; padding-top: 14px;
  display: flex; align-items: center; gap: 8px 16px; flex-wrap: wrap;
}
.award-zoom {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px; cursor: zoom-in;
}
.award-item:hover .award-zoom { color: var(--g-text); }

/* outbound link to an issuer's public register, for independent verification */
.award-verify {
  font-size: 12.5px; font-weight: 700; color: var(--g-text);
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--ring); background: var(--tint-50);
  padding: 6px 13px; border-radius: 999px;
  transition: all 0.22s ease;
}
.award-verify:hover {
  background: var(--tint-100); border-color: var(--g-brand);
  color: var(--g-text); transform: translateY(-1px);
}

@media (max-width: 520px) { .award-frame { height: 240px; } }

/* ============================================================
   CTA BAND — the big green statement block
   ============================================================ */
.cta-band {
  border-radius: calc(var(--radius) + 10px); overflow: hidden; position: relative;
  background:
    radial-gradient(680px circle at 82% 8%, rgba(53, 208, 127, 0.42), transparent 56%),
    linear-gradient(128deg, var(--g-pine), var(--g-forest) 44%, var(--g-brand));
  padding: clamp(48px, 6.5vw, 88px) clamp(28px, 5vw, 76px);
  text-align: center;
  box-shadow: var(--sh-glow);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 62% 70% at 88% 0%, black, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 62% 70% at 88% 0%, black, transparent 72%);
}
/* soft light bloom bottom-left */
.cta-band::after {
  content: ""; position: absolute; width: 320px; height: 320px;
  left: -80px; bottom: -140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 68%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(29px, 4.1vw, 46px); color: #fff; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.84); margin: 16px auto 32px; max-width: 56ch; position: relative; }
.cta-band .btn-primary {
  background: #fff; color: var(--g-forest);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18); position: relative;
}
.cta-band .btn-primary:hover { color: var(--g-text); box-shadow: 0 18px 44px rgba(0,0,0,0.24); }
.cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border-color: rgba(255, 255, 255, 0.45); box-shadow: none; position: relative;
}
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block; font-size: 13px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; letter-spacing: 0.03em;
}
.field input, .field textarea, .field select {
  width: 100%; background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink); font-family: var(--font-body); font-size: 15px;
  padding: 14px 16px; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a9bfb2; }
.field input:focus, .field textarea:focus {
  border-color: var(--g-btn-b); box-shadow: 0 0 0 4px rgba(0, 144, 64, 0.14);
}
.field textarea { min-height: 148px; resize: vertical; }

/* honeypot — off-screen for people, still in the DOM for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  margin-top: 16px; font-size: 14.5px; font-weight: 600;
  display: none; padding: 12px 16px; border-radius: 12px;
}
.form-status.is-ok, .form-status.is-err { display: block; }
.form-status.is-ok {
  color: var(--g-pine); background: var(--g-mint);
  border: 1px solid rgba(0, 144, 64, 0.35);
}
.form-status.is-err {
  color: #7f1d1d; background: #fee2e2; border: 1px solid #fca5a5;
}
/* on the green card the success state needs to stay legible */
.card-feature .form-status.is-ok { color: var(--g-pine); }
.btn[disabled] { opacity: 0.65; cursor: progress; transform: none !important; }

/* form inside a green feature card */
.card-feature .field label { color: rgba(255,255,255,0.9); }
.card-feature .field input, .card-feature .field textarea {
  background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.24); color: #fff;
}
.card-feature .field input::placeholder, .card-feature .field textarea::placeholder { color: rgba(255,255,255,0.5); }
.card-feature .field input:focus, .card-feature .field textarea:focus {
  border-color: var(--g-mint); box-shadow: 0 0 0 4px rgba(127, 227, 171, 0.2);
}
.card-feature .btn-primary { background: #fff; color: var(--g-forest); }
.card-feature a { color: var(--g-mint); }

/* ============================================================
   OFFICE CARDS
   ============================================================ */
.office-card .o-city {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--ink); display: flex; align-items: center; gap: 11px;
}
.office-card .o-city img {
  width: 36px; height: 25px; border-radius: 5px; object-fit: cover;
  box-shadow: 0 2px 8px rgba(6,55,27,0.18);
}
.office-card p { margin-top: 11px; font-size: 15px; }
.office-card a { display: block; font-size: 14.5px; margin-top: 6px; font-weight: 600; color: var(--g-text); }

/* ============================================================
   FOOTER — deep green anchor
   ============================================================ */
.footer {
  margin-top: 40px; position: relative;
  background:
    radial-gradient(700px circle at 88% 0%, rgba(0, 144, 64, 0.4), transparent 58%),
    linear-gradient(180deg, var(--g-pine), #04240f);
  padding: clamp(56px, 6.5vw, 82px) 0 34px;
  color: rgba(255, 255, 255, 0.72);
}
.footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--g-brand), var(--g-glow), var(--g-mint), var(--g-brand));
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 38px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; margin-bottom: 19px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; font-size: 14.5px; }
.footer ul a { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; }
.footer ul a:hover { color: var(--g-mint); }
.footer .f-logo img { height: 42px; width: auto; margin-bottom: 18px; }
.footer .f-blurb { font-size: 14.5px; max-width: 34ch; color: rgba(255,255,255,0.66); }
.footer .f-flags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 20px; }
.footer .f-flags img {
  width: 32px; height: 22px; border-radius: 4px; object-fit: cover;
  opacity: 0.9; transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.footer .f-flags img:hover { opacity: 1; transform: scale(1.16) translateY(-2px); }
.footer-bottom {
  margin-top: 50px; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.72); }
.footer-bottom a:hover { color: var(--g-mint); }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff; transition: all 0.22s ease;
}
.social-link:hover {
  background: var(--g-brand); border-color: var(--g-brand);
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 144, 64, 0.4);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   MISC
   ============================================================ */
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.pill {
  font-size: 13px; font-weight: 600; color: var(--g-forest);
  background: var(--tint-100); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 17px;
  transition: all 0.22s ease;
}
.pill:hover { background: var(--tint-200); border-color: var(--ring); transform: translateY(-2px); }

.divider-glow {
  height: 2px; border: none; margin: 0; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--ring), var(--g-glow), var(--ring), transparent);
  opacity: 0.7;
}

.notice {
  font-size: 14px; color: var(--body);
  border-left: 4px solid var(--g-brand);
  padding: 14px 20px; background: var(--tint-50);
  border-radius: 0 12px 12px 0;
}
.notice strong { color: var(--ink); }

/* tinted section — for white/mint rhythm between full-white blocks */
.tint { background: linear-gradient(180deg, transparent, var(--tint-50) 18%, var(--tint-50) 82%, transparent); }

/* gradient text flips to light when it sits on a green panel */
.card-feature .grad-text, .cta-band .grad-text {
  background: linear-gradient(96deg, #ffffff 8%, var(--g-mint) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- The "e" mark: the logo's circle-with-notch, blown up as a
   watermark motif. Ties every section back to the brand. ---- */
.emark {
  position: absolute; z-index: -1; pointer-events: none;
  width: clamp(300px, 34vw, 480px); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(150deg, rgba(0, 144, 64, 0.10), rgba(53, 208, 127, 0.02));
  -webkit-mask: radial-gradient(circle at 33% 29%, transparent 0 21.5%, #000 22%);
  mask: radial-gradient(circle at 33% 29%, transparent 0 21.5%, #000 22%);
}
.emark-tr { top: -8%; right: -6%; }
.emark-bl { bottom: -10%; left: -8%; transform: rotate(-24deg); }
@media (max-width: 700px) { .emark { display: none; } }
