/* ─── Reduced Motion ─────────────────────────────────────── */
/* Keep opacity/color fades (aid comprehension), remove position movement */

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-cta,
  .hero-divider {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-ornament.has-lines::before,
  .section-ornament.has-lines::after {
    transform: scaleX(1);
    transition: none;
  }

  .service-item,
  .card,
  .testimonial-card,
  .featured-visual img {
    transition: background var(--duration-base) ease,
                border-color var(--duration-base) ease,
                color var(--duration-base) ease;
  }

  .btn-primary,
  .btn-secondary {
    transition: background var(--duration-base) ease,
                color var(--duration-base) ease;
  }
}

/* ─── Tablet (≤1024px) ────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav-links,
  .nav > .btn-primary {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-12);
  }

  .stat-item:nth-child(3)::before,
  .stat-item:nth-child(4)::before {
    display: none;
  }

  .stat-item:nth-child(3) {
    border-left: none;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .book-cta-inner {
    flex-direction: column;
    gap: var(--space-8);
  }

  .book-cta-actions {
    align-items: flex-start;
  }

  .services-left p {
    max-width: none;
  }

  .featured-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .featured-visual {
    order: -1;
    aspect-ratio: 16 / 9;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-photo {
    aspect-ratio: 16 / 9;
    max-height: 420px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

/* ─── Mobile (≤768px) ─────────────────────────────────────── */

@media (max-width: 768px) {
  .modal-form-row {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: var(--space-8) var(--space-6);
    max-height: 95vh;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

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

  .stat-item::before {
    display: none;
  }

  .stat-item:nth-child(even)::before {
    display: block;
    left: 0;
  }

  .service-name {
    font-size: var(--text-xl);
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer-legal-links {
    gap: var(--space-4);
  }
}

/* ─── Small mobile (≤480px) ───────────────────────────────── */

@media (max-width: 480px) {
  .hero-headline {
    font-size: var(--text-3xl);
  }

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

  .stat-number {
    font-size: var(--text-3xl);
  }

  .featured-title {
    font-size: var(--text-2xl);
  }

  .section-title {
    font-size: var(--text-2xl);
  }
}
