@media (max-width: 1120px) {
  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .nav-menu {
    gap: 15px;
  }

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

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

  .price-list-columns {
    grid-template-columns: 1fr;
  }

  .price-list-columns li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(15, 38, 49, 0.09);
  }

  .price-list-columns li:last-child {
    border-bottom: 0;
  }

  .appointment-box,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  body {
    padding-bottom: 74px;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 95;
    background: rgba(7, 23, 31, 0.62);
    backdrop-filter: blur(4px);
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid currentColor;
    border-radius: var(--radius-sm);
    color: currentColor;
    background: transparent;
  }

  .nav-toggle span[aria-hidden="true"],
  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span[aria-hidden="true"] {
    position: relative;
  }

  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle span[aria-hidden="true"]::before {
    top: -7px;
  }

  .nav-toggle span[aria-hidden="true"]::after {
    top: 7px;
  }

  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"] {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 12px;
    left: 12px;
    bottom: auto;
    display: grid;
    align-content: start;
    gap: 4px;
    max-height: calc(100svh - var(--header-height) - 28px);
    overflow-y: auto;
    padding: 12px;
    background: rgba(248, 243, 234, 0.98);
    color: var(--color-primary);
    z-index: 101;
    border: 1px solid rgba(15, 38, 49, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(15, 38, 49, 0.08);
    border-radius: var(--radius-sm);
    font-size: 1.06rem;
    font-weight: 800;
  }

  .nav-menu .nav-cta {
    margin-top: 10px;
    border: 0;
    font-size: 1.05rem;
    justify-content: center;
    min-width: 0;
    padding: 16px 22px;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 24px) 0 52px;
  }

  .hero-grid,
  .split,
  .why-grid,
  .statement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid::before {
    inset: -24px -14px auto;
    height: 520px;
  }

  .contact-grid .section-copy,
  .contact-grid .contact-hero,
  .contact-grid .contact-card,
  .contact-grid .contact-map,
  .contact-form {
    grid-column: 1;
  }

  .contact-hero {
    order: 1;
  }

  .contact-map {
    order: 2;
  }

  .contact-card {
    order: 3;
  }

  .contact-form {
    order: 4;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-portrait {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .hero-portrait img {
    max-height: none;
  }

  .media-panel img {
    aspect-ratio: 16 / 10;
  }

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

  .reason-list {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 24px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    transform: none;
  }

  .timeline-item::before,
  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before {
    left: -30px;
    right: auto;
  }

  .statement-copy {
    padding-left: 0;
    border-left: 0;
  }

  .appointment-box {
    grid-template-columns: 1fr;
  }

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

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: var(--radius-sm);
    background: var(--color-gold);
    color: var(--color-primary-dark);
    font-weight: 800;
    box-shadow: var(--shadow-md);
  }

  body.has-scrolled .mobile-call {
    display: flex;
  }

  body.in-contact .mobile-call {
    display: none;
  }

  body.in-services .mobile-call {
    display: none;
  }

  .footer {
    padding-bottom: 98px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .nav {
    width: min(100% - 24px, 1320px);
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .contact-actions,
  .appointment-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    min-height: 84px;
  }

  .service-card,
  .service-category,
  .reason,
  .contact-card {
    padding: 22px;
  }

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

  .price-list li {
    min-height: auto;
  }

  .contact-form {
    width: 100%;
  }

  .contact-map iframe {
    min-height: 340px;
  }

  .map-caption {
    display: block;
  }

  .map-caption span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .map-info-grid {
    grid-template-columns: 1fr;
  }

  .map-info-grid div {
    min-height: auto;
    padding: 15px 18px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

  .gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .gallery-item,
  .gallery-item.wide {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .gallery-item img,
  .gallery-item.wide img {
    aspect-ratio: 4 / 3;
  }

  .contact-card div {
    display: block;
  }

  .contact-card dd {
    margin-top: 4px;
    text-align: left;
  }

  .lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 52px;
    font-size: 34px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand strong {
    max-width: 190px;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .hero-portrait figcaption {
    width: calc(100% - 22px);
    margin-top: -42px;
    padding: 13px;
  }
}
