    /* =============================================
       HEADER
       ============================================= */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      background: rgba(0, 0, 0, 0.92);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.4s, border-color 0.4s;
    }

    .header.solid {
      background: rgba(0, 0, 0, 0.97);
      border-bottom-color: rgba(255, 255, 255, 0.04);
    }

    .header-social {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 50px;
    }

    .header-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      color: rgba(237, 232, 224, 0.75);
      transition: color 0.25s;
    }
    .header-social a:active { color: rgba(237, 232, 224, 0.8); }
    .header-social svg { width: 20px; height: 20px; }

    .header-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .header-logo {
      height: 64px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.95;
    }

    .header-subtitle {
      font-family: var(--font-body);
      font-size: 8px;
      font-weight: 300;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(237, 232, 224, 0.4);
      white-space: nowrap;
    }

    .header-hamburger {
      width: 50px;
      display: flex;
      justify-content: flex-end;
    }

    .hamburger-btn {
      background: none;
      border: none;
      width: 36px;
      height: 36px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      padding: 0;
    }

    .hamburger-btn span {
      display: block;
      height: 1px;
      background: rgba(237, 232, 224, 0.9);
      transition: all 0.3s;
    }
    .hamburger-btn span:nth-child(1) { width: 26px; }
    .hamburger-btn span:nth-child(2) { width: 19px; }
    .hamburger-btn span:nth-child(3) { width: 26px; }

    .hamburger-btn.open span:nth-child(1) { width: 26px; transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger-btn.open span:nth-child(3) { width: 26px; transform: translateY(-7px) rotate(-45deg); }

    /* =============================================
       DRAWER
       ============================================= */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 190;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
    }
    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(220px, 58vw);
      background: #0F0E0D;
      z-index: 195;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      border-left: 1px solid rgba(255,255,255,0.05);
    }
    .drawer.open { transform: translateX(0); }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .drawer-logo {
      height: 32px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    .drawer-close {
      background: none;
      border: none;
      color: rgba(237,232,224,0.4);
      font-size: 24px;
      font-weight: 300;
      line-height: 1;
      cursor: pointer;
      padding: 4px;
    }

    .drawer-nav {
      flex: 1;
      padding: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .drawer-nav a {
      display: block;
      padding: 18px 32px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 3px;
      color: rgba(237,232,224,0.75);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s, padding-left 0.2s;
    }
    .drawer-nav a:active {
      color: var(--text);
      padding-left: 38px;
    }

    .drawer-social-label {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(237,232,224,0.25);
      text-align: center;
      padding: 0 24px 10px;
      transform: translateX(-6px);
    }

    .drawer-brands {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 0 24px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .drawer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .drawer-brand-logo {
      height: 28px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.6;
    }
    .drawer-brand-logo-arena {
      height: 36px;
      margin: -4px 0;
    }

    .drawer-footer {
      padding: 20px 24px calc(20px + var(--safe-bottom));
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .drawer-book-btn {
      display: block;
      text-align: center;
      padding: 13px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--gold);
      text-decoration: none;
      margin-bottom: 18px;
      transition: opacity 0.25s;
    }
    .drawer-book-btn:active { opacity: 0.8; }

    .drawer-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .drawer-info-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .drawer-info-row svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: rgba(237,232,224,0.25);
      margin-top: 1px;
    }

    .drawer-info-row span {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 300;
      color: rgba(237,232,224,0.35);
      line-height: 1.5;
    }

    .drawer-info-row a {
      color: rgba(237,232,224,0.45);
      text-decoration: none;
    }

    .drawer-hours-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4px 10px;
      font-family: var(--font-body);
      font-size: 10.5px;
      font-weight: 300;
      line-height: 1.4;
    }
    .dh-day { color: rgba(237,232,224,0.45); white-space: nowrap; }
    .dh-time { color: rgba(237,232,224,0.3); white-space: nowrap; }
    .dh-closed { color: rgba(237,232,224,0.2); font-style: italic; }

