:root {
      --ink: #111412;
      --paper: #f7f5ef;
      --white: #ffffff;
      --muted: #6f776f;
      --line: rgba(17, 20, 18, .12);
      --soft: #ebe7dc;
      --gold: #b98f4a;
      --green: #2f6f5e;
      --steel: #45515a;
      --clay: #8b5e4a;
      --shadow: 0 24px 70px rgba(17, 20, 18, .14);
      --radius: 8px;
      --wrap: min(1180px, calc(100% - 40px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
      color: var(--ink);
      background: var(--paper);
      letter-spacing: 0;
    }

    body.menu-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    .responsive-picture { display: contents; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    :focus-visible { outline: 3px solid rgba(185, 143, 74, .55); outline-offset: 3px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 245, 239, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      width: var(--wrap);
      height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 42%),
        linear-gradient(135deg, var(--ink), var(--green) 58%, var(--gold));
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      box-shadow: 0 14px 34px rgba(17, 20, 18, .22);
    }

    .brand-logo {
      display: grid;
      width: 64px;
      height: 46px;
      flex: 0 0 64px;
      place-items: center;
      border-radius: 6px;
      background: #111412;
      overflow: hidden;
    }

    .brand-logo img { width: 58px; height: 40px; object-fit: contain; }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 1000;
      transform: translateY(-160%);
      border-radius: 6px;
      background: var(--ink);
      color: var(--white);
      padding: 10px 14px;
      font-weight: 700;
    }

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

    .brand small {
      display: block;
      font-size: 10px;
      color: var(--muted);
      font-weight: 700;
      letter-spacing: .22em;
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #2f352f;
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
      transition: background .2s ease, color .2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: var(--ink);
      color: var(--white);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 50%;
      color: var(--ink);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 16px 36px rgba(17, 20, 18, .2); }
    .btn-primary:hover { background: #222821; }
    .btn-ghost { background: rgba(255, 255, 255, .1); color: var(--white); border-color: rgba(255, 255, 255, .28); }
    .btn-light { background: var(--white); color: var(--ink); border-color: var(--line); }
    .btn-gold { background: var(--gold); color: var(--white); }

    main { overflow: hidden; }
    section { padding: 104px 0; }
    .wrap { width: var(--wrap); margin: 0 auto; }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(260px, .55fr);
      align-items: end;
      gap: 44px;
      margin-bottom: 44px;
    }

    .section-head > p {
      max-width: 430px;
      justify-self: end;
      font-size: 15px;
      line-height: 1.62;
      color: #5d675f;
      border-left: 2px solid rgba(185, 143, 74, .55);
      padding-left: 18px;
      margin-bottom: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .18em;
      margin-bottom: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }

    h1, h2, h3, h4, p { margin-top: 0; }
    h1 {
      font-size: clamp(48px, 7vw, 94px);
      line-height: .95;
      letter-spacing: 0;
      margin-bottom: 26px;
      max-width: 940px;
    }

    h2 {
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: 1;
      letter-spacing: 0;
      margin-bottom: 0;
    }

    h3 {
      font-size: 24px;
      line-height: 1.18;
      margin-bottom: 12px;
    }

    p { color: var(--muted); line-height: 1.72; }
    .lead { font-size: 18px; color: #dce2d8; max-width: 640px; }
    .text-large { font-size: 19px; color: #4f574f; }

    .hero {
      min-height: calc(100vh - 76px);
      padding: 0;
      background: #111412;
      color: var(--white);
      display: flex;
      align-items: stretch;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      max-width: none;
      object-fit: cover;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(17, 20, 18, .86) 0%, rgba(17, 20, 18, .62) 48%, rgba(17, 20, 18, .22) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: rgba(255, 255, 255, .22);
      z-index: 3;
    }

    .hero-inner {
      width: var(--wrap);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 46px;
      align-items: end;
      padding: 118px 0 42px;
      position: relative;
      z-index: 2;
    }

    .hero-copy { padding-bottom: 54px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

    .hero-panel {
      align-self: end;
      border-left: 1px solid rgba(255, 255, 255, .22);
      padding-left: 24px;
      display: grid;
      gap: 20px;
    }

    .hero-metric {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .hero-metric strong {
      display: block;
      font-size: 34px;
      line-height: 1;
      color: var(--white);
    }

    .hero-metric span { color: #d0d7ce; font-size: 14px; }

    .ticker {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 42px;
      background: rgba(17, 20, 18, .74);
      color: rgba(255, 255, 255, .72);
      display: flex;
      align-items: center;
      overflow: hidden;
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      z-index: 2;
    }

    .ticker div {
      white-space: nowrap;
      animation: drift 28s linear infinite;
    }

    @keyframes drift {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
      gap: 60px;
      align-items: center;
    }

    .about-collage {
      position: relative;
      min-height: 580px;
    }

    .about-collage img {
      position: absolute;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .about-collage .about-image-primary {
      width: 72%;
      height: 430px;
      left: 0;
      top: 0;
    }

    .about-collage .about-image-secondary {
      width: 54%;
      height: 300px;
      right: 0;
      bottom: 0;
      border: 10px solid var(--paper);
    }

    .about-note {
      position: absolute;
      right: 44px;
      top: 52px;
      width: 190px;
      padding: 22px;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .about-note strong { font-size: 34px; display: block; }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 30px;
    }

    .value {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
    }

    .value i { color: var(--gold); margin-bottom: 16px; }
    .value p { margin-bottom: 0; font-size: 14px; }

    .services {
      background: var(--ink);
      color: var(--white);
    }

    .services p, .services .eyebrow { color: #c8d0c6; }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      min-height: 430px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background: #242a24;
      isolation: isolate;
      box-shadow: 0 20px 54px rgba(0, 0, 0, .18);
    }

    .service-card img {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      object-fit: cover;
      opacity: .68;
      transition: transform .6s ease, opacity .3s ease;
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17, 20, 18, .06), rgba(17, 20, 18, .9));
      z-index: 1;
    }

    .service-card:hover img { transform: scale(1.06); opacity: .8; }
    .service-content {
      position: relative;
      z-index: 2;
      height: 100%;
      min-height: 430px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .service-content p { color: #d7ddd4; }

    .advantages {
      display: grid;
      grid-template-columns: .8fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .adv-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
    .adv-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 20px;
      background: var(--paper);
      padding: 28px;
      transition: background .2s ease;
    }

    .adv-item:hover { background: var(--white); }
    .adv-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--green);
    }

    .why-band {
      background: var(--white);
      border-block: 1px solid var(--line);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 28px;
    }

    .why-card {
      padding: 34px;
      border-left: 2px solid var(--gold);
      background: linear-gradient(180deg, #fff, #f4f1e9);
    }

    .stat-strip {
      padding: 74px 0;
      background: var(--green);
      color: var(--white);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .22);
    }

    .stat {
      background: var(--green);
      padding: 34px 24px;
    }

    .stat strong { font-size: clamp(38px, 5vw, 68px); line-height: 1; }
    .stat span { display: block; color: rgba(255, 255, 255, .76); margin-top: 10px; }

    .process {
      display: grid;
      grid-template-columns: 390px 1fr;
      gap: 54px;
      align-items: start;
    }

    .process-steps {
      counter-reset: step;
      display: grid;
      gap: 16px;
    }

    .step {
      counter-increment: step;
      display: grid;
      grid-template-columns: 68px 1fr;
      gap: 20px;
      align-items: start;
      padding: 24px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--line);
    }

    .step::before {
      content: "0" counter(step);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: var(--white);
      font-weight: 800;
      font-size: 14px;
    }

    .map-section {
      background: #e8e5da;
    }

    .route-map {
      min-height: 510px;
      border-radius: var(--radius);
      background:
        linear-gradient(rgba(247,245,239,.72), rgba(247,245,239,.72)),
        url("../images/transit-route-map.jpg") center/cover;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .route {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: rgba(255,255,255,.9);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-weight: 800;
      font-size: 13px;
    }

    .route::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(185, 143, 74, .18);
    }

    .r1 { left: 16%; top: 48%; }
    .r2 { left: 42%; top: 41%; }
    .r3 { left: 62%; top: 53%; }
    .r4 { left: 71%; top: 31%; }
    .r5 { left: 31%; top: 68%; }

    .projects-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
    }

    .project-card {
      min-height: 360px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--ink);
      box-shadow: 0 20px 54px rgba(17, 20, 18, .12);
    }

    .project-card:first-child { grid-row: span 2; min-height: 740px; }
    .project-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .72;
      transition: transform .6s ease;
    }

    .project-card:hover img { transform: scale(1.05); }
    .project-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17,20,18,.04), rgba(17,20,18,.9));
    }

    .project-info {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: 32px;
    }

    .partners-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .partner {
      height: 112px;
      display: grid;
      place-items: center;
      background: var(--white);
      color: var(--steel);
      font-weight: 800;
      letter-spacing: .06em;
    }

    .cert-layout {
      display: grid;
      grid-template-columns: .8fr 1fr;
      gap: 24px;
    }

    .cert-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 18px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .quote-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      padding: 30px;
    }

    .quote-card blockquote { margin: 0 0 24px; color: #384038; line-height: 1.7; }

    .news-grid,
    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .news-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid rgba(17, 20, 18, .08);
      overflow: hidden;
      min-width: 0;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .news-card:hover { transform: translateY(-4px); box-shadow: 0 22px 58px rgba(17, 20, 18, .12); }
    .news-card img { width: 100%; height: 220px; object-fit: cover; }
    .news-card div { padding: 24px; }
    .news-card h2,
    .news-card h3,
    .news-card p,
    .sidebar li,
    .chip {
      overflow-wrap: anywhere;
      word-break: normal;
    }

    .news-card h2 {
      font-size: 23px;
      line-height: 1.18;
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 14px;
      color: var(--green);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 12px;
      overflow-wrap: anywhere;
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      gap: 10px;
    }

    details {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0 22px;
    }

    summary {
      cursor: pointer;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-weight: 800;
      list-style: none;
    }

    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; color: var(--gold); font-size: 26px; }
    details[open] summary::after { content: "-"; }
    details p { padding-bottom: 22px; margin-bottom: 0; }

    .contact-band {
      background: var(--ink);
      color: var(--white);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .85fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .contact-layout p { color: #cbd3c8; }
    .form {
      background: var(--white);
      color: var(--ink);
      border-radius: var(--radius);
      padding: 30px;
      display: grid;
      gap: 14px;
    }

    .form.highlight {
      animation: formPulse 1.3s ease;
      box-shadow: 0 0 0 4px rgba(185, 143, 74, .25), var(--shadow);
    }

    @keyframes formPulse {
      0% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(185, 143, 74, .5), var(--shadow); }
      35% { transform: translateY(-3px); box-shadow: 0 0 0 8px rgba(185, 143, 74, .22), var(--shadow); }
      100% { transform: translateY(0); box-shadow: 0 0 0 4px rgba(185, 143, 74, .25), var(--shadow); }
    }

    .form input,
    .form textarea,
    .form select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #faf9f5;
      padding: 15px 16px;
      color: var(--ink);
    }

    .form input:focus,
    .form textarea:focus,
    .form select:focus {
      outline: none;
      border-color: rgba(185, 143, 74, .72);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(185, 143, 74, .16);
    }

    .form textarea { min-height: 124px; resize: vertical; }

    .footer {
      background: #090b0a;
      color: var(--white);
      padding: 70px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .7fr .7fr .9fr;
      gap: 42px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .footer p, .footer a { color: #b9c1b6; }
    .footer h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .14em; }
    .footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
    .socials { display: flex; gap: 10px; margin-top: 18px; }
    .socials a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      display: grid;
      place-items: center;
      font-weight: 800;
      letter-spacing: 0;
      transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
    }

    .socials a:hover {
      transform: translateY(-2px);
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }

    .socials svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 24px;
      color: #8e998d;
      font-size: 14px;
    }

    .page {
      display: none;
      animation: fadeIn .35s ease;
    }

    .page.active { display: block; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .page-hero {
      padding: 86px 0;
      color: var(--white);
      background: #111412;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(90deg, rgba(17,20,18,.88), rgba(17,20,18,.42));
      pointer-events: none;
    }

    .page-hero > .wrap {
      position: relative;
      z-index: 2;
    }

    .page-hero h1 { font-size: clamp(42px, 5.5vw, 76px); max-width: 850px; }
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      color: #d9ded8;
      font-size: 14px;
      margin-bottom: 24px;
    }

    .breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--gold); }

    .service-page-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-tile {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .service-tile img { width: 100%; height: 250px; object-fit: cover; }
    .service-tile-body { padding: 26px; }

    .service-overview {
      display: grid;
      grid-template-columns: .85fr 1fr;
      gap: 46px;
      align-items: start;
    }

    .service-overview-panel {
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius);
      padding: 34px;
      position: sticky;
      top: 100px;
    }

    .service-overview-title-spaced {
      margin-top: 10px;
      margin-bottom: 18px;
    }

    .service-overview-panel p { color: #cdd5cb; }

    .service-feature-list {
      display: grid;
      gap: 14px;
    }

    .service-feature {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 18px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
    }

    .service-feature i { color: var(--green); }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .industry-card {
      min-height: 220px;
      border-radius: var(--radius);
      padding: 26px;
      background: var(--white);
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .industry-card span {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #edf1eb;
      color: var(--green);
    }

    .documents-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .document-row {
      background: var(--white);
      padding: 24px;
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 16px;
      align-items: start;
    }

    .document-row i { color: var(--gold); }

    .detail-intro {
      display: grid;
      grid-template-columns: .85fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .detail-intro article > p {
      margin-bottom: 18px;
    }

    .detail-intro article > p:last-of-type {
      margin-bottom: 0;
    }

    .detail-aside {
      background: var(--white);
      border: 1px solid var(--line);
      padding: 28px;
      border-radius: var(--radius);
      position: sticky;
      top: 100px;
    }

    .detail-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin-top: 30px;
    }

    .detail-metric {
      background: var(--white);
      padding: 22px;
    }

    .detail-metric strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      color: var(--green);
    }

    .detail-metric span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .benefit {
      min-height: 210px;
      background: var(--white);
      border: 1px solid var(--line);
      padding: 26px;
      border-radius: var(--radius);
    }

    .gallery {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 16px;
    }

    .gallery img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .gallery img:first-child { grid-row: span 2; height: 536px; }

    .gallery.extended {
      grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--ink);
      min-height: 360px;
      aspect-ratio: 1 / 1;
    }

    .gallery-item:first-child {
      grid-row: auto;
      min-height: 360px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      transition: transform .55s ease, opacity .25s ease;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17,20,18,.04), rgba(17,20,18,.84));
    }

    .gallery-item:hover img {
      transform: scale(1.05);
      opacity: .88;
    }

    .gallery-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      padding: 24px;
      color: var(--white);
    }

    .gallery-caption span {
      display: inline-flex;
      margin-bottom: 9px;
      color: #dfc28d;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .gallery-caption h3 {
      margin-bottom: 6px;
      font-size: 21px;
      overflow-wrap: anywhere;
    }

    .gallery-caption p {
      color: rgba(255,255,255,.78);
      margin-bottom: 0;
      font-size: 14px;
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .container-types {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .container-type {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      min-height: 230px;
    }

    .container-type i {
      color: var(--gold);
      margin-bottom: 18px;
    }

    .projects-page-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    .project-wide {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      overflow: hidden;
    }

    .project-wide img { width: 100%; height: 340px; object-fit: cover; }
    .project-wide div { padding: 28px; }
    .project-wide h2 { margin-bottom: 14px; }

    .case-summary {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.18);
      margin-top: 34px;
    }

    .case-summary div {
      padding: 24px;
      background: rgba(17,20,18,.52);
    }

    .case-summary strong { display: block; font-size: 32px; color: var(--white); }
    .case-summary span { color: #cbd3c8; }

    .project-method {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 44px;
      align-items: start;
    }

    .method-board {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .method-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
    }

    .project-filter-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 28px;
      padding: 14px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 18px 45px rgba(17, 20, 18, .07);
    }

    .project-featured {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 28px;
    }

    .project-featured img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
    }

    .project-featured-content {
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .project-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin: 24px 0 28px;
    }

    .project-facts div {
      background: #fbfaf6;
      padding: 18px;
    }

    .project-facts strong {
      display: block;
      color: var(--green);
      font-size: 24px;
      line-height: 1;
    }

    .project-facts span {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 13px;
    }

    .project-tagline {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .project-tagline span {
      border: 1px solid rgba(47, 111, 94, .18);
      background: #f1f4ef;
      color: var(--green);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .impact-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      min-height: 230px;
    }

    .impact-card i {
      color: var(--gold);
      margin-bottom: 18px;
    }

    .project-quote {
      background:
        linear-gradient(90deg, rgba(17,20,18,.9), rgba(17,20,18,.52)),
        url("../images/multimodal-planning.jpg") center/cover;
      color: var(--white);
      border-radius: var(--radius);
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 34px;
      align-items: end;
    }

    .project-quote blockquote {
      margin: 0;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.08;
      font-weight: 800;
    }

    .project-quote p { color: #d9dfd6; }

    .blog-layout {
      display: grid;
      grid-template-columns: 1fr 330px;
      gap: 34px;
      align-items: start;
    }

    .blog-layout > div { min-width: 0; }

    #page-blog .blog-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    #page-blog .article-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #page-blog .news-card {
      box-shadow: 0 18px 45px rgba(17, 20, 18, .08);
    }

    #page-blog .news-card img {
      height: 250px;
    }

    .blog-tools {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
      align-items: flex-start;
    }

    #page-blog .blog-tools {
      align-items: center;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 14px;
      box-shadow: 0 18px 45px rgba(17, 20, 18, .07);
    }

    .blog-tools input {
      width: min(420px, 100%);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 14px 18px;
      background: var(--white);
    }

    .chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
    #page-blog .chips { flex-wrap: nowrap; }
    .chip {
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 700;
      color: var(--steel);
      max-width: 100%;
      line-height: 1.2;
      white-space: nowrap;
    }

    #page-blog .chip {
      background: #f6f3eb;
      border-color: rgba(47, 111, 94, .18);
    }

    .sidebar {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      display: grid;
      gap: 26px;
      min-width: 0;
    }

    #page-blog .sidebar {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 0;
      overflow: visible;
      background: transparent;
      box-shadow: none;
    }

    #page-blog .sidebar > div {
      background: var(--white);
      border: 1px solid rgba(17, 20, 18, .06);
      border-radius: var(--radius);
      padding: 20px 22px;
      box-shadow: 0 14px 34px rgba(17, 20, 18, .06);
    }

    #page-blog .sidebar h2 {
      margin-bottom: 12px;
    }

    #page-blog .sidebar p {
      margin-bottom: 10px;
      color: var(--muted);
    }

    .editorial-strip {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .editorial-item {
      background: var(--white);
      padding: 30px;
    }

    .newsletter-box {
      background:
        linear-gradient(90deg, rgba(17,20,18,.88), rgba(17,20,18,.42)),
        url("../images/customs-consulting.jpg") center/cover;
      color: var(--white);
      border-radius: var(--radius);
      padding: 42px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 30px;
      align-items: center;
    }

    .newsletter-box p { color: #d8ded6; }

    .blog-featured {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-bottom: 28px;
    }

    .blog-featured img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      object-fit: cover;
    }

    .blog-featured-content {
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .reading-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .reading-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .reading-card i {
      color: var(--green);
      margin-bottom: 18px;
    }

    .sidebar ol,
    .sidebar ul {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 4px;
      color: var(--muted);
      font-weight: 400;
      line-height: 1.5;
    }

    #page-blog .sidebar li,
    #page-blog .sidebar li::marker {
      color: var(--muted) !important;
      font-weight: 400;
    }

    .article-body {
      max-width: 850px;
      margin: 0 auto;
      font-size: 18px;
    }

    .article-layout {
      display: grid;
      grid-template-columns: 300px minmax(0, 850px);
      gap: 42px;
      align-items: start;
    }

    .article-toc {
      position: sticky;
      top: 100px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
    }

    .article-toc h2 {
      font-size: 18px;
      margin-bottom: 16px;
    }

    .article-toc a {
      display: block;
      padding: 10px 0;
      color: var(--steel);
      font-weight: 700;
      border-top: 1px solid var(--line);
    }

    .article-body img {
      width: 100%;
      height: 470px;
      object-fit: cover;
      border-radius: var(--radius);
      margin: 26px 0;
    }

    .article-callout {
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      margin: 30px 0;
    }

    .article-callout p { color: #d7ddd4; margin-bottom: 0; }

    .article-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin: 28px 0;
    }

    .article-point {
      background: var(--white);
      padding: 24px;
    }

    .article-point strong {
      display: block;
      color: var(--green);
      font-size: 26px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .article-quote {
      margin: 34px 0;
      padding: 34px;
      border-left: 3px solid var(--gold);
      background: var(--white);
      font-size: 24px;
      line-height: 1.45;
      font-weight: 700;
      color: #30372f;
    }

    .article-checklist {
      display: grid;
      gap: 12px;
      margin: 24px 0;
    }

    .article-checklist li {
      list-style: none;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 16px 18px;
      color: var(--steel);
      font-weight: 700;
    }

    .article-nav {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 42px;
      padding-top: 26px;
      border-top: 1px solid var(--line);
    }

    .contact-page {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 30px;
    }

    .contact-cards {
      display: grid;
      gap: 14px;
    }

    .contact-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
    }

    .map-frame {
      width: 100%;
      min-height: 450px;
      border: 0;
      border-radius: var(--radius);
      filter: grayscale(.4) contrast(1.05);
    }

    .department-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .department-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
    }

    .department-card i { color: var(--green); margin-bottom: 18px; }

    .contact-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(255,255,255,.22);
      border: 1px solid rgba(255,255,255,.18);
      margin-top: 34px;
      max-width: 820px;
    }

    .contact-hero-grid div {
      background: rgba(17,20,18,.58);
      padding: 22px;
    }

    .contact-hero-grid strong {
      display: block;
      color: var(--white);
      font-size: 28px;
    }

    .contact-hero-grid span { color: #d8ded6; }

    .contact-command {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 36px;
      align-items: stretch;
    }

    .contact-command-panel {
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius);
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 520px;
    }

    .contact-command-panel p { color: #cbd3c8; }

    .office-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .office-row {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: var(--radius);
    }

    .office-row i { color: var(--gold); }

    .sla-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .sla-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px;
    }

    .sla-card strong {
      display: block;
      font-size: 34px;
      color: var(--green);
      line-height: 1;
      margin-bottom: 12px;
    }

    .contact-map-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 24px;
      align-items: stretch;
    }

    .map-side {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
    }

    .map-side .socials a {
      color: var(--ink);
      border-color: var(--line);
      background: #f6f3eb;
      box-shadow: 0 10px 24px rgba(17, 20, 18, .08);
    }

    .map-side .socials a:hover {
      color: var(--white);
      background: var(--green);
      border-color: var(--green);
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .65s ease, transform .65s ease;
    }

    [data-reveal].visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
    }

    @media (max-width: 1040px) {
      .nav-links {
        position: fixed;
        inset: 76px 20px auto;
        display: none;
        grid-template-columns: 1fr;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 14px;
        box-shadow: var(--shadow);
      }

      body.menu-open .nav-links { display: grid; }
      .menu-toggle { display: grid; place-items: center; }
      .nav-actions .btn { display: none; }
      .hero-inner, .about-layout, .advantages, .process, .contact-layout, .detail-intro, .blog-layout, .contact-page, .service-overview, .project-method, .newsletter-box, .project-featured, .project-quote, .blog-featured, .contact-command, .contact-map-layout, .article-layout { grid-template-columns: 1fr; }
      .article-toc { position: static; }
      .service-overview-panel { position: static; }
      .hero-panel { display: none; }
      .service-grid, .service-page-grid, .testimonial-grid, .news-grid, .article-grid, .benefit-grid, .industry-grid, .documents-grid, .case-summary, .editorial-strip, .department-grid, .detail-metrics, .container-types, .impact-grid, .project-facts, .reading-list, .sla-grid, .contact-hero-grid, .article-points { grid-template-columns: repeat(2, 1fr); }
      .gallery.extended { grid-template-columns: repeat(2, 1fr); }
      #page-blog .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .partners-row { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 720px) {
      :root { --wrap: min(100% - 28px, 1180px); }
      section { padding: 72px 0; }
      .nav { height: 68px; }
      .brand span span { display: none; }
      .hero { min-height: calc(100vh - 68px); }
      .hero-inner { padding-top: 80px; }
      h1 { font-size: clamp(42px, 15vw, 60px); }
      h2 { font-size: 34px; }
      .section-head, .stats, .why-grid, .projects-grid, .cert-layout, .service-grid, .service-page-grid, .testimonial-grid, .news-grid, .article-grid, .benefit-grid, .projects-page-grid, .gallery, .industry-grid, .documents-grid, .case-summary, .method-board, .editorial-strip, .department-grid, .detail-metrics, .container-types, .impact-grid, .project-facts, .reading-list, .sla-grid, .contact-hero-grid, .article-points { grid-template-columns: 1fr; }
      .gallery.extended { grid-template-columns: 1fr; }
      .project-filter-bar { align-items: stretch; flex-direction: column; }
      .project-filter-bar .chips { justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
      .project-featured img { min-height: 300px; }
      .project-featured-content, .project-quote { padding: 28px; }
      .blog-featured img { min-height: 300px; }
      .blog-featured-content, .contact-command-panel { padding: 28px; }
      .article-quote { font-size: 20px; padding: 24px; }
      #page-blog .article-grid { grid-template-columns: 1fr; }
      #page-blog .blog-tools { align-items: stretch; }
      #page-blog .chips { justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
      #page-blog .sidebar { grid-template-columns: 1fr; }
      .about-collage { min-height: auto; display: grid; gap: 14px; }
      .about-collage img, .about-collage .about-image-primary, .about-collage .about-image-secondary { position: static; width: 100%; height: 280px; border: 0; }
      .about-note { position: static; width: 100%; }
      .values-grid { grid-template-columns: 1fr; }
      .project-card:first-child { min-height: 420px; }
      .partners-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid, .copyright, .blog-tools { grid-template-columns: 1fr; flex-direction: column; }
      .article-body img, .gallery img, .gallery img:first-child { height: 280px; }
      .gallery-item,
      .gallery-item:first-child { min-height: 340px; aspect-ratio: auto; }
      .gallery-caption { padding: 18px; }
      .gallery-caption h3 { font-size: 18px; }
      .gallery-caption p { font-size: 13px; line-height: 1.45; }
      .route { position: static; margin: 10px; width: max-content; }
      .route-map { padding-top: 30px; }
    }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
}

.language-switcher a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.language-switcher a.active,
.language-switcher a:hover {
  background: var(--ink);
  color: var(--white);
}

.flash-message {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(47, 111, 94, .24);
  border-radius: var(--radius);
  background: rgba(47, 111, 94, .09);
  color: var(--green);
  font-weight: 700;
}

.flash-message.error-message { border-color: rgba(180, 35, 24, .28); background: rgba(180, 35, 24, .09); color: #9f2e28; }

.article-body h2 {
  margin-top: 36px;
}

.article-body ul,
.article-body ol {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1040px) {
  .language-switcher { display: none; }
}

/* Compact responsive system */
body { font-size: 15px; line-height: 1.55; }
section { padding: 68px 0; }
h1, h2, h3, h4 { overflow-wrap: anywhere; }
h1 { max-width: 820px; margin-bottom: 18px; font-size: 56px; line-height: 1.04; }
h2 { font-size: 38px; line-height: 1.12; }
h3 { font-size: 18px; line-height: 1.3; }
.lead { max-width: 620px; font-size: 16px; line-height: 1.65; }
.text-large { font-size: 16px; line-height: 1.7; }
.section-head { gap: 28px; margin-bottom: 32px; }
.eyebrow { font-size: 11px; }
.btn { min-height: 42px; gap: 8px; padding: 0 16px; font-size: 13px; }
.btn svg { width: 17px; height: 17px; }

.hero { min-height: 620px; }
.hero-inner { padding: 92px 0 74px; }
.hero-copy { padding-bottom: 34px; }
.hero-actions { margin-top: 24px; }
.hero-panel { max-width: 290px; gap: 10px; }
.hero-metric { padding: 14px 0; }
.hero-metric strong { font-size: 27px; }
.hero-metric span { font-size: 12px; }
.ticker { height: 36px; font-size: 11px; }

.page-hero { padding: 58px 0; }
.page-hero h1 { max-width: 760px; font-size: 46px; line-height: 1.08; }
.breadcrumb { margin-bottom: 22px; font-size: 12px; }

.about-layout { gap: 42px; }
.about-collage { min-height: 470px; }
.about-collage .about-image-primary { height: 350px; }
.about-collage .about-image-secondary { height: 230px; }
.about-note { right: 30px; top: 38px; padding: 20px; }
.about-note strong { font-size: 27px; }
.values-grid { margin-top: 24px; }

.stat-strip { padding: 46px 0; }
.stat { padding: 24px 18px; }
.stat strong { font-size: 42px; }
.stat span { margin-top: 7px; font-size: 12px; }

.project-wide h2,
.project-featured-content h2,
.blog-featured-content h2,
.service-tile-body h2,
.news-card h2 { font-size: 27px; line-height: 1.18; }
.project-wide img { height: 270px; }
.project-wide div { padding: 22px; }
.project-featured-content,
.blog-featured-content { padding: 30px; }
.case-summary div { padding: 17px; }
.case-summary strong,
.detail-metric strong,
.sla-card strong { font-size: 26px; }
.project-quote { padding: 32px; }
.project-quote blockquote { font-size: 32px; }
.method-card h3,
.impact-card h3,
.department-card h3,
.benefit h3 { font-size: 18px; }

.form { gap: 10px; padding: 22px; }
.form input,
.form textarea,
.form select { min-height: 44px; padding: 11px 13px; font-size: 14px; }
.form textarea { min-height: 96px; }
.contact-command { grid-template-columns: .88fr 1.12fr; gap: 20px; align-items: start; }
.contact-command-panel { min-height: 0; padding: 24px; }
.contact-command-panel h2 { font-size: 31px; }
.office-list { gap: 8px; margin-top: 18px; }
.office-row { grid-template-columns: 34px 1fr; gap: 10px; padding: 12px; }
.office-row h3 { margin-bottom: 4px; font-size: 16px; }
.office-row p { margin-bottom: 0; font-size: 13px; }
.contact-form { grid-template-columns: repeat(2, minmax(0, 1fr)); align-self: start; align-content: start; }
.contact-form select,
.contact-form textarea,
.contact-form button { grid-column: 1 / -1; }
.contact-hero-grid { max-width: 720px; margin-top: 24px; }
.contact-hero-grid div { padding: 16px; }
.contact-hero-grid strong { font-size: 22px; }
.sla-card { padding: 20px; }
.map-frame { min-height: 360px; }

.footer { padding: 48px 0 24px; }
.footer-grid { gap: 34px; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  padding: 0 12px;
  font-weight: 600;
  cursor: pointer;
}
.nav-dropdown-toggle svg { width: 15px; height: 15px; transition: transform .18s ease; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle { background: var(--ink); color: var(--white); }
.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  width: 470px;
  gap: 4px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(7px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 18px 44px rgba(17, 20, 18, .14);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; min-width: 0; align-items: center; gap: 9px; border-radius: 6px; padding: 10px; color: var(--ink); }
.nav-dropdown-menu a:hover { background: #eef3ef; color: var(--green); }
.nav-dropdown-menu a svg { width: 17px; height: 17px; flex: 0 0 17px; }
.nav-dropdown-menu a span { min-width: 0; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.nav-dropdown-menu .all-services-link { grid-column: 1 / -1; border-bottom: 1px solid var(--line); border-radius: 6px 6px 0 0; }
.nav-dropdown-menu .all-services-link span { display: grid; overflow: visible; white-space: normal; }
.nav-dropdown-menu .all-services-link strong { font-size: 12px; }
.nav-dropdown-menu .all-services-link small { overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.mobile-language-switcher { display: none; }

@media (max-width: 1040px) {
  section { padding: 58px 0; }
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .page-hero h1 { font-size: 40px; }
  .nav-links { inset: 76px 14px auto; max-height: calc(100vh - 92px); overflow-y: auto; }
  .nav-links > a,
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; border-radius: 6px; padding: 10px 12px; }
  .nav-dropdown-menu { position: static; display: none; width: 100%; grid-template-columns: 1fr 1fr; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; padding: 5px 0 5px 12px; }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-dropdown:hover .nav-dropdown-menu:not(:focus-within) { display: none; }
  .nav-dropdown.open:hover .nav-dropdown-menu { display: grid; }
  .mobile-language-switcher { display: flex; gap: 6px; border-top: 1px solid var(--line); margin-top: 5px; padding: 12px 8px 3px; }
  .mobile-language-switcher a { display: grid; min-width: 42px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 6px; font-size: 11px; font-weight: 800; }
  .mobile-language-switcher a.active { border-color: var(--ink); background: var(--ink); color: #fff; }
  .contact-command { grid-template-columns: 1fr; }
  .contact-command-panel { order: 2; }
  .contact-form { order: 1; }
}

@media (max-width: 720px) {
  :root { --wrap: min(100% - 24px, 1180px); }
  body { font-size: 14px; }
  section { padding: 44px 0; }
  h1 { font-size: 34px; line-height: 1.08; }
  h2 { font-size: 27px; line-height: 1.15; }
  h3 { font-size: 17px; }
  .page-hero { padding: 42px 0; }
  .page-hero h1 { font-size: 32px; }
  .lead, .text-large { font-size: 14px; }
  .section-head { gap: 12px; margin-bottom: 24px; }
  .hero { min-height: 530px; }
  .hero-inner { padding: 64px 0 58px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-actions { gap: 8px; margin-top: 18px; }
  .ticker { height: 32px; }
  .brand-logo { width: 54px; height: 40px; flex-basis: 54px; }
  .brand-logo img { width: 49px; height: 35px; }
  .nav-dropdown-menu { grid-template-columns: 1fr; }
  .nav-dropdown-menu .all-services-link { grid-column: 1; }
  .about-layout { gap: 24px; }
  .about-collage img,
  .about-collage .about-image-primary,
  .about-collage .about-image-secondary { height: 220px; }
  .about-note { padding: 15px; }
  .values-grid { margin-top: 18px; }
  .stat-strip { padding: 32px 0; }
  .stat strong { font-size: 34px; }
  .project-wide h2,
  .project-featured-content h2,
  .blog-featured-content h2,
  .service-tile-body h2,
  .news-card h2 { font-size: 23px; }
  .project-wide img,
  .project-featured img,
  .blog-featured img { height: 230px; min-height: 0; }
  .project-featured-content,
  .project-quote,
  .blog-featured-content { padding: 20px; }
  .case-summary strong,
  .detail-metric strong,
  .sla-card strong { font-size: 23px; }
  .contact-command-panel { padding: 20px; }
  .contact-command-panel h2 { font-size: 26px; }
  .contact-form { grid-template-columns: 1fr; padding: 16px; }
  .contact-form > * { grid-column: 1; }
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-map-layout { gap: 12px; }
  .map-frame { min-height: 280px; }
  .footer { padding-top: 38px; }
}

@media (max-width: 420px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .page-hero h1 { font-size: 29px; }
  .hero { min-height: 500px; }
  .hero-actions .btn { width: 100%; }
  .btn { min-height: 40px; padding: 0 13px; }
  .nav-links { inset-inline: 8px; }
  .office-row { grid-template-columns: 28px 1fr; }
  .copyright { gap: 8px; }
}

/* Contact actions, consent and legal pages */
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-wide { grid-column: 1 / -1; }
.quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: grid; gap: 6px; min-width: 0; }
.form-field > span { color: var(--steel); font-size: 12px; font-weight: 750; line-height: 1.35; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; }
.form-field-wide,
.form-upload,
.quote-form textarea,
.quote-form button { grid-column: 1 / -1; }
.form-upload { display: grid; gap: 8px; border: 1px dashed #c9c4b7; border-radius: 7px; background: #faf9f5; padding: 12px 14px; color: var(--steel); cursor: pointer; }
.form-upload:hover { border-color: rgba(185, 143, 74, .72); background: #fff; }
.form-upload input[type="file"] { min-height: 0; border: 0; background: transparent; padding: 0; font-size: 12px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 40; display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 0 16px; border-radius: 6px; background: #167a5f; color: #fff; font-size: 14px; font-weight: 750; box-shadow: 0 12px 30px rgba(17, 20, 18, .22); }
.floating-whatsapp svg { width: 19px; }
.mobile-contact-dock { display: none; }
.cookie-banner { position: fixed; left: 20px; bottom: 20px; z-index: 60; display: flex; align-items: center; gap: 22px; width: min(620px, calc(100% - 40px)); padding: 16px 18px; border: 1px solid #d9ddd9; border-radius: 7px; background: #fff; box-shadow: 0 18px 55px rgba(17, 20, 18, .18); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13px; line-height: 1.55; color: #505a54; }
.cookie-banner p a { color: #176e5a; font-weight: 700; }
.cookie-banner > div { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-banner .btn { min-height: 38px; padding: 0 13px; font-size: 12px; }
.cookie-secondary { border: 1px solid #d6dad6; background: #fff; color: #17201b; }
.legal-hero { padding: 72px 0 50px; border-bottom: 1px solid #e0e2df; background: #f5f5f1; }
.legal-hero h1 { max-width: 820px; margin: 18px 0 10px; font-size: 46px; }
.legal-hero .breadcrumb { color: #536058; }
.legal-hero .breadcrumb a { color: #176e5a; font-weight: 700; }
.legal-hero .lead { max-width: 760px; color: #4e5952; }
.legal-section { padding: 56px 0 72px; }
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 34px 0 10px; font-size: 25px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #4e5952; line-height: 1.75; }
.legal-updated { margin-top: 40px; padding-top: 18px; border-top: 1px solid #dde0dd; font-size: 13px; }
.project-notice { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; padding: 13px 15px; border: 1px solid #dce1dd; border-radius: 6px; background: #f7f9f7; color: #59645d; }
.project-notice svg { flex: 0 0 17px; width: 17px; color: #19705b; }
.project-notice p { margin: 0; font-size: 12px; line-height: 1.55; }
.rich-copy { color: #4f5b54; font-size: 15px; line-height: 1.75; }
.rich-copy h3 { margin: 26px 0 8px; color: #111412; font-size: 21px; }
.rich-copy p { margin: 0 0 14px; }
.seo-copy-band { border-top: 1px solid #e0e3df; border-bottom: 1px solid #e0e3df; background: #f5f6f3; }
.seo-copy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-copy-card { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 22px; border: 1px solid #dce0dc; border-radius: 7px; background: #fff; }
.seo-copy-card > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 6px; background: #e8f2ed; color: #17705a; }
.seo-copy-card svg { width: 18px; }
.seo-copy-card h3 { margin: 0 0 8px; font-size: 18px; }
.seo-copy-card p { margin: 0; color: #59645d; font-size: 13px; line-height: 1.65; }
.article-services-band { padding-top: 0; }
.article-service-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dfe2df; border-left: 1px solid #dfe2df; }
.article-service-links a { display: grid; grid-template-columns: 24px 1fr 18px; align-items: center; gap: 10px; min-height: 64px; padding: 12px 15px; border-right: 1px solid #dfe2df; border-bottom: 1px solid #dfe2df; color: #17201b; font-size: 13px; font-weight: 700; }
.article-service-links a:hover { background: #f2f6f3; color: #176e5a; }
.article-service-links svg { width: 17px; }
.footer-grid { grid-template-columns: 1.35fr repeat(4, 1fr); }
.footer-grid li strong { font-size: 12px; color: #fff; }

@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-copy-grid { grid-template-columns: 1fr; }
  .article-service-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: 58px; }
  .floating-whatsapp { display: none; }
  .mobile-contact-dock { position: fixed; inset: auto 0 0; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; border-top: 1px solid #d8ddd8; background: #fff; box-shadow: 0 -8px 25px rgba(17, 20, 18, .1); }
  .mobile-contact-dock a { display: flex; align-items: center; justify-content: center; gap: 8px; color: #17201b; font-size: 13px; font-weight: 750; }
  .mobile-contact-dock a + a { background: #167a5f; color: #fff; }
  .mobile-contact-dock svg { width: 18px; }
  .cookie-banner { left: 10px; bottom: 68px; align-items: stretch; flex-direction: column; gap: 12px; width: calc(100% - 20px); padding: 14px; }
  .cookie-banner > div { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-hero { padding: 46px 0 34px; }
  .legal-hero h1 { font-size: 31px; }
  .legal-section { padding: 38px 0 48px; }
  .legal-content h2 { font-size: 21px; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-service-links { grid-template-columns: 1fr; }
}

/* Stable public typography */
.route-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.route-page-card { overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.route-page-card img { width: 100%; height: 260px; object-fit: cover; }
.route-page-card > div { padding: 24px; }
.route-page-card h2 { margin-bottom: 10px; font-size: 25px; }
.route-page-card a { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 650; }
.route-page-card a svg { width: 16px; }
.route-detail-layout, .case-detail { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 36px; align-items: start; }
.route-section-grid { display: grid; gap: 14px; margin-top: 26px; }
.route-section-grid section { padding: 20px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.route-section-grid h2 { margin-bottom: 8px; font-size: 21px; }
.route-quote-aside { position: sticky; top: 96px; padding: 22px; border-radius: 7px; background: var(--ink); color: #fff; }
.route-quote-aside h2 { margin-bottom: 10px; font-size: 22px; }
.route-quote-aside p { color: #d1d8d0; }
.case-detail-list { display: grid; gap: 12px; margin: 28px 0 0; }
.case-detail-list div { padding: 18px; border-left: 3px solid var(--green); background: #fff; }
.case-detail-list dt { margin-bottom: 5px; color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.case-detail-list dd { margin: 0; color: #4f5b54; line-height: 1.65; }
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-kerning: normal;
  font-synthesis: none;
}

h1, h2, h3, h4 { font-weight: 700; }
.brand { font-weight: 700; }
.brand small { font-weight: 600; }
.nav-links, .nav-dropdown-toggle { font-weight: 600; }
.btn { font-weight: 650; }
.eyebrow, .meta { font-weight: 700; }

.faq-list summary {
  color: #171b18;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.faq-list details p,
.contact-layout .faq-list details p {
  color: #59635c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 1;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #707970;
  opacity: 1;
}

/* Blog listing */
body[data-page="blog"] .editorial-strip {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

body[data-page="blog"] .blog-layout {
  grid-template-columns: 1fr;
  gap: 26px;
}

body[data-page="blog"] .blog-featured {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  box-shadow: 0 14px 38px rgba(17, 20, 18, .09);
}

body[data-page="blog"] .blog-featured img {
  min-height: 360px;
  max-height: 420px;
}

body[data-page="blog"] .blog-featured-content { padding: 30px; }
body[data-page="blog"] .blog-featured-content h2 { font-size: 28px; line-height: 1.25; }

body[data-page="blog"] .blog-tools {
  align-items: center;
  padding: 12px;
  box-shadow: none;
}

body[data-page="blog"] .chips {
  flex-wrap: wrap;
  justify-content: flex-end;
}

body[data-page="blog"] .chip {
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 600;
}

body[data-page="blog"] .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

body[data-page="blog"] .blog-layout .news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  box-shadow: none;
}

body[data-page="blog"] .blog-layout .news-card img { height: 190px; }

body[data-page="blog"] .blog-layout .news-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

body[data-page="blog"] .blog-layout .news-card .meta {
  min-height: 34px;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.45;
}

body[data-page="blog"] .blog-layout .news-card h2 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body[data-page="blog"] .blog-layout .news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body[data-page="blog"] .blog-layout .news-card a {
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 650;
}

body[data-page="blog"] .sidebar {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body[data-page="blog"] .sidebar > div {
  min-width: 0;
  padding: 18px 20px;
}

body[data-page="blog"] .sidebar h2 { font-size: 17px; }
body[data-page="blog"] .sidebar ol,
body[data-page="blog"] .sidebar ul { gap: 8px; font-size: 13px; line-height: 1.45; }
body[data-page="blog"] .sidebar a:hover { color: var(--green); }

/* Article reading typography */
.article-body { font-size: 16px; line-height: 1.75; }
.article-body p { color: #515c54; }
.article-body h2 { font-size: 25px; line-height: 1.3; }

@media (max-width: 1040px) {
  body[data-page="blog"] .blog-featured { grid-template-columns: 1fr; }
  body[data-page="blog"] .blog-featured img { width: 100%; min-height: 260px; max-height: 340px; }
  body[data-page="blog"] .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .quote-form,
  .contact-form { grid-template-columns: 1fr; }
  .quote-form > *,
  .contact-form > *,
  .form-field-wide,
  .form-upload { grid-column: 1; }
  .route-page-grid, .route-detail-layout, .case-detail { grid-template-columns: 1fr; }
  .route-page-card img { height: 220px; }
  .route-quote-aside { position: static; }
  body[data-page="blog"] .article-grid,
  body[data-page="blog"] .sidebar { grid-template-columns: 1fr; }
  body[data-page="blog"] .blog-tools { align-items: stretch; }
  body[data-page="blog"] .chips { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; }
  body[data-page="blog"] .blog-featured-content { padding: 20px; }
  body[data-page="blog"] .blog-featured-content h2 { font-size: 23px; }
  .faq-list summary { min-height: 60px; font-size: 15px; }
  .faq-list details p,
  .contact-layout .faq-list details p { font-size: 14px; }
}
