*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: #1a1a1a;
      background: #ffffff;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    :root {
      --green-900: #0a2116;
      --green-800: #14412b;
      --green-700: #1b5e3a;
      --green-600: #22734a;
      --green-500: #2d8f5e;
      --green-400: #48a672;
      --green-300: #7ac4a0;
      --green-200: #b4dfc9;
      --green-100: #e0f2eb;
      --green-50: #f0f9f4;
      --gold-500: #b8952a;
      --gold-text: #8b7020;  /* small text on light grounds only. gold-500 is 2.85 on white; this is 4.71. Display gold stays gold-300/400/500. */
      --gold-400: #d4ac33;
      --gold-300: #e8c847;
      --gold-200: #f2dfa0;
      --gold-100: #faf3dd;
      --stone-900: #1a1a1a;
      --stone-800: #2e2e2e;
      --stone-700: #444444;
      --stone-600: #5a5a5a;
      --stone-500: #6d756f;   /* 2026-09-10: was #777777 (4.48 on white, AA fail). Lightest green-leaning muted that clears 4.5 on both white and --stone-50. */
      --stone-400: #6d756f;   /* 2026-09-10: collapsed onto --stone-500. #999999 was 2.85 on white. */
      --stone-300: #bbbbbb;
      --stone-200: #e0e0e0;
      --stone-100: #f2f2f2;
      --stone-50: #fafafa;
      --white: #ffffff;
      --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
      --radius: 8px;
      --radius-lg: 12px;
      --radius-pill: 100px;
      --max-width: 1120px;
      --transition: 0.2s ease;
    }

    h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--stone-900); }
    h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; }
    h3 { font-size: 1.1rem; font-weight: 600; }
    p { margin-bottom: 1rem; }

    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
    section { padding: 3.5rem 0; }   /* was 6rem — density pass 2026-09-11 */
    .label {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--green-600);
      margin-bottom: 0.75rem;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.6rem; font-size: 0.9rem; font-weight: 600;
      border-radius: var(--radius); transition: all var(--transition);
      cursor: pointer; border: none; font-family: inherit;
      text-decoration: none;
    }
    .btn-primary { background: var(--green-700); color: var(--white); }
    .btn-primary:hover { background: var(--green-800); box-shadow: var(--shadow-sm); }
    .btn-secondary { background: var(--white); color: var(--green-800); border: 1px solid var(--stone-200); }
    .btn-secondary:hover { background: var(--stone-50); border-color: var(--stone-300); }
    .btn-gold { background: var(--gold-500); color: var(--green-900); }
    .btn-gold:hover { background: #a6852a; box-shadow: var(--shadow-sm); }
    .btn-white { background: var(--white); color: var(--green-800); }
    .btn-white:hover { background: var(--green-50); }
    .btn-ghost { background: transparent; color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.25); }
    .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

    /* NAV */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--stone-100);
      transition: box-shadow 0.3s;
    }
    .nav.scrolled { box-shadow: var(--shadow-xs); }
    .nav-inner {
      max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 60px;
    }
    .nav-brand { display: flex; align-items: center; gap: 0.75rem; }
    .nav-logo { font-size: 1.2rem; font-weight: 700; color: var(--green-800); letter-spacing: -0.02em; }
    .nav-divider { width: 1px; height: 16px; background: var(--stone-200); }
    .nav-tagline { font-size: 0.72rem; color: var(--stone-400); font-weight: 500; letter-spacing: 0.04em; }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500; color: var(--stone-600);
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--green-700); }
    .nav-cta {
      background: var(--green-700) !important; color: var(--white) !important;
      padding: 0.4rem 1rem !important; border-radius: var(--radius);
      font-weight: 600 !important; font-size: 0.82rem !important;
      transition: background var(--transition) !important;
    }
    .nav-cta:hover { background: var(--green-800) !important; }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
    .nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--stone-700); margin: 4px 0; border-radius: 1px; transition: all 0.2s; }

    /* HERO */
    /* 2026-09-10: the nav is position:sticky at 61px and nothing declared scroll-margin-top,
       so #approach and #clients landed with their first 61px behind it. 76px = nav + 15px air. */
    section[id] { scroll-margin-top: 76px; }

    .hero {
      margin-top: 60px;
      background: var(--green-900);
      color: var(--white);
      padding: 7rem 0 6rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(45,143,94,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(184,149,42,0.08) 0%, transparent 60%);
    }
    .hero-inner {
      position: relative; z-index: 1;
      max-width: 680px; margin: 0 auto; text-align: center;
    }
    .hero-label {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gold-400);
      margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .hero h1 { color: var(--white); margin-bottom: 1.5rem; }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.05rem; line-height: 1.7;
      color: rgba(255,255,255,0.65);
      max-width: 580px; margin: 0 auto 2.5rem;
    }
    .hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
    .hero-label { justify-content: center; }

    /* METRICS STRIP */
    .metrics-strip {
      background: var(--white);
      border-bottom: 1px solid var(--stone-100);
      padding: 2rem 0;
    }
    /* Equal columns so the four tiles are evenly spaced regardless of how wide
       their labels are — flex sized each tile to its own content, which put the
       centres 236/279/272px apart. */
    .metrics-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2rem; align-items: start;
    }
    .metric { text-align: center; }
    /* The value line is a fixed-height box with its content bottom-aligned. The
       numerals are 1.8rem and the word tiles 1.4rem; without this their line
       boxes differ by 10.5px and the labels below them sit on two lines. */
    .metric-num {
      font-size: 1.8rem; font-weight: 700; color: var(--green-700);
      letter-spacing: -0.02em;
      min-height: 3rem;
      display: flex; align-items: flex-end; justify-content: center;
    }
    .metric-label {
      font-size: 0.72rem; color: var(--stone-500); font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em;
      margin-top: 0.15rem;
    }

    /* APPROACH */
    .approach-section { background: var(--white); }
    .approach-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .approach-text h2 { margin-bottom: 1rem; }
    .approach-text .lead {
      font-size: 1.05rem; color: var(--stone-600);
      margin-bottom: 2rem; line-height: 1.7;
    }
    .principles { display: flex; flex-direction: column; gap: 0.5rem; }
    .principle {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1rem 1.25rem;
      background: var(--stone-50);
      border-radius: var(--radius);
      border: 1px solid var(--stone-100);
      transition: border-color var(--transition);
    }
    .principle:hover { border-color: var(--green-200); }
    .principle-num {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--green-100);
      color: var(--green-700);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700;
    }
    .principle h4 { font-size: 0.9rem; margin-bottom: 0.15rem; color: var(--stone-900); font-weight: 600; }
    .principle p { font-size: 0.82rem; color: var(--stone-500); margin-bottom: 0; line-height: 1.5; }

    .approach-visual {
      background: linear-gradient(180deg, var(--green-50) 0%, var(--green-100) 100%);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      border: 1px solid var(--green-200);
      text-align: center;
    }
    .approach-visual .av-icon {
      font-size: 3rem; margin-bottom: 1rem; line-height: 1;
    }
    .approach-visual h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--green-800); }
    .approach-visual p { font-size: 0.9rem; color: var(--stone-600); margin-bottom: 0; }
    .av-values {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .av-val {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1rem;
      border: 1px solid var(--green-200);
    }
    .av-val .av-num { font-size: 1.3rem; font-weight: 700; color: var(--green-700); }
    .av-val .av-lab { font-size: 0.7rem; color: var(--stone-500); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.1rem; }

    /* TERRAVALUE SPOTLIGHT */
    .tv-section {
      background: var(--green-900);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .tv-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(45,143,94,0.12) 0%, transparent 60%);
    }
    .tv-inner { position: relative; z-index: 1; }
    .tv-header { text-align: center; margin-bottom: 3.5rem; }
    .tv-header .label { color: var(--gold-400); }
    .tv-header h2 { color: var(--white); margin-bottom: 0.75rem; }
    .tv-header p { color: rgba(255,255,255,0.55); max-width: 580px; margin: 0 auto; font-size: 1rem; }

    .tv-demo {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 2rem;
      max-width: 720px; margin: 0 auto 2rem;
    }
    .tv-demo-input {
      display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
    }
    .tv-demo-input input {
      flex: 1; padding: 0.7rem 1rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      color: var(--white);
      font-family: inherit; font-size: 0.9rem;
      outline: none; transition: border-color var(--transition);
    }
    .tv-demo-input input:focus { border-color: rgba(255,255,255,0.3); }
    .tv-demo-input input::placeholder { color: rgba(255,255,255,0.3); }
    .tv-demo-input button {
      padding: 0.7rem 1.5rem;
      border-radius: var(--radius);
      border: none;
      background: var(--gold-500);
      color: var(--white);
      font-family: inherit; font-size: 0.85rem; font-weight: 600;
      cursor: pointer; transition: all var(--transition);
      white-space: nowrap;
    }
    .tv-demo-input button:hover { background: var(--gold-400); }
    .tv-results-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
    }
    .tv-result {
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius);
      padding: 1.25rem 1rem;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .tv-result .num {
      font-size: 1.8rem; font-weight: 700;
      display: block; margin-bottom: 0.15rem;
      letter-spacing: -0.02em;
    }
    .tv-result .rlabel {
      font-size: 0.68rem; color: rgba(255,255,255,0.55);
      text-transform: uppercase; letter-spacing: 0.06em;
    }

    .tv-services-row {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem;
      margin-top: 1.5rem; max-width: 720px; margin-left: auto; margin-right: auto;
    }
    .tv-sv {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 0.6rem 0.4rem;
      text-align: center;
      font-size: 0.68rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.3;
    }
    .tv-sv .sv-num {
      display: block; font-weight: 600;
      color: var(--green-300); font-size: 0.82rem;
      margin-bottom: 0.15rem;
    }

    .tv-citations {
      display: flex; gap: 0.4rem; flex-wrap: wrap;
      justify-content: center; margin-top: 1.75rem;
    }
    .cite-pill {
      font-size: 0.6rem; font-weight: 500;
      padding: 0.25rem 0.6rem;
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.55);
      border: 1px solid rgba(255,255,255,0.06);
    }
    .tv-cta {
      text-align: center; margin-top: 2.5rem;
      display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
    }

    /* SERVICES */
    .services-section { background: var(--stone-50); }
    .services-header { text-align: center; margin-bottom: 2rem; }
    .services-header p { color: var(--stone-500); max-width: 520px; margin: 0.75rem auto 0; font-size: 0.95rem; }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      border: 1px solid var(--stone-100);
      transition: all 0.25s;
    }
    .service-card:hover {
      border-color: var(--green-200);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .service-icon {
      width: 36px; height: 36px;
      background: var(--green-50);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
      color: var(--green-600);
      font-size: 1rem;
    }
    .service-card h3 { margin-bottom: 0.5rem; }
    .service-card p { font-size: 0.85rem; color: var(--stone-500); margin-bottom: 0; line-height: 1.6; }

    /* DATA / CREDIBILITY */
    .data-section { background: var(--white); }
    .data-header { text-align: center; margin-bottom: 2rem; }
    .data-header p { color: var(--stone-500); max-width: 520px; margin: 0.75rem auto 0; font-size: 0.95rem; }
    .data-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
      margin-bottom: 2rem;
    }
    /* Three cards in a two-column grid: the last spans both so it reads as
       intentional rather than orphaned. */
    .data-grid > .data-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .data-card {
      background: var(--stone-50);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      border: 1px solid var(--stone-100);
    }
    .data-card h4 { font-size: 0.82rem; color: var(--green-700); margin-bottom: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
    .data-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
    .data-pill {
      font-size: 0.7rem; font-weight: 500;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-pill);
      background: var(--white);
      color: var(--stone-700);
      border: 1px solid var(--stone-200);
    }
    .cred-row {
      display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center;
    }
    .cred-badge {
      display: flex; align-items: center; gap: 0.35rem;
      padding: 0.4rem 0.85rem;
      background: var(--green-50);
      border-radius: var(--radius-pill);
      font-size: 0.75rem; font-weight: 500;
      color: var(--green-800);
      border: 1px solid var(--green-100);
    }
    .cred-dot {
      width: 5px; height: 5px;
      background: var(--green-500);
      border-radius: 50%;
    }

    /* CLIENTS */
    .clients-section { background: var(--stone-50); }
    .clients-header { text-align: center; margin-bottom: 2rem; }
    .clients-header p { color: var(--stone-500); max-width: 520px; margin: 0.75rem auto 0; font-size: 0.95rem; }
    .clients-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
    }
    .client-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      border: 1px solid var(--stone-100);
      transition: all 0.25s;
    }
    .client-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-xs); }
    .client-card h3 { margin-bottom: 0.5rem; }
    .client-card p { font-size: 0.85rem; color: var(--stone-500); margin-bottom: 0.75rem; line-height: 1.6; }
    .client-card .engagement {
      font-size: 0.78rem; font-weight: 600; color: var(--green-600);
      padding-top: 0.75rem;
      border-top: 1px solid var(--stone-100);
    }

    /* CONTACT */
    .contact-section { background: var(--white); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
    }
    .contact-text h2 { margin-bottom: 0.75rem; }
    .contact-text .lead {
      font-size: 1rem; color: var(--stone-500);
      margin-bottom: 2rem; line-height: 1.7;
    }
    .contact-detail {
      display: flex; gap: 0.75rem; align-items: center;
      margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--stone-700);
    }
    .contact-icon {
      width: 36px; height: 36px;
      background: var(--green-50);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--green-600); flex-shrink: 0;
      font-size: 0.9rem;
    }
    .contact-form {
      background: var(--stone-50);
      border-radius: var(--radius-lg);
      padding: 2rem;
      border: 1px solid var(--stone-100);
    }
    .contact-form h3 { margin-bottom: 1.25rem; }
    .form-group { margin-bottom: 0.85rem; }
    .form-group label {
      display: block; font-size: 0.8rem; font-weight: 500;
      color: var(--stone-600); margin-bottom: 0.3rem;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 0.65rem 0.85rem;
      border: 1px solid var(--stone-200);
      border-radius: var(--radius);
      font-family: inherit; font-size: 0.9rem;
      background: var(--white);
      transition: border-color var(--transition);
      color: var(--stone-900);
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      outline: none; border-color: var(--green-400);
      box-shadow: 0 0 0 3px rgba(45,143,94,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-submit {
      width: 100%; justify-content: center;
      background: var(--green-700); color: var(--white);
      padding: 0.75rem; border: none; border-radius: var(--radius);
      font-family: inherit; font-size: 0.9rem; font-weight: 600;
      cursor: pointer; transition: all var(--transition);
      display: flex; align-items: center; gap: 0.4rem;
    }
    .form-submit:hover { background: var(--green-800); }

    /* FOOTER */
    .footer {
      background: var(--green-900);
      color: rgba(255,255,255,0.5);
      padding: 3rem 0 2rem;
    }
    .footer-inner {
      max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
      display: flex; justify-content: space-between; align-items: flex-start;
      flex-wrap: wrap; gap: 2rem;
    }
    .footer-brand .fname {
      font-size: 1rem; font-weight: 700;
      color: var(--white); margin-bottom: 0.2rem;
    }
    .footer-brand .ftagline {
      font-size: 0.75rem; color: rgba(255,255,255,0.55);
      max-width: 260px; line-height: 1.5;
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: 0.8rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-reggie {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.7rem; color: rgba(255,255,255,0.55);
      font-style: italic;
    }
    .footer-copy {
      width: 100%; text-align: center;
      margin-top: 2rem; padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 0.7rem; color: rgba(255,255,255,0.55);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero { padding: 6rem 0 5rem; }
      .approach-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .data-grid { grid-template-columns: 1fr; }
      .clients-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .tv-services-row { grid-template-columns: repeat(3, 1fr); }
      .tv-results-grid { grid-template-columns: repeat(3, 1fr); }
      .metrics-inner { gap: 2rem 1.5rem; }
      .metrics-strip { padding: 2rem 0 1.75rem; }
    }
    @media (max-width: 760px) {
      .metrics-inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      section { padding: 2.5rem 0; }
      .page-banner { padding: 5.5rem 0 1.75rem; }
      .container { padding: 0 1.25rem; }
      .nav-inner { padding: 0 1.25rem; }
      .hero { padding: 5rem 1.25rem 4rem; }
      .services-grid { grid-template-columns: 1fr; }
      .tv-demo-input { flex-direction: column; }
      .tv-results-grid { grid-template-columns: 1fr; }
      .tv-services-row { grid-template-columns: repeat(2, 1fr); }
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 60px; left: 0; right: 0;
        background: var(--white);
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--stone-100);
        box-shadow: var(--shadow-md);
        gap: 0.75rem;
      }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
      .nav-tagline { display: none; }
      .nav-divider { display: none; }
    }

    /* Compact page banner — subpages identify themselves without repeating the
       full hero. The homepage keeps the hero; every other page gets this. */
    .page-banner {
      background: var(--green-900);
      color: var(--white);
      padding: 7rem 0 2.5rem;
    }
    .page-banner .pb-label {
      font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--gold-300); font-weight: 600; margin-bottom: 0.5rem;
    }
    .page-banner h1 { font-size: 2rem; color: var(--white); margin-bottom: 0.4rem; }
    .page-banner p { color: rgba(255,255,255,0.62); font-size: 0.95rem; max-width: 560px; margin: 0; }
    .nav-links a[aria-current="page"] { color: var(--green-700); border-bottom: 2px solid var(--gold-500); }
    /* Homepage overview cards */
    .home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
    .home-card {
      display: block; background: var(--white); border: 1px solid var(--green-200);
      border-radius: var(--radius-lg); padding: 1.75rem; text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .home-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
    .home-card h3 { color: var(--green-800); margin-bottom: 0.5rem; }
    .home-card p { color: var(--stone-600); font-size: 0.9rem; line-height: 1.65; margin: 0; }
    .home-card .hc-more { display: inline-block; margin-top: 0.9rem; font-size: 0.8rem; font-weight: 600; color: var(--green-700); }
    @media (max-width: 900px) { .home-grid { grid-template-columns: 1fr; } }

    /* ---- /services detail layout (2026-09-11) ------------------------------
       Service cards carry three parts now (situation, deliverable, timeline),
       so the grid drops to two columns to keep line length readable. */
    .services-grid--detail { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .svc-when {
      font-size: 0.88rem !important; color: var(--stone-700) !important;
      line-height: 1.6; margin: 0.25rem 0 0 !important;
      padding-left: 0.85rem; border-left: 2px solid var(--green-200);
    }
    .svc-when span { display: block; font-size: 0.68rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-700); margin-bottom: 0.2rem; }
    .svc-facts { margin: 1rem 0 0; }
    .svc-facts dt { font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--green-700); margin-top: 0.85rem; }
    .svc-facts dd { margin: 0.2rem 0 0; font-size: 0.85rem; color: var(--stone-600); line-height: 1.6; }
    .svc-facts ul { margin: 0; padding-left: 1.1rem; }
    .svc-facts li { margin-bottom: 0.25rem; }
    .approach-grid--top { align-items: start; }
    .report-card { text-align: left; padding: 2.25rem 2.25rem; }
    .report-card h3 { margin: 0.25rem 0 1rem; }
    .report-card p { font-size: 0.88rem; color: var(--stone-600); line-height: 1.65; }
    .report-toc { margin: 0 0 1.25rem; padding-left: 1.2rem; color: var(--stone-800); font-weight: 500; }
    .report-toc li { margin-bottom: 0.45rem; font-size: 0.92rem; }
    .clients-note { text-align: center; margin: 2rem auto 0; color: var(--stone-600); font-size: 0.95rem; font-weight: 500; }
    .faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
    .faq details { background: var(--stone-50); border: 1px solid var(--stone-100);
      border-radius: var(--radius); padding: 1rem 1.25rem; }
    .faq details[open] { border-color: var(--green-200); }
    .faq summary { cursor: pointer; font-weight: 600; color: var(--stone-900); font-size: 0.95rem; }
    .faq details p { margin: 0.6rem 0 0; font-size: 0.88rem; color: var(--stone-600); line-height: 1.65; }
    .line-block { margin-top: 2.5rem; background: var(--white); border: 1px solid var(--stone-100);
      border-radius: var(--radius); padding: 1.5rem 1.75rem; }
    .line-block h4 { margin-bottom: 0.6rem; }
    .line-block p { font-size: 0.88rem; color: var(--stone-600); line-height: 1.7; margin: 0; }
    @media (max-width: 900px) { .services-grid--detail { grid-template-columns: 1fr; } }
    /* Service cards fold their deliverable and timeline behind a tap (2026-09-11). */
    .svc-more { margin-top: 0.9rem; }
    .svc-more summary { cursor: pointer; font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--green-700); }
    .svc-more summary:hover { color: var(--green-800); }
    .svc-more .svc-facts { margin-top: 0.25rem; }
