    :root {
      --red: #D42027;
      --red-dark: #A8191E;
      --yellow: #F5A623;
      --yellow-bright: #FFD700;
      --black: #1A1A1A;
      --charcoal: #2D2D2D;
      --white: #FAFAFA;
      --cream: #FFF8F0;
      --gray: #888;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(26,26,26,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 3px solid var(--red);
      padding: 0.8rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-logo span { color: var(--red); }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--yellow); }

    .nav-cta {
      background: var(--red) !important;
      color: var(--white) !important;
      padding: 0.6rem 1.4rem;
      border-radius: 4px;
      font-weight: 600;
      transition: background 0.3s !important;
    }

    .nav-cta:hover { background: var(--red-dark) !important; }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.8rem;
      cursor: pointer;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('images/cart-stadium.jpg') center/cover no-repeat;
      filter: brightness(0.3);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(212,32,39,0.4) 0%,
        rgba(26,26,26,0.8) 50%,
        rgba(26,26,26,0.95) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      padding: 2rem;
      animation: fadeUp 1s ease-out;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--yellow);
      border: 1px solid var(--yellow);
      padding: 0.4rem 1.2rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 1s ease-out 0.2s both;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 10vw, 8rem);
      line-height: 0.9;
      margin-bottom: 0.5rem;
      animation: fadeUp 1s ease-out 0.3s both;
    }

    .hero h1 .red { color: var(--red); }
    .hero h1 .yellow { color: var(--yellow); }

    .hero-sub {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 400;
      color: var(--gray);
      margin-bottom: 2.5rem;
      letter-spacing: 1px;
      animation: fadeUp 1s ease-out 0.5s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1s ease-out 0.7s both;
    }

    .btn {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 1rem 2.5rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-red {
      background: var(--red);
      color: var(--white);
    }

    .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-outline:hover { background: var(--white); color: var(--black); }

    /* ===== SECTION STYLES ===== */
    section { padding: 6rem 2rem; }

    .section-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--yellow);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ===== ABOUT ===== */
    #about {
      background: var(--charcoal);
      position: relative;
    }

    #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #ccc;
      margin-bottom: 1.5rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .stat {
      text-align: center;
      padding: 1.5rem;
      background: var(--black);
      border-left: 3px solid var(--red);
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--yellow);
    }

    .stat-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gray);
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border: 4px solid var(--red);
    }

    .about-image::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 20px;
      right: -20px;
      bottom: -20px;
      border: 2px solid var(--yellow);
      z-index: -1;
    }

    /* ===== MENU ===== */
    #menu { background: var(--black); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .menu-card {
      background: var(--charcoal);
      border: 1px solid #333;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

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

    .menu-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--yellow));
    }

    .menu-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .menu-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.8rem;
    }

    .menu-card p {
      color: #aaa;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .menu-note {
      text-align: center;
      margin-top: 3rem;
      padding: 2rem;
      border: 1px dashed var(--yellow);
      color: var(--yellow);
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 1px;
    }

    /* ===== EVENTS/SERVICES ===== */
    #events {
      background: var(--charcoal);
      position: relative;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .event-card {
      background: var(--black);
      padding: 2.5rem 2rem;
      text-align: center;
      border-bottom: 3px solid transparent;
      transition: all 0.3s;
    }

    .event-card:hover {
      border-bottom-color: var(--red);
      transform: translateY(-4px);
    }

    .event-card .icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .event-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.8rem;
    }

    .event-card p {
      color: #999;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .event-link {
      display: inline-block;
      margin-top: 0.9rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--yellow);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }

    .event-link:hover { border-color: var(--yellow); }

    /* ===== GALLERY ===== */
    #gallery { background: var(--black); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 250px;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(20%);
      transition: all 0.4s;
      cursor: pointer;
    }

    .gallery-grid img:hover {
      filter: grayscale(0%);
      transform: scale(1.02);
      z-index: 2;
    }

    .gallery-grid img:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    /* ===== BOOK / CTA ===== */
    #book {
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #book::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
    }

    .book-content {
      position: relative;
      z-index: 2;
    }

    .book-content .section-title { color: var(--white); }

    .book-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
    }

    .book-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-yellow {
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
    }

    .btn-yellow:hover { background: var(--yellow-bright); transform: translateY(-2px); }

    .btn-white-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-white-outline:hover { background: var(--white); color: var(--red); }

    /* ===== CONTACT ===== */
    #contact {
      background: var(--charcoal);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .contact-info h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
      color: var(--yellow);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .contact-item .icon { font-size: 1.5rem; }

    .contact-item a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }

    .contact-item a:hover { color: var(--yellow); }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      padding: 1rem;
      background: var(--black);
      border: 1px solid #444;
      color: var(--white);
      font-family: 'Source Sans 3', sans-serif;
      font-size: 1rem;
      margin-bottom: 1rem;
      transition: border-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      outline: none;
      border-color: var(--red);
    }

    .contact-form textarea { resize: vertical; min-height: 120px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--black);
      padding: 3rem 2rem;
      text-align: center;
      border-top: 3px solid var(--red);
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .footer-logo span { color: var(--red); }

    footer p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    .footer-links {
      margin: 1rem 0;
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color 0.3s;
    }

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

    /* ===== CHATBOT ===== */
    .chat-trigger {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: var(--red);
      border: 3px solid var(--yellow);
      color: var(--white);
      font-size: 1.8rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(212,32,39,0.5);
      transition: all 0.3s;
      animation: pulse 2s infinite;
    }

    .chat-trigger:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(212,32,39,0.7);
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(212,32,39,0.5); }
      50% { box-shadow: 0 4px 30px rgba(212,32,39,0.8); }
    }

    .chat-tooltip {
      position: fixed;
      bottom: 5.5rem;
      right: 2rem;
      background: var(--white);
      color: var(--black);
      padding: 0.8rem 1.2rem;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      z-index: 998;
      animation: fadeUp 0.5s ease-out 2s both;
      max-width: 220px;
    }

    .chat-tooltip::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 24px;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 8px solid var(--white);
    }

    .chatbot {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 400px;
      max-height: 600px;
      background: var(--charcoal);
      border: 2px solid var(--red);
      border-radius: 12px;
      z-index: 1001;
      display: none;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .chatbot.active { display: flex; }

    .chat-header {
      background: var(--red);
      padding: 1rem 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chat-header h4 {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .chat-close {
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
    }

    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 1rem;
      max-height: 400px;
    }

    .chat-msg {
      margin-bottom: 1rem;
      display: flex;
      gap: 0.5rem;
    }

    .chat-msg.bot { justify-content: flex-start; }
    .chat-msg.user { justify-content: flex-end; }

    .chat-bubble {
      max-width: 80%;
      padding: 0.8rem 1rem;
      border-radius: 12px;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .bot .chat-bubble {
      background: var(--black);
      border: 1px solid #444;
      color: var(--white);
      border-bottom-left-radius: 4px;
    }

    .user .chat-bubble {
      background: var(--red);
      color: var(--white);
      border-bottom-right-radius: 4px;
    }

    .chat-options {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .chat-option {
      background: var(--charcoal);
      border: 1px solid var(--yellow);
      color: var(--yellow);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      cursor: pointer;
      font-family: 'Source Sans 3', sans-serif;
      transition: all 0.2s;
    }

    .chat-option:hover {
      background: var(--yellow);
      color: var(--black);
    }

    .chat-input-area {
      padding: 0.8rem;
      border-top: 1px solid #444;
      display: flex;
      gap: 0.5rem;
    }

    .chat-input-area input {
      flex: 1;
      padding: 0.7rem 1rem;
      background: var(--black);
      border: 1px solid #555;
      border-radius: 20px;
      color: var(--white);
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.9rem;
    }

    .chat-input-area input:focus {
      outline: none;
      border-color: var(--red);
    }

    .chat-input-area button {
      background: var(--red);
      border: none;
      color: var(--white);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .chat-input-area button:hover { background: var(--red-dark); }

    /* Hidden form for Netlify */
    .hidden-form { display: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
      }

      .gallery-grid img:first-child {
        grid-column: span 2;
        grid-row: span 1;
      }

      .about-image { order: -1; }
      .about-image img { height: 350px; }
      .about-image::after { display: none; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mobile-toggle { display: block; }

      .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 3px solid var(--red);
      }

      .chatbot {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 1rem;
        max-height: 80vh;
      }

      .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
      }

      .stat { padding: 1rem 0.5rem; }
      .stat-number { font-size: 2rem; }

      section { padding: 4rem 1.5rem; }
    }

    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
      }

      .gallery-grid img:first-child {
        grid-column: span 2;
      }

      .events-grid {
        grid-template-columns: 1fr;
      }
    }


    /* ===== BREADCRUMB (landing pages) ===== */
    .breadcrumb {
      background: var(--charcoal);
      padding: 1rem 2rem;
      margin-top: 62px;
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
    }

    .breadcrumb a { color: var(--gray); text-decoration: none; }
    .breadcrumb a:hover { color: var(--yellow); }
    .breadcrumb span { color: var(--yellow); }

    /* ===== MINI GALLERY (landing pages) ===== */
    .mini-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .mini-gallery img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      filter: grayscale(15%);
      transition: filter 0.3s, transform 0.3s;
    }

    .mini-gallery img:hover { filter: grayscale(0%); transform: scale(1.02); }

    @media (max-width: 700px) {
      .mini-gallery { grid-template-columns: repeat(2, 1fr); }
      .mini-gallery img { height: 180px; }
    }

    /* ===== FAQ ACCORDION (landing pages) ===== */
    .faq-list { margin-top: 2rem; }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 1.2rem 0;
    }

    .faq-item summary {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--white);
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: '+';
      color: var(--yellow);
      font-size: 1.5rem;
      margin-left: 1rem;
      transition: transform 0.3s;
    }

    .faq-item[open] summary::after { transform: rotate(45deg); }

    .faq-item p {
      color: #ccc;
      line-height: 1.7;
      margin-top: 1rem;
      font-size: 1rem;
    }

    /* ===== RELATED SERVICES (landing pages) ===== */
    .related-services {
      background: var(--charcoal);
      padding: 3rem 2rem;
      text-align: center;
    }

    .related-services p.section-label { justify-content: center; display: block; }

    .related-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .related-links a {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      color: var(--white);
      text-decoration: none;
      border: 1px solid var(--gray);
      padding: 0.7rem 1.4rem;
      transition: all 0.3s;
    }

    .related-links a:hover { border-color: var(--yellow); color: var(--yellow); }

    @media (max-width: 480px) {
      .mini-gallery { grid-template-columns: 1fr 1fr; }
    }
