:root {
      --blue: #1d4ed8;
      --red: #dc2626;
      --yellow: #f59e0b;
      --blue-light: #dbeafe;
      --red-light: #fee2e2;
      --yellow-light: #fef3c7;
      --bg: #ffffff;
      --bg-alt: #f8fafc;
      --text: #0f172a;
      --text-muted: #64748b;
      --card-bg: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 4px 24px rgb(15 23 42 / 0.06);
      --shadow-lg: 0 20px 50px rgb(15 23 42 / 0.12);
      --radius: 10px;
      --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      --font-heading: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      --topbar-h: 38px;
    }

    [data-theme="dark"] {
      --bg: #0f172a;
      --bg-alt: #1e293b;
      --text: #f8fafc;
      --text-muted: #94a3b8;
      --card-bg: #1e293b;
      --border: #334155;
      --shadow: 0 4px 24px rgb(0 0 0 / 0.35);
      --shadow-lg: 0 20px 50px rgb(0 0 0 / 0.45);
      --blue-light: #1e3a8a;
      --red-light: #7f1d1d;
      --yellow-light: #78350f;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      transition: background 0.25s ease, color 0.25s ease;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }

    /* Top contact bar */
    .emergency-banner {
      background: linear-gradient(90deg, var(--red), #b91c1c);
      color: #fff;
      text-align: center;
      padding: 0.55rem 1rem;
      font-weight: 600;
      font-size: 0.85rem;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1001;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.75rem;
      flex-wrap: wrap;
      letter-spacing: 0.01em;
    }
    .emergency-banner a { color: var(--yellow); text-decoration: none; font-weight: 700; }
    .emergency-banner a:hover { color: #fde68a; }
    .emergency-banner i { margin-right: 0.4rem; opacity: 0.95; }

    /* Header */
    header {
      position: fixed;
      top: var(--topbar-h);
      width: 100%;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      transition: box-shadow 0.25s ease, background 0.25s ease;
    }
    [data-theme="dark"] header { background: rgba(15, 23, 42, 0.92); }
    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0.7rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .logo { 
      font-family: var(--font-heading); 
      font-weight: 700; 
      font-size: 1.15rem; 
      color: var(--blue); 
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      white-space: nowrap;
    }
    .logo-img {
      height: 2.5rem;
      width: auto;
      max-width: min(160px, 38vw);
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }
    .logo span { color: var(--red); }
    
    nav ul { 
      display: flex; 
      gap: 0.15rem 1.1rem; 
      list-style: none; 
      align-items: center; 
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    nav a { 
      text-decoration: none; 
      color: var(--text-muted); 
      font-weight: 600; 
      font-size: 0.88rem;
      transition: color 0.2s ease;
      position: relative;
      padding: 0.25rem 0;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width 0.25s ease;
    }
    nav a:hover::after { width: 100%; }
    nav a:hover { color: var(--red); }
    
    .btn {
      padding: 0.7rem 1.4rem;
      background: var(--red);
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      box-shadow: none;
      letter-spacing: 0.01em;
    }
    .btn:hover { 
      background: #b91c1c; 
      transform: translateY(-1px); 
      box-shadow: var(--shadow);
    }
    .btn-red { background: var(--red); }
    .btn-red:hover { background: #b91c1c; }
    .btn-outline { 
      background: transparent; 
      border: 1.5px solid var(--red); 
      color: var(--red); 
    }
    .btn-outline:hover { 
      background: var(--red); 
      color: white; 
    }
    .btn-yellow { 
      background: var(--yellow); 
      color: #0f172a;
      border: 1.5px solid var(--yellow);
      padding: 0.55rem 1.1rem;
      font-size: 0.85rem;
    }
    .btn-yellow:hover { 
      background: #d97706;
      border-color: #d97706;
      color: #fff;
    }
    .btn-group { display: flex; gap: 0.65rem; align-items: center; }
    
    .theme-toggle { 
      background: var(--bg-alt); 
      border: 1px solid var(--border); 
      font-size: 1rem; 
      cursor: pointer; 
      padding: 0.45rem 0.55rem;
      border-radius: 8px;
      color: var(--text);
      transition: var(--transition);
    }
    .theme-toggle:hover { background: var(--red-light); color: var(--red); }
    
    .hamburger { 
      display: none; 
      background: none; 
      border: none; 
      font-size: 1.5rem; 
      cursor: pointer;
      color: var(--text);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 7.5rem 1.5rem 4rem;
      background: linear-gradient(160deg, #fff 0%, var(--red-light) 40%, var(--yellow-light) 100%);
      position: relative;
      overflow: hidden;
      margin-top: var(--topbar-h);
    }
    [data-theme="dark"] .hero {
      background: linear-gradient(160deg, #0f172a 0%, #7f1d1d 45%, #1e293b 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -15%;
      right: -8%;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgb(220 38 38 / 0.14) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -12%;
      left: -6%;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgb(245 158 11 / 0.14) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    
    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 3.5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-block;
      background: var(--red);
      color: #fff;
      padding: 0.4rem 0.9rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.8rem;
      margin-bottom: 1.25rem;
      letter-spacing: 0.02em;
    }
    .hero h1 { 
      font-family: var(--font-heading); 
      font-size: clamp(2.15rem, 4.2vw, 3.35rem); 
      line-height: 1.15; 
      margin-bottom: 1.15rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .hero h1 .blue { color: var(--blue); }
    .hero h1 .red { color: var(--red); }
    .hero h1 .yellow { color: var(--yellow); }
    .hero p { 
      font-size: 1.05rem; 
      color: var(--text-muted); 
      margin-bottom: 1.75rem;
      max-width: 540px;
      line-height: 1.7;
    }
    .cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      max-width: 560px;
    }
    .hero-stat {
      text-align: left;
      padding: 0;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      min-width: 0;
    }
    .hero-stat h3 { font-size: 1.65rem; color: var(--red); font-weight: 700; line-height: 1.2; margin-bottom: 0.2rem; }
    .hero-stat p { font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.35; }
    
    .hero-slider {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      height: 520px;
      border: 1px solid var(--border);
      background: #0f172a;
      touch-action: pan-y;
      user-select: none;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      filter: blur(6px);
      transform: scale(1.08);
      transition:
        opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.1s ease,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform, opacity, filter;
    }
    .hero-slide.active {
      opacity: 1;
      filter: blur(0);
      z-index: 1;
    }
    .hero-slide.active[data-ken="zoom-in"] {
      animation: kenZoomIn 6.5s ease-out forwards;
    }
    .hero-slide.active[data-ken="zoom-out"] {
      animation: kenZoomOut 6.5s ease-out forwards;
    }
    .hero-slide.active[data-ken="pan-right"] {
      animation: kenPanRight 6.5s ease-out forwards;
    }
    .hero-slide.active[data-ken="pan-left"] {
      animation: kenPanLeft 6.5s ease-out forwards;
    }
    @keyframes kenZoomIn {
      from { transform: scale(1); }
      to { transform: scale(1.12); }
    }
    @keyframes kenZoomOut {
      from { transform: scale(1.12); }
      to { transform: scale(1); }
    }
    @keyframes kenPanRight {
      from { transform: scale(1.1) translateX(-3%); }
      to { transform: scale(1.1) translateX(3%); }
    }
    @keyframes kenPanLeft {
      from { transform: scale(1.1) translateX(3%); }
      to { transform: scale(1.1) translateX(-3%); }
    }
    .hero-slider-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        to top,
        rgb(15 23 42 / 0.55) 0%,
        rgb(15 23 42 / 0.12) 35%,
        transparent 60%
      );
    }
    .hero-slider-progress {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 4;
      background: rgb(255 255 255 / 0.2);
    }
    .hero-slider-progress-bar {
      display: block;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--red), var(--yellow));
      transform-origin: left center;
    }
    .hero-slider-progress-bar.is-running {
      animation: sliderProgress 6s linear forwards;
    }
    @keyframes sliderProgress {
      from { width: 0%; }
      to { width: 100%; }
    }
    .hero-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: rgb(255 255 255 / 0.92);
      color: var(--red);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: 0 8px 20px rgb(15 23 42 / 0.2);
      opacity: 0;
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    }
    .hero-slider:hover .hero-slider-btn,
    .hero-slider:focus-within .hero-slider-btn {
      opacity: 1;
    }
    .hero-slider-prev { left: 14px; }
    .hero-slider-next { right: 14px; }
    .hero-slider-btn:hover {
      background: var(--red);
      color: #fff;
      transform: translateY(-50%) scale(1.06);
    }
    .slider-dots {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 4;
    }
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: none;
      padding: 0;
      background: rgba(255,255,255,0.45);
      cursor: pointer;
      transition: width 0.3s ease, background 0.3s ease;
    }
    .dot.active {
      background: var(--yellow);
      width: 28px;
    }
    .dot:hover { background: rgba(255,255,255,0.85); }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide.active[data-ken] { animation: none !important; transform: scale(1) !important; }
      .hero-slide { filter: none; transition: opacity 0.35s ease; }
      .hero-slider-progress-bar.is-running { animation: none; width: 100%; }
    }

    /* Sections */
    section { padding: 5.5rem 1.5rem; }
    .container { max-width: 1280px; margin: 0 auto; }
    .section-title { 
      text-align: center; 
      margin-bottom: 3.25rem;
      position: relative;
    }
    .section-title h2 { 
      font-family: var(--font-heading); 
      font-size: clamp(1.85rem, 3.5vw, 2.6rem); 
      margin-bottom: 0.85rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .section-title h2 .blue { color: var(--blue); }
    .section-title h2 .red { color: var(--red); }
    .section-title h2 .yellow { color: var(--yellow); }
    .section-title p { 
      color: var(--text-muted); 
      max-width: 640px; 
      margin: 0 auto;
      font-size: 1.02rem;
      line-height: 1.7;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 56px;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--yellow));
      margin: 1.25rem auto 0;
      border-radius: 2px;
      transform-origin: center;
      transform: scaleX(0);
    }

    /* About */
    .about-grid { 
      display: grid; 
      grid-template-columns: 1fr 1fr; 
      gap: 3.5rem; 
      align-items: center; 
    }
    .about-img { 
      width: 100%; 
      height: 460px; 
      object-fit: cover; 
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.35s ease;
      border: 1px solid var(--border);
    }
    .about-img:hover { transform: scale(1.015); }
    .about-heading {
      font-family: var(--font-heading);
      font-size: 1.65rem;
      margin-bottom: 0.85rem;
      color: var(--blue);
      font-weight: 700;
    }
    .about-text {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    .about-features { 
      display: grid; 
      grid-template-columns: repeat(2, minmax(0, 1fr)); 
      gap: 1rem; 
      margin-top: 1.5rem; 
    }
    .feature-card {
      background: var(--card-bg);
      padding: 1.35rem 1.2rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: var(--transition);
      text-align: left;
    }
    .feature-card:hover { 
      transform: translateY(-3px); 
      box-shadow: var(--shadow);
      border-color: rgb(220 38 38 / 0.4);
    }
    .feature-card i {
      font-size: 1.35rem;
      color: var(--red);
      margin-bottom: 0.65rem;
    }
    .feature-card h3 { margin: 0.35rem 0 0.35rem; font-weight: 700; font-size: 1rem; }
    .feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

    /* Programs */
    .programs { background: var(--bg-alt); }
    .program-cards { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); 
      gap: 2.5rem; 
    }
    .program-card { 
      background: var(--card-bg); 
      border-radius: 14px; 
      overflow: hidden; 
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--border);
    }
    .program-card:hover { 
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .program-img { 
      height: 200px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      font-size: 4rem;
      background: linear-gradient(135deg, var(--blue-light), var(--yellow-light));
      position: relative;
      overflow: hidden;
    }
    .program-img::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3));
      transform: translateX(-100%);
      transition: transform 0.6s;
    }
    .program-card:hover .program-img::before { transform: translateX(100%); }
    .program-img-photo { padding: 0; }
    .program-img-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .program-content { padding: 2rem; }
    .program-content h3 { 
      font-family: var(--font-heading); 
      font-size: 1.5rem; 
      margin-bottom: 0.75rem;
      color: var(--blue);
    }
    .program-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
    .program-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .tag {
      background: var(--yellow-light);
      color: #0f172a;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Stats */
    .stats { 
      background: linear-gradient(135deg, var(--red), #991b1b 55%, var(--blue)); 
      color: white; 
      padding: 5rem 2rem; 
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .stats::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: 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='%23ffffff' fill-opacity='0.05'%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");
    }
    .stats-grid { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
      gap: 3rem; 
      max-width: 1200px; 
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .stat-item {
      background: rgba(255,255,255,0.1);
      padding: 2rem;
      border-radius: var(--radius);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .stat-item h3 { 
      font-size: 3rem; 
      margin-bottom: 0.5rem; 
      color: var(--yellow);
      font-weight: 800;
    }
    .stat-item p { opacity: 0.95; font-size: 1.1rem; }

    /* Fee Structure */
    .fee-section { background: var(--bg-alt); text-align: center; }
    .fee-section .fee-card { text-align: left; }
    .fee-section .fee-card h3 { padding-right: 6.5rem; }
    .fee-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .fee-card {
      background: var(--card-bg);
      padding: 2rem 1.75rem;
      border-radius: 14px;
      border: 1px solid var(--border);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      text-align: left;
    }
    .fee-card.featured {
      border-color: var(--red);
      box-shadow: var(--shadow-lg);
      transform: none;
    }
    .fee-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--red);
      color: #fff;
      padding: 0.3rem 0.65rem;
      transform: none;
      font-weight: 700;
      font-size: 0.68rem;
      letter-spacing: 0.04em;
      border-radius: 4px;
    }
    .fee-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .fee-card.featured:hover { transform: translateY(-4px); }
    .fee-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--red-light);
      color: var(--red);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    .fee-card h3 {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }
    .fee-price {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue);
      margin: 1rem 0;
    }
    .fee-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
    .fee-features {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }
    .fee-features li {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .fee-features li i { color: var(--red); }
    .fee-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 3rem;
    }
    .fee-price-stack {
      margin: 1rem 0 1.25rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .fee-price-row {
      padding: 0.85rem 1rem;
      background: var(--bg-alt);
      border-radius: var(--radius);
      border: 2px solid var(--border);
    }
    .fee-price-row-boarding {
      border-color: var(--yellow);
      background: linear-gradient(135deg, var(--yellow-light), var(--bg-alt));
    }
    .fee-price-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }
    .fee-price-row .fee-price-amount {
      font-size: clamp(1.35rem, 3.5vw, 1.85rem);
      font-weight: 800;
      color: var(--red);
      line-height: 1.2;
    }
    .fee-price-row-boarding .fee-price-amount {
      color: var(--red);
    }
    .fee-price-row .fee-price-period {
      font-size: 0.95rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 2000;
      padding: 2rem;
    }
    .modal-overlay.active { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--card-bg);
      padding: 2.5rem;
      border-radius: var(--radius);
      max-width: 920px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      overflow-x: auto;
      box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
      transform: scale(0.9) translateY(20px);
      transition: var(--transition);
      position: relative;
    }
    .modal-overlay.active .modal { transform: scale(1) translateY(0); }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--border);
    }
    .modal-header h3 {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      color: var(--blue);
    }
    .close-modal {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: var(--text-muted);
      transition: var(--transition);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .close-modal:hover {
      background: var(--red-light);
      color: var(--red);
      transform: rotate(90deg);
    }
    .fee-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }
    .fee-table th, .fee-table td {
      padding: 1.25rem;
      border-bottom: 1px solid var(--border);
      text-align: left;
    }
    .fee-table th {
      background: linear-gradient(135deg, var(--blue-light), var(--yellow-light));
      color: var(--text);
      font-weight: 700;
      font-family: var(--font-heading);
    }
    .fee-table tr:hover { background: var(--bg-alt); }
    .fee-table tbody tr:last-child td { border-bottom: none; }

    /* Clubs Section */
    .clubs { background: var(--bg); }
    .clubs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }
    .club-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 2px solid var(--border);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }
    .club-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px -10px rgb(0 0 0 / 0.15);
    }
    .club-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 4px solid var(--yellow);
    }
    .club-slider {
      position: relative;
      height: 250px;
      overflow: hidden;
      border-bottom: 4px solid var(--yellow);
      background: #0f172a;
      touch-action: pan-y;
    }
    .club-slides {
      position: absolute;
      inset: 0;
    }
    .club-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      filter: blur(4px);
      transform: scale(1.06);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease, transform 0.9s ease;
    }
    .club-slide.active {
      opacity: 1;
      filter: blur(0);
      transform: scale(1);
      z-index: 1;
      animation: clubKen 5.5s ease-out forwards;
    }
    @keyframes clubKen {
      from { transform: scale(1); }
      to { transform: scale(1.08); }
    }
    .club-slider-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(to top, rgb(15 23 42 / 0.45), transparent 45%);
    }
    .club-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 50%;
      background: rgb(255 255 255 / 0.92);
      color: var(--red);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      opacity: 0;
      transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
    }
    .club-slider:hover .club-slider-btn,
    .club-slider:focus-within .club-slider-btn {
      opacity: 1;
    }
    .club-slider-prev { left: 10px; }
    .club-slider-next { right: 10px; }
    .club-slider-btn:hover {
      background: var(--red);
      color: #fff;
    }
    .club-slider-dots {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 7px;
    }
    .club-dot {
      width: 8px;
      height: 8px;
      border: none;
      padding: 0;
      border-radius: 999px;
      background: rgb(255 255 255 / 0.45);
      cursor: pointer;
      transition: width 0.25s ease, background 0.25s ease;
    }
    .club-dot.active {
      width: 22px;
      background: var(--yellow);
    }
    @media (prefers-reduced-motion: reduce) {
      .club-slide.active { animation: none !important; transform: scale(1) !important; }
      .club-slide { filter: none; transition: opacity 0.3s ease; }
    }
    .club-header {
      padding: 1.75rem;
      background: linear-gradient(135deg, var(--blue-light), var(--bg));
      display: flex;
      align-items: center;
      gap: 1rem;
      cursor: pointer;
      transition: var(--transition);
    }
    .club-header:hover { background: linear-gradient(135deg, var(--yellow-light), var(--bg)); }
    .club-icon {
      font-size: 2.5rem;
      background: var(--card-bg);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      box-shadow: var(--shadow);
    }
    .club-title {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.4rem;
      margin: 0;
      color: var(--blue);
    }
    .club-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0.25rem 0 0;
    }
    .club-toggle {
      margin-left: auto;
      font-size: 1.5rem;
      transition: transform 0.3s;
      color: var(--yellow);
    }
    .club-header.expanded .club-toggle { transform: rotate(180deg); }
    .club-content {
      padding: 0 1.75rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
    }
    .club-content.expanded {
      padding: 1.75rem;
      max-height: 2000px;
    }
    .club-description {
      margin-bottom: 1.5rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .benefit-list {
      list-style: none;
      margin: 1.5rem 0;
    }
    .benefit-list li {
      margin-bottom: 1.5rem;
      padding-left: 2.5rem;
      position: relative;
      line-height: 1.6;
    }
    .benefit-list li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      color: var(--red);
      font-size: 1.2rem;
    }
    .benefit-title {
      font-weight: 700;
      color: var(--blue);
      display: block;
      margin-bottom: 0.35rem;
      font-size: 1.05rem;
    }
    .final-note {
      background: linear-gradient(135deg, var(--yellow-light), var(--bg));
      padding: 1.5rem;
      border-radius: var(--radius);
      border-left: 5px solid var(--yellow);
      font-style: italic;
      color: var(--text);
      margin-top: 1.5rem;
      position: relative;
    }
    .final-note::before {
      content: '"';
      font-size: 3rem;
      color: var(--yellow);
      position: absolute;
      top: -10px;
      left: 10px;
      opacity: 0.3;
    }
    .clubs-closing {
      max-width: 820px;
      margin: 2.75rem auto 0;
      text-align: center;
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border);
    }

    /* Gallery */
    .gallery { background: var(--bg-alt); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: 1.5rem;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
      box-shadow: var(--shadow);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(29, 78, 216, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay i {
      color: white;
      font-size: 2.5rem;
    }

    /* Events */
    .events { background: var(--bg); }
    .events-timeline {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }
    .event-item {
      display: flex;
      gap: 2rem;
      background: var(--card-bg);
      padding: 2rem;
      border-radius: var(--radius);
      border-left: 5px solid var(--yellow);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .event-item:hover { transform: translateX(10px); }
    .event-date {
      background: linear-gradient(135deg, var(--blue), var(--red));
      color: white;
      padding: 1.5rem;
      border-radius: var(--radius);
      text-align: center;
      min-width: 100px;
      height: fit-content;
    }
    .event-date .day { font-size: 2.5rem; font-weight: 800; display: block; }
    .event-date .month { font-size: 1rem; text-transform: uppercase; }
    .event-details h3 {
      font-family: var(--font-heading);
      margin-bottom: 0.5rem;
      color: var(--blue);
    }
    .event-details p { color: var(--text-muted); margin-bottom: 0.5rem; }
    .event-tag {
      display: inline-block;
      background: var(--yellow-light);
      color: #0f172a;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 0.5rem;
    }

    /* Teachers */
    .teachers { background: var(--bg-alt); }
    .teachers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
      gap: 2.5rem;
    }
    .teacher-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
    }
    .teacher-card:hover { transform: translateY(-10px); }
    .teacher-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: top;
      background: linear-gradient(145deg, var(--red-light), #fff);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 2.75rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 0.04em;
    }
    [data-theme="dark"] .teacher-img {
      background: linear-gradient(145deg, #7f1d1d, #1e293b);
      color: #fca5a5;
    }
    .testimonial-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      margin: 0 auto 1.25rem;
      background: var(--red-light);
      color: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.25rem;
      border: 3px solid var(--yellow);
    }
    .teacher-info { padding: 2rem; }
    .teacher-info h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      margin-bottom: 0.25rem;
    }
    .teacher-role {
      color: var(--red);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .teacher-bio { color: var(--text-muted); font-size: 0.95rem; }
    .teacher-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .teacher-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      transition: var(--transition);
    }
    .teacher-social a:hover {
      background: var(--blue);
      color: white;
      transform: translateY(-3px);
    }

    /* FAQ */
    .faq { background: var(--bg); }
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .faq-item {
      background: var(--card-bg);
      border: 2px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover { border-color: var(--blue); }
    .faq-question {
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .faq-question i {
      color: var(--yellow);
      transition: transform 0.3s;
    }
    .faq-item.active .faq-question i { transform: rotate(180deg); }
    .faq-answer {
      padding: 0 2rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .faq-item.active .faq-answer {
      padding: 0 2rem 1.5rem;
      max-height: 500px;
    }

    /* Testimonials */
    .testimonials { background: var(--bg-alt); }
    .testimonial-slider {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }
    .testimonial-slide {
      background: var(--card-bg);
      padding: 3rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      display: none;
      animation: fadeIn 0.5s;
    }
    .testimonial-slide.active { display: block; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .testimonial-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1.5rem;
      border: 4px solid var(--yellow);
    }
    .testimonial-text {
      font-size: 1.25rem;
      font-style: italic;
      color: var(--text);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    .testimonial-author {
      font-weight: 700;
      color: var(--blue);
      font-size: 1.1rem;
    }
    .testimonial-role { color: var(--text-muted); }
    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }
    .slider-btn {
      background: var(--red);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.25rem;
      transition: var(--transition);
    }
    .slider-btn:hover { background: #b91c1c; transform: scale(1.1); }

    /* Contact */
    .contact { background: var(--bg); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .contact-card {
      background: var(--card-bg);
      padding: 2rem;
      border-radius: var(--radius);
      border: 2px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      transition: var(--transition);
    }
    .contact-card:hover {
      border-color: var(--blue);
      transform: translateX(5px);
    }
    .contact-icon {
      font-size: 2rem;
      color: var(--yellow);
      background: var(--blue-light);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .contact-details h3 {
      font-family: var(--font-heading);
      margin-bottom: 0.5rem;
    }
    .contact-details p { color: var(--text-muted); margin-bottom: 0.25rem; }
    .contact-details a {
      color: var(--blue);
      text-decoration: none;
      transition: var(--transition);
    }
    .contact-details a:hover { color: var(--red); }
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    .social-links a {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--yellow));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      transition: var(--transition);
    }
    .social-links a:hover {
      transform: translateY(-5px) rotate(10deg);
      box-shadow: 0 10px 20px -5px rgb(0 0 0 / 0.2);
    }
    .contact-form {
      background: var(--card-bg);
      padding: 2.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 2px solid var(--border);
    }
    .form-group { margin-bottom: 1.5rem; }
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--text);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg);
      color: var(--text);
      font-family: inherit;
      font-size: 1rem;
      transition: var(--transition);
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px var(--blue-light);
    }
    .form-group textarea { min-height: 150px; resize: vertical; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .submit-btn {
      width: 100%;
      padding: 1.25rem;
      font-size: 1.1rem;
      background: linear-gradient(135deg, var(--red), #b91c1c);
      color: white;
      border: none;
      border-radius: var(--radius);
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
    }
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px -5px rgb(0 0 0 / 0.3);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: white;
      padding: 5rem 2rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto 3rem;
    }
    .footer-col h4 {
      margin-bottom: 1.5rem;
      color: var(--yellow);
      font-family: var(--font-heading);
      font-size: 1.25rem;
      position: relative;
      padding-bottom: 0.75rem;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .footer-logo-img {
      height: 2.25rem;
      width: auto;
      max-width: 160px;
      object-fit: contain;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--red);
    }
    .footer-col p { color: #94a3b8; line-height: 1.8; margin-bottom: 1rem; }
    .footer-col a {
      color: #94a3b8;
      text-decoration: none;
      display: block;
      margin-bottom: 0.75rem;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-col a:hover {
      color: var(--yellow);
      padding-left: 5px;
    }
    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid #334155;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      color: #64748b;
    }
    .footer-bottom a { color: var(--yellow); text-decoration: none; }

    /* Brand intro — books + tools assemble into wordmark */
    html.intro-skip body.intro-pending {
      overflow: auto;
    }
    html.intro-skip .brand-intro {
      display: none !important;
    }
    html.intro-skip body.intro-pending .hero-intro > *,
    html.intro-skip body.intro-pending .hero-slider.hero-media-in {
      opacity: 1;
      animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    html.intro-skip body.intro-pending .hero-slider.hero-media-in {
      animation: fadeScale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    }
    .brand-intro {
      position: fixed;
      inset: 0;
      z-index: 5000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      opacity: 1;
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
    }
    .brand-intro[hidden],
    .brand-intro.is-done {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .brand-intro[hidden] {
      display: none !important;
    }
    .brand-intro-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 45%, rgb(220 38 38 / 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgb(29 78 216 / 0.2), transparent 50%),
        linear-gradient(160deg, #0b1220 0%, #111827 45%, #1a0f12 100%);
    }
    .brand-intro-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.35;
      mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
    }
    .brand-intro-skip {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      z-index: 2;
      border: 1px solid rgb(255 255 255 / 0.25);
      background: rgb(15 23 42 / 0.45);
      color: #f8fafc;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      cursor: pointer;
      backdrop-filter: blur(8px);
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .brand-intro-skip:hover {
      background: rgb(220 38 38 / 0.85);
      border-color: transparent;
    }
    .brand-intro-stage {
      position: relative;
      z-index: 1;
      width: min(92vw, 720px);
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brand-intro-icons {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .intro-icon {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 3.1rem;
      height: 3.1rem;
      margin: -1.55rem 0 0 -1.55rem;
      display: grid;
      place-items: center;
      border-radius: 14px;
      font-size: 1.35rem;
      color: #fff;
      box-shadow: 0 12px 28px rgb(0 0 0 / 0.35);
      opacity: 0;
      transform: translate(var(--sx), var(--sy)) rotate(var(--rot)) scale(0.85);
      animation: introIconConverge 1.55s cubic-bezier(0.22, 1, 0.36, 1) var(--delay) forwards;
    }
    .intro-from-left {
      background: linear-gradient(145deg, #1d4ed8, #1e3a8a);
    }
    .intro-from-right {
      background: linear-gradient(145deg, #dc2626, #991b1b);
    }
    .intro-from-right:nth-child(6) {
      background: linear-gradient(145deg, #f59e0b, #b45309);
      color: #111827;
    }
    @keyframes introIconConverge {
      0% {
        opacity: 0;
        transform: translate(var(--sx), var(--sy)) rotate(var(--rot)) scale(0.7);
      }
      18% { opacity: 1; }
      62% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
      }
      100% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.35);
        filter: blur(4px);
      }
    }
    .brand-intro-wordmark {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 1rem;
    }
    .brand-intro-logo {
      width: 72px;
      height: auto;
      margin: 0 auto 1.1rem;
      opacity: 0;
      transform: scale(0.8);
      animation: introLogoIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.35s forwards;
      filter: drop-shadow(0 8px 20px rgb(0 0 0 / 0.35));
    }
    @keyframes introLogoIn {
      to { opacity: 1; transform: scale(1); }
    }
    .brand-intro-title,
    .brand-intro-sub {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.02em;
      margin: 0;
      line-height: 1;
      font-family: var(--font-heading);
      font-weight: 800;
      letter-spacing: 0.02em;
      color: #fff;
    }
    .brand-intro-title {
      font-size: clamp(2.4rem, 8vw, 4.4rem);
    }
    .brand-intro-sub {
      margin-top: 0.55rem;
      font-size: clamp(1.15rem, 3.6vw, 1.85rem);
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #fbbf24;
    }
    .intro-letter {
      display: inline-block;
      opacity: 0;
      transform: translateY(18px) scale(0.7);
      filter: blur(8px);
      animation: introLetterForm 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(1.45s + var(--li) * 0.055s) forwards;
    }
    .intro-apos {
      margin: 0 -0.05em;
    }
    @keyframes introLetterForm {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }
    .brand-intro-tagline {
      margin-top: 1.15rem;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgb(248 250 252 / 0.72);
      opacity: 0;
      animation: introTagIn 0.6s ease 2.35s forwards;
    }
    @keyframes introTagIn {
      to { opacity: 1; }
    }
    body.intro-pending {
      overflow: hidden;
    }
    body.intro-pending .hero-intro > *,
    body.intro-pending .hero-slider.hero-media-in {
      animation: none !important;
      opacity: 0;
    }
    body.intro-complete .hero-intro > * {
      opacity: 0;
      animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    body.intro-complete .hero-intro > *:nth-child(1) { animation-delay: 0.08s; }
    body.intro-complete .hero-intro > *:nth-child(2) { animation-delay: 0.2s; }
    body.intro-complete .hero-intro > *:nth-child(3) { animation-delay: 0.32s; }
    body.intro-complete .hero-intro > *:nth-child(4) { animation-delay: 0.44s; }
    body.intro-complete .hero-intro > *:nth-child(5) { animation-delay: 0.56s; }
    body.intro-complete .hero-slider.hero-media-in {
      animation: fadeScale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    }

    @media (max-width: 640px) {
      .intro-icon {
        width: 2.45rem;
        height: 2.45rem;
        margin: -1.225rem 0 0 -1.225rem;
        font-size: 1.05rem;
        border-radius: 12px;
      }
      .brand-intro-logo { width: 56px; }
      .brand-intro-sub { letter-spacing: 0.16em; }
      .brand-intro-skip { top: 0.85rem; right: 0.85rem; font-size: 0.72rem; padding: 0.45rem 0.85rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .brand-intro { display: none !important; }
      body.intro-pending {
        overflow: auto;
      }
      body.intro-pending .hero-intro > *,
      body.intro-pending .hero-slider.hero-media-in {
        opacity: 1;
        animation: none !important;
      }
    }

    /* Animations */
    @keyframes riseIn {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeScale {
      from { opacity: 0; transform: scale(0.96); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes underlineGrow {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes softPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 10px 28px rgb(37 211 102 / 0.45); }
      50% { transform: scale(1.05); box-shadow: 0 14px 34px rgb(37 211 102 / 0.6); }
    }
    @keyframes slideFade {
      from { opacity: 0; transform: translateX(-14px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-item {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-intro > * {
      opacity: 0;
      animation: riseIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero-intro > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-intro > *:nth-child(2) { animation-delay: 0.22s; }
    .hero-intro > *:nth-child(3) { animation-delay: 0.34s; }
    .hero-intro > *:nth-child(4) { animation-delay: 0.46s; }
    .hero-intro > *:nth-child(5) { animation-delay: 0.58s; }
    .hero-slider.hero-media-in {
      animation: fadeScale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
    }

    .section-title.visible::after {
      animation: underlineGrow 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
    }

    .program-card,
    .fee-card,
    .feature-card,
    .club-card,
    .teacher-card,
    .event-item,
    .gallery-item,
    .contact-card {
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .btn {
      transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }
    .btn:active { transform: translateY(0) scale(0.98); }

    .whatsapp-btn {
      animation: softPulse 2.8s ease-in-out infinite;
    }
    .whatsapp-btn:hover {
      animation: none;
    }

    .event-item.visible {
      animation: slideFade 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .fade-in, .reveal-item, .hero-intro > * {
        opacity: 1;
        transform: none;
      }
      .whatsapp-btn { animation: none; }
      .brand-intro { display: none !important; }
      body.intro-pending {
        overflow: auto;
      }
      body.intro-pending .hero-intro > *,
      body.intro-pending .hero-slider.hero-media-in,
      body.intro-complete .hero-intro > *,
      body.intro-complete .hero-slider.hero-media-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        filter: none !important;
      }
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3000;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
    }
    .lightbox.active { opacity: 1; pointer-events: all; }
    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      border-radius: var(--radius);
    }
    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: white;
      font-size: 3rem;
      cursor: pointer;
      background: none;
      border: none;
      transition: var(--transition);
    }
    .lightbox-close:hover { color: var(--red); transform: rotate(90deg); }

    /* WhatsApp */
    .whatsapp-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 1500;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.85rem;
      box-shadow: 0 10px 28px rgb(37 211 102 / 0.45);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
    }
    .whatsapp-btn:hover {
      transform: scale(1.08);
      color: #fff;
      box-shadow: 0 14px 32px rgb(37 211 102 / 0.55);
    }

    /* Map + form alerts */
    .map-embed {
      margin-top: 1.25rem;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-alt);
    }
    .map-embed iframe {
      display: block;
      width: 100%;
      height: 220px;
      border: 0;
    }
    .map-note, .contact-note {
      font-size: 0.82rem;
      color: var(--text-muted);
      padding: 0.65rem 0.85rem;
      margin: 0;
      line-height: 1.45;
    }
    .map-note code { font-size: 0.78rem; }
    .form-alert {
      grid-column: 1 / -1;
      padding: 0.9rem 1rem;
      border-radius: 8px;
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 0.95rem;
    }
    .form-alert.success {
      background: #ecfdf5;
      color: #065f46;
      border: 1px solid #a7f3d0;
    }
    .form-alert.error {
      background: #fef2f2;
      color: #991b1b;
      border: 1px solid #fecaca;
    }
    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0;
      width: 0;
      overflow: hidden;
    }
    .contact-grid { position: relative; }

    .header-actions {
      display: none;
      align-items: center;
      gap: 0.4rem;
    }
    .theme-toggle-mobile { display: none; }

    /* Responsive */
    @media (max-width: 1100px) {
      nav ul { gap: 0.15rem 0.7rem; }
      nav a { font-size: 0.8rem; }
      .btn-yellow { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
    }

    @media (max-width: 1024px) {
      .hero-content, .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .hero-slider { height: min(52vw, 360px); order: -1; }
      .clubs-grid { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
      .about-features { grid-template-columns: 1fr 1fr; }
      .about-img { height: 320px; }
      .fee-actions { flex-direction: column; align-items: stretch; }
      .fee-actions .btn { width: 100%; }
    }

    @media (max-width: 768px) {
      :root { --topbar-h: 40px; }

      .emergency-banner {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1.1rem;
        padding: 0.45rem 0.85rem;
        font-size: 0.72rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
      }
      .emergency-banner::-webkit-scrollbar { display: none; }
      .banner-hours { display: none; }

      header { top: var(--topbar-h); }
      .nav-container {
        padding: 0.55rem 1rem;
        gap: 0.5rem;
      }
      .logo-img { height: 2.15rem; }
      .logo { font-size: 1rem; gap: 0.4rem; }
      .header-actions { display: flex; }
      .theme-toggle-mobile { display: inline-flex; }
      .theme-toggle-desktop { display: none; }
      .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        border: 1px solid var(--border);
        background: var(--bg-alt);
        font-size: 1.15rem;
      }
      .hamburger[aria-expanded="true"] {
        background: var(--red-light);
        color: var(--red);
        border-color: rgb(220 38 38 / 0.35);
      }

      nav ul {
        position: fixed;
        top: calc(var(--topbar-h) + 58px);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--bg);
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0.75rem 1rem 1.25rem;
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - var(--topbar-h) - 58px);
        overflow-y: auto;
        align-items: stretch;
        border-bottom: 1px solid var(--border);
        z-index: 999;
      }
      nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      nav ul li { border-bottom: 1px solid var(--border); }
      nav ul li:last-child { border-bottom: none; }
      nav a {
        display: block;
        padding: 0.9rem 0.35rem;
        font-size: 1rem;
        color: var(--text);
      }
      nav a::after { display: none; }
      .btn-group {
        flex-direction: column;
        width: 100%;
        padding: 0.85rem 0 0.25rem;
        gap: 0.65rem;
      }
      .btn-group .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
      }

      body.nav-open { overflow: hidden; }

      .hero {
        margin-top: var(--topbar-h);
        min-height: auto;
        padding: 5.25rem 1rem 2.5rem;
      }
      .hero-content { gap: 1.75rem; }
      .hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.25rem);
        margin-bottom: 0.85rem;
      }
      .hero p {
        font-size: 0.98rem;
        margin-bottom: 1.25rem;
      }
      .hero-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0.9rem;
      }
      .cta-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
      }
      .cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
      }
      .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem 1rem;
        margin-top: 1.75rem;
        padding-top: 1.35rem;
      }
      .hero-stat h3 { font-size: 1.4rem; }
      .hero-slider {
        height: 240px;
        border-radius: 12px;
      }
      .hero-slider-btn {
        opacity: 0.92;
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
      }
      .hero-slider-prev { left: 8px; }
      .hero-slider-next { right: 8px; }
      .slider-dots { bottom: 12px; }

      section { padding: 3rem 1rem; }
      .section-title { margin-bottom: 2.25rem; }
      .section-title h2 { font-size: clamp(1.55rem, 6vw, 2rem); }
      .section-title p { font-size: 0.95rem; }

      .about-grid { gap: 1.75rem; }
      .about-img { height: 260px; }
      .about-heading { font-size: 1.35rem; }
      .about-features { grid-template-columns: 1fr; gap: 0.85rem; }

      .program-content { padding: 1.35rem; }
      .program-img, .program-img-photo { height: 180px; }

      .stats { padding: 3rem 1rem; }
      .stats-grid { gap: 1rem; }
      .stat-item { padding: 1.25rem 1rem; }
      .stat-item h3 { font-size: 2rem; }
      .stat-item p { font-size: 0.9rem; }

      .fee-cards { gap: 1.25rem; margin-top: 1.75rem; }
      .fee-card { padding: 1.5rem 1.2rem; }
      .fee-section .fee-card h3 { padding-right: 0; margin-top: 0.35rem; }
      .fee-card.featured::before {
        top: 12px;
        right: 12px;
        font-size: 0.62rem;
        padding: 0.25rem 0.5rem;
      }
      .fee-price-row .fee-price-amount {
        font-size: 1.2rem;
        word-break: break-word;
      }
      .fee-price-row { padding: 0.75rem 0.85rem; }
      .fee-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.75rem;
      }
      .fee-actions .btn { width: 100%; }

      .modal { padding: 1.25rem; max-height: 90vh; border-radius: 12px; }
      .modal-overlay { padding: 0.75rem; }
      .modal-header h3 { font-size: 1.2rem; }
      .fee-table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .fee-table th, .fee-table td { padding: 0.75rem 0.65rem; font-size: 0.85rem; white-space: nowrap; }

      .club-image { height: 200px; }
      .club-slider { height: 200px; }
      .club-slider-btn { opacity: 0.92; width: 32px; height: 32px; }
      .club-header { padding: 1.15rem; gap: 0.75rem; }
      .club-title { font-size: 1.15rem; }
      .club-icon { width: 48px; height: 48px; font-size: 1.35rem; }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
      }

      .event-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
      }
      .event-item:hover { transform: none; }
      .event-date { min-width: 0; width: fit-content; padding: 0.85rem 1.1rem; }

      .teachers-grid { gap: 1.25rem; }
      .teacher-img { height: 160px; font-size: 2.1rem; }
      .teacher-info { padding: 1.35rem; }

      .faq-question { padding: 1.1rem 1rem; font-size: 1rem; gap: 0.75rem; }
      .faq-answer { font-size: 0.95rem; }
      .faq-item.active .faq-answer { padding: 0 1rem 1.1rem; }

      .testimonial-slide { padding: 1.75rem 1.25rem; }
      .testimonial-text { font-size: 1.05rem; }

      .contact-grid { gap: 1.75rem; }
      .contact-card { padding: 1.25rem; gap: 1rem; }
      .contact-form { padding: 1.35rem; }
      .map-embed iframe { height: 200px; }

      .footer-grid { gap: 2rem; margin-bottom: 2rem; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
      }

      .whatsapp-btn {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 14px;
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
      }

      .form-row { grid-template-columns: 1fr; }
      .fee-card.featured { transform: none; }
    }

    @media (max-width: 480px) {
      .logo-text { display: none; }
      .hero-stats { gap: 0.75rem; }
      .hero-slider { height: 210px; }
      .gallery-grid { gap: 0.55rem; }
      .stat-item h3 { font-size: 1.75rem; }
      .btn { font-size: 0.88rem; }
    }

    @media (max-width: 360px) {
      .fee-price-row .fee-price-amount { font-size: 1.05rem; }
      .nav-container { padding: 0.5rem 0.75rem; }
    }

@media print {
  header, footer, .whatsapp-btn, .emergency-banner, .theme-toggle, .hamburger, .header-actions { display: none !important; }
  .modal-overlay { position: relative; opacity: 1; pointer-events: all; }
  .modal { box-shadow: none; max-height: none; }
}
