/* ==========================================================================
   Emergent LLC  |  site.css
   One stylesheet for the whole site. Edit the tokens in :root to retune
   colors, type, and spacing everywhere at once.
   ========================================================================== */

/* ---------- Fonts (self-hosted Graphik, same files the old site used) ---- */
@font-face { font-family: "Graphik"; font-weight: 300; font-style: normal; font-display: swap; src: url("../fonts/GraphikLight.woff2") format("woff2"); }
@font-face { font-family: "Graphik"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/GraphikRegular.woff2") format("woff2"); }
@font-face { font-family: "Graphik"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/GraphikMedium.woff2") format("woff2"); }
@font-face { font-family: "Graphik"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/GraphikSemibold.woff2") format("woff2"); }
@font-face { font-family: "Graphik"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/GraphikBold.woff2") format("woff2"); }

/* ---------- Design tokens ------------------------------------------------ */
:root {
  --green:        #4EAE30;   /* Emergent green (brand) */
  --green-bright: #5FCB3C;   /* hover / glow */
  --green-deep:   #1F6B18;   /* depth, gradients */
  --green-ink:    #163F12;   /* very dark green for surfaces */
  --green-tint:   #EAF6E5;   /* pale wash for badges and cards */

  --ink:          #0B0B0B;   /* near-black surfaces */
  --ink-2:        #161616;
  --ink-3:        #232323;
  --text:         #1F1F1F;
  --text-muted:   #5B5B5B;
  --text-faint:   #8A8A8A;
  --line:         #E4E4E4;
  --line-strong:  #CFCFCF;
  --paper:        #FFFFFF;
  --paper-2:      #F6F6F4;   /* warm off-white */
  --paper-3:      #EFEFEC;

  --font: "Graphik", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 4px 14px rgba(0,0,0,.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --ease: cubic-bezier(.2,.7,.2,1);
  --header-h: 84px;
}

/* ---------- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; color: var(--ink); }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 6px; z-index: 1000; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ---------- Layout helpers ---------------------------------------------- */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #D9D9D9; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }
.section--ink .eyebrow { color: var(--green-bright); }

.h-display { font-size: clamp(40px, 6vw, 72px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; }
.h-1 { font-size: clamp(34px, 4.6vw, 54px); }
.h-2 { font-size: clamp(28px, 3.4vw, 40px); }
.h-3 { font-size: clamp(21px, 2.2vw, 26px); }
.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--text-muted); font-weight: 400; }
.section--ink .lede { color: #B9B9B9; }
.accent { color: var(--green); }
.measure { max-width: 68ch; }
.center { text-align: center; }
.center .measure, .center .eyebrow { margin-inline: auto; }
.stack > * + * { margin-top: 20px; }
.stack-lg > * + * { margin-top: 32px; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; line-height: 1;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(78,174,48,.28); }
.btn--primary:hover { background: var(--green-bright); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(78,174,48,.36); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; background: rgba(255,255,255,.08); }
.btn--ghost-ink { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn--ghost-ink:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--sm { padding: 11px 18px; font-size: 14px; }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-deep); }
.text-link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(3px); }
.section--ink .text-link { color: var(--green-bright); }

/* ---------- Header -------------------------------------------------------- */
.topbar {
  background: var(--ink); color: #C9C9C9; font-size: 12.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar ul { display: flex; gap: 26px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__note { color: #8f8f8f; letter-spacing: .06em; text-transform: none; font-weight: 400; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: 15.5px; color: var(--text);
  transition: background-color .2s, color .2s;
}
.nav__link svg { width: 14px; height: 14px; opacity: .6; transition: transform .25s var(--ease); }
.nav__item:hover > .nav__link, .nav__item.is-open > .nav__link, .nav__link[aria-current="page"] { background: var(--paper-3); color: var(--ink); }
.nav__item.is-open > .nav__link svg { transform: rotate(180deg); }

/* Dropdown panels */
.menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 300px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s;
}
.nav__item.is-open > .menu, .nav__item:hover > .menu, .nav__item:focus-within > .menu {
  opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s;
}
.menu--wide { min-width: 720px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 8px; padding: 12px; }
.menu__intro {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 10px 12px 12px; margin-bottom: 4px; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--text-muted);
}
.menu__intro strong { color: var(--ink); font-weight: 600; display: block; font-size: 15px; }
.menu__group { display: flex; flex-direction: column; gap: 2px; }
.menu__label { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); padding: 8px 12px 4px; }
.menu a.menu__link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.35;
  transition: background-color .18s, color .18s;
}
.menu a.menu__link:hover { background: var(--green-tint); color: var(--green-ink); }
.menu a.menu__link .dot { flex: none; width: 6px; height: 6px; margin-top: 8px; border-radius: 50%; background: var(--green); opacity: .7; }
.menu a.menu__link small { display: block; font-weight: 400; color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.menu a.menu__link.is-new::after { content: "New"; margin-left: auto; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); background: var(--green-tint); padding: 3px 7px; border-radius: 999px; align-self: center; }

.header__cta { display: inline-flex; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), top .25s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; color: #fff;
  min-height: min(760px, 88vh); display: flex; align-items: center;
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .book__bg picture, .final-cta__bg picture, .tile--photo picture { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 35%; transform: scale(1.04); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,8,5,.86) 0%, rgba(5,8,5,.70) 38%, rgba(5,8,5,.28) 70%, rgba(5,8,5,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.45) 100%);
}
.hero::after {
  content: ""; position: absolute; left: -10%; bottom: -30%; width: 55%; height: 80%; z-index: -1;
  background: radial-gradient(closest-side, rgba(78,174,48,.35), rgba(78,174,48,0));
  filter: blur(20px); pointer-events: none;
}
.hero__inner { max-width: 760px; }
.hero .eyebrow { color: var(--green-bright); }
.hero h1 { color: #fff; margin-top: 18px; }
.hero h1 em { font-style: normal; color: var(--green-bright); }
.hero .lede { color: rgba(255,255,255,.82); margin-top: 22px; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 14px; color: rgba(255,255,255,.7); }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--green-bright); }

/* ---------- Intro + stats ------------------------------------------------ */
.intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.intro__copy p + p { margin-top: 18px; }
.intro__copy strong { color: var(--ink); font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 34px 24px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px; background: var(--line); }
.stat__num { font-size: clamp(44px, 5.5vw, 68px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.stat__num sup { font-size: .5em; color: var(--green); vertical-align: top; top: .25em; position: relative; margin-left: 2px; }
.stat__label { margin-top: 10px; font-size: 14.5px; font-weight: 500; color: var(--text-muted); letter-spacing: .02em; }

/* ---------- Industry strip ---------------------------------------------- */
.industries { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px 24px; margin-top: 28px; padding: 6px 4px 0; }
.industries__label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }
.industries .text-link { grid-row: 1; grid-column: 2; font-size: 14.5px; white-space: nowrap; }
.industries__list { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 0; }
.industries__list li { font-size: 15px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.industries__list li + li::before { content: "\00B7"; margin: 0 12px; color: var(--green); font-weight: 700; }

/* ---------- Service rows ------------------------------------------------- */
.services { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 112px); }
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.svc:nth-child(even) .svc__media { order: 2; }
.svc__media { position: relative; isolation: isolate; }
.svc__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.svc__media::after {
  content: ""; position: absolute; inset: auto -14px -14px auto; width: 44%; height: 44%;
  border-radius: var(--radius); background: linear-gradient(135deg, var(--green), var(--green-deep)); z-index: -1; opacity: .9;
}
.svc:nth-child(even) .svc__media::after { inset: auto auto -14px -14px; }
.svc__index { font-size: 13px; font-weight: 600; letter-spacing: .14em; color: var(--green-deep); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.svc__index::after { content: ""; flex: none; width: 40px; height: 1px; background: var(--line-strong); }
.svc h3 { font-size: clamp(26px, 3vw, 36px); }
.svc .lede { margin-top: 14px; font-size: 17.5px; }
.svc__list { margin-top: 22px; border-top: 1px solid var(--line); }
.svc__list li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink); }
.svc__list svg { width: 22px; height: 22px; flex: none; color: var(--green); }
.svc__cta { margin-top: 24px; }

/* ---------- Book band ----------------------------------------------------- */
.book { position: relative; overflow: hidden; background: #050807; color: #fff; }
.book__bg { position: absolute; inset: 0; }
.book__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 50%; opacity: .95; }
.book__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,7,.96) 0%, rgba(5,8,7,.88) 40%, rgba(5,8,7,.35) 68%, rgba(5,8,7,.05) 100%); }
.book .container { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; min-height: 420px; padding-block: clamp(56px, 7vw, 96px); }
.book h2 { color: #fff; }
.book h2 em { font-style: normal; color: var(--green-bright); }
.book .lede { color: rgba(255,255,255,.78); margin-top: 16px; max-width: 52ch; }
.book__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Case study cards -------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(36px, 5vw, 56px); }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 28px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--green), var(--green-deep)); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__tag { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.card h3 { font-size: 20px; margin-top: 10px; }
.card p { margin-top: 12px; color: var(--text-muted); font-size: 15.5px; }
.card__foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--green-deep); font-weight: 600; display: flex; gap: 8px; align-items: center; }
.card__foot svg { width: 16px; height: 16px; }

/* ---------- Testimonial cards ------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(36px, 5vw, 56px); }
.quote-card {
  margin: 0; display: flex; flex-direction: column; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-card__mark { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 34px; font-weight: 700; line-height: 1; padding-top: 14px; margin-bottom: 20px; }
.quote-card blockquote { margin: 0; flex: 1; font-size: 19px; line-height: 1.45; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.quote-card figcaption { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--text-muted); display: flex; flex-direction: column; gap: 2px; }
.quote-card figcaption strong { color: var(--ink); font-weight: 600; font-size: 15px; }

/* ---------- CTA band ----------------------------------------------------- */
.cta {
  position: relative; overflow: hidden; background: var(--ink); color: #fff; isolation: isolate;
}
.cta::before {
  content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%; z-index: -1;
  background: radial-gradient(closest-side, rgba(78,174,48,.45), rgba(78,174,48,0)); filter: blur(30px);
}
.cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 80% 50%, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at 80% 50%, #000 20%, transparent 70%);
}
.cta .container { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-block: clamp(56px, 7vw, 88px); }
.cta h2 { color: #fff; max-width: 20ch; }
.cta p { color: rgba(255,255,255,.72); margin-top: 12px; max-width: 48ch; }

/* ---------- Resource tiles ---------------------------------------------- */
.tiles { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; margin-top: clamp(36px, 5vw, 56px); }
.tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 30px; border-radius: var(--radius); overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile h3 { font-size: 22px; }
.tile p { margin-top: 10px; color: var(--text-muted); font-size: 15.5px; max-width: 46ch; }
.tile .text-link { margin-top: 18px; }
.tile--photo { color: #fff; border: 0; grid-row: span 2; min-height: 100%; }
.tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile--photo:hover img { transform: scale(1.04); }
.tile--photo picture { z-index: 0; }
.tile--photo::before { content: ""; z-index: 1; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.85) 100%); }
.tile--photo > *:not(picture) { position: relative; z-index: 2; }
.tile--photo h3 { color: #fff; }
.tile--photo p { color: rgba(255,255,255,.8); }
.tile--photo .text-link { color: var(--green-bright); }
.tile__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center; margin-bottom: auto; }
.tile__icon svg { width: 22px; height: 22px; }

/* ---------- Testimonial ------------------------------------------------- */
.quote { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; max-width: 960px; margin-inline: auto; }
.quote__mark { width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 34px; font-weight: 700; line-height: 1; padding-top: 12px; }
.quote blockquote { margin: 0; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.4; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }
.quote figcaption { margin-top: 18px; font-size: 15px; color: var(--text-muted); }
.quote figcaption strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer -------------------------------------------------------- */
.footer { background: var(--ink); color: #A9A9A9; font-size: 15px; }
.footer a { transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-block: clamp(56px, 6vw, 80px) 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 46px; width: auto; }
.footer__brand p { margin-top: 18px; max-width: 34ch; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links li + li { margin-top: 10px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--green); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; }
.subscribe p { margin-bottom: 16px; }
.subscribe form { display: flex; gap: 8px; }
.subscribe input[type="email"] {
  flex: 1; min-width: 0; height: 46px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 15px;
}
.subscribe input::placeholder { color: #7f7f7f; }
.subscribe input:focus { outline: 2px solid var(--green); border-color: transparent; }
.subscribe button { height: 46px; padding: 0 20px; }
.subscribe small { display: block; margin-top: 10px; font-size: 12.5px; color: #7a7a7a; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 24px; font-size: 13.5px; color: #8b8b8b; }
.footer__bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Reveal on scroll (progressive enhancement) ----------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 1080px) {
  .menu--wide { min-width: 640px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .topbar { display: none; }
  /* backdrop-filter would turn the header into the containing block for the fixed nav, so drop it on mobile */
  .header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  body { overflow-x: clip; }
  .brand img { height: 40px; }
  .header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 8px var(--gutter) 40px; overflow-y: auto;
    transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease), visibility 0s linear .3s;
  }
  .nav.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 16px 4px; border-radius: 0; font-size: 18px; font-weight: 500; }
  .nav__item:hover > .nav__link, .nav__link[aria-current="page"] { background: none; }
  .menu, .menu--wide {
    position: static; min-width: 0; display: none; grid-template-columns: 1fr; box-shadow: none; border: 0; padding: 0 0 12px; transform: none; opacity: 1; visibility: visible;
  }
  .nav__item.is-open > .menu { display: grid; }
  .nav__item:hover > .menu:not(.is-open) { display: none; }
  .nav__item.is-open:hover > .menu { display: grid; }
  .menu__intro { display: none; }
  .nav__mobile-extras { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
  .nav__mobile-extras .btn { justify-content: center; }
  .intro { grid-template-columns: 1fr; }
  .svc, .svc:nth-child(even) .svc__media { grid-template-columns: 1fr; order: 0; }
  .svc__media { order: -1; }
  .book .container { grid-template-columns: 1fr; }
  .book__bg::after { background: linear-gradient(180deg, rgba(5,8,7,.92) 0%, rgba(5,8,7,.8) 60%, rgba(5,8,7,.5) 100%); }
  .cards { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .industries .text-link { grid-row: auto; grid-column: 1; }
  .industries__list { gap: 8px; }
  .industries__list li { font-size: 13.5px; padding: 6px 12px; border-radius: 999px; background: var(--paper-3); color: var(--text); }
  .industries__list li + li::before { content: none; }
  .tiles { grid-template-columns: 1fr; }
  .tile--photo { grid-row: auto; min-height: 320px; }
}
@media (min-width: 961px) { .nav__mobile-extras { display: none; } }
@media (max-width: 600px) {
  body { font-size: 16px; }
  .eyebrow { font-size: 12px; letter-spacing: .12em; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat::before { top: 0; height: 1px; width: 60%; left: 20%; }
  .stat { padding: 26px 16px; }
  .hero { min-height: 0; padding-block: 72px 64px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta h2 { max-width: none; }
  .quote { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .subscribe form { flex-direction: column; }
  .subscribe input[type="email"] { flex: none; width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Final CTA with brand wave --------------------------------- */
.final-cta { position: relative; overflow: hidden; isolation: isolate; }
.final-cta__bg { position: absolute; inset: 0; z-index: -1; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,10,4,.42), rgba(4,10,4,.62)); }
.final-cta .lede { color: rgba(255,255,255,.85); }
.final-cta .eyebrow { color: #fff; }
.final-cta .eyebrow::before { background: #fff; }

/* ==========================================================================
   Interior pages
   ========================================================================== */

/* ---------- Page hero (compact banner) ---------------------------------- */
.phero {
  position: relative; isolation: isolate; color: #fff; overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px);
  background: var(--ink);
}
.phero__media { position: absolute; inset: 0; z-index: -2; }
.phero__media picture { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.phero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(6,10,6,.90) 0%, rgba(6,10,6,.76) 45%, rgba(6,10,6,.42) 100%);
}
.phero::after {
  content: ""; position: absolute; left: -8%; bottom: -40%; width: 46%; height: 90%; z-index: -1;
  background: radial-gradient(closest-side, rgba(78,174,48,.32), rgba(78,174,48,0)); filter: blur(18px);
}
.phero h1 { color: #fff; max-width: 20ch; }
.phero .lede { color: rgba(255,255,255,.82); margin-top: 18px; max-width: 60ch; }
.phero--plain { background: var(--paper-2); color: var(--text); }
.phero--plain::before, .phero--plain::after { display: none; }
.phero--plain h1 { color: var(--ink); }
.phero--plain .lede { color: var(--text-muted); }
.phero--plain .crumbs { color: var(--text-faint); }
.phero--plain .crumbs a:hover { color: var(--ink); }
.phero--plain .crumbs li + li::before { color: var(--text-faint); }

/* ---------- Breadcrumbs -------------------------------------------------- */
.crumbs { font-size: 13.5px; color: rgba(255,255,255,.62); margin-bottom: 20px; }
.crumbs ul { display: flex; flex-wrap: wrap; gap: 0; }
.crumbs a { transition: color .2s; }
.crumbs a:hover { color: #fff; }
.crumbs li + li::before { content: "/"; margin: 0 10px; color: rgba(255,255,255,.35); }
.crumbs li[aria-current] { color: #fff; font-weight: 500; }
.phero--plain .crumbs li[aria-current] { color: var(--ink); }

/* ---------- Pillars ------------------------------------------------------ */
.pillars { display: grid; gap: 22px; margin-top: clamp(36px, 5vw, 56px); }
.pillars--3 { grid-template-columns: repeat(3, 1fr); }
.pillars--4 { grid-template-columns: repeat(4, 1fr); }
.pillar {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar__num { font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--green-deep); margin-bottom: 14px; }
.pillar h3 { font-size: 20px; }
.pillar p { margin-top: 10px; color: var(--text-muted); font-size: 15.5px; }
.section--paper2 .pillar { background: #fff; }

/* ---------- Offers (service detail list) -------------------------------- */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: clamp(36px, 5vw, 56px); background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.offer { background: #fff; padding: 30px 28px; transition: background .25s var(--ease); }
.offer:hover { background: var(--green-tint); }
.offer h3 { font-size: 19px; display: flex; align-items: baseline; gap: 10px; }
.offer h3::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--green); transform: translateY(-3px); }
.offer p { margin-top: 10px; color: var(--text-muted); font-size: 15.5px; padding-left: 17px; }

/* ---------- Steps -------------------------------------------------------- */
.steps { margin-top: clamp(36px, 5vw, 56px); counter-reset: step; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--green-tint); color: var(--green-ink);
  display: grid; place-items: center; font-weight: 700; font-size: 17px;
}
.step h3 { font-size: 20px; }
.step p { margin-top: 8px; color: var(--text-muted); font-size: 16px; max-width: 72ch; }

/* ---------- Checklists ---------------------------------------------------- */
.checks { display: grid; gap: 12px; margin-top: 20px; }
.checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.45; }
.checks svg { width: 20px; height: 20px; flex: none; color: var(--green); margin-top: 2px; }

/* ---------- Metrics row --------------------------------------------------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: clamp(32px, 4vw, 48px); background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.metric { background: #fff; padding: 30px 20px; text-align: center; }
.metric__num { font-size: clamp(30px, 3.4vw, 42px); font-weight: 600; letter-spacing: -0.03em; color: var(--green-deep); line-height: 1; }
.metric__label { margin-top: 10px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.section--ink .metrics { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.12); }
.section--ink .metric { background: var(--ink-2); }
.section--ink .metric__num { color: var(--green-bright); }
.section--ink .metric__label { color: #A9A9A9; }

/* ---------- Tiers / engagement options ----------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(36px, 5vw, 56px); align-items: start; }
.tiers--2 { grid-template-columns: repeat(2, 1fr); }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.tier__tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-deep); }
.tier h3 { font-size: 23px; margin-top: 8px; }
.tier__meta { margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--text-muted); background: var(--paper-3); display: inline-block; padding: 5px 12px; border-radius: 999px; }
.tier p { margin-top: 14px; color: var(--text-muted); font-size: 15.5px; }
.tier .checks { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 20px; }

/* ---------- FAQ ----------------------------------------------------------- */
.faqs { margin-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; font-size: 18px; font-weight: 500; color: var(--ink); transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green-deep); }
.faq summary svg { width: 20px; height: 20px; flex: none; color: var(--green); transition: transform .3s var(--ease); }
.faq[open] summary svg { transform: rotate(180deg); }
.faq__body { padding-bottom: 24px; }
.faq__body p { color: var(--text-muted); font-size: 16px; max-width: 76ch; }

/* ---------- Split (copy + media) ------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--media-first .split__media { order: -1; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split h2 + p, .split h3 + p { margin-top: 16px; }
.split p + p { margin-top: 16px; }

/* ---------- Prose (legal, long copy) -------------------------------------- */
.prose { max-width: 76ch; }
.prose h2 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin-top: 28px; }
.prose p { margin-top: 16px; color: var(--text); font-size: 16.5px; line-height: 1.65; }
.prose ul { margin-top: 16px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--text); font-size: 16.5px; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.prose a { color: var(--green-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--green); }
.prose .note { background: var(--paper-2); border-left: 3px solid var(--green); padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: 24px; }
.prose .note p { margin-top: 0; font-size: 15.5px; color: var(--text-muted); }

/* ---------- Project register (Our Clients) -------------------------------- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: clamp(36px, 5vw, 56px); background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.project { background: #fff; padding: 28px 26px; transition: background .25s var(--ease); }
.project:hover { background: var(--green-tint); }
.project h3 { font-size: 17.5px; line-height: 1.25; }
.project p { margin-top: 10px; color: var(--text-muted); font-size: 15px; }

/* ---------- White papers --------------------------------------------------- */
.papers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(36px, 5vw, 56px); }
.paper { display: flex; flex-direction: column; }
.paper__cover { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.paper:hover .paper__cover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.paper__cover img { width: 100%; aspect-ratio: 620 / 803; object-fit: cover; object-position: top; }
.paper__series { margin-top: 20px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.paper h3 { font-size: 18px; margin-top: 8px; line-height: 1.3; }
.paper p { margin-top: 8px; font-size: 15px; color: var(--text-muted); }
.paper .text-link { margin-top: 14px; font-size: 14.5px; }

/* ---------- Team profile ---------------------------------------------------- */
.profile { display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.profile__aside { position: sticky; top: calc(var(--header-h) + 24px); }
.profile__photo { width: 100%; max-width: 260px; border-radius: var(--radius); overflow: hidden; background: var(--paper-3); border: 1px solid var(--line); }
.profile__photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.profile__name { margin-top: 22px; }
.profile__name h2 { font-size: 26px; }
.profile__role { margin-top: 6px; font-size: 15px; color: var(--green-deep); font-weight: 600; }
.profile__contact { margin-top: 20px; display: grid; gap: 10px; font-size: 15px; }
.profile__contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); transition: color .2s; }
.profile__contact a:hover { color: var(--green-deep); }
.profile__contact svg { width: 17px; height: 17px; flex: none; color: var(--green); }
.profile__body p { margin-top: 18px; font-size: 16.5px; line-height: 1.65; color: var(--text); }
.profile__body p:first-child { margin-top: 0; }
.profile__body a { color: var(--green-deep); font-weight: 500; }
.profile__body a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Partners --------------------------------------------------------- */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(36px, 5vw, 56px); }
.partner { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.partner h3 { font-size: 20px; }
.partner__person { margin-top: 6px; font-size: 15px; font-weight: 600; color: var(--green-deep); }
.partner address { margin-top: 16px; font-style: normal; font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.partner__links { margin-top: 16px; display: grid; gap: 8px; font-size: 15px; }
.partner__links a { color: var(--green-deep); font-weight: 500; }
.partner__links a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Contact ----------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact__info dl { margin: 24px 0 0; display: grid; gap: 22px; }
.contact__info dt { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.contact__info dd { margin: 6px 0 0; font-size: 16.5px; color: var(--text); }
.contact__info dd a { color: var(--green-deep); font-weight: 500; }
.contact__info dd a:hover { text-decoration: underline; text-underline-offset: 3px; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--green-deep); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(78,174,48,.15); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form__note { font-size: 13.5px; color: var(--text-faint); }

/* ---------- Newsletter signup panel --------------------------------------------- */
.signup { background: var(--ink); color: #D9D9D9; border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); }
.signup h2 { color: #fff; font-size: clamp(24px, 2.6vw, 30px); }
.signup p { margin-top: 12px; color: #B9B9B9; font-size: 16px; }
.signup form { margin-top: 26px; display: grid; gap: 16px; }
.signup .field label { color: #fff; }
.signup .field input { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff; }
.signup .field input::placeholder { color: #7f7f7f; }
.signup .field input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(78,174,48,.25); }
.signup .field--row { grid-template-columns: 1fr 1fr; }
.signup small { display: block; margin-top: 4px; color: #7a7a7a; font-size: 13px; }

/* ---------- Quote grid (testimonials page) ---------------------------------------- */
.quotes--wall { grid-template-columns: repeat(3, 1fr); }

/* ---------- Interior responsive ---------------------------------------------------- */
@media (max-width: 1080px) {
  .pillars--4 { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .projects, .papers, .partners { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 240px 1fr; }
}
@media (max-width: 960px) {
  .pillars--3 { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .split, .contact { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
  .profile { grid-template-columns: 1fr; }
  .profile__aside { position: static; }
  .profile__photo { max-width: 200px; }
  .quotes--wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars--4 { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .projects, .papers, .partners { grid-template-columns: 1fr; }
  .quotes--wall { grid-template-columns: 1fr; }
  .field--row, .signup .field--row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .phero h1 { max-width: none; }
}

/* ---------- Wide offer blocks (AI operating model) ------------------------ */
.offers-wide { display: grid; gap: 22px; margin-top: clamp(36px, 5vw, 56px); }
.offer-wide {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 4vw, 56px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px;
  transition: box-shadow .3s var(--ease);
}
.offer-wide:hover { box-shadow: var(--shadow-md); }
.offer-wide__head h3 { font-size: 22px; margin-top: 12px; }
.offer-wide__body h4 { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.offer-wide__body .checks { margin-top: 14px; }
.offer-wide__value {
  margin-top: 22px; padding: 16px 20px; background: var(--green-tint); border-radius: var(--radius-sm);
  font-size: 15.5px; line-height: 1.5; color: var(--green-ink);
}
.offer-wide__value strong { font-weight: 600; }
a.pillar { display: block; }
a.pillar .card__foot { border-top: 1px solid var(--line); padding-top: 16px; font-size: 14px; color: var(--green-deep); font-weight: 600; display: flex; gap: 8px; align-items: center; }
a.pillar .card__foot svg { width: 16px; height: 16px; }
.pillars .lede { grid-column: 1 / -1; }
@media (max-width: 960px) { .offer-wide { grid-template-columns: 1fr; } }

/* ---------- Service / index card grids ------------------------------------ */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-cards--2 { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--green), var(--green-deep)); opacity: 0; transition: opacity .3s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card:hover::before { opacity: 1; }
.svc-card__tag { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.svc-card h3 { font-size: 21px; line-height: 1.2; }
.svc-card p { margin-top: 12px; color: var(--text-muted); font-size: 15.5px; flex: 1; }
.svc-card .card__foot { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--green-deep); font-weight: 600; display: flex; gap: 8px; align-items: center; }
.svc-card .card__foot svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-card:hover .card__foot svg { transform: translateX(3px); }

/* ---------- Chips --------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: clamp(32px, 4vw, 48px); }
.chips span {
  font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 11px 20px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line);
}
@media (max-width: 1080px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .svc-cards, .svc-cards--2 { grid-template-columns: 1fr; } }

/* ---------- Intro lead-in block ------------------------------------------- */
.section--tight > .container > .prose {
  max-width: 74ch; margin-inline: auto;
}
.section--tight > .container > .prose > p { font-size: 18px; line-height: 1.6; color: var(--text-muted); }
.section--tight > .container > .prose > p strong,
.section--tight > .container > .prose > p em { color: var(--text); }
.section--tight > .container > .prose > h2 { text-align: center; margin-bottom: 8px; }

/* ---------- Industry list (two columns, aligned) -------------------------- */
.ind-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px 40px; margin-top: 28px; max-width: 820px;
}
.ind-grid li {
  position: relative; padding: 12px 0 12px 26px;
  font-size: 16.5px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.ind-grid li::before {
  content: ""; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
@media (max-width: 600px) { .ind-grid { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Figures (diagrams) -------------------------------------------- */
.figure { margin: clamp(32px, 4vw, 52px) 0 0; }
.figure__frame {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 44px); overflow: hidden;
}
.section--paper2 .figure__frame { background: #fff; }
.figure .dia { width: 100%; height: auto; display: block; }
.figure figcaption {
  margin-top: 16px; font-size: 14.5px; color: var(--text-faint); text-align: center;
}
.figure--bare .figure__frame { background: none; border: 0; padding: 0; }

/* ---------- Photo band ----------------------------------------------------- */
.band { position: relative; overflow: hidden; isolation: isolate; }
.band picture, .band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__inner {
  position: relative; min-height: clamp(240px, 30vw, 380px);
  display: flex; align-items: center;
  padding-block: clamp(48px, 6vw, 76px);
}
.band::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(6,10,6,.88) 0%, rgba(6,10,6,.68) 46%, rgba(6,10,6,.18) 100%);
}
.band__inner > * { position: relative; z-index: 1; }
.band__quote { max-width: 62ch; }
.band__quote blockquote {
  margin: 0; color: #fff; font-size: clamp(21px, 2.6vw, 32px); font-weight: 500;
  line-height: 1.32; letter-spacing: -0.015em;
}
.band__quote figcaption { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,.72); }
.band__quote figcaption strong { color: #fff; font-weight: 600; display: block; }
.band--plain::after { background: linear-gradient(180deg, rgba(6,10,6,.28), rgba(6,10,6,.42)); }
.band--plain .band__inner { min-height: clamp(180px, 22vw, 280px); }

/* ---------- Split media default ------------------------------------------- */
.split__media img { width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Wide diagrams stay legible on phones by scrolling inside their frame
   rather than shrinking the type to nothing. */
@media (max-width: 760px) {
  .figure__frame { padding: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .figure .dia { min-width: 620px; }
  .figure figcaption { text-align: left; }
  .figure__hint { display: block; }
}
.figure__hint {
  display: none; margin-top: 10px; font-size: 13px; color: var(--text-faint);
}
