.elementor-5274 .elementor-element.elementor-element-e4299cd{--display:flex;}/* Start custom CSS */.site-header {
    background-color: #fff;
}

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: #000;
      color: #f0ede8;
      font-family: Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
    }
    h1, h2, h3, h4 {
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .schedule-hero {
      position: relative;
      background: #000;
      border-bottom: 3px solid #e7bb38;
      padding: 70px 24px 50px;
      text-align: center;
      overflow: hidden;
    }
    .schedule-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -55deg, transparent, transparent 28px,
        rgba(231,187,56,0.04) 28px, rgba(231,187,56,0.04) 30px
      );
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #e7bb38;
      margin-bottom: 18px;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: "";
      display: block;
      width: 36px;
      height: 2px;
      background: #e7bb38;
    }
    .schedule-hero h1 { font-size: clamp(48px, 8vw, 90px); color: #f0ede8; }
    .schedule-hero h1 span { color: #e7bb38; }
    .hero-sub {
      margin-top: 14px;
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(240,237,232,0.55);
    }

    /* KEY FIX: removed padding and justify-content:center from the wrapper.
       Those two properties together caused the tab row to overflow symmetrically,
       clipping Monday on the left with no way to scroll to it.
       The inner .day-tabs now uses width:max-content + min-width:100% + justify-content:center
       so it centers when there's room but left-anchors when it overflows. */
    .day-tabs-wrap {
      background: #0a0a0a;
      border-bottom: 1px solid rgba(231,187,56,0.2);
      overflow-x: auto;
      scrollbar-width: none;
    }
    .day-tabs-wrap::-webkit-scrollbar { display: none; }
    .day-tabs {
      display: flex;
      gap: 2px;
      width: max-content;
      min-width: 100%;
      justify-content: center;
    }
    .day-tab {
      padding: 16px 22px;
      background: transparent;
      border: none;
      border-bottom: 3px solid transparent;
      color: rgba(240,237,232,0.45);
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      font-size: 15px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
      position: relative;
    }
    .day-tab:hover { color: #f0ede8; }
    .day-tab.active {
      color: #e7bb38;
      border-bottom-color: #e7bb38;
    }
    .day-tab .today-dot {
      display: none;
      position: absolute;
      top: 10px;
      right: 10px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #e7bb38;
    }
    .day-tab.is-today .today-dot { display: block; }

    .schedule-section {
      max-width: 1000px;
      margin: 0 auto;
      padding: 48px 24px 80px;
    }
    .day-panel { display: none; }
    .day-panel.active { display: block; }

    .day-header {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 28px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(231,187,56,0.15);
    }
    .day-header h2 {
      font-size: clamp(28px, 4vw, 40px);
      color: #f0ede8;
    }
    .day-header h2 span { color: #e7bb38; }
    .class-count-badge {
      background: rgba(231,187,56,0.12);
      border: 1px solid rgba(231,187,56,0.3);
      color: #e7bb38;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
    }

    .class-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    .class-card {
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.06);
      border-left: 4px solid var(--type-color, #e7bb38);
      border-radius: 3px;
      padding: 20px 20px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .class-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(0,0,0,0.5);
    }
    .card-time {
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      font-size: 26px;
      letter-spacing: 0.05em;
      color: var(--type-color, #e7bb38);
      line-height: 1;
    }
    .card-name {
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      font-size: 20px;
      letter-spacing: 0.06em;
      color: #f0ede8;
      text-transform: uppercase;
      line-height: 1.2;
    }
    .card-meta {
      font-size: 12px;
      letter-spacing: 0.06em;
      color: rgba(240,237,232,0.45);
      text-transform: uppercase;
      display: flex;
      flex-wrap: wrap;
      gap: 6px 0;
    }
    .card-meta span + span::before {
      content: " · ";
      color: rgba(231,187,56,0.35);
    }
    .card-badge {
      display: inline-block;
      margin-top: 4px;
      padding: 4px 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 2px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--type-color, #e7bb38);
      width: fit-content;
    }

    .empty-day {
      text-align: center;
      padding: 60px 24px;
      color: rgba(240,237,232,0.25);
    }
    .empty-day svg { width: 40px; height: 40px; fill: rgba(231,187,56,0.2); margin-bottom: 14px; }
    .empty-day p {
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      font-size: 18px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .legend {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-top: 48px;
      padding-top: 28px;
      border-top: 1px solid rgba(231,187,56,0.12);
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(240,237,232,0.5);
    }
    .legend-dot { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; }

    .gold-divider {
      height: 3px;
      background: linear-gradient(to right, transparent, #e7bb38 20%, #e7bb38 80%, transparent);
    }

    .cta-strip {
      background: #e7bb38;
      padding: 44px 24px;
      text-align: center;
    }
    .cta-strip h3 {
      font-size: clamp(22px, 3.5vw, 36px);
      color: #000;
      margin-bottom: 10px;
    }
    .cta-strip p {
      font-size: 13px;
      letter-spacing: 0.08em;
      color: rgba(0,0,0,0.6);
      text-transform: uppercase;
      margin-bottom: 26px;
    }
    .btn-primary {
      display: inline-block;
      padding: 14px 36px;
      background: #000;
      color: #e7bb38;
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      font-size: 15px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid #000;
      transition: background 0.2s, color 0.2s;
    }
    .btn-primary:hover { background: #111; }
    .btn-outline {
      display: inline-block;
      padding: 14px 36px;
      background: transparent;
      color: #000;
      font-family: Impact, "Arial Narrow", Arial, sans-serif;
      font-size: 15px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid #000;
      margin-left: 12px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover,
.btn-outline:link:hover,
.btn-outline:visited:hover { background: #000; color: #e7bb38; }
    .btn-outline:link, .btn-outline:visited { color: #000; }

    @media (max-width: 600px) {
      .schedule-hero { padding: 50px 16px 36px; }
      .btn-outline { margin-left: 0; display: block; width: fit-content; margin: 8px auto 0; }
      .btn-primary { display: block; width: fit-content; margin: 0 auto; }
    }/* End custom CSS */