 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #000; color: #fff; line-height: 1.5;
      -webkit-font-smoothing: antialiased; overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    :root {
      --red: #e11d2a;
      --red-bright: #ff1f2e;
      --red-dark: #b81421;
      --bg: #000;
      --bg-card: #0e0e0e;
      --bg-card-2: #141414;
      --border: rgba(255,255,255,0.08);
      --text-dim: #9aa0a6;
      --text-mute: #6b7280;
      --container: 1540px;
    }
    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

    /* ========== Header ========== */
    .site-header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 90px; gap: 18px;}
    .logo { display: flex; align-items: center; flex-shrink: 0;}
    .logo img { height: 60px; width: auto; display: block;}
    .nav { display: flex; align-items: center; gap: 26px;}
    .nav a {
      font-size: 12px; font-weight: 600; color: #e5e7eb; letter-spacing: 0.5px;
      transition: color .2s; position: relative; padding: 8px 0;
      text-transform: uppercase;
    }
    .nav a:hover { color: var(--red);}
    .nav a.active { color: var(--red);}
    .nav a.active::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
      height: 2px; background: var(--red);
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      padding: 14px 22px; border-radius: 6px;
      font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap; text-transform: uppercase;
    }
    .btn:hover { transform: translateY(-1px);}
    .btn-red { background: var(--red); color: #fff; border: 1px solid var(--red);}
    .btn-red:hover { background: var(--red-bright);}
    .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2);}
    .btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04);}
    .btn-cal { padding: 11px 18px; font-size: 12px;}
    .btn-block { width: 100%;}
    .mobile-toggle { display: none; background: transparent; padding: 8px;}
    .mobile-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0;}

    /* ========== Hero ========== */
    .hero {
      padding: 50px 0 70px;
      background: #000;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; align-items: start;
    }

    .eyebrow {
      color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .hero h1 {
      font-family: 'Oswald', sans-serif; font-weight: 700;
      font-size: clamp(48px, 6vw, 78px);
      line-height: 0.98; letter-spacing: -0.5px; text-transform: uppercase;
    }
    .hero h1 .red {
      color: var(--red); font-family: 'Caveat', cursive; font-weight: 700;
      letter-spacing: 0; text-transform: none; display: block;
      font-size: 0.96em; line-height: 1; margin-top: 6px;
    }
    .hero .lead {
      margin-top: 18px; max-width: 520px;
      color: #cbd0d6; font-size: 14.5px; line-height: 1.65;
    }
    .hero-features {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 18px;
      margin: 32px 0 28px;
      max-width: 560px;
    }
    .hf {
      text-align: center; padding: 0 4px;
    }
    .hf .ico {
      width: 36px; height: 36px; margin: 0 auto 10px;
      display: grid; place-items: center; color: var(--red);
    }
    .hf .ico svg { width: 26px; height: 26px;}
    .hf h4 { font-size: 12.5px; font-weight: 700; margin-bottom: 6px; line-height: 1.2;}
    .hf p { font-size: 11px; color: #9aa0a6; line-height: 1.45;}
    .hero-cta { display: flex; flex-direction: column; gap: 12px; max-width: 380px;}
    .hero-cta .btn { width: 100%; justify-content: center;}

    .venues {
      margin-top: 36px;
      border: 1px solid rgba(225,29,42,0.4);
      border-radius: 8px;
      padding: 18px 22px;
      background: #060606;
      max-width: 560px;
    }
    .venues .label {
      text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      color: #cbd0d6; margin-bottom: 14px; text-transform: uppercase;
    }
    .venues img { width: 100%; display: block;}

    /* ========== Form (right column) ========== */
    .form-col {
      border: 1px solid var(--border); border-radius: 10px;
      background: linear-gradient(180deg, #0c0c0c, #050505);
      padding: 26px 24px;
    }
    .form-col h2 {
      font-family: 'Oswald', sans-serif; font-weight: 700;
      font-size: 26px; text-transform: uppercase; letter-spacing: 0.5px;
      margin-bottom: 4px;
    }
    .form-col .secure {
      font-size: 12px; color: #9aa0a6; margin-bottom: 22px;
    }
    .step {
      display: flex; align-items: center; gap: 10px;
      margin: 18px 0 14px;
    }
    .step-num {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--red); color: #fff;
      display: grid; place-items: center;
      font-weight: 700; font-size: 12px;
    }
    .step-title {
      font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      color: #cbd0d6;
    }

    .pkg-card {
      position: relative;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 16px 18px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: border-color .2s;
      background: #0c0c0c;
    }
    .pkg-card:hover { border-color: rgba(225,29,42,0.4);}
    .pkg-card.selected { border-color: var(--red); background: #0f0606;}
    .pkg-card .top { display: flex; align-items: center; gap: 12px; margin-bottom: 6px;}
    .pkg-card .radio {
      width: 18px; height: 18px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.3);
      display: grid; place-items: center; flex-shrink: 0;
    }
    .pkg-card.selected .radio { border-color: var(--red);}
    .pkg-card.selected .radio::after {
      content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--red);
    }
    .pkg-card h3 {
      font-size: 14px; font-weight: 700; line-height: 1.2;
    }
    .pkg-card p {
      font-size: 11.5px; color: #9aa0a6; line-height: 1.55; margin-bottom: 10px;
    }
    .pkg-card .prices { display: flex; align-items: baseline; gap: 8px; font-size: 12.5px; color: #cbd0d6;}
    .pkg-card .prices .amt {
      font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px;
      color: var(--red);
    }
    .pkg-card .prices .sep {
      width: 1px; height: 12px; background: rgba(255,255,255,0.2); display: inline-block;
    }
    .pkg-card .popular {
      position: absolute; top: 0; right: 0;
      background: var(--red); color: #fff;
      padding: 4px 18px;
      font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
      transform: rotate(45deg) translateX(24px) translateY(8px);
      transform-origin: center;
    }

    .field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px;}
    .field label { font-size: 12px; color: #cbd0d6; font-weight: 500;}
    .field label .req { color: var(--red);}
    .field input, .field select, .field textarea {
      background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08);
      border-radius: 5px; padding: 10px 12px;
      color: #fff; font-family: inherit; font-size: 13px;
      outline: none; transition: border-color .15s;
    }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red);}
    .field input::placeholder, .field textarea::placeholder { color: #6b7280;}
    .field textarea { resize: vertical; min-height: 70px;}

    .totals {
      display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      margin: 14px 0;
      background: #0c0c0c;
    }
    .totals .col .lbl { font-size: 10px; letter-spacing: 1px; color: #9aa0a6; text-transform: uppercase; margin-bottom: 4px;}
    .totals .col .val { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px;}
    .totals .col:first-child .val { color: var(--red);}
    .totals-note { font-size: 11px; color: #9aa0a6; margin-bottom: 16px;}

    .form-col .pay-note {
      text-align: center; font-size: 11px; color: #9aa0a6; margin-top: 12px;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .form-col .pay-note svg { width: 11px; height: 11px;}

    /* ========== Why Teams Choose section ========== */
    .section { padding: 70px 0;}
    .section-sm { padding: 40px 0;}
    .panel {
      border: 1px solid var(--border); border-radius: 10px;
      padding: 38px 36px 42px;
      background: linear-gradient(180deg, #0c0c0c, #050505);
    }
    .panel-title {
      text-align: center;
      font-family: 'Inter', sans-serif; font-weight: 700;
      font-size: clamp(20px, 2.2vw, 26px);
      text-transform: uppercase; letter-spacing: 0.5px;
      margin-bottom: 30px;
    }
    .grid-feat {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 28px;
    }
    .feat {
      text-align: center;
    }
    .feat .ico {
      width: 40px; height: 40px; margin: 0 auto 12px;
      display: grid; place-items: center; color: var(--red);
    }
    .feat .ico svg { width: 28px; height: 28px;}
    .feat h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 8px; line-height: 1.25;}
    .feat p { font-size: 12px; color: #9aa0a6; line-height: 1.55;}

    /* ========== How It Works ========== */
    .how-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
      position: relative;
    }
    .how-step {
      text-align: center; padding: 16px 12px;
      position: relative;
    }
    .how-step .num {
      color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .how-step .ico {
      width: 44px; height: 44px; margin: 0 auto 14px;
      display: grid; place-items: center; color: var(--red);
      border: 1.5px solid rgba(225,29,42,0.5); border-radius: 6px;
    }
    .how-step .ico svg { width: 22px; height: 22px;}
    .how-step h4 { font-size: 12.5px; font-weight: 700; margin-bottom: 6px; text-transform: uppercase;}
    .how-step p { font-size: 11.5px; color: #9aa0a6; line-height: 1.5;}
    .how-arrow {
      position: absolute; top: 32px;
      width: 16px; height: 16px;
      color: var(--red);
    }
    .how-arrow svg { width: 100%; height: 100%;}

    /* ========== Bottom CTA ========== */
    .bottom-cta {
      border: 1px solid var(--border); border-radius: 10px;
      padding: 18px;
      background: linear-gradient(180deg, #0c0c0c, #050505);
      display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
    }
    .bottom-cta .photo {
      width: 200px; height: 110px; border-radius: 6px; overflow: hidden;
      background: url('../images/ts-team-huddle.png') center/cover, #0a0a0a;
      flex-shrink: 0;
    }
    .bottom-cta .copy h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; line-height: 1.2; margin-bottom: 6px;}
    .bottom-cta .copy p { font-size: 13px; color: #b9bec5;}
    .bottom-cta .actions { display: flex; gap: 12px; flex-shrink: 0;}

    /* ========== Footer ========== */
    .footer { background: #050505; border-top: 1px solid var(--border); padding: 50px 0 24px; margin-top: 50px;}
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 36px;}
    .footer h5 {
      font-size: 11px; letter-spacing: 2px; color: #fff; text-transform: uppercase;
      margin-bottom: 14px; font-weight: 700;
    }
    .footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px;}
    .footer a { font-size: 13px; color: #b9bec5; transition: color .2s;}
    .footer a:hover { color: var(--red);}
    .footer .brand img { height: 40px; margin-bottom: 14px;}
    .footer .brand p { color: #9aa0a6; font-size: 13px; max-width: 280px; line-height: 1.6;}
    .footer .socials { display: flex; gap: 10px; margin-top: 16px;}
    .footer .socials a {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: inline-grid; place-items: center;
      transition: border-color .2s, background .2s;
    }
    .footer .socials a:hover { border-color: var(--red); background: rgba(225,29,42,0.1);}
    .footer .socials svg { width: 12px; height: 12px; color: #b9bec5;}
    .footer .contact-list { display: flex; flex-direction: column; gap: 10px;}
    .footer .contact-list div { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #b9bec5;}
    .footer .contact-list svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0;}
    .footer .newsletter form {
      display: flex; gap: 6px;
    }
    .footer .newsletter input {
      flex: 1; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 5px; padding: 10px 12px; color: #fff; font-family: inherit; font-size: 13px;
      outline: none;
    }
    .footer .newsletter input::placeholder { color: #6b7280;}
    .footer .newsletter button {
      background: var(--red); color: #fff;
      width: 40px; border-radius: 5px;
      display: grid; place-items: center;
    }
    .footer .newsletter button svg { width: 14px; height: 14px;}
    .footer .newsletter p { font-size: 12px; color: #9aa0a6; margin-bottom: 10px; line-height: 1.5;}
    .footer-bottom {
      margin-top: 36px; padding-top: 18px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12px; color: #6b7280;
      border-top: 1px solid var(--border);
    }
    .footer-bottom .legal { display: flex; gap: 22px;}

    /* ========== Responsive ========== */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px;}
      .footer .brand, .footer .newsletter { grid-column: 1 / -1;}
      .hero-inner { grid-template-columns: 1fr; gap: 40px;}
      .venues, .hero-features { max-width: none;}
      .nav a { font-size: 11px;}
      .nav { gap: 18px;}
    }
    @media (max-width: 860px) {
      .nav { display: none;}
      .mobile-toggle { display: block;}
      .header-actions .btn-cal { display: none;}
      .hero { padding: 36px 0 50px;}
      .grid-feat { grid-template-columns: repeat(2, 1fr);}
      .how-grid { grid-template-columns: repeat(2, 1fr);}
      .how-arrow { display: none;}
      .bottom-cta { grid-template-columns: 1fr;}
      .bottom-cta .photo { width: 100%; height: 160px;}
      .bottom-cta .actions { flex-direction: column;}
    }
    @media (max-width: 640px) {
      .hero-features { grid-template-columns: repeat(2, 1fr);}
      .grid-feat { grid-template-columns: 1fr;}
      .how-grid { grid-template-columns: 1fr;}
      .footer-grid { grid-template-columns: 1fr;}
      .footer-bottom { flex-direction: column; gap: 10px;}
      .panel { padding: 24px 22px;}
    }



    