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

    :root {
      --accent: #BA994E;
      --accent-light: #d4b06a;
      --dark: #050505;
      --dark2: #0d0d0d;
      --dark3: #181818;
      --mid: #242424;
      --text: #e0e0e0;
      --text-muted: #888;
      --white: #fff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.65;
    }

    h1, h2, h3, h4 {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #222;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      transition: background 0.3s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 44px;
      width: auto;
    }

    .logo-text {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.1em;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 6px;
    }

    nav ul a {
      display: block;
      padding: 6px 12px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      color: var(--text);
      transition: color 0.2s;
    }

    nav ul a:hover, nav ul a.active { color: var(--accent); }

    .social-links {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .social-links a {
      color: var(--text-muted);
      transition: color 0.2s;
      font-size: 0.9rem;
    }

    .social-links a:hover { color: var(--accent); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: rgba(10,10,10,0.98);
      z-index: 999;
      padding: 24px 5% 32px;
    }

    .mobile-nav.open { display: block; }

    .mobile-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-nav ul a {
      display: block;
      padding: 10px 0;
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      border-bottom: 1px solid #222;
      transition: color 0.2s;
    }

    .mobile-nav ul a:hover { color: var(--accent); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 5% 60px;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(186,153,78,0.07) 0%, transparent 70%),
                  radial-gradient(ellipse at 20% 80%, rgba(186,153,78,0.04) 0%, transparent 60%);
    }

    .hero-inner {
      max-width: 860px;
      position: relative;
    }

    .hero-logo {
      width: min(560px, 90%);
      margin: 0 auto 36px;
    }

    .hero-hashtag {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(0.8rem, 2vw, 1rem);
      color: var(--accent);
      letter-spacing: 0.2em;
      margin-bottom: 12px;
    }

    .hero-title {
      font-size: clamp(2rem, 6vw, 3.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-title span { color: var(--accent); }

    .hero-sub {
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto 40px;
    }

    .btn {
      display: inline-block;
      padding: 13px 36px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      border: 2px solid var(--accent);
      color: var(--white);
      background: transparent;
      cursor: pointer;
      transition: background 0.25s, color 0.25s;
    }
    .btn:hover { background: var(--accent); color: var(--dark); }
    .btn-gold { border-color: var(--accent); }
    .btn-gold:hover { background: var(--accent); color: var(--dark); }
    .btn-fill { background: var(--accent); color: var(--dark); }
    .btn-fill:hover { background: transparent; color: var(--white); }

    .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ── SECTIONS ── */
    section { padding: 90px 5%; }

    .section-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 20px;
    }

    .section-title span { color: var(--accent); }

    .divider {
      width: 60px;
      height: 3px;
      background: var(--accent);
      margin: 0 0 32px;
    }

    .divider-center { margin: 0 auto 32px; }

    .text-center { text-align: center; }

    /* ── ABOUT ── */
    #about { background: var(--dark); }

    .about-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-img {
      position: relative;
    }

    .about-img img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      filter: grayscale(20%);
    }

    .about-img::after {
      content: '';
      position: absolute;
      bottom: -12px;
      right: -12px;
      width: 60%;
      height: 60%;
      border: 2px solid var(--accent);
      z-index: -1;
    }

    .coach-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.5rem;
      color: var(--white);
      margin-top: 16px;
    }

    .coach-title {
      color: var(--accent);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
    }

    .team-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--mid);
      padding: 8px 16px;
      margin-top: 24px;
    }

    .team-badge-num {
      font-family: 'Oswald', sans-serif;
      font-size: 1.8rem;
      color: var(--accent);
      font-weight: 700;
    }

    .team-badge-text {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .timeline {
      margin-top: 32px;
      border-left: 2px solid var(--mid);
      padding-left: 24px;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 28px;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -29px;
      top: 6px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
    }

    .timeline-year {
      font-family: 'Oswald', sans-serif;
      color: var(--accent);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
    }

    .timeline-heading {
      font-family: 'Oswald', sans-serif;
      color: var(--white);
      font-size: 1rem;
      margin: 4px 0;
    }

    .timeline-text {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* ── LOCATIONS ── */
    #locations { background: var(--dark2); }

    .locations-tabs { max-width: 1100px; margin: 0 auto; }

    .tab-buttons {
      display: flex;
      gap: 0;
      border-bottom: 2px solid var(--mid);
      margin-bottom: 48px;
    }

    .tab-btn {
      padding: 12px 40px;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.1em;
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .location-features {
      list-style: none;
      margin-top: 16px;
    }

    .location-features li {
      padding: 8px 0;
      border-bottom: 1px solid var(--mid);
      font-size: 0.9rem;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .location-features li::before {
      content: '▸';
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .location-map-btn { margin-top: 28px; display: inline-block; }

    .hours-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.84rem;
    }

    .hours-table td { padding: 5px 0; color: var(--text-muted); }
    .hours-table td:first-child { color: var(--white); width: 140px; }

    /* ── GALLERY ── */
    #gallery { background: var(--dark); }

    .gallery-filter {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 7px 22px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      background: transparent;
      border: 1px solid var(--mid);
      color: var(--text-muted);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }

    .filter-btn:hover, .filter-btn.active {
      border-color: var(--accent);
      color: var(--accent);
    }

    .gallery-grid {
      max-width: 1200px;
      margin: 0 auto;
      columns: 4;
      column-gap: 6px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 6px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease, filter 0.3s;
      filter: brightness(0.88);
    }

    .gallery-item:hover img {
      transform: scale(1.04);
      filter: brightness(1);
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(186,153,78,0);
      transition: background 0.3s;
    }

    .gallery-item:hover::after { background: rgba(186,153,78,0.08); }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.95);
      align-items: center;
      justify-content: center;
    }

    #lightbox.open { display: flex; }

    #lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      display: block;
    }

    #lightbox-close {
      position: absolute;
      top: 20px; right: 28px;
      font-size: 2rem;
      color: var(--white);
      cursor: pointer;
      background: none;
      border: none;
      opacity: 0.7;
      transition: opacity 0.2s;
      line-height: 1;
    }

    #lightbox-close:hover { opacity: 1; }

    #lightbox-prev, #lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(186,153,78,0.12);
      border: 1px solid var(--accent);
      color: var(--accent);
      font-size: 1.4rem;
      padding: 12px 18px;
      cursor: pointer;
      transition: background 0.2s;
    }

    #lightbox-prev:hover, #lightbox-next:hover { background: rgba(186,153,78,0.28); }
    #lightbox-prev { left: 20px; }
    #lightbox-next { right: 20px; }

    /* ── ACADEMY ── */
    #academy { background: var(--dark2); }

    .academy-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .academy-badge {
      background: var(--accent);
      color: var(--dark);
      font-family: 'Oswald', sans-serif;
      padding: 4px 16px;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      display: inline-block;
      margin-bottom: 16px;
    }

    .info-card {
      background: var(--mid);
      padding: 24px;
      margin-top: 24px;
    }

    .info-card h4 {
      color: var(--accent);
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      margin-bottom: 12px;
    }

    .info-card p, .info-card a {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .info-card a:hover { color: var(--accent); }

    /* ── GROUP CLASSES ── */
    #classes { background: var(--dark); }

    .classes-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .class-card {
      background: var(--dark3);
      border: 1px solid var(--mid);
      padding: 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
    }

    .class-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
    }

    .class-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: var(--accent);
      transition: height 0.3s;
    }

    .class-card:hover::before { height: 100%; }

    .class-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .class-meta {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 14px;
    }

    .class-meta span {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .class-meta .meta-label { color: var(--accent); font-weight: 600; }

    .class-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .level-pill {
      display: inline-block;
      padding: 2px 10px;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      font-family: 'Oswald', sans-serif;
      border: 1px solid;
      margin-bottom: 14px;
    }

    .level-easy { border-color: #BA994E; color: #BA994E; }
    .level-mid { border-color: var(--accent); color: var(--accent); }
    .level-hard { border-color: #e05555; color: #e05555; }
    .level-all { border-color: var(--accent); color: var(--accent); }

    /* ── NEW MEMBERS ── */
    #members { background: var(--dark2); }

    .packages-grid {
      max-width: 1100px;
      margin: 0 auto 64px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .package-card {
      background: var(--dark3);
      padding: 44px 32px 36px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .package-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.4s ease;
    }

    .package-card:hover { background: #1e1a14; }
    .package-card:hover::after { width: 100%; }

    .package-icon {
      width: 52px;
      height: 52px;
      border: 1px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      flex-shrink: 0;
    }

    .package-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .package-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem;
      color: var(--white);
      letter-spacing: 0.06em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .package-desc {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 28px;
      flex: 1;
    }

    .package-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      color: var(--accent);
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
      transition: border-color 0.2s, gap 0.2s;
    }

    .package-cta:hover {
      border-bottom-color: var(--accent);
      gap: 14px;
    }

    .info-accordion {
      max-width: 1100px;
      margin: 0 auto;
    }

    .accordion-item {
      border-bottom: 1px solid var(--mid);
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      cursor: pointer;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.06em;
      color: var(--white);
      transition: color 0.2s;
    }

    .accordion-header:hover { color: var(--accent); }

    .accordion-icon {
      font-size: 1.2rem;
      color: var(--accent);
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .accordion-body {
      display: none;
      padding: 0 0 20px;
    }

    .accordion-body.open { display: block; }

    .accordion-body ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .accordion-body ul li {
      font-size: 0.88rem;
      color: var(--text-muted);
      padding-left: 16px;
      position: relative;
    }

    .accordion-body ul li::before {
      content: '✓';
      color: var(--accent);
      position: absolute;
      left: 0;
    }

    /* ── CONTACT ── */
    #contact { background: var(--dark2); }

    .contact-cards {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .contact-card {
      background: var(--dark3);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: background 0.3s;
    }

    .contact-card:hover { background: #1a1510; }

    .contact-card-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 20px;
    }

    .contact-card-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--accent);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-card-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      color: var(--white);
      letter-spacing: 0.06em;
      margin-bottom: 14px;
    }

    .contact-card-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .contact-card-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 24px;
    }

    .contact-card-links a {
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .contact-card-links a:hover { color: var(--accent); }

    .contact-hours {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--mid);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .contact-hours-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--accent);
    }

    .contact-hours span:last-child {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      border-top: 1px solid #1a1a1a;
      padding: 32px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--accent); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav ul, .social-links { display: none; }
      .hamburger { display: flex; }

      .about-grid, .academy-inner { grid-template-columns: 1fr; gap: 36px; }
      .about-img::after { display: none; }
      .location-grid { grid-template-columns: 1fr; gap: 36px; }

      .gallery-grid { columns: 2; }

      .packages-grid { grid-template-columns: 1fr 1fr; }
      .contact-cards { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      section { padding: 60px 5%; }
      .packages-grid { grid-template-columns: 1fr; }
      .gallery-grid { columns: 1; }
      footer { flex-direction: column; text-align: center; }
      .tab-btn { padding: 10px 20px; font-size: 0.85rem; }
      #lightbox-prev { left: 8px; }
      #lightbox-next { right: 8px; }
    }
