/* =============================================
   VIRELLO — RESPONSIVE STYLES
   ============================================= */

/* ---- XL (max 1280px) ---- */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---- LG (max 1024px) ---- */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .main-nav { display: none; }
  .burger-btn { display: flex; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-media { height: 280px; }
  .feature-media img { min-height: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .facts-bar-inner { gap: 2rem; }
  .fact-sep { display: none; }
}

/* ---- MD (max 768px) ---- */
@media (max-width: 768px) {
  :root { --section-py: 3rem; --pad: 1rem; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .topbar { display: none; }
  .header-inner { height: 60px; }

  .hero-media { height: clamp(400px, 65vh, 600px); }
  .hero-content { padding: 2rem var(--pad); }

  .hero-mini { height: clamp(220px, 30vh, 320px); }

  .route-card { height: 300px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .footer-policy-links { justify-content: center; }

  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input[type="email"] { min-width: unset; width: 100%; }

  .facts-bar-inner { gap: 1.5rem; }
  .fact-value { font-size: 1.9rem; }

  .pullquote { padding: 1rem 1.25rem; }
  .pullquote p { font-size: 1.1rem; }

  .contact-form { padding: 1.5rem; }

  .article-body { font-size: .97rem; }
  .article-body .drop-cap::first-letter { font-size: 3.5rem; }

  .highlight-banner { flex-direction: column; text-align: center; }

  .tips-strip { padding: 1.5rem; }

  .sidebar { margin-top: 3rem; }

  .ticker-inner { animation-duration: 25s; }

  .policy-wrap { padding: 2.5rem var(--pad); }
}

/* ---- SM (max 480px) ---- */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-desc { font-size: .95rem; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .route-card { height: 260px; }
  .route-card-title { font-size: 1.2rem; }

  .stats-row { grid-template-columns: 1fr; }
  .stat-item { padding: 1.25rem; }

  .btn { font-size: .82rem; padding: .7rem 1.4rem; }
  .btn-lg { font-size: .88rem; padding: .85rem 1.75rem; }

  .breadcrumb-dark { font-size: .75rem; }

  .cookie-banner-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }

  .topbar-left .topbar-divider:last-of-type,
  .topbar-left .topbar-divider:first-of-type { display: none; }

  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr; }

  .ship-card-specs { flex-direction: column; gap: .5rem; }

  .data-table th, .data-table td { padding: .65rem .75rem; font-size: .82rem; }
}

/* ---- PRINT ---- */
@media print {
  .site-header, .site-footer, .cookie-banner, .back-to-top, .newsletter-section, .ticker-strip { display: none !important; }
  body { background: white; color: black; }
  a { text-decoration: underline; }
  .hero-media img, .card-image img, .route-card img { display: none; }
}
