/* ==========================================================================
   APIS Group — apisgroup.net
   Design system & global styles
   --------------------------------------------------------------------------
   Hybrid aesthetic: Caverion warmth + KST editorial authority.
   Fonts: Fraunces (display serif) + Geist (technical sans).
   ========================================================================== */

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.1; font-weight: 400; text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --navy: #15426A;
  --navy-deep: #0C2A45;
  --navy-darker: #081C30;
  --green: #3EB54A;
  --green-deep: #2D9038;

  /* Neutrals */
  --ink: #0E0E0E;
  --ink-soft: #2A2A2A;
  --gray-700: #4A5560;
  --gray-500: #7A828C;
  --gray-300: #C9CDD2;
  --gray-200: #E2E4E7;
  --gray-100: #F1F2F4;
  --cream: #F4F6F9;          /* cool blue-gray surface (was warm cream) */
  --cream-deep: #E8ECF1;     /* slightly darker cool surface */
  --surface-tint: #EDF1F5;   /* subtle blue-tinted neutral */
  --white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  /* Fluid type scale */
  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: clamp(1.4rem, 1.2rem + 1vw, 1.875rem);
  --fs-2xl: clamp(1.85rem, 1.4rem + 2vw, 2.75rem);
  --fs-3xl: clamp(2.4rem, 1.6rem + 3.5vw, 4rem);
  --fs-4xl: clamp(3rem, 1.8rem + 5.5vw, 5.75rem);
  --fs-display: clamp(3.25rem, 1.6rem + 7vw, 7.5rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(12, 42, 69, 0.06), 0 2px 6px rgba(12, 42, 69, 0.04);
  --shadow-md: 0 4px 12px rgba(12, 42, 69, 0.08), 0 12px 28px rgba(12, 42, 69, 0.06);
  --shadow-lg: 0 12px 32px rgba(12, 42, 69, 0.12), 0 24px 64px rgba(12, 42, 69, 0.08);
}

/* ---------- 3. BASE ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
}

::selection { background: var(--navy); color: var(--white); }

/* ---------- 4. UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.72); }
.eyebrow.on-green { color: rgba(255,255,255,0.92); }

.serif { font-family: var(--font-display); font-feature-settings: "ss01"; }
.sans { font-family: var(--font-body); }

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.muted { color: var(--gray-700); }
.lead {
  font-size: var(--fs-md);
  color: var(--gray-700);
  max-width: 56ch;
  line-height: 1.55;
}

.hex {
  display: inline-block;
  width: 0.62em;
  height: 0.7em;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  vertical-align: 0.05em;
  margin: 0 0.05em;
}

/* Section paddings */
.section { padding: var(--sp-12) 0; }
.section-lg { padding: var(--sp-16) 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy-deep); color: var(--white); }
.section-green { background: var(--green-deep); color: var(--white); }
.section-ink { background: var(--ink); color: var(--white); }

/* ---------- 5. TOP UTILITY BAR ---------- */
.top-bar {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.55rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-5);
}
.top-bar a {
  color: rgba(255,255,255,0.78);
  transition: color var(--t-fast) var(--ease-out);
}
.top-bar a:hover { color: var(--white); }
.top-bar__left, .top-bar__right { display: flex; gap: var(--sp-5); align-items: center; }
.top-bar__lang { display: flex; gap: var(--sp-2); align-items: center; }
.top-bar__lang button {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
}
.top-bar__lang button.active { color: var(--white); }
.top-bar__lang span { opacity: 0.4; }
@media (max-width: 720px) {
  .top-bar__left { display: none; }
  .top-bar__inner { justify-content: flex-end; }
}

/* ---------- 6. HEADER / NAV ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--t-med) var(--ease-out);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav__brand img { height: 40px; width: auto; display: block; }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: -0.005em;
  display: none;
}
@media (min-width: 900px) { .nav__brand-text { display: inline; } }

.nav__primary {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}
.nav__primary a {
  font-size: 0.94rem;
  font-weight: 450;
  color: var(--ink);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--t-fast) var(--ease-out);
}
.nav__primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: right var(--t-med) var(--ease-out);
}
.nav__primary a:hover::after,
.nav__primary a.is-active::after { right: 0; }

.nav__cta {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}

@media (max-width: 1080px) {
  .nav__primary, .nav__cta { display: none; }
}

/* Hamburger */
.nav__burger {
  display: none;
  position: relative;
  width: 32px; height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__burger span {
  position: absolute;
  left: 4px;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__burger span:nth-child(1) { transform: translateY(-7px); }
.nav__burger span:nth-child(2) { transform: translateY(0); }
.nav__burger span:nth-child(3) { transform: translateY(7px); }
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 1080px) { .nav__burger { display: flex; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  color: var(--white);
  z-index: 99;
  padding: 6rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform var(--t-med) var(--ease-out);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.mobile-drawer a:hover { color: var(--green); }
.mobile-drawer__cta { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }

/* ---------- 7. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-med) var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-deep); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 500;
  transition: gap var(--t-med) var(--ease-out);
}
.btn-link:hover { gap: 0.7rem; }
.btn-link svg { width: 14px; height: 14px; }

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 720px) { .sticky-cta { display: block; } }

/* ---------- 8. HERO ---------- */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 48, 0.95) 0%, rgba(12, 42, 69, 0.85) 45%, rgba(12, 42, 69, 0.55) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(8, 28, 48, 0.95) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% 30%, rgba(62, 181, 74, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(21, 66, 106, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black, transparent);
  pointer-events: none;
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { color: rgba(255,255,255,0.62); margin-bottom: 1.5rem; }
.hero__headline {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.6rem, 1.4rem + 5.5vw, 6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  max-width: 17ch;
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  font-weight: 320;
  color: rgba(255,255,255,0.78);
}
.hero__sub {
  font-size: var(--fs-md);
  max-width: 56ch;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 2.5rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--sp-6);
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__meta-item .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 360;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
  font-variation-settings: "SOFT" 50;
}
.hero__meta-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* Hero variant for inner pages */
.hero-inner {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.hero-inner__eyebrow { color: var(--gray-700); margin-bottom: 1.5rem; }
.hero-inner__title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: var(--fs-4xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}
.hero-inner__sub {
  font-size: var(--fs-md);
  max-width: 60ch;
  color: var(--gray-700);
  line-height: 1.55;
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ---------- 9. SECTION HEADER ---------- */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-10);
}
.section-header__title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: var(--fs-3xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  font-variation-settings: "SOFT" 40;
}
.section-header__title em { font-style: italic; color: var(--gray-500); font-weight: 340; }
.section-header__intro {
  font-size: var(--fs-md);
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 56ch;
}
.section-header.center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.section-header.center .section-header__intro { margin: 0 auto; }
@media (max-width: 880px) {
  .section-header { grid-template-columns: 1fr; gap: var(--sp-5); align-items: start; }
}

/* ---------- 10. SOLUTION PILLARS (numbered editorial cards) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pillar {
  background: var(--white);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  min-height: 320px;
  transition: background var(--t-med) var(--ease-out);
}
.pillar:hover { background: var(--cream); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 320;
  color: var(--navy);
  line-height: 1;
  font-variation-settings: "SOFT" 60;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 420;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.pillar__desc { font-size: 0.95rem; color: var(--gray-700); line-height: 1.55; }
.pillar__arrow { margin-top: auto; color: var(--green); }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- 11. DISCIPLINES GRID ---------- */
.disciplines {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.discipline {
  background: var(--white);
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all var(--t-med) var(--ease-out);
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 450;
}
.discipline__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  transition: all var(--t-med) var(--ease-out);
}
.discipline:hover {
  background: var(--navy-deep);
  color: var(--white);
}
.discipline:hover .discipline__icon { background: var(--green); color: var(--white); }
.discipline svg { width: 14px; height: 14px; }

/* ---------- 12. INDUSTRIES (chip grid) ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-3);
}
.industry {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
}
.industry:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.industry__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}
.industry__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 420;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

/* ---------- 13. LIFECYCLE BAND ---------- */
.lifecycle {
  background: var(--cream);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.lifecycle__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-10);
  align-items: start;
}
.lifecycle__steps { display: flex; flex-direction: column; gap: 0; }
.lifecycle__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: start;
}
.lifecycle__step:last-child { border-bottom: none; }
.lifecycle__step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 420;
  color: var(--green);
  font-variation-settings: "SOFT" 50;
}
.lifecycle__step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
  font-weight: 440;
}
.lifecycle__step p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.55; }
@media (max-width: 880px) {
  .lifecycle__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---------- 14. SUSTAINABILITY (green-dominant block) ---------- */
.sustain {
  background: var(--green-deep);
  color: var(--white);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.sustain::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -20%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 65%);
  pointer-events: none;
}
.sustain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
  position: relative;
}
.sustain__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.sustain__title em { font-style: italic; color: rgba(255,255,255,0.7); font-weight: 340; }
.sustain__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.sustain__metric {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: var(--sp-4);
}
.sustain__metric .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 340;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  font-variation-settings: "SOFT" 50;
}
.sustain__metric .label { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
@media (max-width: 880px) {
  .sustain__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---------- 15. PROJECTS / CASE STUDIES ---------- */
.projects {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-4);
  height: 640px;
}
.project {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-deep);
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out);
}
.project:hover { transform: translateY(-3px); }
.project:hover .project__photo img { transform: scale(1.04); }
.project:nth-child(1) { grid-row: 1 / 3; }
.project__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.project__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
/* gradient fallback if image fails / is missing */
.project__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.project__bg.bg-1 { background: linear-gradient(135deg, #1a3a5c 0%, #15426A 50%, #2D5A82 100%); }
.project__bg.bg-2 { background: linear-gradient(135deg, #2D9038 0%, #3EB54A 100%); }
.project__bg.bg-3 { background: linear-gradient(135deg, #0C2A45 0%, #15426A 100%); }
.project__bg.bg-4 { background: linear-gradient(135deg, #4A5560 0%, #2A2A2A 100%); }
.project__bg.bg-5 { background: linear-gradient(135deg, #2D9038 0%, #15426A 100%); }
.project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 28, 48, 0.92) 0%, rgba(8, 28, 48, 0.45) 55%, rgba(8, 28, 48, 0.15) 100%);
  z-index: 1;
}
.project__content {
  position: absolute;
  inset: 0;
  padding: var(--sp-5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}
.project__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  backdrop-filter: blur(6px);
}
.project__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 420;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.project:nth-child(1) .project__title { font-size: 2rem; }
.project__meta { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-top: 0.4rem; }
@media (max-width: 980px) {
  .projects { grid-template-columns: 1fr 1fr; height: auto; }
  .projects > .project { aspect-ratio: 4/3; }
  .project:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
}
@media (max-width: 580px) {
  .projects { grid-template-columns: 1fr; }
  .project:nth-child(1) { grid-column: auto; }
}

/* ---------- 16. INSIGHTS ---------- */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.insight {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-300);
  cursor: pointer;
}
.insight__category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.insight__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 420;
  color: var(--navy-deep);
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
}
.insight:hover .insight__title { color: var(--green-deep); }
.insight__date { font-size: 0.82rem; color: var(--gray-500); margin-top: auto; }
@media (max-width: 880px) { .insights { grid-template-columns: 1fr; } }

/* ---------- 17. CTA BAND ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 340;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "SOFT" 30;
}
.cta-band__title em { font-style: italic; color: rgba(255,255,255,0.5); font-weight: 300; }
.cta-band__contact { display: flex; flex-direction: column; gap: 0.85rem; font-size: 0.95rem; }
.cta-band__contact a { display: inline-flex; align-items: center; gap: 0.6rem; }
.cta-band__contact a:hover { color: var(--green); }
.cta-band__contact .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.3rem;
}
.cta-band__contact-row {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cta-band__contact-row:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 880px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---------- 18. FORMS ---------- */
.form-section { padding: var(--sp-12) 0; background: var(--white); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 980px) { .form-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }

.form-aside h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
  font-weight: 420;
  line-height: 1.15;
}
.form-aside p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.55; margin-bottom: var(--sp-4); }
.form-aside ul { display: flex; flex-direction: column; gap: 0.6rem; margin-top: var(--sp-4); }
.form-aside ul li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 1.2rem;
  position: relative;
}
.form-aside ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px; height: 8px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.form {
  background: var(--cream);
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-fieldset {
  border: none;
  margin-bottom: var(--sp-6);
  padding: 0;
}
.form-fieldset legend {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-700);
  margin-bottom: var(--sp-4);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-300);
  width: 100%;
  display: block;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.field label {
  font-size: 0.82rem;
  color: var(--gray-700);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.field label .req { color: var(--green-deep); margin-left: 0.15rem; }
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--font-body);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(21, 66, 106, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }

.field-file {
  background: var(--white);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.field-file:hover { border-color: var(--navy); }
.field-file input { display: none; }
.field-file__label { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

.field-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.field-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--green-deep);
  flex-shrink: 0;
}
.field-check a { color: var(--navy); text-decoration: underline; }

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--gray-300);
}
.form-submit__note { font-size: 0.82rem; color: var(--gray-500); }

/* ---------- 19. PAGE LAYOUTS ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: var(--sp-6); } }

.prose { max-width: 68ch; font-size: 1.04rem; line-height: 1.65; color: var(--ink-soft); }
.prose h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-deep);
  margin: 2.5rem 0 1rem;
  font-weight: 420;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin: 2rem 0 0.7rem;
  font-weight: 440;
}
.prose p { margin-bottom: 1.2rem; }
.prose ul { margin: 1rem 0 1.5rem 1.4rem; }
.prose ul li { list-style: none; position: relative; padding-left: 1rem; margin-bottom: 0.5rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.6rem;
  width: 7px; height: 7px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* Sticky page-side nav */
.side-nav {
  position: sticky;
  top: 100px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.side-nav__title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
}
.side-nav a {
  color: var(--gray-700);
  padding: 0.5rem 0;
  border-left: 2px solid var(--gray-200);
  padding-left: 1rem;
  transition: all var(--t-fast);
}
.side-nav a.is-active, .side-nav a:hover { color: var(--navy-deep); border-left-color: var(--green); }

/* ---------- 20. CARDS (services blocks) ---------- */
.service-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
.service-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  align-items: center;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
}
.service-block:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.service-block__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-500);
  font-weight: 360;
}
.service-block__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
  font-weight: 440;
}
.service-block__content p { font-size: 0.92rem; color: var(--gray-700); line-height: 1.5; }
.service-block__arrow { color: var(--green); }

/* ---------- 21. FOOTER ---------- */
.footer {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-12) 0 var(--sp-5);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img { height: 36px; margin-bottom: var(--sp-4); }
.footer__brand p { font-size: 0.92rem; line-height: 1.55; max-width: 32ch; margin-bottom: var(--sp-4); }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--green); }

.footer__contact { font-size: 0.9rem; }
.footer__contact-block { margin-bottom: var(--sp-4); }
.footer__contact .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.35rem;
}
.footer__contact a { color: rgba(255,255,255,0.85); }
.footer__contact a:hover { color: var(--green); }

.footer__bottom {
  margin-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer__bottom-left { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer__bottom a { color: rgba(255,255,255,0.7); }
.footer__bottom a:hover { color: var(--white); }
.footer__noox {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.footer__noox a { font-weight: 600; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; }

@media (max-width: 1180px) {
  .footer__top { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
  .footer__brand { grid-column: 1 / 4; }
  .footer__col--contact { grid-column: 1 / 4; }
}
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .footer__brand { grid-column: 1 / 3; }
  .footer__col--contact { grid-column: 1 / 3; }
}
@media (max-width: 580px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ---------- 22. ANIMATION ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Progressive enhancement: .reveal is visible by default. Only the
   .js-enhanced class (set by an inline script in <head> before paint)
   activates the hide-then-fade-in behaviour. If JS is blocked or fails,
   content stays visible — no blank page. */
.reveal { opacity: 1; }
.js-enhanced .reveal { opacity: 0; }
.js-enhanced .reveal.is-visible { animation: fadeUp 800ms var(--ease-out) both; }
.js-enhanced .reveal[data-delay="1"].is-visible { animation-delay: 100ms; }
.js-enhanced .reveal[data-delay="2"].is-visible { animation-delay: 200ms; }
.js-enhanced .reveal[data-delay="3"].is-visible { animation-delay: 300ms; }
.js-enhanced .reveal[data-delay="4"].is-visible { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .js-enhanced .reveal { opacity: 1; }
}

/* ---------- 23. ACCESSIBILITY ---------- */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy-deep);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { top: 1rem; }

/* ---------- 24. FEATURE IMAGE STRIP ---------- */
.feature-strip {
  position: relative;
  height: clamp(360px, 50vw, 560px);
  overflow: hidden;
  background: var(--navy-deep);
}
.feature-strip__photo,
.feature-strip__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 28, 48, 0.78) 0%, rgba(8, 28, 48, 0.4) 50%, rgba(8, 28, 48, 0.65) 100%);
}
.feature-strip__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}
.feature-strip__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 360;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.feature-strip__title em { font-style: italic; color: rgba(255,255,255,0.7); font-weight: 320; }
.feature-strip__sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 2rem;
}

/* ---------- 25. PILLAR ICONS (small SVG bubbles) ---------- */
.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.pillar__icon svg { width: 20px; height: 20px; }
.pillar:hover .pillar__icon { background: var(--green); color: var(--white); }

/* ---------- 26. SUSTAIN PHOTO ---------- */
.sustain__visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: rgba(255,255,255,0.06);
}
.sustain__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sustain__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(45, 144, 56, 0.3) 100%);
}

/* ---------- 27. PROJECT GALLERY (projects.html) ---------- */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-5);
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.project-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.project-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8, 28, 48, 0.65);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}
.project-card__body { padding: 1.4rem 1.4rem 1.6rem; flex-grow: 1; display: flex; flex-direction: column; }
.project-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 440;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.project-card__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.project-card__desc { font-size: 0.92rem; color: var(--gray-700); line-height: 1.5; margin-bottom: 1rem; flex-grow: 1; }
.project-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-500);
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
}
.project-card__footer .arrow { color: var(--green); }

/* ---------- 28. FILTER BAR (projects, news) ---------- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  margin-bottom: var(--sp-6);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.filter-bar__item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}
.filter-bar__item:hover { color: var(--navy-deep); }
.filter-bar__item.is-active { background: var(--navy-deep); color: var(--white); }

/* ---------- 29. ARTICLE / NEWS CARDS ---------- */
.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-6);
  align-items: stretch;
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--sp-8);
}
.featured-article__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.featured-article__media img { width: 100%; height: 100%; object-fit: cover; }
.featured-article__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-article__category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1rem;
}
.featured-article__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.featured-article__excerpt { font-size: 1rem; color: var(--gray-700); line-height: 1.55; margin-bottom: 1.5rem; }
.featured-article__meta { font-size: 0.85rem; color: var(--gray-500); }
@media (max-width: 880px) {
  .featured-article { grid-template-columns: 1fr; }
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5);
}
.article-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--t-med) var(--ease-out);
}
.article-card:hover { transform: translateY(-3px); }
.article-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: var(--cream);
}
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.article-card:hover .article-card__media img { transform: scale(1.04); }
.article-card__category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 440;
  color: var(--navy-deep);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
  transition: color var(--t-fast);
}
.article-card:hover .article-card__title { color: var(--green-deep); }
.article-card__meta { font-size: 0.82rem; color: var(--gray-500); margin-top: auto; }

/* ---------- 30. INDUSTRY DEEP-DIVE CARDS (industries.html) ---------- */
.industry-deep {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}
.industry-deep:last-child { border-bottom: none; }
.industry-deep__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
}
.industry-deep__media img { width: 100%; height: 100%; object-fit: cover; }
.industry-deep:nth-child(even) .industry-deep__media { order: 2; }
.industry-deep__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 380;
}
.industry-deep h3 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.industry-deep p { font-size: 1rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 1rem; }
.industry-deep ul { display: flex; flex-direction: column; gap: 0.5rem; }
.industry-deep ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}
.industry-deep ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 7px; height: 7px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
@media (max-width: 880px) {
  .industry-deep { grid-template-columns: 1fr; }
  .industry-deep:nth-child(even) .industry-deep__media { order: 0; }
}

/* ---------- 31. METRIC TILES (sustainability.html) ---------- */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.metric-tile {
  background: var(--white);
  padding: 1.8rem 1.5rem;
}
.metric-tile .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 360;
  color: var(--navy-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
  font-variation-settings: "SOFT" 50;
}
.metric-tile .label {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.45;
}
.metric-tile .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  margin-top: 0.6rem;
  text-transform: uppercase;
}

/* ---------- 32. LEGAL / PROSE PAGE LAYOUT ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; gap: var(--sp-6); }
  .legal-layout .side-nav { position: static; margin-bottom: var(--sp-4); }
}

.legal-prose { max-width: 70ch; font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft); }
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--navy-deep);
  margin: 2.5rem 0 1rem;
  font-weight: 440;
  letter-spacing: -0.005em;
  scroll-margin-top: 100px;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 1.6rem 0 0.6rem;
}
.legal-prose p { margin-bottom: 1rem; }
.legal-prose ul, .legal-prose ol { margin: 0.8rem 0 1.2rem 1.4rem; }
.legal-prose ul li, .legal-prose ol li { margin-bottom: 0.4rem; }
.legal-prose ul li { list-style: none; position: relative; padding-left: 1rem; }
.legal-prose ul li::before {
  content: "";
  position: absolute;
  left: -0.4rem; top: 0.6rem;
  width: 6px; height: 6px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.legal-prose ol { list-style-position: outside; padding-left: 1rem; }
.legal-prose strong { color: var(--navy-deep); font-weight: 600; }
.legal-prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose a:hover { color: var(--green-deep); }
.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.legal-prose table th, .legal-prose table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.legal-prose table th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
  background: var(--cream);
}
.legal-prose .legal-meta {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gray-500);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

/* ==========================================================================
   33. MEGA MENU
   Dark sidebar + 3 columns of links. APIS-distinct treatment:
   - Navy sidebar with subtle green hex motif background
   - Fraunces italic headline (vs KST's sans-bold)
   - Green accent dividers and overview arrows
   - Horizontal dividers between items, generous spacing
   ========================================================================== */
.has-mega { position: static; }  /* parent <li> — mega panel is full-width */
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 24px 60px -20px rgba(8, 28, 48, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              visibility 0s linear var(--t-fast);
  z-index: 90;
  overflow: hidden;  /* clip the sidebar */
}
.has-mega:hover > .mega-panel,
.has-mega:focus-within > .mega-panel,
.has-mega.is-open > .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.has-mega > a::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  margin-left: 0.4em;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform var(--t-fast);
}
.has-mega:hover > a::after,
.has-mega.is-open > a::after { transform: rotate(180deg); opacity: 1; }

.mega-panel__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  min-height: 380px;
}

/* ---- Dark sidebar ---- */
.mega-side {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-darker) 100%);
  color: var(--white);
  padding: 2.4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Hex pattern background motif (APIS-distinct, picks up green i-dot) */
.mega-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(62, 181, 74, 0.18), transparent 45%),
    radial-gradient(circle at 20% 90%, rgba(21, 66, 106, 0.6), transparent 50%);
  pointer-events: none;
}
/* Hex grid silhouette (very subtle) */
.mega-side::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  opacity: 0.04;
  pointer-events: none;
}
.mega-side > * { position: relative; z-index: 1; }

.mega-side__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.mega-side__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 380;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  font-variation-settings: "SOFT" 30;
}
.mega-side__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-weight: 320;
}
.mega-side__lead {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.6rem;
}
.mega-side__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid var(--green);
  padding-bottom: 0.4rem;
  transition: gap var(--t-fast), color var(--t-fast);
  align-self: flex-start;
}
.mega-side__cta:hover { gap: 0.7rem; color: var(--green); }

.mega-side__stats {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mega-side__stat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: rgba(255,255,255,0.7);
}
.mega-side__stat strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  font-weight: 460;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

/* ---- Three columns of links ---- */
.mega-cols {
  display: contents;  /* let columns participate in parent grid */
}
.mega-col {
  padding: 2.4rem 1.6rem 2rem;
  border-left: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.mega-col__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.4rem;
  border-bottom: 2px solid var(--green);
}
.mega-col__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.mega-col__overview {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast), color var(--t-fast);
}
.mega-col__overview:hover { gap: 0.55rem; color: var(--green-deep); }

.mega-col__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 440;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.mega-col__title em {
  font-style: italic;
  color: var(--green-deep);
  font-weight: 380;
}

.mega-col ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega-col ul li {
  border-bottom: 1px solid var(--gray-200);
}
.mega-col ul li:last-child { border-bottom: none; }
.mega-col ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--gray-700);
  padding: 0.7rem 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
  border-left: 2px solid transparent;
  padding-left: 0;
}
.mega-col ul li a:hover {
  color: var(--navy-deep);
  padding-left: 0.6rem;
  border-left-color: var(--green);
}
.mega-col ul li a .badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(62, 181, 74, 0.1);
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  margin-left: auto;
}

/* ---- Tablet: stack sidebar atop, columns wrap to 2 ---- */
@media (max-width: 1180px) {
  .mega-panel__inner {
    grid-template-columns: 280px 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .mega-side { grid-row: 1 / 3; }
  .mega-cols { display: contents; }
  .mega-col:nth-child(4) { grid-column: 2 / 4; border-top: 1px solid var(--gray-200); }
}
@media (max-width: 980px) {
  /* On mobile, mega panels are hidden — the drawer accordion handles it */
  .has-mega > .mega-panel { display: none; }
  .has-mega > a::after { display: none; }
}

/* ==========================================================================
   33b. MOBILE DRAWER ACCORDION
   When mega-menu sections are present in the drawer, allow tap-to-expand
   ========================================================================== */
.drawer-group {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-group__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 380;
  letter-spacing: -0.01em;
  padding: 1rem 0;
  cursor: pointer;
  text-align: left;
}
.drawer-group__toggle .icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.drawer-group__toggle .icon::before,
.drawer-group__toggle .icon::after {
  content: "";
  position: absolute;
  background: var(--green);
  transition: transform var(--t-fast);
}
.drawer-group__toggle .icon::before {
  left: 4px; right: 4px; top: 50%; height: 2px; transform: translateY(-50%);
}
.drawer-group__toggle .icon::after {
  top: 4px; bottom: 4px; left: 50%; width: 2px; transform: translateX(-50%);
}
.drawer-group.is-open .drawer-group__toggle .icon::after { transform: translateX(-50%) rotate(90deg); }
.drawer-group__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease-out);
}
.drawer-group.is-open .drawer-group__panel { max-height: 1200px; }
.drawer-group__panel-inner {
  padding-bottom: 0.85rem;
}
.drawer-group__subtitle {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding: 1rem 0 0.5rem;
}
.drawer-group__panel ul {
  display: flex;
  flex-direction: column;
}
.drawer-group__panel ul li a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-group__panel ul li a:hover { color: var(--white); }
.drawer-group__overview {
  display: block;
  padding: 0.6rem 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
}
.drawer-group__overview:hover { color: var(--white); }

/* ==========================================================================
   34. SOCIAL MEDIA ICONS (footer)
   ========================================================================== */
.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--t-fast) var(--ease-out);
}
.footer__social a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social a svg { width: 18px; height: 18px; }

/* ==========================================================================
   35. DISCIPLINES PAGE
   Category groups with image cards
   ========================================================================== */
.discipline-group {
  margin-bottom: var(--sp-10);
}
.discipline-group__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: var(--sp-5);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--navy-deep);
}
.discipline-group__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
}
.discipline-group__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.discipline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.discipline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.discipline-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.discipline-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.discipline-card:hover .discipline-card__media img { transform: scale(1.05); }
.discipline-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.discipline-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 460;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.discipline-card__desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
  flex-grow: 1;
}
.discipline-card__arrow {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t-fast);
}
.discipline-card:hover .discipline-card__arrow { gap: 0.7rem; }

/* ==========================================================================
   36. THREE-COLUMN CONTENT (division detail pages)
   ========================================================================== */
.three-col-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.three-col-content ul { padding: 0; list-style: none; margin: 0; }
.serif-h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
@media (max-width: 980px) {
  .three-col-content { grid-template-columns: 1fr; gap: var(--sp-5); }
}

/* ==========================================================================
   37. LEGAL PROSE LAYOUT (TOC sidebar + content)
   ========================================================================== */
.legal-prose-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-6);
  max-width: 1100px;
  margin: 0 auto;
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--gray-300); }
.legal-toc ul li { margin: 0; }
.legal-toc ul li a {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  margin-left: -1px;
  border-left: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.legal-toc ul li a:hover {
  color: var(--navy-deep);
  border-left-color: var(--green);
}
.legal-prose { max-width: 70ch; }
.legal-prose p { font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft); }
@media (max-width: 980px) {
  .legal-prose-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ul { display: flex; flex-wrap: wrap; gap: 0.4rem; border: 0; padding: 0.5rem 0; }
  .legal-toc ul li a { padding: 0.4rem 0.8rem; border: 1px solid var(--gray-300); border-radius: var(--radius-pill); }
  .legal-toc ul li a:hover { border-color: var(--green); }
}

/* ==========================================================================
   38. SITEMAP PAGE
   ========================================================================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.sitemap-list { list-style: none; padding: 0; margin: 0; }
.sitemap-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--gray-200); }
.sitemap-list li:last-child { border-bottom: 0; }
.sitemap-list a {
  font-size: 0.95rem;
  color: var(--gray-700);
  display: inline-block;
  transition: color var(--t-fast);
}
.sitemap-list a:hover { color: var(--green-deep); }
.sitemap-list--nested li ul { list-style: none; padding: 0; margin: 0.4rem 0 0.6rem 0; }
.sitemap-list--nested li ul li { padding: 0.25rem 0; border: 0; }
.sitemap-list--nested li ul li a { font-size: 0.88rem; color: var(--gray-500); }
@media (max-width: 980px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
}

/* ==========================================================================
   39. FOOTER CONTACT COLUMN (single email/phone + social under address)
   ========================================================================== */
.footer__col--contact .footer__address {
  font-style: normal;
  margin-bottom: 1.25rem;
}
.footer__col--contact .footer__address p {
  margin: 0 0 0.9rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-300);
}
.footer__col--contact .footer__address strong {
  color: var(--white);
  font-weight: 500;
}
.footer__col--contact .footer__address a {
  color: var(--gray-300);
  transition: color var(--t-fast);
}
.footer__col--contact .footer__address a:hover {
  color: var(--green);
}
.footer__col--contact .footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer__col--contact .footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.footer__col--contact .footer__social a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__col--contact .footer__social svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   40. HOME PAGE IMAGE-CARD GRID (divisions + industries sections)
   ========================================================================== */
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.home-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-fast);
  color: var(--ink);
}
.home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(15, 32, 56, 0.18);
  border-color: var(--green);
}
.home-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.home-card:hover .home-card__media img {
  transform: scale(1.04);
}
.home-card__body {
  padding: 1.25rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.home-card__desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 1rem 0;
  flex: 1;
}
.home-card__arrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
}
@media (max-width: 980px) {
  .home-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 580px) {
  .home-grid { grid-template-columns: 1fr; }
}
