:root{
    --ast-global-color-0: #5F7D8A;  /* primary accent: Slate Blue */
  --ast-global-color-1: #9C70A8;  /* secondary: Muted Mauve */
  --ast-global-color-2: #5F7D8A;  /* headings: Slate Blue (matches logo text) */
  --ast-global-color-3: #4A5568;  /* body text: Dark Charcoal (for readability) */
  
  /* Bonus variables for your backgrounds if you need them */
  --ast-global-color-4: #F4F7FA;  /* subtle background: Cloud Grey */
  --ast-global-color-5: #FFFFFF;  /* surface background: Pure White */
  }
  
 html{
     font-size: 120%;
 }
 
 body{
     font-family: 'Inter', system-ui, sans-serif;
 }

  @media (max-width: 768px){
    html{
        font-size: 100%;
    }

      #primary.site-main p{
          text-align: justify;
      }

      #primary.site-main .cta-section p{
          text-align: center;
      }

      #primary.site-main .lp-item__overlay p{
          text-align: center;
      }

      #primary.site-main .sp-ts-card__desc{
          text-align: left;
      }
  }
  
  /* Hero Section Styles */
  .hero-section{
      display: flex;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      position: relative;
      background-color: var(--ast-global-color-3);
      overflow: hidden;
  }
  
  .hero-left{
      width: 75%;
      height: 100%;
      position: relative;
  }
  
  .hero-slider{
      width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      padding-left: 8%;
  }

  .hero-bg-stack{
      position: absolute;
      inset: 0;
      z-index: 0;
  }

  .hero-bg-layer{
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.9s ease-in-out;
      pointer-events: none;
      z-index: 0;
  }

  .hero-bg-layer.active{
      opacity: 1;
      z-index: 1;
  }

  /* Overlay — single layer over rotating backgrounds */
  .hero-slider::before{
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
          linear-gradient(
              to bottom,
              rgba(0, 0, 0, 0.78) 0%,
              rgba(0, 0, 0, 0.45) 18%,
              rgba(0, 0, 0, 0.12) 38%,
              transparent 55%
          ),
          linear-gradient(to right, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.08) 100%);
  }
  
  .hero-content{
      position: relative;
      z-index: 2;
      max-width: 800px;
  }
  
  .hero-content h1{
      font-size: 5rem;
      font-weight: 700;
      line-height: 1.1;
      color: var(--ast-global-color-5);
      margin-bottom: 40px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .hero-cta{
      display: inline-block;
      padding: 15px 40px;
      background-color: var(--ast-global-color-2);
      color: var(--ast-global-color-5);
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
  }
  
  .hero-cta:hover{
      background-color: var(--ast-global-color-3);;
      color: var(--ast-global-color-5);
  }
  
  .hero-counter{
      position: absolute;
      bottom: 40px;
      left: 8%;
      color: var(--ast-global-color-5);
      font-size: 1rem;
      font-weight: 600;
      z-index: 2;
      letter-spacing: 2px;
  }
  
  .hero-right{
      width: 25%;
      height: 100%;
      background-color: var(--ast-global-color-1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px;
      color: var(--ast-global-color-4);
      position: relative;
  }
  
  .hero-right-content{
      max-width: 300px;
      margin-bottom: 100px; /* space for thumbnails */
  }
  
  .hero-right .subtitle{
      color: var(--ast-global-color-5);
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      font-weight: 700;
  }
  
  .hero-right p{
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: var(--ast-global-color-5);
  }
  
  .hero-thumbnails{
      position: absolute;
      bottom: 40px;
      right: 40px;
      display: flex;
      gap: 10px;
      z-index: 10;
  }
  
  .thumbnail{
      width: 120px;
      height: 160px;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.3s ease, transform 0.3s ease;
      border: 2px solid transparent;
  }
  
  .thumbnail:hover{
      opacity: 0.8;
  }
  
  .thumbnail.active{
      opacity: 1;
      border-color: var(--ast-global-color-5);
      transform: translateY(-5px);
  }

  /* Responsive Hero — hide sidebar and thumbnails on tablet */
  @media (max-width: 1024px){
      .hero-left{ width: 100%; }
      .hero-right{ display: none; }
      .hero-thumbnails{ display: none; }
      .hero-content h1{ font-size: 3.5rem; }
  }
  
  @media (max-width: 768px){
      .hero-section{ flex-direction: column; height: auto; min-height: unset; }
      .hero-left{ width: 100%; height: 70vh; min-height: 400px; }
      .hero-content h1{ font-size: 2.5rem; }

      /* Show WHO WE ARE panel stacked below the hero image on mobile */
      .hero-right{
          display: flex;
          width: 100%;
          height: auto;
          padding: 36px 24px;
      }
      .hero-right-content{
          max-width: 100%;
          margin-bottom: 0;
      }
      /* Thumbnails stay hidden on mobile */
      .hero-thumbnails{ display: none; }
  }

  /* =============================================
     Services Section
  ============================================= */
  .services-section{
      background-color: var(--ast-global-color-4);
      padding: 80px 6%;
  }

  /* Header row */
  .services-header{
      display: flex;
      align-items: flex-start;
      gap:80px;
      margin-bottom: 60px;
  }

  .services-header-left{
      flex: 0 0 auto;
      min-width: 220px;
  }

  .services-label{
      display: block;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ast-global-color-3);
      margin-bottom: 14px;
  }

  .services-title{
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--ast-global-color-2);
      line-height: 1.1;
      margin: 0;
  }

  .services-header-right{
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-top: 28px;
  }

  .services-header-right p{
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ast-global-color-3);
      max-width: 720px;
      margin: 0;
  }

  /* Nav arrows — hidden on desktop; shown when carousel needs them (see media query) */
  .services-nav{
      display: none;
  }

  .services-nav button{
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--ast-global-color-3);
      background: transparent;
      color: var(--ast-global-color-3);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }

  .services-nav button:hover{
      background: var(--ast-global-color-0);
      border-color: var(--ast-global-color-0);
      color: #fff;
  }

  /* Cards viewport (handles overflow clipping for mobile carousel) */
  .services-cards-viewport{
      overflow: hidden;
  }

  .services-cards-track{
      display: flex;
      gap: 24px;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Individual card */
  .service-card{
      flex: 1 1 0;
      min-width: 0;
      background: var(--ast-global-color-5);
      border: 1px solid #e2e8f0;
      padding: 40px 32px 36px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.25s ease, border-color 0.25s ease;
      text-decoration: none;
      color: inherit;
      box-sizing: border-box;
  }

  .service-card:focus-visible{
      outline: 2px solid var(--ast-global-color-0);
      outline-offset: 3px;
  }

  .service-card:hover{
      transform: translateY(-6px);
      background-color: var(--ast-global-color-1);
      border-color: var(--ast-global-color-1);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .service-card-icon{
      width: 64px;
      height: 64px;
      min-width: 64px;
      min-height: 64px;
      color: var(--ast-global-color-0);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: color 0.25s ease;
  }

  .service-card:hover .service-card-icon{
      color: var(--ast-global-color-5);
  }

  /* Same pixel box for every services icon (viewBox / artwork can still vary slightly in visual weight) */
  .service-card-icon > svg{
      width: 64px;
      height: 64px;
      min-width: 64px;
      min-height: 64px;
      max-width: 64px;
      max-height: 64px;
      display: block;
      flex: 0 0 64px;
  }

  .service-card-title{
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ast-global-color-2);
      margin: 0;
      transition: color 0.25s ease;
  }

  .service-card:hover .service-card-title{
      color: var(--ast-global-color-5);
  }

  .service-card-desc{
      font-size: 1rem;
      line-height: 1.65;
      color: var(--ast-global-color-3);
      margin: 0;
      flex: 1;
      transition: color 0.25s ease;
  }

  .service-card:hover .service-card-desc{
      color: var(--ast-global-color-5);
  }

  .service-card-link{
      display: inline-block;
      font-size: 1.2rem;
      color: var(--ast-global-color-3);
      transition: color 0.25s ease, transform 0.25s ease;
      width: fit-content;
  }

  .service-card:hover .service-card-link{
      color: var(--ast-global-color-5);
      transform: translateX(4px);
  }

  /* ── Responsive ── */

  /* Tablet: 2 visible cards, scroll for third */
  @media (max-width: 1024px){
      .services-section{ padding: 60px 5%; }
      .services-title{ font-size: 2.2rem; }

      .services-nav{
          display: flex;
          gap: 12px;
      }

      .service-card{
          flex: 0 0 calc(50% - 12px);
      }
  }

  /* Mobile: single-card carousel */
  @media (max-width: 768px){
      .services-section{ padding: 48px 5%; }

      .services-header{
          flex-direction: column;
          gap: 24px;
          margin-bottom: 40px;
      }

      .services-header-right{
          padding-top: 0;
      }

      .services-title{ font-size: 2rem; }

      .service-card{
          flex: 0 0 100%;
      }
  }

  /* =============================================
     Mission banner (background image + overlay)
  ============================================= */
  .mission-section{
      position: relative;
      padding: clamp(4rem, 10vw, 7.5rem) 6%;
      text-align: center;
      /* Dark overlay (tinted with theme body color) + background photo */
      background-color: var(--ast-global-color-3);
      background-image:
          linear-gradient(
              180deg,
              rgba(45, 55, 72, 0.9) 0%,
              rgba(15, 23, 42, 0.92) 100%
          ),
          var(--mission-bg-image);
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
  }

  .mission-section__inner{
      position: relative;
      z-index: 1;
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
  }

  .mission-section__label{
      margin: 0 0 1.25rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--ast-global-color-5);
  }

  .mission-section__headline{
      margin: 0;
      font-size: clamp(1.5rem, 3.2vw, 2.35rem);
      font-weight: 700;
      line-height: 1.35;
      color: var(--ast-global-color-5);
      min-height: 3em; /* Reserve space so it doesn't jump as text types out */
  }

  .typewriter-cursor{
      display: inline-block;
      width: 4px;
      height: 1em;
      background-color: var(--ast-global-color-0);
      vertical-align: text-bottom;
      margin-left: 4px;
      animation: blink 1s step-end infinite;
  }

  @keyframes blink {
      50% { opacity: 0; }
  }

  

  /* ── Mission Counters ── */
  .mission-counters{
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 76rem;
      margin: 5rem auto 0;
      position: relative;
      z-index: 1;
  }

  .mission-counter{
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      user-select: none;
  }

  .mission-counter:not(:last-child)::after{
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 40%;
      background-color: rgba(255, 255, 255, 0.15);
  }

  .mission-counter__number{
      font-size: clamp(5rem, 12vw, 12rem);
      font-weight: 800;
      line-height: 1;
      color: rgba(255, 255, 255, 0.04);
      font-variant-numeric: tabular-nums;
  }

  .mission-counter__label{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      font-weight: 700;
      color: var(--ast-global-color-5);
      letter-spacing: 0.5px;
  }

  .mission-section__actions{
      margin-top: 2.5rem;
      text-align: center;
      position: relative;
      z-index: 1;
  }

  .mission-section__about{
      display: inline-block;
      padding: 0.9rem 2.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ast-global-color-5);
      border: 2px solid rgba(255, 255, 255, 0.75);
      background-color: transparent;
      transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }

  .mission-section__about:hover, .mission-section__about:focus{
      background-color: var(--ast-global-color-1);
      border-color: var(--ast-global-color-1);
      color: var(--ast-global-color-5);
  }

  @media (max-width: 768px){
      .mission-section{
          padding: 3.5rem 5%;
      }

      .mission-section__headline{
          line-height: 1.4;
      }

      .mission-counters{
          flex-direction: column;
          gap: 2rem;
          margin-top: 3.5rem;
      }

      .mission-counter:not(:last-child)::after{
          right: 50%;
          top: auto;
          bottom: -1rem;
          transform: translateX(50%);
          width: 40%;
          height: 1px;
      }
  }

/* ==========================================================================
   Project Archive
   ========================================================================== */



















































/* ==========================================================================
   Single Project
   ========================================================================== */













































/* Responsive – single project */


/* Responsive – archive */


/* ==========================================================================
   Home – Request Quotation CTA
   ========================================================================== */

.cta-section{
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-bg{
    position: absolute;
    inset: -6%;         /* bleed beyond edges so scale(1.1) never shows empty corners */
    background-image: url('/wp-content/uploads/2026/04/cta-bg-image.jpg');
    background-size: cover;
    background-position: center;
    /* No background-attachment: fixed — it is incompatible with CSS transform
       (transform creates a new stacking context and breaks fixed attachment). */
    z-index: 0;
    transform-origin: center center;
    animation: cta-zoomInOut 20s infinite alternate ease-in-out;
    will-change: transform;
}

@keyframes cta-zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.cta-overlay{
    position: absolute;
    inset: 0;
    background-color: var(--ast-global-color-1);
    opacity: 0.85;
    z-index: 1;
}

.cta-content{
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: var(--ast-global-color-5);
}

.cta-title{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--ast-global-color-5);
}

.cta-desc{
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button{
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ast-global-color-1);
    background-color: var(--ast-global-color-5);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before, .cta-button:focus-visible::before{
    left: 100%;
}

.cta-button:hover, .cta-button:focus-visible{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: var(--ast-global-color-0);
    color: var(--ast-global-color-5);
}

@media (max-width: 768px){
    .cta-section{
        padding: 4rem 1.25rem;
    }
}

/* ==========================================================================
   Home – Testimonials (Strong Testimonials)
   ========================================================================== */

.home-testimonials{
    width: 100%;
    padding: 4rem 0 1rem;
}

.home-testimonials__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.home-testimonials__header{
    margin-bottom: 2rem;
}

.home-testimonials__label{
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ast-global-color-0);
    margin-bottom: 0.4rem;
}

.home-testimonials__title{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    line-height: 1.15;
}

@media (max-width: 900px){
    .home-testimonials__inner{
        padding: 0 2rem;
    }
}

/* ==========================================================================
   Latest News – Home Section
   ========================================================================== */

.latest-news{
    width: 100%;
    padding: 5rem 4rem;
    background-color: var(--ast-global-color-4);
}

.latest-news__header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.latest-news__header-left{
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.latest-news__label{
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ast-global-color-0);
}

.latest-news__title{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    line-height: 1.15;
}

.latest-news__all, .latest-projects__all{
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ast-global-color-0);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.latest-news__all:hover, .latest-projects__all:hover{
    color: var(--ast-global-color-2);
}

.latest-news__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card{
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}

.news-card__image-link{
    display: block;
}

.news-card__image{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.news-card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card__image img{
    transform: scale(1.04);
}

.news-card__body{
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card__meta{
    font-size: 0.78rem;
    color: var(--ast-global-color-0);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 0.6rem;
}

.news-card__title{
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.75rem;
    color: var(--ast-global-color-2);
}

.news-card__title a{
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card__title a:hover{
    color: var(--ast-global-color-0);
}

.news-card__excerpt{
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--ast-global-color-3);
    margin: 0 0 1.25rem;
    flex: 1;
}

.news-card__link{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ast-global-color-0);
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s ease;
}

.news-card__link:hover{
    color: var(--ast-global-color-2);
}

@media (max-width: 900px){
    .latest-news{
        padding: 4rem 2rem;
    }

    .latest-news__grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .latest-news__grid{
        grid-template-columns: 1fr;
    }

    .latest-news__header{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Gallery carousel (service page)
   ========================================================================== */

.latest-projects{
    width: 100%;
    padding: 5rem 0 0;
}

.latest-projects__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem 2rem;
    gap: 1rem;
}

.latest-projects__header-left{
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.latest-projects__title{
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    line-height: 1.15;
}

.latest-projects__viewport{
    position: relative;
    overflow: hidden;
    container-type: inline-size;
    container-name: latest-projects;
}

.latest-projects__btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.latest-projects__btn svg{
    display: block;
    flex-shrink: 0;
    stroke: #fff;
    transition: stroke 0.2s ease;
}

.latest-projects__prev{
    left: 1rem;
}

.latest-projects__next{
    right: 1rem;
}

.latest-projects__btn:hover{
    background: #fff;
    border-color: #fff;
}

.latest-projects__btn:hover svg{
    stroke: var(--ast-global-color-2);
}

.latest-projects__btn:disabled{
    opacity: 0.3;
    cursor: not-allowed;
}

.latest-projects__strip{
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.lp-item{
    /* Square tiles: width matches visible viewport (4-up desktop); height follows 1:1 */
    flex: 0 0 calc((100cqi - 72px) / 4);
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.lp-item__bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lp-item__bg img, .lp-item__placeholder{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lp-item__placeholder{
    background: linear-gradient(135deg, var(--ast-global-color-4), #cbd5e0);
}

.lp-item:hover{
    transform: translateY(-4px);
}

.lp-item:hover .lp-item__bg img{
    transform: scale(1.04);
}

/* Dark gradient at the bottom so text is always legible */
.lp-item::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Overlay card */
.lp-item__overlay{
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #fff;
    padding: 0.9rem 1.4rem;
    min-width: 180px;
    max-width: 80%;
    text-align: center;
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.lp-item__name{
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.lp-item__client{
    font-size: 0.8rem;
    color: var(--ast-global-color-3);
    margin: 0;
}

/* Responsive */
@media (max-width: 900px){
    .latest-projects__header{
        padding: 0 2rem 1.5rem;
    }
}

@media (max-width: 768px){
    .latest-projects__header{
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .latest-projects__strip{
        gap: 0;
    }

    .lp-item{
        flex: 0 0 100cqi;
    }
}

/* ==========================================================================
   Custom Footer
   ========================================================================== */

.custom-footer{
    background-color: #0b0d17;
    color: #a0a0b0;
    font-family: 'Inter', sans-serif;
    padding: 80px 0 0;
    font-size: 15px;
    line-height: 1.8;
}

.custom-footer-container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.custom-footer-row{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    gap: 40px;
}

.custom-footer-col{
    flex: 1 1 0;
    min-width: 0;
}

.custom-footer-col--logo{
    flex: 2 1 0;
}

.custom-footer-col--logo .custom-logo-link{
    display: block;
    width: 100%;
    line-height: 0;
}

.custom-footer-col--logo img.custom-logo{
    display: block;
    width: 70%;
    height: auto;
}

.custom-footer-logo-text{
    display: inline-block;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.custom-footer-logo-text:hover{
    color: #ffffff;
    opacity: 0.85;
}

.custom-footer-title{
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.custom-footer-list,
.custom-footer-menu{
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer-list li,
.custom-footer-menu li{
    margin-bottom: 15px;
}

.custom-footer-list li:last-child,
.custom-footer-menu li:last-child{
    margin-bottom: 0;
}

.custom-footer-menu a{
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-footer-menu a:hover{
    color: #ffffff;
}

.footer-email{
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.custom-footer-list > li.footer-email:first-child{
    margin-top: 0 !important;
}

.footer-email a{
    color: #a0a0b0;
    text-decoration: none;
    border-bottom: 1px solid #a0a0b0;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.footer-email a:hover{
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.footer-phone{
    color: #ffffff;
    font-size: 18px;
}

.custom-footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.custom-footer-bottom p{
    margin: 0;
}

.custom-footer-credit-link{
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.custom-footer-credit-link:hover{
    color: #ffffff;
}

@media (max-width: 991px){
    .custom-footer-row{
        gap: 30px;
    }

    .custom-footer-col{
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 575px){
    .custom-footer-col{
        flex: 0 0 100%;
    }

    .custom-footer-container{
        padding: 0 20px;
    }
}




























































/* ==========================================================================
   Service Pages (Industrial Design, Ship Designs, Marine Systems)
   ========================================================================== */

/* ── Hero ── */
.sp-hero{
    position: relative;
    height: 65vh;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background-color: var(--ast-global-color-3);
    background-image:
        linear-gradient(
            to bottom,
            rgba(15, 23, 42, 0.72) 0%,
            rgba(15, 23, 42, 0.50) 100%
        ),
        var(--sp-hero-bg);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    padding: 0 6% 5rem;
}

.sp-hero__content{
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* ── Breadcrumb ── */
.sp-breadcrumb{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.60);
    list-style: none;
    padding: 0;
}

.sp-breadcrumb a{
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sp-breadcrumb a:hover{
    color: #fff;
}

.sp-breadcrumb__sep{
    color: rgba(255, 255, 255, 0.30);
    font-size: 0.9rem;
}

.sp-hero__title{
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

/* ── Top Services (Slider) ── */
.sp-top-services{
    background-color: var(--ast-global-color-4);
    padding: 6rem 6% 4rem;
    overflow: hidden;
}

.sp-ts-header{
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: start;
    gap: 2rem clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
}

.sp-ts-header__left{
    min-width: 0;
}

.sp-ts-header__label{
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ast-global-color-0);
    margin-bottom: 0.75rem;
}

.sp-ts-header__title{
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    line-height: 1.1;
}

.sp-ts-header__right{
    display: flex;
    align-items: flex-start;
    min-width: 0;
}

.sp-ts-header__desc{
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ast-global-color-3);
    margin: 0;
}

.sp-ts-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sp-ts-card{
    height: 450px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.sp-ts-card__bg{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-ts-card:hover .sp-ts-card__bg{
    transform: scale(1.05);
}

.sp-ts-card__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    transition: background 0.4s ease;
}

.sp-ts-card__content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 1rem 1rem;
    z-index: 2;
    background: rgba(24, 24, 24, 0.75);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.sp-ts-card__title{
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.sp-ts-card__desc{
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ── Types of Applications ──
   Image column narrower; content column wider for two-column apps list */
.sp-apps{
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 9fr);
    align-items: stretch;
    min-height: 0;
    background: var(--ast-global-color-5);
}

/* Image fills the content-driven row height without contributing to it */
.sp-apps__media{
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
    align-self: stretch;
    border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.08),
        0 16px 40px rgba(15, 23, 42, 0.12);
}

.sp-apps__media img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.sp-apps__content{
    padding: 5rem 7% 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ast-global-color-4);
}

.sp-apps__label{
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.sp-apps__headline{
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.sp-apps__body{
    font-size: 0.97rem;
    line-height: 1.78;
    color: #1a1a1a;
    margin: 0 0 2rem;
    max-width: none;
}

.sp-apps__points{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.75rem;
    align-items: start;
}

.sp-apps__points li{
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.sp-apps__points li::before{
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--ast-global-color-0);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── Industry sectors ── */
.sp-industries{
    position: relative;
    padding: 5rem 6% 5.5rem;
    background: linear-gradient(180deg, var(--ast-global-color-5) 0%, var(--ast-global-color-4) 100%);
}

.sp-industries::before{
    content: '';
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(95, 125, 138, 0.28),
        transparent
    );
}

.sp-industries__inner{
    max-width: 1280px;
    margin: 0 auto;
}

.sp-industries__header{
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.sp-industries__label{
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ast-global-color-0);
    margin-bottom: 1rem;
}

.sp-industries__title{
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    line-height: 1.12;
    margin: 0 0 1rem;
}

.sp-industries__intro{
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--ast-global-color-3);
    margin: 0;
}

.sp-industries__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.sp-industry-card{
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--ast-global-color-5);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s ease;
}

.sp-industry-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

.sp-industry-card__media{
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--ast-global-color-4);
    overflow: hidden;
}

.sp-industry-card__media img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-industry-card__body{
    padding: clamp(1.35rem, 3vw, 1.65rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sp-industry-card__title{
    font-size: clamp(1.05rem, 1.35vw, 1.18rem);
    font-weight: 700;
    color: var(--ast-global-color-0);
    margin: 0 0 0.6rem;
    line-height: 1.35;
}

.sp-industry-card__desc{
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--ast-global-color-3);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1200px){
    .sp-apps{
        grid-template-columns: 1fr;
    }

    .sp-apps__media{
        width: 100%;
    }

    .sp-apps__content{
        padding: 4rem 6%;
    }

    .sp-apps__points{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem 1.25rem;
    }
}

@media (max-width: 1024px){
    .sp-ts-header{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sp-ts-header__right{
        width: 100%;
    }
    .sp-ts-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-industries__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px){
    .sp-hero{
        height: auto;
        min-height: 60vh;
        padding: 8rem 5% 4rem;
        align-items: flex-start;
    }

    .sp-top-services{
        padding: 4rem 5% 4rem;
    }
    .sp-ts-header__right{
        flex-direction: column;
        align-items: flex-start;
    }
    .sp-ts-grid{
        grid-template-columns: 1fr;
    }
    .sp-ts-card{
        height: 380px;
    }
    .sp-ts-card__content{
        height: auto;
        display: block;
    }

    .sp-apps__content{
        padding: 3.5rem 5%;
    }

    .sp-apps__body{
        max-width: 100%;
    }

    /* Single column list on small screens */
    .sp-apps__points{
        grid-template-columns: 1fr;
    }

    .sp-industries{
        padding: 4rem 5% 4.25rem;
    }

    .sp-industries::before{
        left: 5%;
        right: 5%;
    }

    .sp-industries__header{
        margin-bottom: 2.25rem;
    }

    .sp-industries__grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   About Us Page (template: About Us)
   Scoped layout — uses theme CSS variables only; does not redefine globals.
   ========================================================================== */

.about-us-page .about-overview{
    padding: clamp(3.5rem, 8vw, 5.5rem) 6%;
    background-color: var(--ast-global-color-5);
}

.about-us-page .about-overview__inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.about-us-page .about-overview__copy{
    min-width: 0;
}

.about-us-page .about-overview__title{
    margin: 0 0 1.25rem;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--ast-global-color-2);
}

.about-us-page .about-overview__body{
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ast-global-color-3);
}

.about-us-page .about-overview__media{
    min-width: 0;
}

.about-us-page .about-overview__figure{
    margin: 0;
    border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.08),
        0 18px 44px rgba(15, 23, 42, 0.1);
    background-color: var(--ast-global-color-4);
}

.about-us-page .about-overview__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us-page .about-values{
    width: 100%;
    padding: clamp(3.5rem, 8vw, 5.5rem) 6%;
    background:
        linear-gradient(
            165deg,
            rgba(95, 125, 138, 0.09) 0%,
            var(--ast-global-color-4) 42%,
            rgba(156, 112, 168, 0.07) 100%
        );
    box-sizing: border-box;
}

.about-us-page .about-values__inner{
    max-width: 1280px;
    margin: 0 auto;
}

.about-us-page .about-values__header{
    text-align: center;
    margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
    max-width: 36rem;
}

.about-us-page .about-values__label{
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ast-global-color-0);
}

.about-us-page .about-values__title{
    margin: 0;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ast-global-color-2);
}

.about-us-page .about-values__row{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.15rem;
}

.about-us-page .about-values-card{
    flex: 1 1 140px;
    max-width: 190px;
    min-width: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.45rem 1rem 1.35rem;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    box-shadow:
        0 2px 12px rgba(15, 23, 42, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition:
        transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.28s ease,
        border-color 0.25s ease;
}

.about-us-page .about-values-card:hover{
    transform: translateY(-4px);
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    border-color: rgba(95, 125, 138, 0.22);
}

.about-us-page .about-values-card__icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: rgba(95, 125, 138, 0.11);
    color: var(--ast-global-color-1);
}

.about-us-page .about-values-card__icon svg{
    display: block;
    flex-shrink: 0;
}

.about-us-page .about-values-card__label{
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ast-global-color-2);
}

.about-us-page .about-quality{
    padding: clamp(3.5rem, 8vw, 5.5rem) 6%;
    background-color: var(--ast-global-color-5);
}

.about-us-page .about-quality__inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.about-us-page .about-quality__media{
    min-width: 0;
}

.about-us-page .about-quality__figure{
    margin: 0;
    border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.08),
        0 18px 44px rgba(15, 23, 42, 0.1);
    background-color: var(--ast-global-color-4);
}

.about-us-page .about-quality__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us-page .about-quality__copy{
    min-width: 0;
}

.about-us-page .about-quality__title{
    margin: 0 0 1.25rem;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--ast-global-color-2);
}

.about-us-page .about-quality__pullquote{
    margin: 0 0 1.35rem;
    padding: 1rem 1.15rem 1rem 1.25rem;
    border-left: 4px solid var(--ast-global-color-1);
    border-radius: 0 12px 12px 0;
    background: rgba(95, 125, 138, 0.07);
}

.about-us-page .about-quality__pullquote p{
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    color: var(--ast-global-color-2);
}

.about-us-page .about-quality__body{
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ast-global-color-3);
}

.about-us-page .about-team{
    width: 100%;
    padding: clamp(3.5rem, 8vw, 5.5rem) 6%;
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    background-color: var(--ast-global-color-4);
    /* Photo sits under a strong cloud-grey wash so body copy stays readable */
    background-image:
        linear-gradient(
            185deg,
            rgba(244, 247, 250, 0.96) 0%,
            rgba(244, 247, 250, 0.91) 42%,
            rgba(244, 247, 250, 0.96) 100%
        ),
        var(--about-team-bg-image);
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.about-us-page .about-team__inner{
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-page .about-team__title{
    margin: 0 auto 1.75rem;
    max-width: 52rem;
    text-align: center;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--ast-global-color-2);
}

.about-us-page .about-team__intro{
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.75rem);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.about-us-page .about-team__body{
    margin: 0;
    font-size: 1rem;
    line-height: 1.78;
    color: var(--ast-global-color-3);
    text-align: justify;
}

.about-us-page .about-team__body + .about-team__body{
    margin-top: 1.1em;
}

.about-us-page .about-team__stats{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    max-width: 960px;
    margin: clamp(2.25rem, 5vw, 3rem) auto 0;
    padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(95, 125, 138, 0.16);
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.05);
}

.about-us-page .about-team-stat{
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(0.65rem, 2vw, 1.25rem);
}

.about-us-page .about-team-stat:not(:last-child){
    border-right: 1px solid rgba(95, 125, 138, 0.2);
}

.about-us-page .about-team-stat__value{
    display: block;
    font-size: clamp(1.05rem, 2vw, 1.38rem);
    font-weight: 800;
    line-height: 1.28;
    color: var(--ast-global-color-1);
    letter-spacing: -0.02em;
}

.about-us-page .about-team-stat:first-child .about-team-stat__value{
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.about-us-page .about-team-stat:nth-child(2) .about-team-stat__value{
    font-size: clamp(1.12rem, 2.2vw, 1.48rem);
}

.about-us-page .about-team-stat:last-child .about-team-stat__value{
    font-size: clamp(0.92rem, 1.55vw, 1.15rem);
    line-height: 1.35;
}

.about-us-page .about-team-stat__label{
    display: block;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.38;
    color: var(--ast-global-color-3);
}

.about-us-page .about-us-editorial{
    padding: clamp(3rem, 7vw, 5rem) 6%;
    background-color: var(--ast-global-color-5);
}

.about-us-page .about-us-editorial__inner{
    max-width: 760px;
    margin: 0 auto;
}

.about-us-page .about-us-editorial__inner > *:first-child{
    margin-top: 0;
}

.about-us-page .about-us-editorial__inner > *:last-child{
    margin-bottom: 0;
}

@media (max-width: 900px){
    .about-us-page .about-overview__inner, .about-us-page .about-quality__inner{
        grid-template-columns: 1fr;
    }

    .about-us-page .about-overview__media, .about-us-page .about-quality__media{
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

@media (max-width: 640px){
    .about-us-page .about-team__stats{
        flex-direction: column;
        flex-wrap: wrap;
    }

    .about-us-page .about-team-stat:not(:last-child){
        border-right: none;
        border-bottom: 1px solid rgba(95, 125, 138, 0.2);
        padding-bottom: 1.15rem;
        margin-bottom: 1.15rem;
    }

    .about-us-page .about-team-stat:last-child{
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 600px){
    .about-us-page .about-overview, .about-us-page .about-values, .about-us-page .about-quality, .about-us-page .about-team{
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* ==========================================================================
   Contact Us
   ========================================================================== */

.contact-us-page__hero{
    height: auto;
    min-height: 420px;
    padding-bottom: 4rem;
    align-items: flex-end;
}



.contact-us-details{
    background-color: var(--ast-global-color-5);
    padding: 5rem 6%;
}

.contact-us-details__inner{
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.contact-us-details__header{
    margin-bottom: 2.75rem;
}

.contact-us-details__label{
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ast-global-color-0);
    margin-bottom: 0.65rem;
}

.contact-us-details__title{
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0;
    line-height: 1.15;
}

.contact-us-cards{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.45fr);
    gap: clamp(1.25rem, 3vw, 2rem);
}

.contact-us-card{
    display: flex;
    gap: 1.1rem;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    background: var(--ast-global-color-4);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 14px;
    min-height: 100%;
}

.contact-us-card__icon{
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    color: var(--ast-global-color-0);
}

.contact-us-card__body{
    min-width: 0;
}

.contact-us-card__title{
    margin: 0 0 0.4rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ast-global-color-2);
}

.contact-us-card__text{
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ast-global-color-3);
}

.contact-us-card__line{
    display: block;
}

.contact-us-card__line + .contact-us-card__line{
    margin-top: 0.15rem;
}

address.contact-us-card__text{
    font-style: normal;
}

.contact-us-card__link{
    color: var(--ast-global-color-0);
    text-decoration: none;
    font-weight: 500;
}

.contact-us-card--email .contact-us-card__link{
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(0.875rem, 1.6vw, 1rem);
}

.contact-us-card__link:hover{
    text-decoration: underline;
}

.contact-us-form-block{
    padding: 4.5rem 6% 5.5rem;
    background-color: var(--ast-global-color-4);
}

.contact-us-form-block__inner{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-us-form-block__title{
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--ast-global-color-2);
    margin: 0 0 1.75rem;
}

.contact-us-form-block__body > *:first-child{
    margin-top: 0;
}

.contact-us-form-block__body > *:last-child{
    margin-bottom: 0;
}

@media (max-width: 900px){
    .contact-us-cards{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px){
    .contact-us-details, .contact-us-form-block{
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* ========================================================================== 
   4K desktop tweaks
   ========================================================================== */

