/* ============================================
   RESPONSIVE — Mobile & Tablet Breakpoints
   ============================================ */

/* Tablet — hamburger kicks in here */
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3xl);
  }

  .hero__content {
    max-width: 600px;
  }

  .hero__subtitle {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__tooth-container {
    max-width: 400px;
    height: 400px;
  }

  .nav__inner {
    overflow: visible !important;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: #ffffff;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 16px;
    gap: 8px;
    z-index: 100;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links .nav__link {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav__toggle {
    display: flex;
    cursor: pointer;
  }

  .nav__toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle--active span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__link--book {
    display: block;
  }

  .nav__cta--desktop {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --text-hero: 2.5rem;
    --text-h2: 1.75rem;
    --text-h3: 1.25rem;
  }

  .hero {
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    min-height: auto;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .hero__trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__tooth-container {
    max-width: 100%;
    height: 350px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --text-hero: 2rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero__tooth-container {
    height: 280px;
  }
}
