/* ═══════════════════════════════════════════════════════ */
/* RESPONSIVE — Mobile & Tablet adaptations               */
/* ═══════════════════════════════════════════════════════ */

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  :root {
    --page-padding: 24px;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-grid-col:nth-child(3) {
    display: none;
  }

  .manifesto-columns {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .dom-clock-wrap {
    max-width: 600px;
  }

  .carousel-card {
    width: 300px;
  }

  .carousel-card-inner {
    min-height: 420px;
  }

  .remote-headline {
    font-size: clamp(48px, 7vw, 100px);
  }

  .remote-city-name,
  .remote-city-prefix {
    font-size: clamp(40px, 7vw, 100px);
  }

  .remote-studio-card {
    width: 120px;
  }

  .remote-studio-img {
    height: 68px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
  }

  .footer-capsule-wrap {
    align-self: flex-end;
  }
}

/* ─── Mobile (≤768px) ─── */
@media (max-width: 768px) {
  :root {
    --page-padding: 16px;
    --space-3xl: 64px;
    --space-4xl: 80px;
  }

  .site-header {
    padding: 16px var(--page-padding);
  }

  .logo-text {
    font-size: 18px;
  }

  .header-cta-link {
    display: none;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-headline-wrap {
    padding: var(--space-2xl) 0 var(--space-md);
  }

  .text-1--hero {
    font-size: clamp(48px, 13vw, 100px);
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-live-bar {
    padding: var(--space-md) 0;
    margin: 0;
  }

  .hero-live-label {
    font-size: 9px;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-grid-col:nth-child(3) {
    display: none;
  }

  .hero-grid-card {
    border-radius: 10px;
  }

  /* Clock */
  .dom-clock-wrap {
    max-width: 350px;
  }

  .dom-clock-number {
    font-size: clamp(120px, 25vw, 250px);
  }

  .countdown-stage-sticky {
    min-height: auto;
    padding: var(--space-2xl) var(--page-padding);
  }

  /* Manifesto */
  .manifesto {
    padding-top: var(--space-xl);
  }

  .manifesto-headline {
    font-size: clamp(24px, 6vw, 36px);
  }

  .manifesto-body {
    font-size: 14px;
  }

  /* Carousel */
  .text-1--carousel {
    font-size: clamp(48px, 12vw, 100px);
  }

  .carousel-tagline {
    font-size: 14px;
  }

  .carousel-container {
    gap: 12px;
    padding: 20px var(--page-padding) 32px;
    margin-top: -12px;
    margin-bottom: -16px;
  }

  .carousel-card {
    width: 280px;
  }

  .carousel-card-inner {
    padding: 16px;
    min-height: 380px;
  }

  .carousel-card-stack-img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
  }

  .carousel-card-media-frame {
    width: 180px;
  }

  /* Remote */
  .remote-section {
    padding: var(--space-3xl) var(--page-padding);
  }

  .remote-headline {
    font-size: clamp(36px, 10vw, 70px);
  }

  .remote-city-name,
  .remote-city-prefix {
    font-size: clamp(32px, 10vw, 70px);
  }

  .remote-city-row--indent-1 {
    padding-left: 5%;
  }

  .remote-city-row--indent-2 {
    padding-left: 12%;
  }

  .remote-studio-embed {
    display: none;
  }

  .remote-city-meta {
    font-size: 8px;
  }

  /* Footer */
  .site-footer {
    padding: var(--space-2xl) var(--page-padding) var(--space-3xl);
  }

  .footer-headline {
    font-size: clamp(20px, 5vw, 30px);
  }

  .footer-capsule {
    width: 40px;
    height: 100px;
    border-radius: 20px;
  }
}

/* ─── Small Mobile (≤480px) ─── */
@media (max-width: 480px) {
  .text-1--hero {
    font-size: clamp(40px, 14vw, 80px);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-grid-card {
    border-radius: 8px;
  }

  .dom-clock-wrap {
    max-width: 280px;
  }

  .carousel-card {
    width: 260px;
  }

  .carousel-card-inner {
    min-height: 340px;
    padding: 14px;
  }

  .carousel-card-stack-img {
    width: 150px;
    height: 150px;
  }

  .remote-headline {
    font-size: clamp(30px, 12vw, 56px);
  }

  .remote-city-name,
  .remote-city-prefix {
    font-size: clamp(28px, 12vw, 56px);
  }
}
