/* ============================================================
   VELMORAGUIDE.WORLD — RESPONSIVE SYSTEM
   Mobile-first breakpoints
   ============================================================ */

/* ── BREAKPOINTS ──
   xs:  < 480px
   sm:  480px – 767px
   md:  768px – 1023px
   lg:  1024px – 1199px
   xl:  ≥ 1200px (base — defined in style.css)
──────────────────── */

/* ────────────────────────────────────────
   LG — 1024px–1199px
──────────────────────────────────────── */
@media (max-width: 1200px) {
  :root {
    --section-padding: 80px;
  }

  .container {
    padding: 0 24px;
  }

  .features-layout {
    gap: 48px;
  }

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

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }

  .cta-band {
    padding: 48px;
    gap: 48px;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 5vw, 5rem);
  }
}

/* ────────────────────────────────────────
   MD — 768px–1023px
──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-content {
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  }

  /* Destination cards */
  .destinations-grid,
  .destinations-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Features */
  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-left {
    max-width: 540px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* CTA Band */
  .cta-band {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    text-align: center;
  }

  .newsletter-form {
    max-width: 480px;
    margin: 0 auto;
  }

  /* Philosophy */
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Story */
  .story-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-image-block img {
    height: 360px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Legal */
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 24px;
    align-items: start;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ────────────────────────────────────────
   SM — 480px–767px
──────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --header-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-subtext {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px 0;
  }

  .stat-item {
    padding: 0 16px;
    min-width: 30%;
  }

  .stat-divider {
    display: none;
  }

  /* Destinations */
  .destinations-grid,
  .destinations-full-grid {
    grid-template-columns: 1fr;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 48px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Band */
  .cta-band {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

  .form-row {
    flex-direction: column;
  }

  .form-row .btn {
    width: 100%;
  }

  /* Philosophy */
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Story */
  .story-image-block img {
    height: 280px;
  }

  /* Page hero */
  .page-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Contact form */
  .contact-form-wrap {
    padding: 28px 20px;
  }

  /* Filter bar */
  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Legal TOC */
  .legal-toc {
    display: block;
  }

  /* Values quote */
  .values-quote p {
    font-size: 1.3rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Scroll indicator */
  .hero-scroll-indicator {
    display: none;
  }

  /* Stats on mobile */
  .stat-number {
    font-size: 1.5rem;
  }

  /* Logo text shortened on small screens */
  .logo-text {
    font-size: 0.8rem;
  }
}

/* ────────────────────────────────────────
   XS — < 480px
──────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
    --header-height: 60px;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-content {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-actions .btn-large {
    padding: 13px 24px;
    font-size: 0.875rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-band-title {
    font-size: 1.6rem;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .legal-layout {
    gap: 28px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .feature-pill {
    flex-direction: column;
    gap: 14px;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  .contact-form-wrap {
    padding: 24px 16px;
  }

  .contact-info-title {
    font-size: 1.6rem;
  }

  .cta-band {
    padding: 28px 20px;
  }

  /* Story image */
  .story-image-block img {
    height: 240px;
  }

  /* Values quote */
  .values-quote p {
    font-size: 1.15rem;
  }
}