  :root {
    --navy-deep: #07182f;
    --navy: #0d2842;
    --navy-mid: #143352;
    --cyan: #3ec8e8;
    --cyan-soft: #5dd5ed;
    --cyan-glow: rgba(62, 200, 232, 0.18);
    --orange: #ed7a3f;
    --orange-light: #f4a072;
    --orange-deep: #d6612a;
    --orange-glow: rgba(237, 122, 63, 0.25);
    --cream: #faf6ed;
    --cream-warm: #f4ead4;
    --white: #ffffff;
    --ink: #0a1626;

    --display: 'Big Shoulders Display', sans-serif;
    --script: 'Sacramento', cursive;
    --body: 'Outfit', sans-serif;

    --container: 1280px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    background: var(--navy-deep);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 32px;
    transition: all 0.3s ease;
    background: rgba(7, 24, 47, 0);
  }
  .nav.scrolled {
    background: rgba(7, 24, 47, 0.92);
    backdrop-filter: blur(12px);
    padding: 10px 32px;
    border-bottom: 1px solid rgba(237, 122, 63, 0.2);
  }
  .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
  }
  .nav-logo img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .nav-logo:hover img { transform: rotate(-8deg) scale(1.05); }
  .nav-logo .brand-stack {
    display: flex; flex-direction: column; line-height: 1;
    font-family: var(--display);
  }
  .nav-logo .brand-stack .top {
    font-weight: 900; font-size: 18px; letter-spacing: 0.05em;
    color: var(--white); text-transform: uppercase;
  }
  .nav-logo .brand-stack .bot {
    font-size: 10px; color: var(--orange);
    letter-spacing: 0.28em; margin-top: 4px; font-weight: 700;
  }
  .nav-links {
    display: flex; gap: 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .nav-links a {
    position: relative;
    padding: 8px 0;
    color: var(--cream);
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 2px;
    height: 1px; background: var(--orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--orange-light); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    padding: 10px 22px;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all 0.2s ease;
    border: 1.5px solid var(--orange);
  }
  .nav-cta:hover {
    background: transparent;
    color: var(--orange-light);
    border-color: var(--orange-light);
  }
  .menu-toggle { display: none; }

  /* ============ HERO (aerial background, content stacked, no overlap) ============ */
  .hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }
  .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse 70% 60% at top right, rgba(237, 122, 63, 0.55), transparent 60%),
      radial-gradient(ellipse 60% 50% at bottom left, rgba(62, 200, 232, 0.18), transparent 55%),
      linear-gradient(105deg, rgba(7, 24, 47, 0.94) 0%, rgba(13, 40, 66, 0.75) 45%, rgba(7, 24, 47, 0.45) 100%);
  }
  .hero-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(250, 246, 237, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px 32px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 28px;
    font-weight: 500;
    opacity: 0;
    animation: rise 0.9s 0.1s ease forwards;
  }
  .eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--orange);
  }
  .hero h1 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(60px, 10vw, 156px);
    line-height: 0.86;
    letter-spacing: -0.01em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
    max-width: 14ch;
  }
  .hero h1 .line { display: block; opacity: 0; transform: translateY(40px); animation: rise 0.9s ease forwards; }
  .hero h1 .line:nth-child(1) { animation-delay: 0.2s; }
  .hero h1 .line:nth-child(2) { animation-delay: 0.35s; color: var(--orange); }
  .hero h1 .line:nth-child(3) { animation-delay: 0.5s; }
  .hero h1 .line .script {
    font-family: var(--script);
    font-weight: 400;
    font-size: 0.42em;
    text-transform: none;
    color: var(--cyan);
    display: inline-block;
    transform: translateY(-0.12em) rotate(-3deg);
    margin-left: 8px;
    letter-spacing: 0;
  }

  .hero-tag {
    display: inline-block;
    font-family: var(--script);
    font-size: clamp(36px, 4.5vw, 54px);
    color: var(--orange-light);
    line-height: 1;
    margin: 18px 0 28px;
    transform: rotate(-2deg);
    opacity: 0;
    animation: rise 0.9s 0.65s ease forwards;
  }
  .hero p.lead {
    max-width: 520px;
    font-size: 18px;
    color: rgba(250, 246, 237, 0.88);
    margin-bottom: 36px;
    opacity: 0;
    animation: rise 0.9s 0.8s ease forwards;
  }
  .hero-cta-row {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.9s 0.95s ease forwards;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(237, 122, 63, 0.45);
  }
  .btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(237, 122, 63, 0.55);
  }
  .btn-ghost {
    border-color: rgba(250, 246, 237, 0.35);
    color: var(--cream);
    background: rgba(7, 24, 47, 0.25);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    border-color: var(--orange-light);
    color: var(--orange-light);
  }

  /* Stats now in flow — no overlap possible */
  .hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 80px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.9s 1.15s ease forwards;
  }
  .stat .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 52px;
    line-height: 1;
    color: var(--orange);
  }
  .stat:nth-child(2) .num { color: var(--cyan); }
  .stat .num .plus { color: var(--cyan); }
  .stat:nth-child(2) .num .plus { color: var(--orange); }
  .stat .label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(250, 246, 237, 0.75);
    margin-top: 6px;
    font-weight: 500;
  }

  /* Scroll indicator */
  .scroll-cue {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(250, 246, 237, 0.5);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: bob 2.4s ease-in-out infinite;
  }
  .scroll-cue::after {
    content: '';
    width: 1px; height: 28px;
    background: linear-gradient(180deg, rgba(250, 246, 237, 0.5), transparent);
  }
  @keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade {
    to { opacity: 1; }
  }

  /* ============ MARQUEE ============ */
  .marquee {
    background: var(--navy);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(237, 122, 63, 0.2);
    border-bottom: 1px solid rgba(237, 122, 63, 0.2);
    position: relative;
  }
  .marquee-track {
    display: flex; gap: 60px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
  }
  .marquee-item {
    font-family: var(--display);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    display: flex; align-items: center; gap: 60px;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--orange);
    font-size: 16px;
  }
  @keyframes scroll {
    to { transform: translateX(-50%); }
  }

  /* ============ SPORTS SPLIT ============ */
  .sports-split {
    background: var(--navy);
    padding: 120px 32px;
    position: relative;
  }
  .section-eyebrow {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .section-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }
  .section-title .script {
    font-family: var(--script);
    font-weight: 400;
    color: var(--orange);
    text-transform: none;
    font-size: 0.55em;
    display: inline-block;
    transform: rotate(-3deg);
  }
  .section-sub {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 64px;
    color: rgba(250, 246, 237, 0.72);
    font-size: 17px;
  }

  .sport-cards {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .sport-card {
    position: relative;
    border-radius: 28px;
    padding: 56px 44px 48px;
    overflow: hidden;
    min-height: 460px;
    display: flex; flex-direction: column;
    transition: transform 0.4s ease;
  }
  .sport-card:hover { transform: translateY(-6px); }

  .sport-card.pickleball {
    background: linear-gradient(160deg, #1d4868, #0d2842);
    border: 1px solid rgba(62, 200, 232, 0.25);
  }
  .sport-card.muaythai {
    background: linear-gradient(160deg, #4a1f12, #1a1208);
    border: 1px solid rgba(237, 122, 63, 0.4);
  }
  .sport-card .silhouette {
    position: absolute;
    right: -10px; bottom: -20px;
    height: 320px;
    pointer-events: none;
  }

  .sport-card .number {
    font-family: var(--display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: rgba(250, 246, 237, 0.4);
    margin-bottom: 18px;
  }
  .sport-card h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: 64px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
    position: relative; z-index: 2;
  }
  .sport-card .script-tag {
    font-family: var(--script);
    font-size: 30px;
    color: var(--orange-light);
    margin-bottom: 24px;
    position: relative; z-index: 2;
  }
  .sport-card.pickleball .script-tag { color: var(--cyan-soft); }
  .sport-card p {
    color: rgba(250, 246, 237, 0.78);
    max-width: 320px;
    position: relative; z-index: 2;
    margin-bottom: 32px;
  }
  .sport-card .price-strip {
    display: flex; gap: 24px; flex-wrap: wrap;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(250, 246, 237, 0.15);
    position: relative; z-index: 2;
  }
  .price-strip .price-cell {
    display: flex; flex-direction: column; gap: 2px;
  }
  .price-cell .v {
    font-family: var(--display);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
  }
  .price-cell .l {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 246, 237, 0.55);
  }
  .sport-card .more-link {
    position: absolute;
    top: 56px; right: 44px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-light);
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    z-index: 2;
  }
  .sport-card.pickleball .more-link { color: var(--cyan-soft); }
  .sport-card .dot-pattern {
    position: absolute;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle at 1px 1px, var(--orange) 1.5px, transparent 0);
    background-size: 14px 14px;
    opacity: 0.4;
    pointer-events: none;
  }
  .sport-card.pickleball .dot-pattern {
    top: 130px; right: 140px;
    background-image: radial-gradient(circle at 1px 1px, var(--cyan) 1.5px, transparent 0);
  }
  .sport-card.muaythai .dot-pattern { bottom: 70px; right: 250px; }

  /* ============ ABOUT ============ */
  .about {
    background: var(--cream);
    color: var(--ink);
    padding: 140px 32px;
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute;
    top: 80px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-light), transparent 70%);
    opacity: 0.5;
  }
  .about::after {
    content: '';
    position: absolute;
    bottom: 60px; left: -80px;
    width: 200px; height: 200px;
    background-image: radial-gradient(circle at 1px 1px, var(--orange) 1.5px, transparent 0);
    background-size: 18px 18px;
    opacity: 0.25;
  }
  .about-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .about-eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .about-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--orange);
  }
  .about h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .about h2 .script {
    font-family: var(--script);
    font-weight: 400;
    color: var(--orange);
    text-transform: none;
    font-size: 0.6em;
    display: inline-block;
    transform: rotate(-3deg);
  }
  .about-copy p {
    font-size: 17px;
    color: #2a3a52;
    margin-bottom: 18px;
    max-width: 520px;
  }
  .about-copy p .hl {
    color: var(--orange);
    font-weight: 600;
  }
  .about-copy p .hl-cyan {
    color: #1a8db0;
    font-weight: 600;
  }

  .about-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3550, #0d2842);
    box-shadow: 0 30px 60px -20px rgba(7, 24, 47, 0.4);
  }
  .about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .about-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 24, 47, 0.55) 100%);
  }
  .about-photo .badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    display: flex; align-items: center; gap: 8px;
  }
  .about-photo .badge svg { width: 14px; height: 14px; }
  .about-photo .top-tag {
    position: absolute;
    top: 24px; right: 24px;
    background: rgba(7, 24, 47, 0.85);
    backdrop-filter: blur(8px);
    color: var(--orange-light);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
  }

  /* ============ DETAIL SECTIONS ============ */
  .detail {
    padding: 130px 32px;
    position: relative;
    overflow: hidden;
  }
  .detail.pickleball-detail {
    background:
      radial-gradient(ellipse at 80% 20%, rgba(62, 200, 232, 0.16), transparent 50%),
      radial-gradient(ellipse at 10% 80%, rgba(237, 122, 63, 0.1), transparent 45%),
      var(--navy);
  }
  .detail.muaythai-detail {
    background:
      radial-gradient(ellipse at 20% 30%, rgba(237, 122, 63, 0.28), transparent 55%),
      radial-gradient(ellipse at 90% 70%, rgba(237, 122, 63, 0.12), transparent 50%),
      var(--navy-deep);
  }
  .detail-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .detail-grid.reverse > :first-child { order: 2; }

  .detail-label {
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex; align-items: center; gap: 12px;
  }
  .pickleball-detail .detail-label { color: var(--cyan); }
  .detail-label::before { content: ''; width: 28px; height: 1px; background: currentColor; }

  .detail h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }
  .detail h2 em {
    font-style: normal;
    color: var(--orange);
  }
  .pickleball-detail h2 em { color: var(--cyan); }
  .detail .script-sub {
    font-family: var(--script);
    font-size: 42px;
    color: var(--cyan-soft);
    margin-bottom: 32px;
    transform: rotate(-2deg);
    display: inline-block;
  }
  .muaythai-detail .script-sub { color: var(--orange-light); }
  .detail p.lead {
    font-size: 17px;
    color: rgba(250, 246, 237, 0.78);
    max-width: 480px;
    margin-bottom: 36px;
  }

  .pricing-table {
    border-top: 1px solid rgba(250, 246, 237, 0.15);
  }
  .pricing-row {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(250, 246, 237, 0.1);
    transition: padding-left 0.3s ease;
  }
  .pricing-row:hover { padding-left: 12px; }
  .pricing-row .pr-label { font-size: 15px; color: var(--cream); }
  .pricing-row .pr-label small {
    display: block;
    font-size: 12px;
    color: rgba(250, 246, 237, 0.55);
    margin-top: 2px;
  }
  .pricing-row .pr-price {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    color: var(--cyan);
  }
  .muaythai-detail .pricing-row .pr-price { color: var(--orange-light); }

  .session-callout {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(62, 200, 232, 0.08);
    border: 1px solid rgba(62, 200, 232, 0.25);
    border-radius: 16px;
    border-left: 3px solid var(--cyan);
  }
  .muaythai-detail .session-callout {
    background: rgba(237, 122, 63, 0.1);
    border-color: rgba(237, 122, 63, 0.3);
    border-left-color: var(--orange);
  }
  .session-callout .ttl {
    font-family: var(--display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .pickleball-detail .session-callout .ttl { color: var(--cyan); }
  .session-callout .session-times {
    display: flex; gap: 32px; flex-wrap: wrap;
  }
  .session-callout .session-times div { font-size: 14px; color: var(--cream); }
  .session-callout .session-times div b {
    display: block;
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    margin-top: 2px;
  }

  /* Detail visual = clean photo, no silhouette overlay */
  .detail-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #143352, #07182f);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  }
  .detail-visual .photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .pickleball-detail .detail-visual .photo { object-position: center; }
  .muaythai-detail .detail-visual .photo { object-position: center; }
  .detail-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 24, 47, 0.6) 100%);
    z-index: 1;
  }
  .detail-visual .corner-tag {
    position: absolute;
    top: 28px; left: 28px;
    z-index: 3;
    background: rgba(7, 24, 47, 0.85);
    backdrop-filter: blur(8px);
    color: var(--orange-light);
    padding: 10px 16px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .pickleball-detail .detail-visual .corner-tag { color: var(--cyan-soft); }
  .detail-visual .photo-caption {
    position: absolute;
    bottom: 28px; left: 28px;
    right: 28px;
    z-index: 3;
    font-family: var(--script);
    font-size: 32px;
    color: var(--cream);
    line-height: 1;
  }
  .detail-visual .photo-corner-deco {
    position: absolute;
    top: 28px; right: 28px;
    z-index: 3;
    width: 60px; height: 60px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: grid; place-items: center;
    color: rgba(255,255,255,0.7);
    font-family: var(--display);
    font-weight: 900;
    font-size: 20px;
    backdrop-filter: blur(4px);
  }

  .fight-night-strip {
    margin-top: 40px;
    background: linear-gradient(90deg, var(--orange), var(--orange-deep));
    border-radius: 16px;
    padding: 24px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    box-shadow: 0 12px 28px rgba(237, 122, 63, 0.3);
  }
  .fight-night-strip .label {
    font-family: var(--display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
  }
  .fight-night-strip .label small {
    display: block;
    font-family: var(--body);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: none;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
  }
  .fight-night-strip .when {
    font-family: var(--script);
    font-size: 32px;
    color: var(--white);
  }

  /* ============ PACKAGES ============ */
  .packages {
    padding: 130px 32px;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 70% 20%, rgba(237, 122, 63, 0.35), transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(237, 122, 63, 0.18), transparent 55%),
      var(--navy-deep);
  }
  .packages::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(237, 122, 63, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
  }
  .packages .container { position: relative; z-index: 1; }
  .packages .section-title em {
    font-style: normal;
    color: var(--orange);
  }
  .package-cards {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pkg-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--navy-mid), var(--navy));
    border: 1px solid rgba(237, 122, 63, 0.18);
    display: flex; flex-direction: column;
    transition: transform 0.4s ease, border-color 0.3s ease;
  }
  .pkg-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 122, 63, 0.45);
  }
  .pkg-card .pkg-photo {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .pkg-card .pkg-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .pkg-card:hover .pkg-photo img { transform: scale(1.06); }
  .pkg-card .pkg-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 40, 66, 0.85) 100%);
  }
  .pkg-card .pkg-num {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid; place-items: center;
    font-family: var(--display);
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(237, 122, 63, 0.5);
  }
  .pkg-card.cool .pkg-num { background: var(--cyan); color: var(--navy-deep); box-shadow: 0 4px 16px rgba(62, 200, 232, 0.5); }
  .pkg-card.warm .pkg-num { background: var(--orange-light); }

  .pkg-card .pkg-tag {
    position: absolute;
    top: 28px; right: 20px;
    z-index: 2;
    background: rgba(7, 24, 47, 0.85);
    backdrop-filter: blur(8px);
    color: var(--orange-light);
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .pkg-card.cool .pkg-tag { color: var(--cyan-soft); }

  .pkg-body {
    padding: 32px 30px 30px;
    display: flex; flex-direction: column;
    flex: 1;
  }
  .pkg-body h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
  }
  .pkg-body .pkg-script {
    font-family: var(--script);
    font-size: 24px;
    color: var(--orange-light);
    margin-bottom: 16px;
    line-height: 1;
    transform: rotate(-2deg);
    display: inline-block;
  }
  .pkg-card.cool .pkg-body .pkg-script { color: var(--cyan-soft); }
  .pkg-body p.pkg-desc {
    font-size: 14px;
    color: rgba(250, 246, 237, 0.75);
    margin-bottom: 20px;
    line-height: 1.55;
  }
  .pkg-body ul {
    list-style: none;
    margin-bottom: 24px;
  }
  .pkg-body ul li {
    font-size: 13px;
    color: rgba(250, 246, 237, 0.7);
    padding: 6px 0 6px 20px;
    position: relative;
  }
  .pkg-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
  }
  .pkg-card.cool .pkg-body ul li::before { background: var(--cyan); }
  .pkg-body .pkg-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 0;
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-top: 1px solid rgba(237, 122, 63, 0.2);
    transition: gap 0.2s ease, color 0.2s ease;
  }
  .pkg-card.cool .pkg-body .pkg-cta {
    color: var(--cyan-soft);
    border-top-color: rgba(62, 200, 232, 0.2);
  }
  .pkg-body .pkg-cta:hover { gap: 14px; color: var(--white); }

  /* ============ FACILITIES ============ */
  .facilities {
    background: var(--cream);
    color: var(--ink);
    padding: 130px 32px;
    position: relative;
    overflow: hidden;
  }
  .facilities::before {
    content: '';
    position: absolute;
    top: 100px; left: -120px;
    width: 280px; height: 280px;
    background-image: radial-gradient(circle at 1px 1px, var(--orange) 1.5px, transparent 0);
    background-size: 18px 18px;
    opacity: 0.2;
  }
  .facilities .section-title { color: var(--ink); }
  .facilities .section-sub { color: #4a5970; }
  .facilities .section-title .script { color: var(--orange); }
  .facilities .container { position: relative; z-index: 1; }

  .fac-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .fac-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(7, 24, 47, 0.08);
  }
  .fac-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(7, 24, 47, 0.18);
  }
  .fac-card .visual {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #143352, #0d2842);
  }
  .fac-card .visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .fac-card:hover .visual img { transform: scale(1.06); }
  .fac-card .visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(7, 24, 47, 0.4) 100%);
  }
  .fac-card .visual .tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(7, 24, 47, 0.85);
    backdrop-filter: blur(8px);
    color: var(--orange-light);
    font-family: var(--display);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.25em;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 2;
  }
  .fac-card.cool .visual .tag { color: var(--cyan-soft); }
  .fac-card .body { padding: 28px 28px 32px; }
  .fac-card .body .num {
    font-family: var(--display);
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    color: var(--orange);
    margin-bottom: 8px;
  }
  .fac-card.cool .body .num { color: #1a8db0; }
  .fac-card .body h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .fac-card .body p { font-size: 14px; color: #4a5970; }

  /* Graphic facility card (no photo) */
  .fac-card.graphic .visual {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    display: grid; place-items: center;
    position: relative;
  }
  .fac-card.graphic .visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 16px 16px;
  }
  .fac-card.graphic .visual .silhouettes {
    position: relative;
    display: flex; gap: 0; align-items: end;
    height: 75%;
  }
  .fac-card.graphic .visual .silhouettes img {
    height: 100%; width: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    opacity: 0.98;
  }
  .fac-card.graphic .visual .silhouettes img:first-child { margin-right: -20px; transform: scaleX(-1); }

  /* ============ BOOKING ============ */
  .booking {
    background: var(--navy-deep);
    padding: 130px 32px;
    position: relative;
    overflow: hidden;
  }
  .booking::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(237, 122, 63, 0.06) 1px, transparent 0);
    background-size: 32px 32px;
  }
  .booking-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
  }
  .booking-info h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }
  .booking-info h2 .script {
    font-family: var(--script);
    font-weight: 400;
    color: var(--orange);
    text-transform: none;
    font-size: 0.6em;
    display: inline-block;
    transform: rotate(-3deg);
  }
  .booking-info p {
    color: rgba(250, 246, 237, 0.75);
    margin-bottom: 36px;
    font-size: 17px;
    max-width: 460px;
  }

  .info-blocks { display: grid; gap: 16px; }
  .info-block {
    background: rgba(20, 51, 82, 0.5);
    border: 1px solid rgba(237, 122, 63, 0.18);
    border-radius: 16px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    transition: border-color 0.2s, background 0.2s;
  }
  .info-block:hover {
    border-color: rgba(237, 122, 63, 0.45);
    background: rgba(20, 51, 82, 0.7);
  }
  .info-block .icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: grid; place-items: center;
    color: var(--white);
  }
  .info-block.cool .icon {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
    color: var(--navy-deep);
  }
  .info-block .icon svg { width: 20px; height: 20px; }
  .info-block .ib-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .info-block.cool .ib-label { color: var(--cyan); }
  .info-block .ib-value {
    font-size: 16px;
    color: var(--cream);
    line-height: 1.4;
  }
  .info-block .ib-value strong {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
  }

  .booking-card {
    background: linear-gradient(160deg, var(--navy-mid), var(--navy));
    border: 1px solid rgba(237, 122, 63, 0.35);
    border-radius: 28px;
    padding: 44px;
    position: relative;
    overflow: hidden;
  }
  .booking-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  }
  .booking-card-inner { position: relative; }
  .booking-card .bc-eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .booking-card h3 {
    font-family: var(--display);
    font-weight: 900;
    font-size: 38px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }
  .booking-card .script {
    font-family: var(--script);
    font-size: 32px;
    color: var(--orange-light);
    margin-bottom: 24px;
    display: inline-block;
    transform: rotate(-2deg);
  }
  .booking-card p { color: rgba(250, 246, 237, 0.75); margin-bottom: 28px; }

  .booking-card .cta-stack { display: grid; gap: 12px; }
  .booking-card .cta-stack .btn { width: 100%; justify-content: center; }
  .walkin-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(237, 122, 63, 0.3);
    font-size: 13px;
    color: rgba(250, 246, 237, 0.55);
    text-align: center;
  }
  .walkin-note .script {
    font-family: var(--script);
    font-size: 24px;
    color: var(--orange-light);
    margin-right: 6px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: #050f1f;
    padding: 80px 32px 32px;
    color: rgba(250, 246, 237, 0.6);
    position: relative;
  }
  .footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(250, 246, 237, 0.08);
  }
  .footer-brand .logo-row {
    display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  }
  .footer-brand .logo-row img {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
  }
  .footer-brand .logo-row .name {
    font-family: var(--display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
  }
  .footer-brand .logo-row .name small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-top: 6px;
    font-weight: 700;
  }
  .footer-brand .tag {
    font-family: var(--script);
    font-size: 30px;
    color: var(--orange-light);
    margin-bottom: 16px;
    transform: rotate(-2deg);
    display: inline-block;
  }
  .footer-brand p { font-size: 14px; max-width: 320px; }

  .footer-col h5 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: grid; gap: 10px; }
  .footer-col a {
    font-size: 14px;
    color: rgba(250, 246, 237, 0.7);
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--orange-light); }

  .footer-bottom {
    max-width: var(--container);
    margin: 32px auto 0;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .footer-bottom .made-with { color: rgba(250, 246, 237, 0.4); }
  .footer-socials { display: flex; gap: 12px; }
  .footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(250, 246, 237, 0.05);
    display: grid; place-items: center;
    transition: background 0.2s, color 0.2s;
  }
  .footer-socials a:hover {
    background: var(--orange);
    color: var(--white);
  }
  .footer-socials svg { width: 16px; height: 16px; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .menu-toggle { display: grid; place-items: center; width: 40px; height: 40px; color: var(--cream); }
    .sport-cards { grid-template-columns: 1fr; }
    .package-cards { grid-template-columns: 1fr; }
    .about-grid, .detail-grid, .booking-grid { grid-template-columns: 1fr; gap: 48px; }
    .detail-grid.reverse > :first-child { order: 0; }
    .fac-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-cta { display: none; }
    .sport-card h3 { font-size: 48px; }
    .sport-card .more-link { top: 32px; right: 24px; }
    .sport-card { padding: 40px 28px 32px; }
    .nav-logo .brand-stack { display: none; }
    .hero-content { padding-top: 110px; padding-bottom: 50px; }
    .hero-stats { margin-top: 60px; gap: 32px; }
    .stat .num { font-size: 40px; }

    /* Mobile menu: wraps under nav when .is-open is toggled by JS */
    .nav-inner { flex-wrap: wrap; row-gap: 0; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle {
      transition: color 0.2s ease, transform 0.25s ease;
    }
    .nav.is-open .menu-toggle {
      color: var(--orange-light);
      transform: rotate(90deg);
    }
    .nav.is-open .nav-links {
      display: flex;
      flex-direction: column;
      flex-basis: 100%;
      order: 4;
      gap: 0;
      padding: 18px 0 8px;
      margin-top: 14px;
      border-top: 1px solid rgba(237, 122, 63, 0.15);
    }
    .nav.is-open .nav-links a {
      padding: 14px 0;
      font-size: 15px;
      letter-spacing: 0.18em;
    }
    .nav.is-open .nav-cta {
      display: inline-flex;
      order: 5;
      flex-basis: auto;
      align-self: flex-start;
      margin-bottom: 6px;
    }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .booking-card { padding: 32px 24px; }
    .container, .nav { padding-left: 20px; padding-right: 20px; }
    .hero-content { padding-left: 20px; padding-right: 20px; }
    .sports-split, .about, .detail, .packages, .facilities, .booking { padding-left: 20px; padding-right: 20px; }
  }
