<style>
    /* Remove the HTML <style> wrapper — this file should contain only CSS */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --accent: #FFFFFF;
      --accent-dim: rgba(255,255,255,0.15);
      --accent-text: #0E0E0E;
      --dark: #0E0E0E;
      --mid: #1A1A1A;
      --light-gray: #888;
      --white: #F4F4F0;
    }

    body {
      background: var(--dark);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      position: sticky;
      top: 0;
      background: rgba(14,14,14,0.92);
      backdrop-filter: blur(8px);
      z-index: 100;
      border-bottom: 1px solid #2a2a2a;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 3px;
      color: var(--accent);
      line-height: 1.1;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--white);
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 300;
      transition: color 0.2s;
      cursor: pointer;
    }

    .nav-links a:hover { color: var(--accent); }

    .hero {
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 4rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 50%, #111 100%);
    }

    .hero-shape {
      position: absolute;
      top: -80px;
      right: -60px;
      width: 55vw;
      height: 85vh;
      background: var(--accent);
      clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
      opacity: 0.04;
    }

    .hero-shape2 {
      position: absolute;
      bottom: 60px;
      left: 25vw;
      width: 3px;
      height: 160px;
      background: var(--accent);
      opacity: 0.3;
    }

    .hero-tagline {
      position: absolute;
      top: 3.5rem;
      right: 3rem;
      writing-mode: vertical-rl;
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--light-gray);
      font-weight: 300;
    }

    .hero-content { position: relative; z-index: 2; max-width: 750px; }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 1.2rem;
      font-weight: 400;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 12vw, 10rem);
      line-height: 0.9;
      letter-spacing: -1px;
      margin-bottom: 1.5rem;
    }

    .hero-title span { color: var(--accent); display: block; }

    .hero-desc {
      font-size: 1rem;
      font-weight: 300;
      color: #aaa;
      max-width: 400px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .hero-ctas { display: flex; gap: 1rem; }

    .btn-primary {
      background: var(--accent);
      color: var(--accent-text);
      border: none;
      padding: 1rem 2.2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.15s, opacity 0.15s;
    }

    .btn-primary:hover { transform: translateY(-2px); opacity: 0.88; }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid #444;
      padding: 1rem 2.2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 300;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      right: 3rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: #555;
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 40px;
      height: 1px;
      background: #444;
      position: relative;
      overflow: hidden;
    }

    .scroll-line::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--accent);
      animation: scanline 2s ease-in-out infinite;
    }

    @keyframes scanline {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    section { padding: 6rem 3rem; }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 1rem;
      font-weight: 400;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1;
      margin-bottom: 3rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text p {
      font-weight: 300;
      line-height: 1.8;
      color: #aaa;
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .stat-card {
      background: var(--mid);
      padding: 1.8rem;
      border-left: 3px solid rgba(255,255,255,0.3);
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--accent);
      line-height: 1;
      display: block;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--light-gray);
      margin-top: 0.4rem;
      font-weight: 300;
    }

    .styles-section { background: var(--mid); }

    .styles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2px;
    }

    .style-card {
      padding: 3rem 2rem;
      background: #111;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: background 0.3s;
    }

    .style-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .style-card:hover { background: #161616; }
    .style-card:hover::before { transform: scaleX(1); }

    .style-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      display: block;
      color: rgba(255,255,255,0.35);
      font-family: 'Bebas Neue', sans-serif;
    }

    .style-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }

    .style-desc {
      font-size: 0.82rem;
      color: #777;
      line-height: 1.6;
      font-weight: 300;
    }

    .schedule-section { }

    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .class-card {
      border: 1px solid #2a2a2a;
      padding: 2rem;
      transition: border-color 0.2s;
    }

    .class-card:hover { border-color: rgba(255,255,255,0.3); }

    .class-level {
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.08);
      display: inline-block;
      padding: 3px 10px;
      margin-bottom: 1rem;
    }

    .class-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }

    .class-time {
      font-size: 0.82rem;
      color: #777;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .class-meta {
      display: flex;
      gap: 1.5rem;
      font-size: 0.75rem;
      color: #555;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .events-section { background: var(--mid); }

    .events-list { display: flex; flex-direction: column; }

    .event-row {
      display: grid;
      grid-template-columns: 80px 1fr auto;
      align-items: center;
      gap: 2rem;
      padding: 2rem 0;
      border-bottom: 1px solid #2a2a2a;
      cursor: pointer;
      transition: background 0.2s;
    }

    .event-row:hover { background: rgba(255,255,255,0.02); }

    .event-date {
      text-align: center;
      border: 1px solid #333;
      padding: 0.8rem;
    }

    .event-month {
      font-size: 0.6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .event-day {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      line-height: 1.1;
      color: var(--white);
    }

    .event-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      margin-bottom: 0.3rem;
    }

    .event-info p {
      font-size: 0.8rem;
      color: #777;
      font-weight: 300;
    }

    .event-tag {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #0E0E0E;
      background: var(--accent);
      padding: 4px 12px;
      white-space: nowrap;
    }

    .event-tag-free {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 4px 12px;
      white-space: nowrap;
    }

    .gallery-section { }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    .gallery-item {
      aspect-ratio: 1;
      overflow: hidden;
      cursor: pointer;
    }


    .gallery-item-inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--mid);
        position: relative;
        transition: transform 0.4s;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .gallery-item:hover .gallery-item-inner { transform: scale(1.04); }

    .gallery-placeholder {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 2px;
      color: #333;
      text-transform: uppercase;
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.3s;
    }

    .gallery-item:hover .gallery-overlay { background: rgba(255,255,255,0.05); }

    .footer {
      background: #080808;
      padding: 4rem 3rem 2rem;
      border-top: 1px solid #1e1e1e;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 1rem;
      display: block;
    }

    .footer-desc {
      font-size: 0.85rem;
      color: #555;
      font-weight: 300;
      line-height: 1.7;
    }

    .footer-heading {
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 1.2rem;
    }

    .footer-links { list-style: none; }

    .footer-links li {
      margin-bottom: 0.6rem;
      font-size: 0.85rem;
      font-weight: 300;
      color: #888;
      cursor: pointer;
      transition: color 0.2s;
    }

    .footer-links li:hover { color: var(--accent); }

    .footer-bottom {
      border-top: 1px solid #1e1e1e;
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      font-size: 0.72rem;
      color: #444;
      font-weight: 300;
      letter-spacing: 1px;
    }

    html { scroll-behavior: smooth; }
  </style>