@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    padding: 0.5rem 0 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
  }

  .nav-cta {
    margin: 0.5rem auto;
    width: auto !important;
  }

  .nav-burger {
    display: block;
  }

  .nav-logo {
    font-size: 1rem;
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Hero */
  .hero-title-pill {
    font-size: clamp(1.8rem, 10vw, 3rem);
    padding: 0.5rem 1.2rem;
  }

  .hero-photo {
    width: 140px;
    height: 210px;
    object-fit: cover;
    object-position: top center;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-decoration {
    display: flex;
    justify-content: center;
  }

  .about-photo {
    max-width: 280px;
  }

  .notepad-card {
    max-width: 100%;
  }

  /* Activities */
  .activity-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
  }

  /* Field trips */
  .film-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Dates */
  .dates-card {
    padding: 1.5rem 1rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.4rem 0.3rem;
    font-size: 0.85rem;
  }

  .week-row {
    padding: 0.5rem 0.75rem;
    gap: 0.6rem;
    border-radius: var(--radius-md);
  }

  .week-label {
    font-size: 1rem;
    min-width: 58px;
  }

  .week-dates {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Week schedule rows — prevent date wrapping, shrink spots badge */
  .week-schedule-row {
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .week-schedule-row .week-label {
    min-width: 54px;
    font-size: 0.95rem;
  }

  .week-schedule-row .week-dates,
  .week-check-date {
    white-space: nowrap;
    font-size: 0.85rem;
    min-width: 0;
    flex: 1;
  }

  .week-spots {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
    letter-spacing: 0.02em;
  }

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Pricing */
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .price-tag {
    width: 100%;
    max-width: 300px;
  }

  /* Join / Form */
  .btn--big {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
  }

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

  .week-check {
    border-radius: var(--radius-md);
  }

  .payment-methods {
    flex-direction: column;
    align-items: center;
  }

  /* Sections */
  .section {
    padding: 4rem 1.2rem;
  }

  /* Section banner */
  .section-banner .banner-text {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .section-banner .banner-icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    width: 120px;
    height: 180px;
    object-fit: cover;
    object-position: top center;
  }

  .polaroid {
    padding: 8px 8px 40px;
  }

  .polaroid-name {
    font-size: 1.1rem;
  }

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

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

  .price-calc-amount {
    font-size: 1.6rem;
  }
}
