/* ============================================================
   SILBERBERG CAPITAL — Responsive Overrides
   Additional media query refinements
   ============================================================ */

/* Most responsive rules are co-located in their component files.
   This file handles cross-cutting responsive concerns. */

/* ── Large screens (1280px+) ── */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

/* ── Laptop (1024px) ── */
@media (max-width: 1024px) {
  :root {
    --section-py: var(--space-16);
  }

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

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
  :root {
    --section-py: var(--space-12);
  }

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

  /* Stack hero actions */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
  }

  /* Adjust CTA banner */
  .cta-banner h2 {
    font-size: var(--text-2xl);
  }

  .cta-banner .btn-group {
    flex-direction: column;
    align-items: center;
  }

  /* Page header */
  .page-header {
    padding: var(--space-12) 0 var(--space-8);
  }

  .page-header h1 {
    font-size: var(--text-2xl);
  }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
  :root {
    --section-py: var(--space-10);
  }

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

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

  .hero__label {
    font-size: 0.6rem;
  }

  /* Reduce card padding */
  .service-card {
    padding: var(--space-6);
  }

  .service-detail {
    padding: var(--space-5);
  }

  /* Page header */
  .page-header {
    padding: var(--space-10) 0 var(--space-6);
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

/* ── Print Styles ── */
@media print {
  .top-bar,
  .navbar,
  .footer,
  .cta-banner,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-8) 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
