:root {
      --gold: #E8A838;
      --gold-dim: #B8862D;
      --ice: rgba(255, 255, 255, 0.95);
      --ice-muted: rgba(255, 255, 255, 0.72);
      --shadow: rgba(10, 25, 47, 0.55);

      --labor-orange: #E87722;
      --fire-red: #D62828;
      --traffic-orange: #F4A261;

      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'Inter', sans-serif;
    }


    .hero { margin: 0; padding: 0; box-sizing: border-box; }

    /* ── Hero ── */
    .hero {
      position: relative;
      width: 100%;
      min-height: 300px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 26px 64px;
      background: url('../images/img_12730bf5c7a5.jpg') center top / cover no-repeat;

    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg,
          rgba(9, 27, 58, 0.30) 0%,
          rgba(9, 27, 58, 0.12) 45%,
          rgba(9, 27, 58, 0.58) 80%,
          rgba(9, 27, 58, 0.78) 100%);
      pointer-events: none;
    }

    .header-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      text-align: right;
      padding-top: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
    }

    .eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.68rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1.5px solid var(--gold-dim);
      padding-bottom: 5px;
    }

    .org-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.9rem, 4.2vw, 3.1rem);
      line-height: 1.05;
      color: var(--ice);
      letter-spacing: -0.02em;
      margin: 0;
    }

    .org-name .accent { color: var(--gold); }

    .org-subtitle {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(0.95rem, 1.6vw, 1.25rem);
      color: var(--ice-muted);
      letter-spacing: 0.04em;
    }

    .divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 0;
    }

    /* ── Integrated trust badges ── */
    .trust-row {
      display: flex;
      flex-direction: row;
      gap: 12px;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      width: 96px;
    }

    .trust-badge__frame {
      width: 76px;
      height: 76px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s, border-color 0.25s;
    }

    .trust-badge:hover .trust-badge__frame {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.55);
    }

    .trust-badge__frame img {
      width: 116%;
      height: 116%;
      object-fit: cover;
      filter: grayscale(0.85) brightness(1.9) contrast(1.15) drop-shadow(0 1px 2px rgba(0,0,0,0.5));
      transition: filter 0.35s;
    }

    .trust-badge:hover .trust-badge__frame img {
      filter: grayscale(0.2) brightness(1.3) contrast(1.05) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
    }

    .trust-badge__label {
      font-family: var(--font-body);
      font-size: 0.56rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ice-muted);
      opacity: 0.85;
      line-height: 1.2;
      text-align: center;
    }

    /* ── Phones ── */
    .phones {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .phones a {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.95rem;
      color: var(--ice);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .phones a:hover { color: var(--gold); }

    .phones a::before {
      content: '☎ ';
      color: var(--gold-dim);
      font-size: 0.85em;
    }

    /* ── Intro strip ── */
    .intro {
      padding: 56px 64px 32px;
      max-width: 960px;
      margin: 0 auto;
    }

    .intro h2 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      color: var(--gold);
      margin-bottom: 12px;
    }

    .intro p {
      color: var(--ice-muted);
      line-height: 1.65;
      font-size: 1rem;
    }

    /* ── Programs grid ── */
    .programs {
      padding: 24px 64px 80px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .card {
      position: relative;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 14px;
      padding: 32px 28px 28px;
      overflow: hidden;
      transition: transform 0.25s, border-color 0.25s;
      display: flex;
      flex-direction: column;
      min-height: 320px;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .card-bg-img {
      position: absolute;
      right: -18px;
      bottom: -18px;
      width: 55%;
      max-width: 200px;
      height: auto;
      opacity: 0.12;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .card:hover .card-bg-img { opacity: 0.22; }

    .card-eyebrow {
      position: relative;
      z-index: 1;
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.30em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .card h3 {
      position: relative;
      z-index: 1;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.35rem;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .card p {
      position: relative;
      z-index: 1;
      color: var(--ice-muted);
      font-size: 0.95rem;
      line-height: 1.55;
      margin-top: auto;
      padding-top: 14px;
    }

    .card .meta {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      opacity: 0.70;
    }

    /* color variants */
    .card--labor { border-top: 3px solid var(--labor-orange); }
    .card--labor .card-eyebrow,
    .card--labor h3 { color: var(--labor-orange); }

    .card--fire { border-top: 3px solid var(--fire-red); }
    .card--fire .card-eyebrow,
    .card--fire h3 { color: var(--fire-red); }

    .card--traffic { border-top: 3px solid var(--traffic-orange); }
    .card--traffic .card-eyebrow,
    .card--traffic h3 { color: var(--traffic-orange); }

    .hero {
        position: relative;
        z-index: 1;
        background: transparent;
    }
    
    .hero__bg {
        position: absolute;
        inset: 0;
        background: url(../images/img_12730bf5c7a5.jpg) center top / cover no-repeat;
        filter: grayscale(100%) contrast(0.95) brightness(1.05);
        z-index: 0;
    }

    .cta-button {
        margin-top: 8px;
        display: inline-block;
        padding: 12px 26px;
        background: var(--gold);
        color: #fff;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        transition: background 0.2s;
    }

    .menu {
        margin-top: 20px;
    }

    body {
        background: #878787;
    }

    @media (max-width: 720px) {
      .hero {
        padding: 32px 24px;
        min-height: 520px;
        background-position: 60% top;
      }
      .hero::before {
        background: linear-gradient(180deg,
          rgba(9, 27, 58, 0.20) 0%,
          rgba(9, 27, 58, 0.65) 60%,
          rgba(9, 27, 58, 0.90) 100%);
      }
      .header-content { text-align: center; align-items: center; }
      .divider, .phones { margin-left: auto; margin-right: auto; align-items: center; }
      .trust-row { justify-content: center; }
      .intro { padding: 40px 24px 24px; }
      .programs { padding: 16px 24px 56px; grid-template-columns: 1fr; }
      
    }
 