:root {
    --red:    #C0392B;
    --gold:   #D4A017;
    --cream:  #FAF6EE;
    --ink:    #1A1209;
    --warm:   #7A4F2D;
    --muted:  #9E8B72;
    --light:  #F0E8D8;
    --white:  #FFFDF9;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── DECORATIVE PATTERN ── */
  .pattern-bg {
    background-image:
      radial-gradient(circle at 20% 50%, rgba(192,57,43,0.04) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(212,160,23,0.06) 0%, transparent 40%),
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C0392B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250,246,238,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(192,57,43,0.15);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

  .nav-brand {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }

  .nav-brand .logo-mark {
    width: 38px; height: 38px;
    background: var(--red);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: 'Noto Serif TC', serif;
    font-size: 18px; font-weight: 700;
    /* box-shadow: 2px 2px 0 var(--gold); */
  }
  .nav-brand .logo-mark img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }

  .nav-brand span {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--ink); letter-spacing: 0.02em;
  }
  .nav-brand small {
    display: block; font-size: 0.65rem; font-weight: 400;
    /** color: var(--muted); letter-spacing: 0.05em; font-family: 'DM Sans', sans-serif; **/
    color: var(--ink); letter-spacing: 0.05em; font-family: 'DM Sans', sans-serif;
  }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    text-decoration: none; color: var(--warm);
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
    position: relative; padding-bottom: 2px;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1.5px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--red); color: #fff !important;
    padding: 6px 18px; border-radius: 3px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #a93226 !important; color: #fff !important; }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }

  /* ── HOME ── */
  #home {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 64px;
    position: relative; overflow: hidden;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
    position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2);
    border-radius: 20px; padding: 5px 14px;
    font-size: 0.75rem; color: var(--red); letter-spacing: 0.08em;
    text-transform: uppercase; font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before { content: '◆'; font-size: 0.5rem; }

  .hero-chinese {
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700; color: var(--red);
    line-height: 1.1; letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700; color: var(--ink);
    line-height: 1.25; margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-sub {
    font-size: 1.05rem; color: var(--warm);
    line-height: 1.7; max-width: 440px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .btn-primary {
    background: var(--red); color: #fff;
    padding: 13px 28px; border-radius: 3px;
    font-weight: 500; font-size: 0.95rem;
    text-decoration: none; letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #a93226; transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--red);
    padding: 12px 28px; border-radius: 3px;
    border: 1.5px solid var(--red);
    font-weight: 500; font-size: 0.95rem;
    text-decoration: none; letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-1px); }

  .hero-right {
    position: relative; overflow: auto;
    animation: fadeIn 1s 0.3s ease both;
  }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .hero-right-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 60%);
  }
  .hero-stamp {
    position: absolute; bottom: 1rem; left: 0rem;
    background: var(--gold); color: var(--ink);
    font-family: 'Noto Serif TC', serif; font-size: 0.9rem;
    padding: 12px 16px; border-radius: 4px;
    font-weight: 600; box-shadow: 3px 3px 0 var(--red);
    
    letter-spacing: 0.1em;
  }
  /* Placeholder hero image */
  .hero-placeholder {
    width: 100%; height: 100%; /** min-height: 500px; */
    background: linear-gradient(135deg, #8B2319 0%, #C0392B 40%, #D4A017 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
    
  }
  .hero-placeholder .big-char {
    font-family: 'Noto Serif TC', serif;
    font-size: 8rem; color: rgba(255,255,255,0.15);
    line-height: 1; user-select: none;
  }

  /* ── SECTION BASE ── */
  section { padding: 3rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .containerHome { max-width: 1500px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-tag {
    display: inline-block;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--red); font-weight: 600;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: var(--ink); line-height: 1.25;
    margin-bottom: 1rem;
  }
  .section-title span { color: var(--red); }
  .section-desc {
    color: var(--muted); font-size: 1rem;
    line-height: 1.7; max-width: 560px; margin: 0 auto;
  }
  .divider {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    margin: 1rem auto 0;
    border-radius: 2px;
  }

  /*  About */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    
  }

  /* ── EVENTS ── */
  #events { background: var(--cream); }
  .events-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .event-card {
    background: var(--white); border-radius: 4px;
    overflow: hidden; border: 1px solid rgba(192,57,43,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
  }
  .event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
  .event-date-bar {
    background: var(--red); color: #fff;
    padding: 0.75rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
    font-family: 'Libre Baskerville', serif;
  }
  .event-day { font-size: 2rem; font-weight: 700; line-height: 1; }
  .event-month-year { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.9; }
  .event-body { padding: 1.25rem; flex: 1; }
  .event-tag {
    display: inline-block;
    font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
    background: rgba(212,160,23,0.12); border-radius: 2px;
    padding: 2px 8px; margin-bottom: 0.5rem;
  }
  .event-body h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem; color: var(--ink);
    margin-bottom: 0.5rem; line-height: 1.3;
  }
  .event-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
  .event-meta {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--light);
    font-size: 0.8rem; color: var(--muted);
    display: flex; gap: 1.25rem;
  }
  .event-meta span::before { content: attr(data-icon) ' '; }

   /* ── Committee ── */
  .committee-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
 }

  /* ── MEMBERSHIP ── */
  #membership { background: var(--ink); color: var(--cream); }
  #membership .section-tag { color: var(--gold); }
  #membership .section-title { color: var(--cream); }
  #membership .divider { background: linear-gradient(90deg, var(--gold), var(--red)); }
  #membership .section-desc { color: rgba(250,246,238,0.65); }

  .membership-tiers {
    display: grid; 
    /** grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); */
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 1rem;
    align-items: center;
  }
  .tier-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; padding: 2rem;
    position: relative; transition: background 0.25s;
  }
  .tier-card:hover { background: rgba(255,255,255,0.08); }
  .tier-card.featured {
    border-color: var(--gold);
    background: rgba(212,160,23,0.08);
  }
  .tier-card.featured::before {
    content: 'Most Popular';
    position: absolute; top: -1px; right: 1.5rem;
    background: var(--gold); color: var(--ink);
    font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 700; padding: 3px 10px;
    border-radius: 0 0 4px 4px;
  }
  .tier-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem; color: var(--cream);
    margin-bottom: 0.25rem;
  }
  .tier-chinese {
    font-family: 'Noto Serif TC', serif;
    font-size: 0.85rem; color: var(--gold); letter-spacing: 0.08em;
    margin-bottom: 1.25rem; display: block;
  }
  .tier-price {
    font-size: 2.5rem; font-weight: 700; color: var(--gold);
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 1.5rem;
  }
  .tier-price sub { font-size: 1rem; font-weight: 400; color: rgba(212,160,23,0.7); }
  .tier-features { list-style: none; margin-bottom: 2rem; }
  .tier-features li {
    font-size: 0.9rem; color: rgba(250,246,238,0.75);
    padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .tier-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
  .btn-gold {
    width: 100%; padding: 11px; background: var(--gold); color: var(--ink);
    border: none; border-radius: 3px; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; letter-spacing: 0.03em; transition: background 0.2s;
    text-align: center; text-decoration: none; display: block;
  }
  .btn-gold:hover { background: #c8940f; }

  /* ── GALLERY ── */
  #gallery { background: var(--white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
  }
  .gallery-item {
    aspect-ratio: 1;
    background: var(--light);
    border-radius: 2px;
    overflow: hidden; position: relative; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .gallery-item-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--light), #D9C7A8);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 1rem; text-align: center;
    font-family: 'Noto Serif TC', serif; color: var(--red); opacity: 0.5;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-inner { opacity: 0.8; }
  .gallery-item-inner span { font-size: 2.5rem; }
  .gallery-item-inner small { font-size: 0.65rem; letter-spacing: 0.08em; }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(192,57,43,0.7);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    opacity: 0; transition: opacity 0.25s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }

  /* HaKKa School */
  #ShlokaClass { background: var(--white); }

  /* ── NEWS / BLOG ── */
  #news { background: var(--cream); }
  .news-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
  .news-featured {
    background: var(--white); border-radius: 4px;
    overflow: hidden; border: 1px solid rgba(192,57,43,0.1);
    transition: box-shadow 0.25s;
  }
  .news-featured:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
  .news-featured-img {
    height: 220px;
    background: linear-gradient(135deg, var(--red) 0%, #8B2319 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif TC', serif; font-size: 5rem; color: rgba(255,255,255,0.2);
  }
  .news-featured-body { padding: 1.5rem; }
  .news-tag {
    display: inline-block; font-size: 0.65rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--red); font-weight: 600;
    background: rgba(192,57,43,0.08); border-radius: 2px; padding: 2px 8px;
    margin-bottom: 0.75rem;
  }
  .news-featured-body h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.3;
  }
  .news-featured-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
  .news-meta { font-size: 0.75rem; color: var(--muted); }
  .news-sidebar { display: flex; flex-direction: column; gap: 1rem; }
  .news-card {
    background: var(--white); border-radius: 4px; padding: 1.25rem;
    border: 1px solid rgba(192,57,43,0.1);
    transition: box-shadow 0.25s;
  }
  .news-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
  .news-card h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.35;
  }
  .news-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

  /* ── CONTACT / DONATE ── */
  #contact { background: var(--white); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .contact-info h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem; color: var(--ink); margin-bottom: 1.25rem;
  }
  .contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 1.25rem;
  }
  .contact-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(192,57,43,0.08); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .contact-item h4 { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
  .contact-item p { font-size: 0.92rem; color: var(--warm); line-height: 1.5; }

  .donate-box {
    background: linear-gradient(135deg, #8B2319 0%, var(--red) 60%, #C04A1A 100%);
    border-radius: 4px; padding: 2rem; color: #fff;
    position: relative; overflow: hidden;
  }
  .donate-box::before {
    content: 'HaKKa '; position: absolute; right: -1rem; bottom: -1rem;
    font-family: 'Noto Serif TC', serif; font-size: 8rem;
    color: rgba(255,255,255,0.06); user-select: none;
  }
  .donate-box h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem; margin-bottom: 0.75rem;
  }
  .donate-box p { font-size: 0.9rem; opacity: 0.85; line-height: 1.7; margin-bottom: 1.5rem; }
  .donate-amounts {
    display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  }
  .donate-amt {
    padding: 8px 18px; border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 3px; color: #fff; font-size: 0.9rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; background: transparent;
  }
  .donate-amt:hover, .donate-amt.active {
    background: rgba(255,255,255,0.2); border-color: #fff;
  }
  .btn-white {
    background: #fff; color: var(--red);
    padding: 12px 28px; border-radius: 3px;
    font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer;
    transition: background 0.2s; width: 100%;
    letter-spacing: 0.02em;
  }
  .btn-white:hover { background: rgba(255,255,255,0.9); }

  /* Contact Form */
  .contact-form h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem; color: var(--ink); margin-bottom: 1.25rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 5px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid rgba(192,57,43,0.15); border-radius: 3px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--ink);
    background: var(--cream); transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--red);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink); color: rgba(250,246,238,0.6);
    padding: 3rem 2rem 1.5rem;
  }
  .footer-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem; margin-bottom: 2.5rem;
  }
  .footer-brand .logo-mark {
    width: 80px; height: 40px; background: var(--red);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Noto Serif TC', serif; font-size: 18px; font-weight: 700;
    box-shadow: 2px 2px 0 var(--gold); margin-bottom: 1rem;
  }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
  .footer-col h4 {
    font-family: 'Libre Baskerville', serif;
    color: var(--cream); font-size: 0.9rem; margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.5rem; }
  .footer-col ul a {
    color: rgba(250,246,238,0.55); text-decoration: none; font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem;
  }
  .social-links { display: flex; gap: 0.75rem; }
  .social-links a {
    width: 32px; height: 32px; border-radius: 4px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(250,246,238,0.6); text-decoration: none; font-size: 0.85rem;
    transition: background 0.2s;
  }
  .social-links a:hover { background: var(--red); color: #fff; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
     #home { grid-template-columns: 1fr;  }
    /** .hero-right { display: none; } */
    .hero-right { aspect-ratio: 1 / 1;  } 
    .hero-left { padding: 3rem 1.5rem; }
    .about-grid, .contact-grid, .news-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .membership-tiers { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 1rem; align-items: center;}
    .events-grid { grid-template-columns: 1fr; }
    .committee-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3,1fr); }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    padding: 1rem 2rem;
    z-index: 999;
    flex-direction: column; gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none; color: var(--warm); font-weight: 500;
    padding: 0.6rem 0; border-bottom: 1px solid var(--light);
    font-size: 0.95rem;
  }
  .mobile-menu a:hover { color: var(--red); }

  /* Scroll top btn */
  #scrollTop {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 44px; height: 44px; border-radius: 4px;
    background: var(--red); color: #fff;
    border: none; cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 900;
  }
  #scrollTop.visible { opacity: 1; pointer-events: auto; }
  #scrollTop:hover { background: #a93226; }