/* ── Responsive ── */

@media (max-width: 868px) {
  .hero__services-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  /* Single case study responsive */
  .cs-single-block {
    flex-direction: column !important;
    min-height: auto;
  }

  .cs-single-block__text {
    flex: none;
    padding: 2.5rem 1.25rem;
  }

  .cs-single-block__image {
    height: 300px;
    order: -1;
  }

  .cs-single-testimony {
    padding: 3rem 1.25rem;
  }

  .cs-single-download {
    padding: 1.25rem;
  }

  /* About page responsive */
  .about-intro {
    padding: 2.5rem 1.25rem;
  }

  .about-content {
    padding: 0 1.25rem 3rem;
  }

  .about-content__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .about-content__media {
    width: 100%;
  }

  .about-content__video-play {
    width: 80px;
    height: 80px;
  }

  .about-why {
    flex-direction: column;
    min-height: auto;
  }

  .about-why__image {
    flex: none;
    height: 300px;
  }

  .about-why__content {
    padding: 2.5rem 1.25rem;
  }

  .header__hamburger {
    display: flex;
  }

  .header__hamburger {
    z-index: 11;
  }

  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .header__link {
    font-size: 1.5rem;
  }

  /* Hamburger X state */
  .header__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    text-align: center;
    align-items: center;
    padding: 0 1.5rem;
    padding-top: 3rem;
  }

  .hero__title {
    max-width: none;
  }

  .hero__subtitle {
    max-width: none;
  }

  .hero__services {
    padding: 0 1.25rem 1.5rem;
    margin-bottom: 2rem;
  }

  .hero__service {
    padding: 1.1rem 1.25rem;
    gap: 0.85rem;
  }

  .hero__service-icon {
    width: 32px;
    height: 32px;
  }

  .hero__service-title {
    font-size: 0.95rem;
  }

  .hero__service-desc {
    font-size: 0.8rem;
  }

  /* About section responsive */
  .about {
    padding: 3rem 1.25rem;
  }

  .about__inner {
    flex-direction: column;
    padding: 2.5rem 1.75rem;
    gap: 2rem;
  }

  .about__video-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 522 / 323;
  }

  .about__video-play {
    width: 80px;
    height: 80px;
  }

  /* Values section responsive */
  .values {
    padding: 3rem 1.25rem;
  }

  .values__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .values__text {
    flex: none;
    padding-top: 0;
  }

  .values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .values__card {
    height: 140px;
  }

  .values__card-overlay {
    background: linear-gradient(0deg, rgba(35, 130, 176, 0.85) 30%, rgba(35, 130, 176, 0.3) 100%);
  }

  .values__card {
    align-items: flex-end;
  }

  .values__card-content {
    padding: 1rem;
  }

  .values__card-title {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .values__card-desc {
    display: none;
  }

  /* Case studies responsive */
  .case-studies {
    padding: 3rem 1.25rem;
  }

  .case-studies__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .case-studies__text {
    flex: none;
    align-items: flex-start;
    text-align: left;
  }

  .case-studies__slider {
    width: 100%;
  }

  .case-studies__card {
    flex: 0 0 85%;
  }

  .case-studies__card-img {
    height: 240px;
  }

  .case-studies__arrow {
    top: 120px;
    width: 40px;
    height: 40px;
  }

  /* News responsive */
  .news {
    padding: 3rem 1.25rem;
  }

  .news__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }

  .news__featured-link {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .news__card:nth-of-type(1) { grid-column: 1; grid-row: 2; }
  .news__card:nth-of-type(2) { grid-column: 2; grid-row: 2; }
  .news__card:nth-of-type(3) { grid-column: 1; grid-row: 3; }
  .news__card:nth-of-type(4) { grid-column: 2; grid-row: 3; }

  /* Accreditations responsive — swap grid for marquee */
  .accreditations {
    padding: 3rem 0;
  }

  .accreditations__heading {
    padding: 0 1.25rem;
  }

  .accreditations__grid {
    display: none;
  }

  .accreditations__marquee {
    display: block;
  }

  .accreditations__marquee::before,
  .accreditations__marquee::after {
    display: none;
  }

  /* Footer responsive */
  .footer {
    padding: 3rem 1.25rem 2rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .footer__tagline {
    flex: none;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 2rem 3rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer__bottom-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
  }

  /* Contact page responsive */
  .contact-locations {
    flex-direction: column;
  }

  .contact-locations__list {
    flex: none;
    width: 100%;
  }

  .contact-locations__map {
    width: 100%;
  }

  .contact-locations__leaflet {
    height: 350px;
    min-height: 300px;
  }

  .contact-enquiries__inner {
    flex-direction: column;
  }

  .contact-enquiries__text {
    flex: none;
  }
}
