@media (max-width: 1180px) {
  .hero__grid,
  .highlight__panel {
    gap: 2rem;
  }

  .hero__location {
    letter-spacing: 0.34em;
  }

  .advantage__item {
    grid-template-columns: minmax(180px, 0.9fr) minmax(180px, 0.7fr) 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 0.8fr 0.8fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 4rem 0 7rem;
  }

  .hero__grid,
  .highlight__panel {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    margin-top: 5.5rem;
  }

  .hero__text {
    border-left: 0;
    padding-left: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "large large"
      "wide wide"
      "small-one small-two";
  }

  .feature-card--large,
  .feature-card--wide {
    min-height: 320px;
  }

  .advantage__item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .advantage__text p {
    max-width: none;
  }

  .highlight__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight__poster {
    min-height: 460px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .mma-banner {
    background-position: 70% center;
  }
}

@media (max-width: 860px) {
  .nav-toggle-label {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    z-index: 6;
  }

  .nav-toggle-label span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(280px, 100%);
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(7, 7, 7, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 32px, 100%);
  }

  .brand {
    font-size: 1.7rem;
  }

  .brand__tag {
    display: none;
  }

  .hero__content {
    padding: 3.5rem 0 5.5rem;
  }

  .hero__grid {
    margin-top: 4.5rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .hero__location {
    letter-spacing: 0.24em;
    line-height: 1.4;
  }

  .features {
    margin-top: -2rem;
    padding-bottom: 4rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "wide"
      "small-one"
      "small-two";
  }

  .feature-card--large,
  .feature-card--wide,
  .feature-card--small {
    min-height: 290px;
  }

  .advantage,
  .highlight {
    padding: 4.5rem 0;
  }

  .section-heading,
  .highlight__topline {
    text-align: left;
  }

  .highlight__topline strong {
    display: block;
    margin-top: 0.4rem;
  }

  .highlight__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .mma-banner {
    min-height: 430px;
    background-position: 76% center;
  }

  .mma-banner__content {
    min-height: 430px;
    max-width: 300px;
  }

  .footer__headline {
    padding-bottom: 1.4rem;
  }

  .footer__grid,
  .footer__contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .topbar {
    padding: 1.1rem 0;
  }

  .hero__content {
    padding-bottom: 4.25rem;
  }

  .hero__grid {
    margin-top: 3.4rem;
    gap: 1.4rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .hero__copy h1,
  .section-heading__lead,
  .section-heading h2,
  .highlight__topline p,
  .highlight__content h2,
  .footer__headline {
    line-height: 0.98;
  }

  .feature-card__content {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .feature-card h2 {
    font-size: 1.55rem;
  }

  .advantage__image {
    min-height: 110px;
  }

  .advantage__title h3 {
    font-size: 1.3rem;
        line-height: 30px;
        margin-left: 0;
  }

  .highlight__poster {
    min-height: 360px;
  }

  .highlight__stats {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .mma-banner {
    min-height: 390px;
    background-position: 72% center;
  }

  .mma-banner__content {
    min-height: 390px;
    max-width: 240px;
  }

  .mma-banner__content h2 {
    margin-top: 1rem;
  }

  .footer {
    padding-bottom: 1.4rem;
  }
}
