:root {
      --green: #2e7d32;
      --green-dark: #174f23;
      --green-deep: #0d2914;
      --green-soft: #edf6ee;
      --green-pale: #f6faf6;
      --lime: #8ac53f;
      --charcoal: #172019;
      --body: #536057;
      --line: #dce5dd;
      --white: #ffffff;
      --warm-white: #fbfcfa;
      --gold: #b99a54;
      --shadow-sm: 0 12px 38px rgba(13, 41, 20, 0.08);
      --shadow-md: 0 24px 70px rgba(13, 41, 20, 0.14);
      --radius-sm: 14px;
      --radius-md: 24px;
      --radius-lg: 36px;
      --max-width: 1200px;
      --nav-height: 84px;
      --ease: 220ms ease;
    }

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

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

    body {
      margin: 0;
      color: var(--charcoal);
      background: var(--white);
      font-family: "Inter", Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

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

    :focus-visible {
      outline: 3px solid rgba(46, 125, 50, 0.33);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      z-index: 9999;
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      border-radius: 8px;
      color: var(--white);
      background: var(--green-dark);
      transform: translateY(-160%);
      transition: transform var(--ease);
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .container {
      width: min(calc(100% - 32px), var(--max-width));
      margin-inline: auto;
    }

    .section {
      padding: 88px 0;
    }

    .section--soft {
      background: var(--green-pale);
    }

    .section-heading {
      max-width: 770px;
      margin-bottom: 42px;
    }

    .section-heading.center {
      margin-inline: auto;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--green);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 34px;
      height: 2px;
      content: "";
      background: currentColor;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      color: var(--charcoal);
      font-family: "Playfair Display", Georgia, serif;
      line-height: 1.11;
    }

    h1 {
      max-width: 900px;
      font-size: clamp(2.75rem, 8vw, 5.6rem);
      letter-spacing: -0.05em;
    }

    h2 {
      font-size: clamp(2.05rem, 5vw, 3.8rem);
      letter-spacing: -0.035em;
    }

    h3 {
      font-size: 1.48rem;
    }

    p {
      margin: 0;
      color: var(--body);
    }

    .lead {
      font-size: clamp(1.02rem, 2vw, 1.2rem);
      line-height: 1.78;
    }

    .button {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0.9rem 1.3rem;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.025em;
      text-align: center;
      transition:
        transform var(--ease),
        color var(--ease),
        background var(--ease),
        border-color var(--ease),
        box-shadow var(--ease);
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button--primary {
      color: var(--white);
      background: var(--green);
      box-shadow: 0 12px 30px rgba(46, 125, 50, 0.25);
    }

    .button--primary:hover {
      background: var(--green-dark);
      box-shadow: 0 17px 38px rgba(46, 125, 50, 0.3);
    }

    .button--light {
      color: var(--green-dark);
      background: var(--white);
    }

    .button--light:hover {
      background: var(--green-soft);
    }

    .button--outline-light {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.48);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(8px);
    }

    .button--outline-light:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.14);
    }

    .button--outline {
      color: var(--green-dark);
      border-color: rgba(46, 125, 50, 0.42);
      background: transparent;
    }

    .button--outline:hover {
      border-color: var(--green);
      background: var(--green-soft);
    }

    .arrow {
      transition: transform var(--ease);
    }

    .button:hover .arrow {
      transform: translateX(4px);
    }


    .site-loader {
      position: fixed;
      z-index: 99999;
      inset: 0;
      display: grid;
      place-items: center;
      background: #ffffff;
      transition: opacity 450ms ease, visibility 450ms ease;
    }
    .site-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
    }
    .site-loader__mark {
      display: grid;
      width: 78px;
      height: 78px;
      place-items: center;
      border: 1px solid rgba(46,125,50,.24);
      border-radius: 50%;
      color: var(--green);
      font-family: "Playfair Display", Georgia, serif;
      font-weight: 700;
      letter-spacing: .06em;
      animation: loaderPulse 1.2s ease-in-out infinite;
    }
    @keyframes loaderPulse {
      0%,100% { transform: scale(.96); opacity: .62; }
      50% { transform: scale(1.04); opacity: 1; }
    }

    /* Navigation */
    .site-header {
      position: sticky;
      z-index: 1000;
      top: 0;
      height: var(--nav-height);
      border-bottom: 1px solid rgba(23, 32, 25, 0.08);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(17px);
    }

    .nav {
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      width: 166px;
      flex: 0 0 166px;
      align-items: center;
    }

    .brand img {
      width: 100%;
      height: auto;
    }

    .nav-toggle {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--charcoal);
      background: var(--white);
    }

    .nav-toggle-lines,
    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: var(--ease);
    }

    .nav-toggle-lines {
      position: relative;
    }

    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
      position: absolute;
      left: 0;
      content: "";
    }

    .nav-toggle-lines::before {
      transform: translateY(-6px);
    }

    .nav-toggle-lines::after {
      transform: translateY(6px);
    }

    .menu-open .nav-toggle-lines {
      background: transparent;
    }

    .menu-open .nav-toggle-lines::before {
      transform: rotate(45deg);
    }

    .menu-open .nav-toggle-lines::after {
      transform: rotate(-45deg);
    }

    .nav-panel {
      position: fixed;
      z-index: 999;
      inset: var(--nav-height) 0 auto;
      display: grid;
      gap: 22px;
      padding: 26px 24px 32px;
      border-bottom: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow-md);
      opacity: 0;
      transform: translateY(-15px);
      pointer-events: none;
      transition:
        opacity var(--ease),
        transform var(--ease);
    }

    .menu-open .nav-panel {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-links {
      display: grid;
      gap: 4px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 11px 2px;
      color: var(--body);
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--green);
    }


    .nav-dropdown { position: relative; }
    .nav-dropdown__toggle {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 0;
      border: 0;
      color: var(--body);
      background: transparent;
      font-size: .79rem;
      font-weight: 600;
    }
    .nav-dropdown__menu {
      display: none;
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      width: 265px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      box-shadow: var(--shadow-md);
      transform: translateX(-50%);
    }
    .nav-dropdown__menu a {
      display: block;
      padding: 10px 12px !important;
      border-radius: 9px;
      font-size: .78rem !important;
    }
    .nav-dropdown__menu a:hover { background: var(--green-soft); }
    @media (min-width: 1000px) {
      .nav-dropdown:hover .nav-dropdown__menu,
      .nav-dropdown:focus-within .nav-dropdown__menu { display: block; }
    }
    @media (max-width: 999px) {
      .nav-dropdown__toggle { display: none; }
      .nav-dropdown__menu { display: grid; position: static; width: auto; padding: 0; border: 0; box-shadow: none; transform: none; }
    }


    /* Corrected desktop navigation fit */
    .nav-consultation {
      min-width: 118px;
      min-height: 42px;
      padding: 0.55rem 0.78rem;
      border-radius: 16px;
      font-size: 0.72rem;
      line-height: 1.04;
      white-space: nowrap;
    }

    .nav-consultation .consultation-label {
      display: inline-block;
      text-align: left;
    }

    .nav-consultation .arrow {
      font-size: 0.95rem;
    }

    @media (min-width: 1000px) {
      .nav {
        gap: 10px;
      }

      .brand {
        width: 180px;
        flex-basis: 180px;
      }

      .nav-panel {
        justify-content: flex-start;
        gap: 10px;
      }

      .nav-links {
        gap: 11px;
        margin-left: 4px;
      }

      .nav-links a,
      .nav-dropdown__toggle {
        font-size: 0.74rem;
        white-space: nowrap;
      }
    }

    @media (min-width: 1240px) {
      .brand {
        width: 196px;
        flex-basis: 196px;
      }

      .nav-links {
        gap: 15px;
        margin-left: 10px;
      }

      .nav-links a,
      .nav-dropdown__toggle {
        font-size: 0.78rem;
      }

      .nav-consultation {
        margin-left: auto;
      }
    }

    /* Hero */
    .hero {
      position: relative;
      display: grid;
      min-height: calc(100svh - var(--nav-height));
      align-items: end;
      overflow: hidden;
      background:
        linear-gradient(
          90deg,
          rgba(7, 27, 13, 0.95) 0%,
          rgba(7, 27, 13, 0.79) 52%,
          rgba(7, 27, 13, 0.28) 100%
        ),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=86")
          center / cover no-repeat;
    }

    .hero::after {
      position: absolute;
      right: -160px;
      bottom: -220px;
      width: 500px;
      height: 500px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      content: "";
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 930px;
      padding: 92px 0 74px;
    }

    .hero .eyebrow {
      color: #bce3bf;
    }

    .hero h1 {
      color: var(--white);
    }

    .hero-subheadline {
      max-width: 800px;
      margin-top: 24px;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(1.04rem, 2.2vw, 1.25rem);
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 11px 24px;
      margin-top: 34px;
      color: rgba(255, 255, 255, 0.67);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.065em;
      text-transform: uppercase;
    }

    .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-proof span::before {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      content: "";
      background: #a8d9ac;
    }

    /* Intro statement */
    .statement {
      display: grid;
      gap: 28px;
      align-items: start;
    }

    .statement-copy {
      max-width: 730px;
    }

    .statement-copy p {
      margin-top: 19px;
    }

    .mandate-note {
      padding: 28px;
      border-left: 4px solid var(--green);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      background: var(--green-soft);
    }

    .mandate-note strong {
      display: block;
      margin-bottom: 8px;
      color: var(--green-dark);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.35rem;
    }

    /* Differentiators */
    .differentiator-grid {
      display: grid;
      gap: 18px;
      margin-top: 42px;
    }

    .differentiator {
      padding: 29px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      transition:
        transform var(--ease),
        border-color var(--ease),
        box-shadow var(--ease);
    }

    .differentiator:hover {
      border-color: rgba(46, 125, 50, 0.38);
      box-shadow: var(--shadow-sm);
      transform: translateY(-5px);
    }

    .icon-box {
      display: grid;
      width: 52px;
      height: 52px;
      margin-bottom: 22px;
      place-items: center;
      border-radius: 15px;
      color: var(--green);
      background: var(--green-soft);
    }

    .icon-box svg {
      width: 26px;
      height: 26px;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 1.8;
    }

    .differentiator h3 {
      margin-bottom: 11px;
    }

    /* Services */
    .service-grid {
      display: grid;
      gap: 19px;
    }

    .service-card {
      position: relative;
      min-height: 410px;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: var(--green-deep);
      box-shadow: var(--shadow-sm);
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.65;
      transition:
        transform 520ms ease,
        opacity 520ms ease;
    }

    .service-card::after {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(
        180deg,
        rgba(7, 25, 12, 0.02) 10%,
        rgba(7, 25, 12, 0.93) 90%
      );
    }

    .service-card:hover img {
      opacity: 0.78;
      transform: scale(1.045);
    }

    .service-content {
      position: absolute;
      z-index: 1;
      right: 0;
      bottom: 0;
      left: 0;
      padding: 29px;
    }

    .service-kicker {
      display: inline-block;
      margin-bottom: 12px;
      color: #b8deb9;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .service-card h3 {
      color: var(--white);
    }

    .service-card p {
      margin-top: 11px;
      color: rgba(255, 255, 255, 0.75);
    }

    /* Industries */
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .industry {
      display: grid;
      min-height: 164px;
      align-content: space-between;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--white);
      transition:
        transform var(--ease),
        border-color var(--ease),
        background var(--ease);
    }

    .industry:hover {
      border-color: rgba(46, 125, 50, 0.38);
      background: var(--green-soft);
      transform: translateY(-4px);
    }

    .industry .icon-box {
      width: 44px;
      height: 44px;
      margin: 0;
      border-radius: 12px;
    }

    .industry strong {
      color: var(--charcoal);
      font-size: 0.89rem;
      letter-spacing: 0.03em;
    }



    .industry-copy {
      display: grid;
      gap: 8px;
    }

    .industry p {
      color: var(--body);
      font-size: 0.78rem;
      line-height: 1.5;
    }

    .client-logo {
      min-height: 112px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: var(--white);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      transition: transform var(--ease), box-shadow var(--ease);
    }

    .client-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 34px rgba(0, 0, 0, 0.14);
    }

    .client-logo img {
      display: block;
      width: auto;
      max-width: 150px;
      max-height: 62px;
      object-fit: contain;
    }

    .office-map {
      margin-top: 20px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--white);
    }

    .office-map__heading {
      display: grid;
      gap: 10px;
      padding: 15px 16px;
    }

    .office-map__heading strong,
    .office-map__heading span {
      display: block;
    }

    .office-map__heading strong {
      color: var(--green-dark);
      font-size: 0.82rem;
    }

    .office-map__heading span {
      margin-top: 2px;
      color: var(--body);
      font-size: 0.75rem;
    }

    .office-map__heading a {
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .office-map iframe {
      display: block;
      width: 100%;
      height: 280px;
      border: 0;
    }

    @media (min-width: 640px) {
      .office-map__heading {
        grid-template-columns: 1fr auto;
        align-items: center;
      }
    }

    /* Approach */
    .approach {
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: var(--green-deep);
      box-shadow: var(--shadow-md);
    }

    .approach-intro {
      padding: 43px 26px 24px;
    }

    .approach-intro .eyebrow {
      color: #b8dfbb;
    }

    .approach-intro h2 {
      color: var(--white);
    }

    .approach-intro p {
      max-width: 720px;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.7);
    }

    .steps {
      display: grid;
      padding: 14px 26px 43px;
    }

    .step {
      position: relative;
      padding: 29px 0 29px 62px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .step-number {
      position: absolute;
      top: 29px;
      left: 0;
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 50%;
      color: var(--white);
      font-size: 0.76rem;
      font-weight: 700;
    }

    .step h3 {
      color: var(--white);
    }

    .step p {
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.64);
    }

    /* Results */
    .results {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 7% 10%, rgba(138, 197, 63, 0.18), transparent 27%),
        var(--green-dark);
    }

    .results .eyebrow {
      color: #c7e9c9;
    }

    .results h2 {
      color: var(--white);
    }

    .results .section-heading p {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.69);
    }

    .stats-grid {
      display: grid;
      gap: 12px;
      margin-bottom: 44px;
    }

    .stat {
      padding: 29px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.06);
      text-align: center;
      backdrop-filter: blur(7px);
    }

    .stat strong {
      display: block;
      color: var(--white);
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.5rem, 7vw, 4.25rem);
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 11px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .client-logos {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 11px;
    }

    .client-logo {
      display: grid;
      min-height: 112px;
      place-items: center;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-sm);
      background: var(--white);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform var(--ease), box-shadow var(--ease);
    }

    .client-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 34px rgba(0, 0, 0, 0.14);
    }

    .client-logo img {
      display: block;
      width: auto;
      max-width: 150px;
      max-height: 62px;
      object-fit: contain;
    }

    .results-note {
      max-width: 760px;
      margin: 28px auto 0;
      color: rgba(255, 255, 255, 0.58);
      font-size: 0.84rem;
      text-align: center;
    }


    /* WorkPlace Insights */
    .insights-intro {
      display: grid;
      gap: 22px;
      align-items: end;
      margin-bottom: 42px;
    }

    .insights-intro .section-heading {
      margin-bottom: 0;
    }

    .insights-note {
      max-width: 430px;
      padding: 20px 22px;
      border-left: 3px solid var(--green);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      background: var(--green-soft);
    }

    .insights-note strong {
      display: block;
      margin-bottom: 5px;
      color: var(--green-dark);
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }


    .latest-articles-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .latest-article {
      padding: 13px;
      border: 1px solid rgba(46, 125, 50, 0.18);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.78);
    }

    .latest-article__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 10px;
      margin-bottom: 6px;
      color: var(--body);
      font-size: 0.68rem;
      font-weight: 600;
    }

    .latest-article__title {
      display: block;
      color: var(--green-dark);
      font-size: 0.79rem;
      font-weight: 700;
      line-height: 1.42;
    }

    .latest-article__title:hover {
      color: var(--green);
    }

    .latest-article__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .latest-article__actions a {
      display: inline-flex;
      min-height: 32px;
      align-items: center;
      justify-content: center;
      padding: 0 11px;
      border: 1px solid rgba(46, 125, 50, 0.28);
      border-radius: 999px;
      color: var(--green-dark);
      background: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
    }

    .latest-article__actions a:hover {
      border-color: var(--green);
      background: var(--green-soft);
    }

    .view-all-insights {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 17px;
      color: var(--green);
      font-size: 0.79rem;
      font-weight: 700;
    }

    .view-all-insights:hover {
      color: var(--green-dark);
    }

    .insights-grid {
      display: grid;
      gap: 20px;
    }

    .insight-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition:
        transform var(--ease),
        box-shadow var(--ease),
        border-color var(--ease);
    }

    .insight-card:hover {
      border-color: rgba(46, 125, 50, 0.35);
      box-shadow: var(--shadow-md);
      transform: translateY(-5px);
    }

    .insight-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .insight-body {
      padding: 25px;
    }

    .insight-audience {
      display: inline-flex;
      margin-bottom: 13px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--green-dark);
      background: var(--green-soft);
      font-size: 0.71rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .insight-card h3 {
      margin-bottom: 11px;
      font-size: 1.42rem;
    }

    .insight-card details {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .insight-card summary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green);
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
    }

    .insight-card summary::-webkit-details-marker {
      display: none;
    }

    .insight-card summary::after {
      content: "+";
      font-size: 1.1rem;
      line-height: 1;
    }

    .insight-card details[open] summary::after {
      content: "−";
    }

    .insight-article {
      padding-top: 15px;
    }

    .insight-article p + p {
      margin-top: 12px;
    }

    .insight-article ul {
      display: grid;
      gap: 8px;
      margin: 14px 0 0;
      padding-left: 20px;
      color: var(--body);
    }

    @media (min-width: 720px) {
      .insights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (min-width: 900px) {
      .insights-intro {
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
        gap: 55px;
      }
    }

    /* Careers */
    .career-banner {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(
          90deg,
          rgba(10, 38, 17, 0.96),
          rgba(10, 38, 17, 0.62)
        ),
        url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1900&q=85")
          center / cover no-repeat;
      box-shadow: var(--shadow-md);
    }

    .career-content {
      max-width: 770px;
      padding: 50px 26px;
    }

    .career-content .eyebrow {
      color: #c1e4c3;
    }

    .career-content h2 {
      color: var(--white);
    }

    .career-content p {
      margin: 18px 0 28px;
      color: rgba(255, 255, 255, 0.76);
    }

    /* Contact */
    .contact-grid {
      display: grid;
      gap: 24px;
    }

    .contact-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }

    .contact-card h3 {
      margin-bottom: 21px;
    }

    .form-grid {
      display: grid;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--charcoal);
      font-size: 0.81rem;
      font-weight: 700;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid #cbd5cc;
      border-radius: 10px;
      color: var(--charcoal);
      background: var(--white);
      transition:
        border-color var(--ease),
        box-shadow var(--ease);
    }

    .field input {
      height: 50px;
      padding: 0 14px;
    }

    .field textarea {
      min-height: 156px;
      padding: 13px 14px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--green);
      outline: 0;
      box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
    }

    .field input[aria-invalid="true"],
    .field textarea[aria-invalid="true"] {
      border-color: #b42318;
      box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
    }

    .field-error {
      min-height: 1.1em;
      color: #b42318;
      font-size: 0.76rem;
      line-height: 1.4;
    }

    .field-error:empty {
      display: none;
    }

    .form-status {
      margin-bottom: 18px;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .form-status:empty {
      display: none;
    }

    .form-status--success {
      border: 1px solid rgba(46, 125, 50, 0.28);
      color: var(--green-dark);
      background: var(--green-soft);
    }

    .form-status--error {
      border: 1px solid rgba(180, 35, 24, 0.24);
      color: #8a1c13;
      background: #fff2f0;
    }

    .honeypot {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      clip: rect(0 0 0 0) !important;
      clip-path: inset(50%) !important;
      white-space: nowrap !important;
    }

    [data-fs-submit-btn]:disabled {
      cursor: wait;
      opacity: 0.68;
      transform: none;
      box-shadow: none;
    }

    .office-list {
      display: grid;
      gap: 16px;
    }

    .office {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--green-pale);
    }

    .office h4 {
      margin: 0 0 12px;
      color: var(--green-dark);
      font-family: "Inter", Arial, sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .office p {
      margin-bottom: 10px;
    }

    .office a {
      display: block;
      color: var(--body);
      overflow-wrap: anywhere;
    }

    .office a:hover {
      color: var(--green);
    }

    .social-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin: 20px 0;
      padding: 17px 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
    }

    .social-row strong {
      font-size: 0.82rem;
    }

    .social-row a {
      color: var(--green);
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .map-placeholder {
      display: grid;
      min-height: 245px;
      place-items: center;
      padding: 22px;
      overflow: hidden;
      border: 1px dashed #aabaaa;
      border-radius: var(--radius-sm);
      color: var(--green-dark);
      background:
        linear-gradient(rgba(237, 246, 238, 0.88), rgba(237, 246, 238, 0.88)),
        url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1200&q=80")
          center / cover no-repeat;
      font-size: 0.83rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
    }



    .privacy-banner {
      position: fixed;
      z-index: 5000;
      right: 16px;
      bottom: 16px;
      left: 16px;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
      max-width: 760px;
      margin-inline: auto;
      padding: 20px 48px 18px 18px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,.98);
      box-shadow: var(--shadow-md);
    }

    .privacy-banner[hidden] {
      display: none !important;
    }

    .privacy-banner__close {
      position: absolute;
      top: 8px;
      right: 10px;
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      padding: 0;
      border: 0;
      border-radius: 50%;
      color: var(--body);
      background: transparent;
      font-size: 1.45rem;
      line-height: 1;
    }

    .privacy-banner__close:hover {
      color: var(--green-dark);
      background: var(--green-soft);
    }

    .privacy-banner__copy strong {
      color: var(--charcoal);
    }

    .privacy-banner__copy p {
      margin-top: 4px;
      font-size: .82rem;
      line-height: 1.5;
    }

    .privacy-banner__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .privacy-banner__actions a {
      color: var(--green);
      font-size: .8rem;
      font-weight: 700;
    }

    .privacy-banner__actions button {
      min-height: 40px;
      padding: 0 16px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: var(--green);
      font-weight: 700;
    }

    @media (min-width: 640px) {
      .privacy-banner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
      }

      .privacy-banner__actions {
        justify-content: flex-end;
      }
    }

    /* Footer */
    .footer {
      color: rgba(255, 255, 255, 0.72);
      background: #08150b;
    }

    .footer-main {
      display: grid;
      gap: 36px;
      padding: 55px 0 38px;
    }

    .footer-logo {
      width: min(100%, 300px);
      padding: 13px;
      border-radius: 11px;
      background: var(--white);
    }

    .footer-about p {
      max-width: 540px;
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.56);
    }

    .footer h3 {
      margin-bottom: 14px;
      color: var(--white);
      font-family: "Inter", Arial, sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.62);
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      gap: 7px;
      padding: 20px 0 26px;
      border-top: 1px solid rgba(255, 255, 255, 0.11);
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.77rem;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(25px);
      transition:
        opacity 700ms ease,
        transform 700ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (min-width: 640px) {
      .section {
        padding: 104px 0;
      }

      .brand {
        width: 190px;
        flex-basis: 190px;
      }

      .hero-actions {
        flex-direction: row;
        align-items: center;
      }

      .differentiator-grid,
      .service-grid,
      .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .client-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .career-content {
        padding: 70px 54px;
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (min-width: 860px) {
      :root {
        --nav-height: 94px;
      }

      .brand {
        width: 214px;
        flex-basis: 214px;
      }

      .nav-toggle {
        display: none;
      }

      .nav-panel {
        position: static;
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .nav-links a {
        position: relative;
        padding: 8px 0;
        font-size: 0.79rem;
      }

      .nav-links a::after {
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        height: 2px;
        content: "";
        background: var(--green);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform var(--ease);
      }

      .nav-links a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      .statement {
        grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
        gap: 55px;
      }

      .approach-intro {
        padding: 68px 60px 24px;
      }

      .steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 20px 60px 64px;
      }

      .step {
        min-height: 265px;
        padding: 84px 28px 0 0;
      }

      .step-number {
        top: 25px;
      }

      .contact-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      }

      .footer-main {
        grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.5fr);
      }
    }

    @media (min-width: 1080px) {
      .nav-links {
        gap: 20px;
      }

      .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .industry {
        min-height: 205px;
      }

      .client-logos {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .contact-card {
        padding: 38px;
      }
    }
