/* =============================================
   HELPING HANDS HUB — Global Stylesheet
   Aesthetic: Warm editorial, handcrafted feel
   Palette: Warm cream, deep navy, golden yellow, sage green
   ============================================= */

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --cream: #fdf8f0;
     --navy: #1a2744;
     --gold: #f5c842;
     --gold-light: #fdeea0;
     --sage: #7aab87;
     --coral: #e87b5a;
     --navy-light: #2e4070;
     --text: #2a2a2a;
     --muted: #6b6b6b;
     --white: #ffffff;
     --border: #e8e0d0;
     --radius: 16px;
     --radius-sm: 10px;
     --shadow: 0 4px 24px rgba(26,39,68,0.10);
     --shadow-lg: 0 12px 48px rgba(26,39,68,0.16);
   }
   
   html { scroll-behavior: smooth; }
   
   body {
     font-family: 'DM Sans', sans-serif;
     background: var(--cream);
     color: var(--text);
     line-height: 1.65;
     overflow-x: hidden;
   }
   
   h1, h2, h3, h4 {
     font-family: 'Playfair Display', Georgia, serif;
     line-height: 1.2;
     color: var(--navy);
   }
   
   a { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   img { max-width: 100%; }
   
   .container {
     max-width: 1140px;
     margin: 0 auto;
     padding: 0 24px;
   }
   
   /* =============================================
      BUTTONS
      ============================================= */
   
   .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 30px;
     border-radius: 50px;
     font-family: 'DM Sans', sans-serif;
     font-weight: 600;
     font-size: 0.95rem;
     cursor: pointer;
     border: none;
     transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
     letter-spacing: 0.01em;
   }
   
   .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
   .btn:active { transform: translateY(0); }
   
   .btn-primary {
     background: var(--navy);
     color: var(--white);
   }
   
   .btn-ghost {
     background: transparent;
     color: var(--navy);
     border: 2px solid var(--navy);
   }
   
   .btn-outline {
     background: transparent;
     color: var(--navy);
     border: 2px solid var(--navy);
   }
   
   .btn-light {
     background: var(--white);
     color: var(--navy);
     font-weight: 700;
   }
   
   .btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
   
   /* =============================================
      NAVIGATION
      ============================================= */
   
   .nav {
     position: sticky;
     top: 0;
     z-index: 100;
     background: rgba(253,248,240,0.92);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 32px;
     height: 72px;
     transition: box-shadow 0.3s;
   }
   
   .nav.scrolled { box-shadow: var(--shadow); }
   
   .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     font-family: 'Playfair Display', serif;
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--navy);
   }
   
   .logo-icon { font-size: 1.5rem; }
   
   .nav-links {
     display: flex;
     align-items: center;
     gap: 8px;
   }
   
   .nav-links a {
     padding: 8px 16px;
     border-radius: 50px;
     font-weight: 500;
     color: var(--navy);
     transition: background 0.2s;
     font-size: 0.95rem;
   }
   
   .nav-links a:hover, .nav-links a.active {
     background: var(--gold-light);
     color: var(--navy);
   }
   
   .nav-links .nav-cta {
     background: var(--navy);
     color: var(--white) !important;
     font-weight: 600;
   }
   
   .nav-links .nav-cta:hover {
     background: var(--navy-light) !important;
     color: var(--white) !important;
   }
   
   .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 4px;
   }
   
   .hamburger span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--navy);
     border-radius: 2px;
     transition: all 0.3s;
   }
   
   /* =============================================
      SECTION TAGS & TITLES
      ============================================= */
   
   .section-tag {
     font-family: 'Caveat', cursive;
     font-size: 1.15rem;
     color: var(--coral);
     font-weight: 600;
     letter-spacing: 0.03em;
     margin-bottom: 8px;
   }
   
   .section-title {
     font-size: clamp(1.8rem, 3vw, 2.6rem);
     margin-bottom: 20px;
     color: var(--navy);
   }
   
   /* =============================================
      HERO
      ============================================= */
   
   .hero {
     position: relative;
     min-height: calc(100vh - 72px);
     display: flex;
     align-items: center;
     overflow: hidden;
     padding: 80px 32px;
   }
   
   .hero-bg {
     position: absolute;
     inset: 0;
     pointer-events: none;
   }
   
   .blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(60px);
     opacity: 0.35;
   }
   
   .blob-1 {
     width: 500px; height: 500px;
     background: var(--gold);
     top: -100px; right: -100px;
     animation: floatBlob 8s ease-in-out infinite;
   }
   
   .blob-2 {
     width: 350px; height: 350px;
     background: var(--sage);
     bottom: -80px; left: -80px;
     animation: floatBlob 10s ease-in-out infinite reverse;
   }
   
   .blob-3 {
     width: 250px; height: 250px;
     background: var(--coral);
     top: 40%; left: 40%;
     animation: floatBlob 12s ease-in-out infinite;
     opacity: 0.2;
   }
   
   @keyframes floatBlob {
     0%, 100% { transform: translate(0,0) scale(1); }
     50% { transform: translate(20px, -30px) scale(1.05); }
   }
   
   .music-notes { position: absolute; inset: 0; pointer-events: none; }
   
   .note {
     position: absolute;
     font-size: 2rem;
     color: var(--navy);
     opacity: 0.06;
     animation: floatNote 6s ease-in-out infinite;
   }
   
   .n1 { top: 15%; left: 5%; font-size: 3rem; animation-delay: 0s; }
   .n2 { top: 70%; left: 10%; font-size: 2.5rem; animation-delay: 1.5s; }
   .n3 { top: 30%; right: 5%; font-size: 4rem; animation-delay: 0.8s; }
   .n4 { top: 80%; right: 15%; font-size: 3.5rem; animation-delay: 2s; }
   .n5 { top: 50%; left: 45%; font-size: 2rem; animation-delay: 3s; }
   
   @keyframes floatNote {
     0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.06; }
     50% { transform: translateY(-15px) rotate(5deg); opacity: 0.12; }
   }
   
   .hero-content {
     position: relative;
     z-index: 2;
     max-width: 560px;
     animation: fadeUp 0.8s ease both;
   }
   
   .hero-tag {
     display: inline-block;
     background: var(--gold);
     color: var(--navy);
     padding: 5px 14px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.85rem;
     margin-bottom: 18px;
     letter-spacing: 0.02em;
   }
   
   .hero-title {
     font-size: clamp(2.4rem, 5vw, 4rem);
     margin-bottom: 20px;
     color: var(--navy);
   }
   
   .hero-title em {
     color: var(--coral);
     font-style: italic;
   }
   
   .hero-sub {
     font-size: 1.1rem;
     color: var(--muted);
     margin-bottom: 36px;
     line-height: 1.7;
   }
   
   .hero-actions {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     margin-bottom: 20px;
   }
   
   .hero-note {
     font-family: 'Caveat', cursive;
     font-size: 1.05rem;
     color: var(--sage);
     font-weight: 600;
   }
   
   @keyframes fadeUp {
     from { opacity: 0; transform: translateY(30px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   /* Hero Visual Cards */
   .hero-visual {
     position: absolute;
     right: 60px;
     top: 50%;
     transform: translateY(-50%);
     width: 340px;
     height: 340px;
     display: none;
   }
   
   @media (min-width: 1000px) { .hero-visual { display: block; } }
   
   .hero-circle {
     position: absolute;
     top: 50%; left: 50%;
     transform: translate(-50%, -50%);
     width: 100px; height: 100px;
     background: var(--navy);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     box-shadow: var(--shadow-lg);
   }
   
   .card-float {
     position: absolute;
     background: var(--white);
     border-radius: var(--radius);
     padding: 12px 18px;
     box-shadow: var(--shadow-lg);
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     font-size: 0.88rem;
     color: var(--navy);
     white-space: nowrap;
     animation: floatCard 4s ease-in-out infinite;
   }
   
   .card-float .card-icon { font-size: 1.3rem; }
   
   .card-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
   .card-2 { right: 0; top: 50%; transform: translateY(-50%); animation-delay: 1s; }
   .card-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 2s; }
   .card-4 { left: 0; top: 50%; transform: translateY(-50%); animation-delay: 0.5s; }
   
   @keyframes floatCard {
     0%, 100% { box-shadow: var(--shadow-lg); }
     50% { box-shadow: 0 20px 60px rgba(26,39,68,0.22); transform: translateX(-50%) translateY(-6px); }
   }
   .card-2, .card-4 { animation-name: floatCardV; }
   @keyframes floatCardV {
     0%, 100% { box-shadow: var(--shadow-lg); }
     50% { box-shadow: 0 20px 60px rgba(26,39,68,0.22); transform: translateY(calc(-50% - 6px)); }
   }
   
   /* =============================================
      HOW IT WORKS
      ============================================= */
   
   .how {
     padding: 100px 0;
     background: var(--navy);
     color: var(--white);
   }
   
   .how .section-tag { color: var(--gold); }
   .how .section-title { color: var(--white); text-align: center; margin-bottom: 60px; }
   
   .steps {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
   }
   
   .step {
     background: rgba(255,255,255,0.07);
     border-radius: var(--radius);
     padding: 36px 28px;
     max-width: 280px;
     flex: 1 1 240px;
     border: 1px solid rgba(255,255,255,0.1);
     transition: background 0.3s, transform 0.3s;
   }
   
   .step:hover {
     background: rgba(255,255,255,0.12);
     transform: translateY(-4px);
   }
   
   .step-num {
     font-family: 'Playfair Display', serif;
     font-size: 3.5rem;
     color: var(--gold);
     opacity: 0.4;
     line-height: 1;
     margin-bottom: 12px;
   }
   
   .step h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
   .step p { color: rgba(255,255,255,0.7); font-size: 0.93rem; line-height: 1.6; }
   
   .step-arrow {
     font-size: 2rem;
     color: var(--gold);
     opacity: 0.5;
     align-self: center;
     margin-top: -20px;
   }
   
   /* =============================================
      HIGHLIGHTS
      ============================================= */
   
   .highlights { padding: 100px 0; }
   
   .highlights-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }
   
   @media (max-width: 800px) { .highlights-grid { grid-template-columns: 1fr; gap: 40px; } }
   
   .highlight-body { color: var(--muted); margin-bottom: 24px; line-height: 1.8; }
   
   .highlight-list {
     margin-bottom: 36px;
   }
   
   .highlight-list li {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 8px 0;
     font-weight: 500;
     border-bottom: 1px solid var(--border);
   }
   
   .check {
     width: 24px; height: 24px;
     background: var(--sage);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     font-weight: 700;
     flex-shrink: 0;
   }
   
   .highlight-image {
     position: relative;
     height: 360px;
   }
   
   .image-card {
     background: var(--white);
     border-radius: var(--radius);
     box-shadow: var(--shadow-lg);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: absolute;
     transition: transform 0.3s;
   }
   
   .image-card:hover { transform: translateY(-4px); }
   
   .big-card {
     width: 180px; height: 180px;
     top: 0; left: 0;
     background: var(--navy);
     color: white;
     gap: 10px;
     padding: 28px;
   }
   
   .big-icon { font-size: 2rem; }
   .big-card p { font-weight: 700; font-size: 1rem; color: white; }
   .big-card small { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
   
   .small-card-1 {
     width: 150px; height: 150px;
     bottom: 20px; left: 60px;
     gap: 8px;
     background: var(--gold);
     font-size: 0.9rem;
     font-weight: 700;
     color: var(--navy);
   }
   
   .small-card-1 span { font-size: 2rem; }
   
   .small-card-2 {
     width: 130px; height: 130px;
     top: 60px; right: 0;
     gap: 8px;
     background: var(--sage);
     font-size: 0.9rem;
     font-weight: 700;
     color: white;
   }
   
   .small-card-2 span { font-size: 2rem; }
   .small-card-2 p { color: white; }
   
   /* =============================================
      SUBJECTS PREVIEW
      ============================================= */
   
   .subjects-preview {
     padding: 80px 0;
     background: var(--cream);
     text-align: center;
   }
   
   .subjects-preview .section-title { margin-bottom: 40px; }
   
   .subject-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     justify-content: center;
     margin-bottom: 40px;
   }
   
   .subject-pills span {
     background: var(--white);
     border: 1px solid var(--border);
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     color: var(--navy);
     transition: background 0.2s, transform 0.2s;
   }
   
   .subject-pills span:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
   }
   
   .pill-music {
     background: var(--navy) !important;
     color: var(--white) !important;
     border-color: var(--navy) !important;
   }
   
   /* =============================================
      CHARITY SECTION
      ============================================= */
   
   .charity {
     padding: 100px 32px;
     background: linear-gradient(135deg, var(--gold) 0%, #f7c948 100%);
     text-align: center;
   }
   
   .charity-inner {
     max-width: 680px;
     margin: 0 auto;
   }
   
   .charity-icon-big { font-size: 4rem; margin-bottom: 24px; }
   
   .charity h2 {
     color: var(--navy);
     font-size: clamp(1.8rem, 3vw, 2.4rem);
     margin-bottom: 20px;
   }
   
   .charity p {
     color: var(--navy);
     opacity: 0.8;
     font-size: 1.05rem;
     margin-bottom: 36px;
     line-height: 1.8;
   }
   
   /* =============================================
      PAGE HERO (inner pages)
      ============================================= */
   
   .page-hero {
     position: relative;
     padding: 100px 0 80px;
     overflow: hidden;
     text-align: center;
   }
   
   .page-hero-bg {
     position: absolute;
     inset: 0;
     pointer-events: none;
   }
   
   .page-title {
     font-size: clamp(2.2rem, 4vw, 3.5rem);
     margin-bottom: 16px;
     position: relative;
   }
   
   .page-sub {
     max-width: 600px;
     margin: 0 auto;
     color: var(--muted);
     font-size: 1.1rem;
     line-height: 1.7;
     position: relative;
   }
   
   /* =============================================
      ABOUT PAGE
      ============================================= */
   
    /* ===== FOUNDER SECTION ===== */
.founder-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
 
.founder-section .section-title { margin-bottom: 56px; }
 
.founder-layout {
  display: flex; /* Change from grid to flexbox */
  flex-direction: column; /* Stack the photo and text vertically */
  gap: 40px; /* Add spacing between the photo section and the text section */
  align-items: center; /* Center everything horizontally */
}

@media (min-width: 861px) {
  .founder-layout {
    display: grid; /* Use grid only for larger screens */
    grid-template-columns: 300px 1fr;
    gap: 72px;
    align-items: start;
  }
}
 
.founder-photo-wrap {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  gap: 20px; /* Add spacing between the photo and the name card */
}
 
@media (max-width: 860px) {
  .founder-photo-wrap { position: static; }
}
 
.founder-photo-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--cream));
  border: 4px dashed var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  overflow: hidden; /* Ensure the image stays within the circle */
}

.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
 
.founder-initials {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--navy);
  opacity: 0.2;
  line-height: 1;
}
 
.photo-hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}
 
.founder-name-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  text-align: center;
  width: 100%;
  max-width: 240px;
}
 
.founder-name-card strong {
  display: block;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
 
.founder-name-card span {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
}
 
.founder-text p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 1rem;
}

   .about-mission { padding: 100px 0; }
   
   .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
   }
   
   @media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
   
   .about-text p {
     color: var(--muted);
     margin-bottom: 18px;
     line-height: 1.8;
   }
   
   .about-text .btn { margin-top: 8px; }
   
   .about-values {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
   }
   
   .value-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 28px 22px;
     border: 1px solid var(--border);
     transition: box-shadow 0.3s, transform 0.3s;
   }
   
   .value-card:hover {
     box-shadow: var(--shadow-lg);
     transform: translateY(-3px);
   }
   
   .value-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
   .value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
   .value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
   
   /* Donation Section */
   .donation-section {
     padding: 100px 0;
     background: var(--navy);
     color: white;
   }
   
   .donation-section .section-tag { color: var(--gold); }
   .donation-section .section-title { color: white; margin-bottom: 60px; text-align: center; }
   
   .donation-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 28px;
     margin-bottom: 60px;
   }
   
   .d-step {
     background: rgba(255,255,255,0.08);
     border-radius: var(--radius);
     padding: 36px 28px;
     border: 1px solid rgba(255,255,255,0.1);
   }
   
   .d-num {
     width: 44px; height: 44px;
     background: var(--gold);
     color: var(--navy);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 1rem;
     margin-bottom: 18px;
   }
   
   .d-step h3 { color: white; margin-bottom: 12px; font-size: 1.1rem; }
   .d-step p { color: rgba(255,255,255,0.7); font-size: 0.93rem; line-height: 1.6; }
   
   .charity-examples { text-align: center; }
   .charity-label { color: rgba(255,255,255,0.6); margin-bottom: 16px; font-size: 0.9rem; }
   
   .charity-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: center;
   }
   
   .charity-tags span {
     background: rgba(255,255,255,0.1);
     border: 1px solid rgba(255,255,255,0.2);
     color: white;
     padding: 7px 18px;
     border-radius: 50px;
     font-size: 0.88rem;
   }
   
   /* Where Section */
   .where-section { padding: 100px 0; }
   
   .where-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }
   
   @media (max-width: 800px) { .where-inner { grid-template-columns: 1fr; gap: 48px; } }
   
   .where-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
   .where-text strong { color: var(--navy); }
   
   .location-badges { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
   
   .loc-badge {
     display: flex;
     align-items: center;
     gap: 14px;
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     padding: 14px 18px;
   }
   
   .loc-badge > span { font-size: 1.5rem; }
   .loc-badge strong { display: block; font-size: 0.95rem; color: var(--navy); }
   .loc-badge small { color: var(--muted); font-size: 0.82rem; }
   
   .where-visual { display: flex; align-items: center; justify-content: center; }
   
   .map-card {
     width: 220px; height: 220px;
     background: var(--white);
     border-radius: 50%;
     box-shadow: var(--shadow-lg);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     border: 3px solid var(--gold);
     gap: 6px;
   }
   
   .map-pin { font-size: 3rem; }
   .map-card p { font-weight: 700; color: var(--navy); }
   .map-card small { color: var(--muted); font-size: 0.82rem; }
   
   .map-ripple {
     position: absolute;
     inset: -20px;
     border-radius: 50%;
     border: 2px solid var(--gold);
     opacity: 0.4;
     animation: ripple 2s ease-in-out infinite;
   }
   
   @keyframes ripple {
     0% { transform: scale(1); opacity: 0.4; }
     100% { transform: scale(1.15); opacity: 0; }
   }
   
   /* CTA Section */
   .cta-section {
     padding: 100px 32px;
     background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
     text-align: center;
   }
   
   .cta-inner { max-width: 600px; margin: 0 auto; }
   .cta-section h2 { color: white; margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
   .cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; font-size: 1.05rem; }
   
   /* =============================================
      SERVICES PAGE
      ============================================= */
   
   .format-section { padding: 100px 0; }
   .format-section .section-title { text-align: center; margin-bottom: 50px; }
   
   .format-cards {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 28px;
   }
   
   @media (max-width: 700px) { .format-cards { grid-template-columns: 1fr; } }
   
   .format-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 48px 36px;
     border: 1px solid var(--border);
     transition: box-shadow 0.3s, transform 0.3s;
   }
   
   .format-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
   
   .format-card-online { border-color: var(--navy); border-width: 2px; }
   
   .format-icon { font-size: 3rem; margin-bottom: 18px; }
   .format-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
   .format-loc { color: var(--coral); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; font-family: 'Caveat', cursive; font-size: 1.05rem; }
   .format-card p { color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
   .format-card ul { padding-left: 0; }
   .format-card ul li {
     padding: 6px 0;
     padding-left: 20px;
     position: relative;
     color: var(--text);
     font-size: 0.92rem;
   }
   .format-card ul li::before {
     content: '→';
     position: absolute;
     left: 0;
     color: var(--sage);
   }
   
   .services-section { padding: 80px 0 100px; background: var(--cream); }
   .services-intro { color: var(--muted); max-width: 680px; margin-bottom: 48px; line-height: 1.8; }
   
   .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 24px;
   }
   
   .service-card {
     background: var(--white);
     border-radius: var(--radius);
     overflow: hidden;
     border: 1px solid var(--border);
     transition: box-shadow 0.3s, transform 0.3s;
   }
   
   .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
   
   .sc-header {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 22px 24px;
     font-size: 1.5rem;
   }
   
   .sc-header h3 { font-size: 1.15rem; margin: 0; }
   
   .math { background: #eef4ff; }
   .science { background: #f0faf0; }
   .english { background: #fff8ee; }
   .history { background: #fdf0ee; }
   .language { background: #f4f0ff; }
   .cs { background: #eefaf8; }
   
   .service-card ul {
     padding: 0 24px 24px;
   }
   
   .service-card ul li {
     padding: 7px 0;
     border-bottom: 1px solid var(--border);
     font-size: 0.9rem;
     color: var(--muted);
     padding-left: 16px;
     position: relative;
   }
   
   .service-card ul li::before {
     content: '·';
     position: absolute;
     left: 4px;
     color: var(--sage);
     font-size: 1.2rem;
     top: 3px;
   }
   
   .service-card ul li:last-child { border-bottom: none; }
   
   /* Music Section */
   .music-section {
     padding: 100px 0;
     background: var(--navy);
   }
   
   .music-section .section-tag { color: var(--gold); }
   .music-section .section-title { color: white; }
   .music-section .services-intro { color: rgba(255,255,255,0.7); }
   
   .music-cards {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 24px;
     grid-template-rows: auto auto;
   }
   
   @media (max-width: 900px) { .music-cards { grid-template-columns: 1fr 1fr; } }
   @media (max-width: 600px) { .music-cards { grid-template-columns: 1fr; } }
   
   .music-card {
     background: rgba(255,255,255,0.08);
     border-radius: var(--radius);
     padding: 32px 28px;
     border: 1px solid rgba(255,255,255,0.1);
     transition: background 0.3s, transform 0.3s;
   }
   
   .music-card:hover {
     background: rgba(255,255,255,0.14);
     transform: translateY(-3px);
   }
   
   .featured-music {
     grid-row: span 2;
     background: rgba(245,200,66,0.12);
     border-color: var(--gold);
   }
   
   .music-card-top {
     display: flex;
     align-items: center;
     gap: 18px;
     margin-bottom: 20px;
   }
   
   .music-big-icon { font-size: 3rem; }
   .music-card-top h3 { color: white; font-size: 1.5rem; margin: 0; }
   .music-tag { color: var(--gold); font-family: 'Caveat', cursive; font-size: 1rem; }
   
   .featured-music p { color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.7; font-size: 0.93rem; }
   
   .featured-music ul { padding: 0; }
   .featured-music ul li {
     padding: 7px 0;
     border-bottom: 1px solid rgba(255,255,255,0.1);
     color: rgba(255,255,255,0.75);
     font-size: 0.9rem;
     padding-left: 16px;
     position: relative;
   }
   
   .featured-music ul li::before {
     content: '♪';
     position: absolute;
     left: 0;
     color: var(--gold);
     font-size: 0.8rem;
   }
   
   .featured-music ul li:last-child { border-bottom: none; }
   
   .music-icon-sm { font-size: 2rem; display: block; margin-bottom: 14px; }
   .music-card h3 { color: white; font-size: 1.05rem; margin-bottom: 10px; }
   .music-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
   
   /* Pricing */
   .pricing-section { padding: 100px 0; }
   .pricing-section .section-title { text-align: center; margin-bottom: 40px; }
   
   .pricing-box {
     background: var(--white);
     border-radius: var(--radius);
     padding: 60px 48px;
     text-align: center;
     border: 2px solid var(--gold);
     max-width: 700px;
     margin: 0 auto;
     box-shadow: var(--shadow-lg);
   }
   
   .price-icon { font-size: 4rem; margin-bottom: 24px; }
   .pricing-box p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: 1.02rem; }
   .pricing-box strong { color: var(--navy); }
   .pricing-box .btn { margin-top: 24px; }
   
   /* =============================================
      CONTACT PAGE
      ============================================= */
   
   .contact-hero { text-align: center; }
   
   .contact-section { padding: 80px 0 120px; }
   
   .contact-layout {
     display: grid;
     grid-template-columns: 1.5fr 1fr;
     gap: 64px;
     align-items: start;
   }
   
   @media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }
   
   .contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 8px; }
   .form-intro { color: var(--muted); margin-bottom: 36px; }
   
   /* Form */
   .signup-form { display: flex; flex-direction: column; gap: 24px; }
   
   .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
   @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
   
   .form-group { display: flex; flex-direction: column; gap: 7px; }
   
   .form-group label {
     font-weight: 600;
     font-size: 0.9rem;
     color: var(--navy);
   }
   
   .form-group input,
   .form-group textarea,
   .form-group select {
     padding: 13px 16px;
     border: 2px solid var(--border);
     border-radius: var(--radius-sm);
     font-family: 'DM Sans', sans-serif;
     font-size: 0.95rem;
     color: var(--text);
     background: var(--white);
     transition: border-color 0.2s, box-shadow 0.2s;
     outline: none;
   }
   
   .form-group input:focus,
   .form-group textarea:focus,
   .form-group select:focus {
     border-color: var(--navy);
     box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
   }
   
   .form-group input.error,
   .form-group textarea.error { border-color: var(--coral); }
   
   .form-group textarea { resize: vertical; min-height: 110px; }
   
   .form-group small { color: var(--muted); font-size: 0.82rem; }
   
   /* Radio & Checkbox */
   .radio-group, .checkbox-group {
     display: flex;
     flex-direction: column;
     gap: 10px;
   }
   
   .checkbox-group {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 10px;
   }
   
   .radio-label, .check-label {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 16px;
     background: var(--white);
     border: 2px solid var(--border);
     border-radius: var(--radius-sm);
     cursor: pointer;
     font-size: 0.92rem;
     font-weight: 500;
     transition: border-color 0.2s, background 0.2s;
   }
   
   .radio-label:hover, .check-label:hover {
     border-color: var(--navy);
     background: var(--cream);
   }
   
   .radio-label input, .check-label input { accent-color: var(--navy); }
   
   .form-disclaimer { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 8px; }
   
   /* Success Message */
   .success-msg {
     background: #f0faf3;
     border: 2px solid var(--sage);
     border-radius: var(--radius);
     padding: 40px 32px;
     text-align: center;
     margin-bottom: 32px;
   }
   
   .success-msg span { font-size: 3rem; display: block; margin-bottom: 16px; }
   .success-msg h3 { color: var(--navy); margin-bottom: 10px; }
   .success-msg p { color: var(--muted); }
   .hidden { display: none; }
   
   /* Sidebar */
   .contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
   
   .sidebar-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 28px 24px;
     border: 1px solid var(--border);
   }
   
   .sidebar-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
   
   .next-steps { counter-reset: none; }
   .next-steps li {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
     font-size: 0.92rem;
     font-weight: 500;
   }
   .next-steps li:last-child { border-bottom: none; }
   .next-steps li > span {
     width: 28px; height: 28px;
     background: var(--navy);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.8rem;
     font-weight: 700;
     flex-shrink: 0;
   }
   
   .charity-sidebar { border-color: var(--gold); border-width: 2px; text-align: center; }
   .sidebar-icon { font-size: 2.5rem; margin-bottom: 12px; }
   .charity-sidebar p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
   
   .location-sidebar .loc-badge { margin-bottom: 12px; }
   .location-sidebar .loc-badge:last-child { margin-bottom: 0; }
   
   .direct-email {
     display: inline-block;
     margin-top: 8px;
     color: var(--navy);
     font-weight: 700;
     border-bottom: 2px solid var(--gold);
     padding-bottom: 2px;
     font-size: 0.9rem;
   }
   
   /* =============================================
      FOOTER
      ============================================= */
   
   .footer {
     background: var(--navy);
     padding: 60px 0 32px;
   }
   
   .footer-inner {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 32px;
     text-align: center;
   }
   
   .footer-brand {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
   }
   
   .footer-brand .logo-icon { font-size: 2rem; }
   .footer-brand strong { color: white; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
   .footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
   
   .footer-links {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     justify-content: center;
   }
   
   .footer-links a {
     color: rgba(255,255,255,0.65);
     padding: 6px 14px;
     border-radius: 50px;
     font-size: 0.9rem;
     transition: color 0.2s, background 0.2s;
   }
   
   .footer-links a:hover {
     color: white;
     background: rgba(255,255,255,0.1);
   }
   
   .footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
   
   /* =============================================
      RESPONSIVE
      ============================================= */
   
   @media (max-width: 768px) {
     .nav { padding: 0 20px; }
   
     .hamburger { display: flex; }
   
     .nav-links {
       display: none;
       position: fixed;
       inset: 72px 0 0 0;
       background: var(--cream);
       flex-direction: column;
       padding: 32px 24px;
       gap: 8px;
       z-index: 99;
       border-top: 1px solid var(--border);
     }
   
     .nav-links.open { display: flex; }
   
     .nav-links a {
       padding: 14px 20px;
       font-size: 1.05rem;
       border-radius: var(--radius-sm);
       display: block;
     }
   
     .hero { padding: 60px 20px; min-height: auto; }
     .how { padding: 70px 0; }
     .highlights { padding: 70px 0; }
     .charity { padding: 70px 20px; }
     .subjects-preview { padding: 60px 0; }
     .about-mission, .donation-section, .where-section { padding: 70px 0; }
     .services-section, .music-section, .pricing-section, .format-section { padding: 70px 0; }
     .contact-section { padding: 60px 0 80px; }
     .cta-section { padding: 70px 20px; }
   
     .how .section-tag, .how .section-title { text-align: center; }
   
     .step-arrow { display: none; }
     .steps { flex-direction: column; align-items: stretch; }
     .step { max-width: 100%; }
   
     .highlight-image { height: 260px; }
   
     .about-values { grid-template-columns: 1fr; }
   
     .music-cards { grid-template-columns: 1fr; }
     .featured-music { grid-row: auto; }
   
     .pricing-box { padding: 40px 28px; }
   }