/* ─────────────────────────────────────────────────────────────
   THE KRAFT — SHARED MOBILE STYLES
   Breakpoint: 768px
   ───────────────────────────────────────────────────────────── */

/* Hamburger hidden — not used */
.nav-hamburger { display: none !important; }


/* ═══════════════════════════════════
   MOBILE BREAKPOINT
═══════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV — three equal columns so nothing clashes ── */
  nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 12px 12px !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-items: center !important;
  }
  /* Logo — left-aligned in its column */
  .nav-logo {
    justify-self: start !important;
  }
  .logo-img {
    width: 34px !important;
    height: 34px !important;
  }
  /* Links — centred in middle column, nudged left to visually balance */
  .nav-links {
    display: flex !important;
    gap: 20px !important;
    position: static !important;
    transform: none !important;
    margin-right: 20px !important;
  }
  .nav-links a {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    padding: 4px 0 !important;
  }
  /* Get In Touch — right-aligned in its column */
  .nav-cta {
    display: block !important;
    justify-self: end !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  /* ── FOOTER ── */
  footer {
    padding: 40px 20px 32px !important;
  }
  .footer-top {
    flex-direction: column !important;
    gap: 28px !important;
    align-items: flex-start !important;
    margin-bottom: 28px !important;
  }
  .footer-nav {
    flex-wrap: wrap !important;
    gap: 14px 24px !important;
  }
  .footer-socials {
    align-items: flex-start !important;
  }
  .footer-social-links {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }
  .footer-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px 24px !important;
  }

  /* ── DISABLE HOVER TRANSFORMS ON TOUCH (saves GPU on mobile) ── */
  .credit-card:hover video,
  .credit-card:hover img,
  .personal-slot:hover video,
  .personal-slot:hover img,
  .painting-card:hover,
  .painting-card:hover img,
  .work-item:hover video,
  .work-item:hover img { transform: none !important; }


  /* ── ABOUT — TEAM BIO CARDS: single-column full-width on mobile ── */
  .collective-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .member-card {
    flex-direction: row !important;
    align-items: stretch !important;
    border-radius: 4px !important;
    min-height: 160px !important;
  }
  .member-video-wrap {
    width: 160px !important;
    flex-shrink: 0 !important;
    aspect-ratio: unset !important;
  }
  .member-video-wrap img,
  .member-video-wrap video {
    object-position: 40% center !important;
  }
  .member-num {
    display: none !important;
  }
  .member-info {
    flex: 1 !important;
    padding: 16px !important;
    gap: 6px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .member-name {
    font-size: 15px !important;
    letter-spacing: 0.1em !important;
  }
  .member-role {
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    margin-top: 2px !important;
  }
  .member-bio {
    font-size: 12px !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,0.78) !important;
  }
  .member-quote {
    font-size: 12px !important;
    padding-top: 8px !important;
  }
  .member-bio-btn,
  .member-bio-toggle {
    font-size: 10px !important;
  }
  .member-bio-drawer-inner {
    padding: 16px !important;
  }

  /* ── SHARED CTA SECTION ── */
  .cta {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .cta-left {
    padding: 64px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid #141414 !important;
  }
  .cta-right {
    padding: 64px 20px !important;
    min-height: 380px !important;
  }

}
