:root {
      --black: #0A0A0A;
      --deep-black: #050505;
      --charcoal: #1A1A1A;
      --dark-gray: #2A2A2A;
      --mid-gray: #888;
      --cream: #E8DCC8;
      --sand: #D4C5A9;
      --orange: #D4722C;
      --burnt-orange: #C45A1C;
      --deep-orange: #A84210;
      --maroon: #5C1A1A;
      --red: #C0392B;
      --white: #F5F0E8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--deep-black);
      color: var(--cream);
      overflow-x: hidden;
    }

    .show-mb {
      display: none;
    }


    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(5, 5, 5, 0.94);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(212, 114, 44, 0.15);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo-img {
      height: 52px;
      width: auto;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--mid-gray);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--orange);
    }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 10px 24px;
      background: var(--orange);
      color: var(--black);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
    }

    .nav-cta:hover {
      background: var(--burnt-orange);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--cream);
      transition: all 0.3s;
    }

.mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5, 5, 5, 0.97);
      z-index: 9999;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--cream);
      text-decoration: none;
    }

    .mobile-nav a:hover {
      color: var(--orange);
    }

    .mobile-nav-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: var(--cream);
      font-size: 2rem;
      cursor: pointer;
    }

    .dropdown {
      position: relative;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 13rem;
      background: #fff;
      list-style: none;
      padding: 8px;
      margin: 0;
      box-shadow: 0 8px 20px rgba(0,0,0,.15);

      /* Hidden by default */
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all .25s ease;
      z-index: 999;
    }

    .nav-dropdown-menu li {
        margin-bottom: 2px;
    }

    .dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown > a::after {
      content: "▼";
      font-size: .6em;
      margin-left: 6px;
      vertical-align: middle;
    }

    button.mobile-dropdown-btn {
        width: 100%;
        background: none;
        border: 0;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: 1.8rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--cream);
        text-decoration: none;
    }
    button.mobile-dropdown-btn span {
        font-size: 1rem;
        margin-left: 10px;
    }
    .mobile-dropdown a {
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--cream);
        text-decoration: none;
    }
    .mobile-dropdown-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .mobile-dropdown.open .mobile-dropdown-menu {
        display: flex;
    }


    /* ===== FOOTER SIGNUP ===== */
    .footer-signup {
      padding: 64px 24px;
      background: var(--charcoal);
      border-top: 1px solid rgba(212, 114, 44, 0.15);
    }

    .footer-signup-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-signup-text h3 {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 8px;
    }

    .footer-signup-text p {
      font-weight: 300;
      font-size: 0.95rem;
      color: var(--mid-gray);
      margin-bottom: 0;
    }

    .footer-signup-form {
      display: flex;
      gap: 0;
      max-width: 500px;
      margin: 0 auto;
    }

    .footer-signup-form input {
      flex: 1;
      padding: 16px 20px;
      background: var(--deep-black);
      border: 1px solid rgba(232, 220, 200, 0.1);
      border-right: none;
      color: var(--cream);
      font-family: 'Barlow', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s;
    }

    .footer-signup-form input:focus {
      border-color: var(--orange);
    }

    .footer-signup-form input::placeholder {
      color: rgba(136, 136, 136, 0.5);
    }

    .footer-signup-form .btn-primary {
      white-space: nowrap;
      padding: 16px 32px;
    }

    .footer-form-status {
      text-align: center;
    }

    .footer-bottom {
    padding: 40px 24px;
    background: var(--deep-black);
    border-top: 1px solid rgba(232, 220, 200, 0.05);
  }

  .footer-bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-left { display: flex; align-items: center; gap: 20px; }
  .footer-logo { height: 48px; width: auto; opacity: 0.4; }
  .footer-right { text-align: right; }

  .footer-socials { display: flex; gap: 16px; margin-bottom: 8px; justify-content: flex-end; }

  .footer-socials a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mid-gray);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-socials a:hover { color: var(--orange); }

  .footer-left p, .footer-right p { font-size: 0.75rem; color: rgba(136, 136, 136, 0.5); letter-spacing: 1px; }
  .footer-right span { color: var(--orange); }

 /* ===== ANIMATIONS ===== */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 1;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }


    /* RESPONSIVE */
  @media (max-width: 680px) {
    .nav-links, .hide-mb, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; }
    .footer-right { text-align: center; }
    .footer-socials { justify-content: center; flex-wrap: wrap; }
    .footer-right p.show-mb { margin-top: 1rem; }
    .footer-socials:first-of-type {
        row-gap: 5px;
        margin-bottom: 1rem;
    }
    .footer-signup-form {
        flex-direction: column;
        gap: 12px;
      }

      .footer-signup-form input {
        border-right: 1px solid rgba(232, 220, 200, 0.1);
      }
  }


   /** tryout-banner **/
    #tryout-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #D4722C, #C45A1C, #D4722C);
    background-size: 200% 100%;
    animation: bannerShimmer 4s ease infinite;
  }

  #tryout-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 24px;
    text-decoration: none;
    color: #0A0A0A;
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  }

  .tb-label {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  .tb-dates {
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
  }

  .tb-cta {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 12px;
    transition: background 0.3s;
  }

  #tryout-banner-link:hover .tb-cta {
    background: rgba(0, 0, 0, 0.3);
  }

  @keyframes bannerShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Push the nav down to make room for the banner */
  nav {
    top: 38px !important;
  }

  /* Push the hero/body content down to account for banner + nav */
  .hero {
    padding-top: 178px !important;
  }

  @media (max-width: 680px) {
    #tryout-banner-link {
      gap: 8px;
      padding: 8px 16px;
    }

    .tb-label, .tb-dates, .tb-cta {
      font-size: 0.65rem;
    }

    .tb-dates {
      display: none;
    }

    nav {
      top: 34px !important;
    }

    .hero {
      padding-top: 164px !important;
    }
  }