
  .arch-hero {
    padding: 120px 0 50px;
    background: var(--bg-gray-fix);
    border-bottom: 1px solid rgba(15,23,42,.06);
    text-align: center;
  }
  .arch-hero .h2 { margin-bottom: 8px; }
  .arch-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid #e2e8f0;
  }
  .arch-count .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
  }


  .arch-grid-section {
    padding: 60px 0 100px;
    background: #fff;
  }


  .arch-card .card-text {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
  }
  .arch-card .card-text-inner {
    line-height: 1.65;
    max-height: 4.95em; 
    overflow: hidden;
    position: relative;
    transition: max-height .35s ease;
  }
  
  .arch-card .card-text-inner:not(.is-open)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2.4em;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
  }

  .arch-card .card-text-inner.is-open {
    max-height: 600px; 
  }
  .arch-card .card-text-inner.is-open::after {
    display: none;
  }

  .arch-expand-btn {
    background: none;
    border: none;
    color: var(--hero-blue);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0 0;
    font-family: var(--font-fix);
    transition: .15s;
  }
  .arch-expand-btn:hover {
    text-decoration: underline;
  }


  .arch-nav .navlinks a:not([href="index.html"]) { display: none; }


  @media (max-width: 980px) {
    .arch-hero { padding: 100px 0 40px; }
    .arch-nav .hamburger { display: none !important; }
    .arch-nav .navlinks {
      display: flex !important;
      position: static !important;
      width: auto !important;
      height: auto !important;
      background: none !important;
      box-shadow: none !important;
      padding: 0 !important;
      flex-direction: row !important;
    }
    .arch-nav .navlinks .btn { display: inline-flex !important; }
  }
