@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1.5px;
    background: var(--white);
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
    padding: 90px 32px 40px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--display);
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-24px);
    visibility: hidden;
    transition: opacity .3s ease, transform .45s cubic-bezier(.2, .7, .2, 1), visibility .3s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-nav a::after {
    bottom: 2px;
  }

  .header-call {
    display: none;
  }

  .service-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .service-panel,
  .service-panel:hover,
  .service-panel:focus {
    display: block;
    height: auto;
    min-height: 340px;
  }

  .service-panel__summary,
  .service-panel:hover .service-panel__summary,
  .service-panel:focus .service-panel__summary {
    width: auto;
  }

  .service-panel__details,
  .service-panel:hover .service-panel__details,
  .service-panel:focus .service-panel__details {
    position: static;
    width: auto;
    padding: 18px 0 0;
    margin-top: 18px;
    opacity: 1;
    border-top: 1px solid rgba(23, 27, 26, .12);
    border-left: 0;
    transform: none;
    visibility: visible;
  }

  .service-panel--red .service-panel__details,
  .service-panel--dark .service-panel__details {
    border-color: rgba(255, 255, 255, .24);
  }

  .service-panel__hint {
    display: none;
  }

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

  .coverage-map {
    min-height: 440px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top p {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 28px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.7rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand__name {
    font-size: 1.2rem;
  }

  .brand__sub {
    font-size: .39rem;
  }

  .hero {
    min-height: 540px;
    margin-top: 8px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(11, 14, 13, .92), rgba(11, 14, 13, .42) 78%),
      linear-gradient(90deg, rgba(11, 14, 13, .7), transparent);
  }

  .hero__image {
    object-position: 65% center;
  }

  .hero__content {
    position: absolute;
    right: 0;
    bottom: 42px;
    left: 0;
    width: auto;
    padding: 30px 24px;
  }

  .hero__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero__note {
    display: none;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 15px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-heading--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-heading--row > p {
    width: auto;
  }

  .service-deck {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .service-panel:hover,
  .service-panel:focus {
    height: 160px;
    min-height: 160px;
  }

  .service-panel:focus {
    height: auto;
  }

  .service-panel__details,
  .service-panel:hover .service-panel__details {
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    border: 0;
    visibility: hidden;
  }

  .service-panel:focus .service-panel__details {
    max-height: 700px;
    padding-top: 18px;
    margin-top: 18px;
    opacity: 1;
    border-top: 1px solid rgba(23, 27, 26, .12);
    visibility: visible;
  }

  .service-panel--red:focus .service-panel__details,
  .service-panel--dark:focus .service-panel__details {
    border-color: rgba(255, 255, 255, .24);
  }

  .service-panel__hint {
    display: flex;
    font-size: 0;
  }

  .service-panel__hint::before {
    font-size: .7rem;
    content: "Tap for details";
  }

  .coverage__panel {
    padding: 34px 22px 22px;
  }

  .coverage-map {
    min-height: 320px;
  }

  .coverage-map > iframe {
    min-height: 320px;
  }

  .site-footer {
    margin-top: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .site-footer__bottom {
    display: grid;
  }

  .site-footer__bottom span:last-child {
    margin-left: 0;
  }
}
