@media (max-width: 900px) {
  .hero {
    position: relative;
    min-height: calc(100svh - 118px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: var(--olive-dark);
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 18%;
    opacity: 1;
  }

  .hero-visual::after {
    background:
      linear-gradient(180deg,
        rgba(20, 22, 16, 0.04) 0%,
        rgba(20, 22, 16, 0.12) 30%,
        rgba(20, 22, 16, 0.66) 69%,
        rgba(20, 22, 16, 0.92) 100%);
  }

  .hero-visual figcaption {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 0;
    justify-content: flex-end;
    padding: clamp(10rem, 28vh, 15rem) 2rem 3.5rem;
    color: white;
  }

  .hero-copy .eyebrow,
  .hero-lede,
  .hero-note {
    color: rgba(255, 255, 255, 0.94);
  }

  .hero-lede {
    max-width: 34rem;
  }

  .hero-actions .button-dark {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
  }

  .hero-actions .text-link {
    color: white;
  }

  .hero-actions .text-link span {
    font-size: 0;
  }

  .hero-actions .text-link span::after {
    content: "→";
    font-size: 0.9rem;
    line-height: 1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - 118px);
  }

  .hero-copy {
    padding: 11rem 1.3rem 2.8rem;
  }

  .hero-copy h1 {
    margin-bottom: 1.35rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  }

  .hero-lede {
    margin-bottom: 1.4rem;
    font-size: 1.28rem;
    line-height: 1.28;
  }

  .hero-actions {
    gap: 1rem;
  }

  .hero-note {
    margin-top: 1.35rem;
    font-size: 0.72rem;
  }

  .hero-visual img {
    object-position: 50% 16%;
  }

  .mobile-book-button {
    display: none !important;
  }
}
