/* Design A – mobile only (desktop unchanged) */

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
    --header-height: 68px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 3.5rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container-max));
  }

  /* Header */
  .logo img {
    height: 38px;
    width: auto;
  }

  .header-inner {
    gap: 0.5rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag {
    font-size: 0.6875rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.625rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8125rem 1.25rem;
  }

  .hero-highlight {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.875rem 1rem;
    gap: 0.625rem;
    text-align: left;
  }

  .hero-highlight strong {
    font-size: 1.125rem;
    flex-shrink: 0;
  }

  .hero-highlight span {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  /* Stats */
  .stats-section {
    margin-top: -1rem;
    padding-bottom: 2.5rem;
  }

  .stats-section .container {
    padding-top: 1.25rem;
  }

  .stat-grid {
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.625rem;
  }

  .stat-value {
    font-size: 1.625rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Sections */
  .section {
    padding-block: 2.75rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header p {
    font-size: 0.9375rem;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }

  /* Focus / flyer */
  .focus-grid {
    gap: 1.75rem;
  }

  .focus-image img {
    aspect-ratio: auto;
    max-height: min(65vh, 440px);
    width: 100%;
    object-fit: contain;
    object-position: top center;
    background: var(--color-bg-alt);
  }

  .focus-content .btn {
    width: 100%;
    justify-content: center;
  }

  /* Benefits */
  .benefit-list {
    gap: 0.75rem;
  }

  .benefit-item {
    padding: 1rem;
    gap: 0.875rem;
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .benefit-item h3 {
    font-size: 1rem;
  }

  .benefit-item p {
    font-size: 0.875rem;
  }

  /* Vision images */
  .vision-grid {
    gap: 1.75rem;
  }

  .vision-images {
    gap: 0.75rem;
  }

  .vision-images img {
    width: 100%;
    height: auto;
  }

  /* Cards & locations */
  .card-grid {
    gap: 1rem;
  }

  .card-body {
    padding: 1.125rem;
  }

  .location-card .card-body {
    min-height: auto;
  }

  .card-image {
    aspect-ratio: 16 / 9;
  }

  /* Timeline */
  .timeline::before {
    left: 0.65rem;
  }

  .timeline-dot {
    left: 0.15rem;
    width: 1rem;
    height: 1rem;
  }

  .timeline-item {
    padding-left: 2.25rem;
    padding-bottom: 1.75rem;
  }

  .timeline-item h3 {
    font-size: 1.0625rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.9375rem;
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }

  /* Contact */
  .contact-grid {
    gap: 2rem;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .qr-block {
    padding: 1.25rem;
  }

  /* Footer */
  .site-footer {
    padding: 2.25rem 0 1.25rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-top: none;
  }

  .hero-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-tag {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
