/*
Theme Name: Red Maple Hockey Association
Theme URI: https://redmaplehockey.com
Author: Red Maple Hockey Association
Author URI: https://redmaplehockey.com
Description: Official theme for Red Maple Hockey Association — Connecting Canada and China Through Hockey.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: redmaple
Tags: hockey, sports, nonprofit, red, navy
*/

/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
:root {
  --red:       #C0392B;
  --dark-red:  #922B21;
  --light-red: #FADBD8;
  --navy:      #1B2A4A;
  --navy-mid:  #243352;
  --gold:      #D4AC0D;
  --white:     #FFFFFF;
  --off-white: #F8F6F2;
  --gray:      #7F8C8D;
  --dark:      #1A1A1A;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--dark); overflow-x: hidden; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.rm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(27,42,74,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
}
.rm-nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.rm-nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.rm-nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--white); }
.rm-nav-logo-text span { color: var(--red); }
.rm-nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.rm-nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s; padding: 0.25rem 0; border-bottom: 2px solid transparent;
}
.rm-nav-links a:hover,
.rm-nav-links a.current-menu-item { color: var(--white); border-bottom-color: var(--red); }
.rm-nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 0.5rem 1.25rem !important; border-bottom: none !important; font-weight: 600 !important;
}
.rm-nav-cta:hover { background: var(--dark-red) !important; }
.rm-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.rm-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.rm-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.rm-section-label::after { content: ''; flex: 1; height: 1px; background: var(--red); opacity: 0.3; }
.rm-section-label.light { color: rgba(255,255,255,0.5); }
.rm-section-label.light::after { background: rgba(255,255,255,0.2); }

.rm-ticker { background: var(--red); padding: 0.9rem 0; overflow: hidden; }
.rm-ticker-track { display: flex; white-space: nowrap; animation: rmTicker 22s linear infinite; }
.rm-ticker-text { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--white); padding-right: 3rem; }
@keyframes rmTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.rm-btn { display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; cursor: pointer; border: none; }
.rm-btn-primary { background: var(--red); color: var(--white); padding: 0.85rem 2rem; box-shadow: 4px 4px 0 var(--dark-red); }
.rm-btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark-red); color: var(--white); }
.rm-btn-secondary { background: transparent; color: var(--white); padding: 0.85rem 2rem; border: 2px solid rgba(255,255,255,0.5); }
.rm-btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.rm-btn-outline-red { background: transparent; color: var(--red); padding: 0.85rem 2rem; border: 2px solid var(--red); }
.rm-btn-outline-red:hover { background: var(--red); color: var(--white); }
.rm-btn-white { background: var(--white); color: var(--red); padding: 0.85rem 2rem; box-shadow: 4px 4px 0 var(--dark-red); }
.rm-btn-white:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark-red); color: var(--red); }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.rm-page-hero {
  min-height: 52vh; background: var(--navy); display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: 9rem 5rem 4rem; position: relative; overflow: hidden;
}
.rm-page-hero-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.16; }
.rm-page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 60%, rgba(192,57,43,0.22) 0%, transparent 55%); }
.rm-page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.rm-page-hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.rm-page-hero-eyebrow::before { content: ''; width: 2rem; height: 2px; background: var(--red); }
.rm-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,3.8vw,3.5rem); font-weight: 900; color: var(--white); line-height: 1.08; }
.rm-page-hero h1 em { color: var(--red); font-style: italic; }
.rm-page-hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.72); margin-top: 1rem; max-width: 52ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.rm-footer { background: var(--dark); padding: 3rem 5rem 2rem; }
.rm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.rm-footer-logo-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.rm-footer-logo-row img { width: 48px; height: 48px; border-radius: 50%; }
.rm-footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--white); }
.rm-footer-brand-name span { color: var(--red); }
.rm-footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; max-width: 28ch; margin-bottom: 1rem; }
.rm-footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.rm-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.rm-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; font-weight: 300; transition: color 0.2s; }
.rm-footer-links a:hover { color: var(--white); }
.rm-footer-social { display: flex; gap: 0.75rem; }
.rm-social-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); text-decoration: none; font-size: 1rem; transition: all 0.2s; }
.rm-social-btn:hover { background: var(--red); color: var(--white); }
.rm-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.rm-footer-copy, .rm-footer-nonprofit { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 300; }

/* ============================================================
   HOME PAGE
   ============================================================ */
.rm-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); position: relative; overflow: hidden; }
.rm-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 60%, rgba(192,57,43,0.18) 0%, transparent 55%), radial-gradient(circle at 80% 20%, rgba(212,172,13,0.07) 0%, transparent 40%); }
.rm-hero-left { display: flex; flex-direction: column; justify-content: center; padding: 9rem 4rem 6rem 5rem; position: relative; z-index: 2; }
.rm-hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.rm-hero-eyebrow::before { content: ''; width: 2rem; height: 2px; background: var(--red); }
.rm-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,4.5vw,4.2rem); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.rm-hero h1 em { font-style: italic; color: var(--red); }
.rm-hero-p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 36ch; margin-bottom: 2.5rem; }
.rm-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.rm-hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 6rem 3rem; }
.rm-hero-photo { position: relative; z-index: 2; }
.rm-hero-photo img { width: 100%; max-width: 480px; height: 520px; object-fit: cover; object-position: center 20%; display: block; }
.rm-hero-photo::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--red); z-index: 1; }
.rm-hero-photo::after { content: ''; position: absolute; top: 12px; left: 12px; right: -12px; bottom: -12px; background: var(--dark-red); opacity: 0.3; z-index: 0; }

.rm-stats-bar { background: var(--white); display: grid; grid-template-columns: repeat(4,1fr); border-top: 4px solid var(--red); }
.rm-stat-item { padding: 2rem; text-align: center; border-right: 1px solid #eee; }
.rm-stat-item:last-child { border-right: none; }
.rm-stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.rm-stat-num span { color: var(--red); }
.rm-stat-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-top: 0.4rem; }

.rm-mission { padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.rm-mission-img { position: relative; }
.rm-mission-img img { width: 100%; height: 420px; object-fit: cover; }
.rm-mission-img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--red); color: var(--white); padding: 1.25rem 1.5rem; font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; max-width: 180px; line-height: 1.4; }
.rm-mission h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.rm-mission h2 em { color: var(--red); font-style: italic; }
.rm-mission p { font-size: 1rem; font-weight: 300; line-height: 1.85; color: #444; margin-bottom: 1.25rem; }
.rm-mission p strong { font-weight: 600; color: var(--navy); }

.rm-programs-section { background: var(--navy); padding: 6rem 5rem; position: relative; overflow: hidden; }
.rm-programs-section::before { content: '🍁'; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%) rotate(10deg); font-size: 16rem; opacity: 0.04; }
.rm-programs-inner { max-width: 1200px; margin: 0 auto; }
.rm-programs-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 3rem; }
.rm-programs-h2 em { color: var(--red); font-style: italic; }
.rm-prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.rm-prog-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.rm-prog-card:hover { background: rgba(192,57,43,0.15); border-color: var(--red); transform: translateY(-4px); }
.rm-prog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.rm-prog-card:hover::before { transform: scaleX(1); }
.rm-prog-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.rm-prog-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; margin-bottom: 0.75rem; }
.rm-tag-active { background: rgba(39,174,96,0.2); color: #27AE60; }
.rm-tag-soon { background: rgba(212,172,13,0.2); color: var(--gold); }
.rm-prog-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.rm-prog-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); font-weight: 300; }
.rm-prog-link { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); text-decoration: none; }
.rm-prog-link:hover { color: var(--light-red); }

.rm-cta-section { background: var(--red); padding: 5rem; text-align: center; position: relative; overflow: hidden; }
.rm-cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 120%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 70%); }
.rm-cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.rm-cta-section p { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 300; margin-bottom: 2.5rem; max-width: 48ch; margin-left: auto; margin-right: auto; }
.rm-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.rm-about-main { padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; }
.rm-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.rm-about h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.rm-about h2 em { color: var(--red); font-style: italic; }
.rm-about p { font-size: 1rem; font-weight: 300; line-height: 1.85; color: #444; margin-bottom: 1.25rem; }
.rm-about p strong { font-weight: 600; color: var(--navy); }
.rm-pull-quote { margin: 2rem 0; padding: 1.5rem 2rem; border-left: 4px solid var(--red); background: var(--white); box-shadow: 4px 4px 0 var(--light-red); }
.rm-pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--navy); line-height: 1.5; margin: 0; }
.rm-values-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.rm-value-card { background: var(--white); padding: 1.5rem 1.75rem; border-top: 3px solid transparent; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: all 0.3s; }
.rm-value-card:hover { border-color: var(--red); transform: translateX(6px); box-shadow: 0 6px 28px rgba(0,0,0,0.1); }
.rm-value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.rm-value-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.rm-value-desc { font-size: 0.875rem; line-height: 1.65; color: var(--gray); font-weight: 300; }

.rm-diff-section { background: var(--navy); padding: 6rem 5rem; }
.rm-diff-inner { max-width: 1200px; margin: 0 auto; }
.rm-diff-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--white); margin-bottom: 3rem; }
.rm-diff-h2 em { color: var(--red); font-style: italic; }
.rm-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.rm-diff-item { display: flex; gap: 1.25rem; padding: 1.75rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.rm-diff-item:hover { background: rgba(192,57,43,0.12); border-color: var(--red); }
.rm-diff-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--light-red); opacity: 0.4; line-height: 1; flex-shrink: 0; }
.rm-diff-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.rm-diff-desc { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.6); font-weight: 300; }

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.rm-prog-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; }
.rm-prog-intro-img { position: relative; }
.rm-prog-intro-img img { width: 100%; height: 400px; object-fit: cover; }
.rm-prog-intro-img::before { content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px; border: 2px solid var(--red); z-index: -1; }
.rm-prog-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.rm-prog-h2 em { color: var(--red); font-style: italic; }
.rm-prog-all { background: var(--navy); padding: 6rem 5rem; }
.rm-prog-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 900px; margin: 3rem auto 0; }
.rm-prog-full-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; transition: all 0.3s; }
.rm-prog-full-card:hover { background: rgba(192,57,43,0.12); border-color: var(--red); }
.rm-prog-full-icon { font-size: 3rem; line-height: 1; }
.rm-prog-full-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.rm-prog-full-desc { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.65); font-weight: 300; }
.rm-prog-full-details { margin-top: 1.25rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.rm-prog-detail { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.rm-prog-detail strong { color: var(--light-red); font-weight: 600; }
.rm-ages-section { padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; }
.rm-ages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.rm-age-card { background: var(--white); padding: 2rem; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: all 0.3s; }
.rm-age-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.rm-age-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--red); }
.rm-age-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 0.25rem; }
.rm-age-desc { font-size: 0.875rem; line-height: 1.6; color: #555; margin-top: 0.75rem; font-weight: 300; }

/* ============================================================
   SHOWCASES PAGE
   ============================================================ */
.rm-showcase-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; }
.rm-showcase-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.rm-showcase-h2 em { color: var(--red); font-style: italic; }
.rm-photo-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.rm-photo-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s, filter 0.4s; filter: brightness(0.85); }
.rm-photo-gallery img:hover { transform: scale(1.03); filter: brightness(1); }
.rm-photo-wide { grid-column: span 2; }
.rm-why-china { background: var(--navy); padding: 6rem 5rem; }
.rm-why-inner { max-width: 1200px; margin: 0 auto; }
.rm-why-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--white); margin-bottom: 3rem; }
.rm-why-h2 em { color: var(--red); font-style: italic; }
.rm-why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.rm-why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; transition: all 0.3s; }
.rm-why-card:hover { background: rgba(192,57,43,0.12); border-color: var(--red); }
.rm-why-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.rm-why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.rm-why-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); font-weight: 300; }
.rm-gov-section { padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.rm-gov-badge { background: var(--navy); padding: 3rem; text-align: center; }
.rm-gov-badge-icon { font-size: 4rem; margin-bottom: 1rem; }
.rm-gov-badge-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.rm-gov-badge-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.6; }
.rm-gov-badge-tag { display: inline-block; background: var(--red); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.75rem; margin-top: 1.25rem; }

/* ============================================================
   SPONSORS PAGE
   ============================================================ */
.rm-why-sponsor { padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.rm-sp-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.rm-sp-h2 em { color: var(--red); font-style: italic; }
.rm-sp-p { font-size: 1rem; font-weight: 300; line-height: 1.85; color: #444; margin-bottom: 1.1rem; }
.rm-sp-p strong { font-weight: 600; color: var(--navy); }
.rm-why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rm-why-card-sm { background: var(--white); padding: 1.5rem; box-shadow: 0 2px 14px rgba(0,0,0,0.07); border-top: 3px solid transparent; transition: all 0.3s; }
.rm-why-card-sm:hover { border-color: var(--red); transform: translateY(-3px); }
.rm-tiers-section { background: var(--navy); padding: 6rem 5rem; }
.rm-tiers-inner { max-width: 1200px; margin: 0 auto; }
.rm-tiers-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.rm-tiers-h2 em { color: var(--red); font-style: italic; }
.rm-tiers-sub { font-size: 0.95rem; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 3rem; }
.rm-tiers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.rm-tier-card { padding: 2rem 1.5rem; text-align: center; position: relative; transition: transform 0.3s; }
.rm-tier-card:hover { transform: translateY(-4px); }
.rm-tier-plat { background: var(--dark-red); border-top: 4px solid var(--gold); }
.rm-tier-gold { background: rgba(192,57,43,0.7); border-top: 4px solid var(--red); }
.rm-tier-silver { background: rgba(255,255,255,0.08); border-top: 4px solid rgba(255,255,255,0.3); }
.rm-tier-bronze { background: rgba(255,255,255,0.04); border-top: 4px solid rgba(255,255,255,0.15); }
.rm-tier-rec { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.7rem; white-space: nowrap; }
.rm-tier-emoji { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.rm-tier-name { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.25rem; }
.rm-tier-label { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.rm-tier-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 0.25rem; }
.rm-tier-spots { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.rm-tier-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.5rem; }
.rm-tier-features li { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 300; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.4; }
.rm-tier-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.rm-tier-features li.gold-check::before { color: var(--gold); }
.rm-inkind { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.rm-inkind-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.rm-inkind-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 300; margin-top: 0.35rem; max-width: 50ch; }
.rm-benefits-section { padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; }
.rm-benefits-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.4rem); font-weight: 900; color: var(--navy); margin-bottom: 3rem; }
.rm-benefits-h2 em { color: var(--red); font-style: italic; }
.rm-benefits-table { width: 100%; border-collapse: collapse; }
.rm-benefits-table th { background: var(--navy); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 1rem; text-align: center; }
.rm-benefits-table th:first-child { text-align: left; }
.rm-benefits-table td { padding: 0.85rem 1rem; font-size: 0.9rem; border-bottom: 1px solid #eee; text-align: center; }
.rm-benefits-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.rm-benefits-table tr:nth-child(even) td { background: #f9f7f4; }
.check-yes { color: #27AE60; font-weight: 700; font-size: 1rem; }
.check-no { color: #ccc; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.rm-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.rm-contact-left { background: var(--navy); padding: 9rem 4rem 5rem 5rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.rm-contact-left::before { content: '🍁'; position: absolute; bottom: -3rem; right: -2rem; font-size: 14rem; opacity: 0.05; }
.rm-contact-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.rm-contact-eyebrow::before { content: ''; width: 2rem; height: 2px; background: var(--red); }
.rm-contact-left h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,3.5vw,3.2rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.rm-contact-left h1 em { color: var(--red); font-style: italic; }
.rm-contact-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 3rem; max-width: 38ch; }
.rm-contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.rm-contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.rm-contact-item-icon { width: 42px; height: 42px; background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.rm-contact-item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; }
.rm-contact-item-value { font-size: 0.95rem; color: var(--white); }
.rm-contact-item-value a { color: var(--white); text-decoration: none; }
.rm-contact-item-value a:hover { color: var(--light-red); }
.rm-contact-social { margin-top: 2.5rem; display: flex; gap: 0.75rem; }
.rm-soc-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: all 0.2s; }
.rm-soc-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.rm-contact-right { background: var(--off-white); padding: 9rem 5rem 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.rm-form-h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 900; color: var(--navy); margin-bottom: 0.5rem; }
.rm-form-h2 em { color: var(--red); font-style: italic; }
.rm-form-sub { font-size: 0.9rem; color: var(--gray); font-weight: 300; margin-bottom: 2.5rem; }
.rm-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.rm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.rm-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.rm-form-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.rm-form-input, .rm-form-select, .rm-form-textarea { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 300; color: var(--dark); padding: 0.8rem 1rem; border: 1.5px solid #ddd; background: var(--white); transition: border-color 0.2s; outline: none; width: 100%; }
.rm-form-input:focus, .rm-form-select:focus, .rm-form-textarea:focus { border-color: var(--red); }
.rm-form-textarea { min-height: 120px; resize: vertical; }
.rm-form-submit { background: var(--red); color: var(--white); padding: 1rem 2.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; box-shadow: 4px 4px 0 var(--dark-red); transition: all 0.2s; align-self: flex-start; }
.rm-form-submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark-red); }
.rm-form-note { font-size: 0.8rem; color: var(--gray); font-weight: 300; }
.rm-success-msg { display: none; background: #f0fdf4; border: 1.5px solid #27AE60; padding: 1rem 1.25rem; color: #15803d; font-size: 0.9rem; font-weight: 500; }
.rm-faq-section { background: var(--white); padding: 6rem 5rem; max-width: 1200px; margin: 0 auto; }
.rm-faq-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.5vw,2.2rem); font-weight: 900; color: var(--navy); margin-bottom: 3rem; }
.rm-faq-h2 em { color: var(--red); font-style: italic; }
.rm-faq-item { border-bottom: 1px solid #eee; }
.rm-faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.rm-faq-q::after { content: '+'; font-size: 1.25rem; color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.rm-faq-item.open .rm-faq-q::after { transform: rotate(45deg); }
.rm-faq-a { font-size: 0.925rem; line-height: 1.75; color: var(--gray); font-weight: 300; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.rm-faq-item.open .rm-faq-a { max-height: 300px; padding-bottom: 1.25rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .rm-nav { padding: 1rem 1.5rem; }
  .rm-nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 99; }
  .rm-nav-links.open { display: flex; }
  .rm-hamburger { display: flex; z-index: 101; }
  .rm-hero { grid-template-columns: 1fr; }
  .rm-hero-right { display: none; }
  .rm-hero-left { padding: 8rem 1.5rem 4rem; }
  .rm-stats-bar { grid-template-columns: repeat(2,1fr); }
  .rm-mission, .rm-showcase-intro, .rm-gov-section, .rm-why-sponsor { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .rm-programs-section, .rm-prog-all, .rm-ages-section, .rm-why-china, .rm-tiers-section, .rm-benefits-section, .rm-diff-section { padding: 4rem 1.5rem; }
  .rm-about-main { padding: 4rem 1.5rem; }
  .rm-about-grid, .rm-diff-grid, .rm-why-grid { grid-template-columns: 1fr; }
  .rm-prog-grid, .rm-ages-grid { grid-template-columns: 1fr; }
  .rm-tiers-grid { grid-template-columns: 1fr 1fr; }
  .rm-contact-wrap { grid-template-columns: 1fr; }
  .rm-contact-left { padding: 8rem 1.5rem 4rem; }
  .rm-contact-right { padding: 4rem 1.5rem; }
  .rm-form-row { grid-template-columns: 1fr; }
  .rm-faq-section { padding: 4rem 1.5rem; }
  .rm-page-hero { padding: 8rem 1.5rem 3rem; }
  .rm-footer { padding: 3rem 1.5rem 2rem; }
  .rm-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rm-footer-bottom { flex-direction: column; text-align: center; }
  .rm-photo-gallery { grid-template-columns: 1fr 1fr; }
  .rm-photo-wide { grid-column: span 1; }
  .rm-cta-section, .rm-prog-intro { padding: 4rem 1.5rem; }
  .rm-prog-full-card { grid-template-columns: 1fr; gap: 1rem; }
}
