
@media only screen and (min-width: 769px) and (max-width: 1024px) {
 
  /* ── Header ── */
  .site-header { padding: 10px 20px; }
  .site-logo img { width: 150px; }
  .main-navigation ul { gap: 20px; }
  .main-navigation ul li a { font-size: 15px; }
 
  /* ── Hero ── */
  .hero-section {
    background-size: 55%;
    background-position: right center;
    min-height: 380px;
  }
  .hero-content { padding: 0 25px; }
  .hero-name {
    font-size: 44px;
    line-height: 70px;
    padding: 30px 10px 15px;
  }
  .hero-headline {
    font-size: 26px;
    line-height: 36px;
  }
  .hero-subheadline {
    font-size: 17px;
    line-height: 28px;
    margin-top: 18px;
  }
  .hero-cta-wrap { margin: 35px 0 0 60px; }
  .btn-hero {
    font-size: 24px;
    padding: 14px 40px;
  }
 
  /* ── Approach banner ── */
  .approach-section { padding: 30px 20px; }
  .approach-subheadline {
    font-size: 20px;
    line-height: 30px;
    padding: 15px 0;
  }
  .approach-text { font-size: 17px; line-height: 26px; }
 
  /* ── My Approach ── */
  .my-approach-section { padding: 30px 20px; }
  .section-heading-pink { font-size: 30px; line-height: 55px; margin: 10px 0 30px; }
  .approach-highlight {
    font-size: 20px;
    line-height: 44px;
    padding: 0 20px;
  }
  .approach-body {
    font-size: 20px;
    line-height: 32px;
    padding: 20px 40px;
  }
  .approach-footer-text {
    font-size: 20px;
    line-height: 32px;
    padding: 0 20px;
  }
 
  /* ── Testimonials ── */
  .testimonials-section { padding: 15px 20px; }
  .testimonials-heading { font-size: 24px; line-height: 32px; }
  .testimonial-text {
    font-size: 17px;
    line-height: 26px;
    padding: 0 80px;
  }
 
  /* ── Upcoming Events ── */
  .upcoming-events-section { padding: 30px 20px 50px; }
  .section-heading-large { font-size: 36px; line-height: 70px; }
  .events-intro { font-size: 17px; line-height: 26px; margin: 10px 0 30px; }
  .btn-check { font-size: 17px; padding: 14px 40px; }
  .event_btn { text-align: center; }
 
  /* ── Newsletter ── */
  .newsletter-section {
    padding: 30px 20px 15px;
    background-size: cover;
  }
  /* On tablet the form column is right-half; push it a bit */
  .newsletter-box { margin: 0; }
  .newsletter-title { font-size: 19px; line-height: 28px; }
  .newsletter-subtitle { font-size: 15px; line-height: 36px; }
  .btn-submit { font-size: 17px; }
 
  /* ── Popup ── */
  .popup-box { padding: 20px; max-width: 480px; }
  .popup-sos-title { font-size: 16px; }
  .btn-popup-start { font-size: 20px; padding: 12px 40px; }
}
 
 
/* =========================================================
   MOBILE  (≤ 768px)
   (supplements / overrides the existing ≤800px block)
   ========================================================= */
@media only screen and (max-width: 768px) {
 
  /* ── Header ── */
  .site-header { padding: 8px 15px; }
  .site-logo img { width: 140px; }
  /* Hide desktop nav; burger already shown via ≤800px rule */
 
  /* ── Hero ── */
  .hero-section {
    background-size: cover;
    background-position: top center;
    min-height: 100vw;          /* tall enough to show image */
    align-items: flex-end;
  }
  .hero-content { padding: 0 15px 30px; }
  .hero-name {
    font-size: 38px;
    line-height: 46px;
    padding: 0 0 10px;
    color: var(--color-pink);
    /* ensure readable over image */
    text-shadow: 0 1px 4px rgba(255,255,255,0.6);
  }
  .hero-headline {
    font-size: 22px;
    line-height: 30px;
    color: var(--color-white);
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  }
  .hero-subheadline {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
    padding-top: 10px;
    margin-top: 0;
  }
  .hero-cta-wrap { margin: 20px 0 0; }
  .btn-hero {
    font-size: 17px;
    padding: 12px 18px;
    width: 100%;
    text-align: center;
    display: block;
  }
 
  /* ── Section-row becomes single column ── */
  .section-row {
    display: flex;
    flex-direction: column;
    column-gap: 0;
  }
  /* Reset all explicit grid-column inline styles */
  .section-row > div[style*="grid-column"] { width: 100% !important; }

  .upcoming-events-section .section-row{flex-direction: column-reverse !important;}
 
  /* ── Approach banner ── */
  .approach-section {
    padding: 20px 15px;
    background: var(--color-green); /* keep green on mobile too */
  }
  .approach-image-img {
    width: 140px !important;
    margin: 0 auto 10px !important;
  }
  .approach-subheadline {
    font-size: 19px;
    line-height: 28px;
    padding: 10px 0;
  }
  .approach-text { font-size: 15px; line-height: 22px; }
 
  /* ── My Approach ── */
  .my-approach-section { padding: 25px 15px; }
  .section-heading-pink {
    font-size: 22px;
    line-height: 38px;
    margin: 10px 0 20px;
  }
  .approach-highlight {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 15px;
  }
  .approach-body {
    font-size: 15px;
    line-height: 24px;
    padding: 15px 10px;
  }
  .approach-footer-text {
    font-size: 15px;
    line-height: 24px;
    padding: 0 10px;
  }
 
  /* ── Testimonials ── */
  .testimonials-section { padding: 15px 10px; }
  .testimonials-heading { font-size: 20px; line-height: 28px; }
  .testimonial-text {
    padding: 0 10px;
    font-size: 15px;
    line-height: 24px;
  }
  .carousel-arrow { display: none; }
  .carousel-dots { margin-top: 10px; }
 
  /* ── Upcoming Events ── */
  .upcoming-events-section { padding: 25px 15px 40px; }
  .section-heading-large {
    font-size: 28px;
    line-height: 40px;
    margin-top: 0;
  }
  .events-intro {
    font-size: 15px;
    line-height: 24px;
    margin: 10px 0 20px;
    padding: 0 5px;
  }
  .event_btn { width: 100%; }
  .btn-check {
    font-size: 16px;
    padding: 12px 15px;
    width: 100%;
    display: block;
    text-align: center;
  }
  /* Events image fills width */
  .upcoming-events-section img { width: 100% !important; margin-top: 20px; }
 
  /* ── Newsletter ── */
  .newsletter-section {
    padding: 20px 10px;
    background-size: cover !important;
    background-attachment: scroll;
     /* avoid fixed bg flicker on iOS */
  }
  /* On mobile the form box should span full width */
  .newsletter-section .section-row > div {
    width: 100% !important;
  }
  .newsletter-box {
    background: rgba(255,255,255,0.88);
    margin: 10px 0;
  }
  .newsletter-box-inner { padding: 15px 12px; }
  .newsletter-title {
    font-size: 17px;
    line-height: 26px;
  }
  .newsletter-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
  }
  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    font-size: 15px;
    padding: 10px 8px;
    margin: 10px 0;
  }
  .newsletter-checkbox-label { font-size: 14px; line-height: 18px; }
  .btn-submit { font-size: 16px; padding: 10px; }
 
  /* ── Home Popup ── */
  .popup-box {
    padding: 15px 12px;
    max-width: 95vw;
    width: 95vw;
  }
  .popup-sos-title { font-size: 15px; line-height: 22px; }
  .btn-popup-start {
    font-size: 18px;
    padding: 12px 20px;
  }
 
  /* ── Footer ── */
  .site-footer { padding: 0; }
  .footer-inner { padding: 20px 15px 10px; }
  .footer-logo img { max-width: 180px; }
  .footer-about { font-size: 14px; line-height: 22px; }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-column-title { font-size: 16px; line-height: 32px; }
  .footer-links a { font-size: 14px; }
  .footer-newsletter-section { padding: 20px 10px; }
  .footer-newsletter-title { font-size: 22px; line-height: 30px; }
  .footer-newsletter-text { font-size: 16px; line-height: 24px; }
  .footer-subscribe-form { flex-direction: column; }
  .footer-subscribe-form input[type="email"] { padding: 12px 10px; font-size: 15px; }
  .btn-subscribe { width: 100%; padding: 12px; font-size: 18px; }
  .footer-copyright { font-size: 13px; }
}
 
 
/* =========================================================
   SMALL MOBILE  (≤ 400px)
   Extra tweaks for very narrow screens
   ========================================================= */
@media only screen and (max-width: 400px) {
 
  .hero-name { font-size: 30px; line-height: 38px; }
  .hero-headline { font-size: 18px; line-height: 26px; }
  .hero-subheadline { font-size: 14px; line-height: 22px; }
  .btn-hero { font-size: 15px; }
 
  .section-heading-large { font-size: 22px; line-height: 32px; }
  .newsletter-title { font-size: 15px; }
 
  .popup-box { padding: 12px 8px; }
  .btn-popup-start { font-size: 16px; }
}