:root{
      --black:#0b0b0b;
      --white:#ffffff;

      --gray-50:#f7f7f7;
      --gray-100:#f1f1f1;
      --gray-200:#e2e2e2;
      --gray-300:#d5d5d5;
      --gray-400:#b5b5b5;
      --gray-700:#3a3a3a;

      --orange:#e06b1a;
      --orange-dark:#c85f17;
      --orange-soft:#fff1e6;

      --max:1100px;
      --radius:20px;

      --shadow-soft: 0 10px 24px rgba(0,0,0,.10);
      --shadow: 0 22px 60px rgba(0,0,0,.22);

      --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: var(--font);
      color:var(--black);
      background: var(--white);
      line-height:1.6;
      font-size:16px;
    }
    a{color:inherit}
    .container{width:min(var(--max), calc(100% - 2rem)); margin-inline:auto}
    .muted{color:var(--gray-700)}
    .sr-only{
      position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
    }

    /* Top bar */
    .topbar{
      background:var(--black);
      color:var(--gray-200);
      font-size:.9rem;
    }
    .topbar .inner{
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
      padding:.65rem 0;
    }
    .topbar a{color:var(--gray-200); text-decoration:none}
    .topbar a:hover{color:var(--white)}
    .topbar .meta{display:flex; gap:1rem; flex-wrap:wrap}
    .topbar .meta span{opacity:.9}

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,11,11,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.75rem;
      text-decoration:none;
      color:var(--white);
      white-space:nowrap;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, #111, #000);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      place-items:center;
      box-shadow:0 6px 20px rgba(0,0,0,.35);
      font-size:.95rem;
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }

    /* --- NAV: smooth hover + dropdowns --- */
.primary-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:1.1rem;
}

.primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:var(--gray-200);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  padding:.45rem .2rem;
  transition: color .18s ease, transform .18s ease;
  will-change: transform;
}

/* Animated underline */
.primary-nav a::after{
  content:"";
  position:absolute;
  left:.2rem;
  right:.2rem;
  bottom:.15rem;
  height:2px;
  border-radius:999px;
  background: var(--orange, #e06b1a);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}

/* Hover / focus animation */
.primary-nav a:hover,
.primary-nav a:focus-visible{
  color:var(--white);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Dropdown container */
.has-dropdown{
  position:relative;
}

/* Chevron subtle animation */
.has-dropdown .chev{
  font-size:.8rem;
  opacity:.85;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev{
  transform: translateY(1px) rotate(180deg);
  opacity:1;
}

/* Dropdown panel */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  margin-top: .35rem;
  min-width: 220px;
  padding:.5rem;
  margin:0;
  list-style:none;

  background: rgba(11,11,11,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

/* Open on hover (desktop) + keyboard focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Dropdown links */
.dropdown a{
  width:100%;
  padding:.65rem .6rem;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-weight:650;
  font-size:.92rem;
}

.dropdown a::after{ display:none; } /* remove underline inside dropdown */
.dropdown a:hover,
.dropdown a:focus-visible{
  background: rgba(255,255,255,.07);
  transform: none;
  color: var(--white);
}

/* Keep your existing mobile breakpoint behaviour */
@media (max-width: 980px){
  .primary-nav .nav-list{display:none;} /* you already hide desktop nav here */
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.topbar-social{
  display:flex;
  gap:.45rem;
  margin-left:.5rem;
}

.topbar-social a{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: background .15s ease, transform .15s ease;
}

.topbar-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.topbar-social svg{
  width:14px;
  height:14px;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 560px){
  .topbar-social{
    display:none;
  }
}


    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      padding:.7rem 1rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:transparent;
      color:var(--white);
      text-decoration:none;
      font-weight:700;
      font-size:.95rem;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.26)}
    .btn.primary{
      background:var(--orange);
      color:var(--white);
      border-color:transparent;
    }

    .btn.primary:hover{
      background:var(--orange-dark);
    }

 .btn-orange{
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.btn-orange:hover{
  background: var(--orange-dark);
  color: var(--white);
}


    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
    }
    .burger:active{transform: translateY(1px)}

    /* Mobile nav */
    @media (max-width: 980px){
      nav ul{display:none}
      .burger{display:inline-grid; place-items:center}
    }
    .mobile-menu{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(11,11,11,.92);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:block;
      padding:1rem 0;
      color:var(--gray-200);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-weight:650;
    }
    .mobile-menu a:hover{color:var(--white)}
    .mobile-menu .container{padding-bottom:.25rem}

    /* Poster hero */
    .poster{
      position:relative;
      overflow:hidden;
      background:#000;
    }
    .poster::before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.88) 100%),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2400&q=80");
      background-size: cover;
      background-position:center;
      transform: scale(1.04);
    }
    .poster::after{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 420px at 18% 18%, rgba(224,107,26,.45), transparent 60%),
        radial-gradient(1000px 520px at 80% 70%, rgba(255,255,255,.10), transparent 65%);
      pointer-events:none;
    }

    .poster-inner{
      position:relative;
      width:min(var(--max), calc(100% - 2rem));
      margin-inline:auto;
      padding: 3.1rem 0 2.6rem;
      color: var(--white);
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 1.1rem;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .poster-inner{ grid-template-columns: 1fr; padding: 2.4rem 0 2.3rem; }
    }

    .poster-title{
      display:flex;
      flex-direction:column;
      gap:.85rem;
      padding: 1.2rem 1.2rem 1.15rem;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.20);
      backdrop-filter: blur(12px);
      box-shadow: 0 26px 80px rgba(0,0,0,.45);
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      width:max-content;
      padding:.35rem .7rem;
      border-radius:999px;
      background: rgba(224,107,26,.18);
      border:1px solid rgba(224,107,26,.30);
      color:#ffd7b8;
      font-weight:950;
      font-size:.85rem;
    }
    .poster-title h1{
      margin:0;
      font-size: clamp(2.5rem, 4.2vw, 3.7rem);
      letter-spacing:-1px;
      font-weight:1000;
      line-height:1.03;
      max-width: 16ch;
      text-shadow: 0 10px 40px rgba(0,0,0,.35);
    }
    .poster-title p{
      margin:0;
      color: rgba(255,255,255,.86);
      font-weight:650;
      font-size:1.05rem;
      max-width: 70ch;
      line-height:1.75;
    }

    .turnup{
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.10);
      padding: 1.15rem 1.15rem 1.2rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 26px 80px rgba(0,0,0,.45);
      display:flex;
      flex-direction:column;
      gap:.85rem;
    }
    .turnup h2{
      margin:0;
      font-size: 1.15rem;
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .turnup p{
      margin:0;
      color: rgba(255,255,255,.84);
      font-weight:650;
      line-height:1.6;
    }

    .info-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:.7rem;
      margin-top:.15rem;
    }
    @media (max-width: 520px){ .info-grid{ grid-template-columns:1fr; } }

    .info{
      padding:.85rem .9rem;
      border-radius: 20px;
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.12);
      display:flex;
      gap:.75rem;
      align-items:flex-start;
    }
    .ico{
      width:42px;height:42px;border-radius:16px;
      display:grid; place-items:center;
      background: rgba(224,107,26,.18);
      border: 1px solid rgba(224,107,26,.30);
      color:#ffd7b8;
      font-weight:1000;
      flex:0 0 auto;
    }
    .info b{
      display:block;
      font-weight:1000;
      color: rgba(255,255,255,.96);
      letter-spacing:-.1px;
    }
    .info span{
      display:block;
      margin-top:.15rem;
      color: rgba(255,255,255,.82);
      font-weight:650;
      line-height:1.55;
      font-size:.95rem;
    }
    .turnup .actions{
      display:flex;
      gap:.7rem;
      flex-wrap:wrap;
      margin-top:.2rem;
    }

    /* How it works strip */
    .how-it-works{
      padding: 3rem 0;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
    }
    .how-grid{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:1rem;
    }
    .how{
      background: var(--white);
      border:1px solid var(--gray-200);
      border-radius: 26px;
      padding:1.2rem 1.15rem;
      box-shadow: var(--shadow-soft);
    }
    .how-ico{ font-size: 1.75rem; }
    .how strong{
      display:block;
      margin-top:.55rem;
      font-weight:1000;
      letter-spacing:-.15px;
    }
    .how p{
      margin:.35rem 0 0;
      color: var(--gray-700);
      font-weight:650;
      line-height:1.75;
    }
    @media (max-width:900px){
      .how-grid{ grid-template-columns:1fr; }
    }

    /* Upcoming section */
    .upcoming{
      background: linear-gradient(180deg, var(--gray-100), var(--orange-soft));
      border-top: 1px solid rgba(0,0,0,.06);
      border-bottom: 1px solid rgba(0,0,0,.06);
      padding: 3.2rem 0;
    }
    .up-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:1rem;
      flex-wrap:wrap;
      margin-bottom: 1.05rem;
    }
    .up-head h2{
      margin:0;
      font-size: clamp(2rem, 2.8vw, 2.45rem);
      letter-spacing:-.6px;
      font-weight:1000;
    }
    .up-head p{ margin:.45rem 0 0; max-width: 78ch; font-weight:650; line-height:1.75; }

    .show-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.05rem;
      margin-top: 1.1rem;
    }
    @media (max-width: 1100px){ .show-grid{ grid-template-columns: 1fr 1fr; } }
    @media (max-width: 680px){ .show-grid{ grid-template-columns: 1fr; } }

    .show-card{
      border-radius: 26px;
      overflow:hidden;
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: var(--shadow);
      background: var(--white);
      display:flex;
      flex-direction:column;
      min-height: 470px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .show-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 28px 70px rgba(0,0,0,.22);
    }
    .show-media{
      height: 240px;
      background:#111;
      position:relative;
      overflow:hidden;
    }
    .show-media::before{
      content:"";
      position:absolute; inset:0;
      background-image: var(--img);
      background-size: cover;
      background-position:center;
      transform: scale(1.03);
      filter: saturate(1.05);
    }
    .show-media::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.60));
    }
    .badge-row{
      position:absolute;
      left: 14px;
      top: 14px;
      display:flex;
      gap:.45rem;
      flex-wrap:wrap;
      z-index:2;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      padding:.35rem .65rem;
      border-radius:999px;
      font-weight:950;
      font-size:.82rem;
      border:1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.92);
      background: rgba(0,0,0,.22);
      backdrop-filter: blur(10px);
    }
    .badge.accent{
      background: rgba(224,107,26,.22);
      border-color: rgba(224,107,26,.35);
      color:#ffd7b8;
    }

    .show-body{
      padding: 1.05rem 1.05rem 1.15rem;
      display:flex;
      flex-direction:column;
      gap:.55rem;
      flex: 1;
    }
    .show-body h3{
      margin:0;
      font-size:1.22rem;
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .show-body p{
      margin:0;
      color: var(--gray-700);
      font-weight:650;
      line-height:1.65;
    }
    .meta{
      margin-top:.25rem;
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
    }
    .pillmeta{
      padding:.35rem .6rem;
      border-radius:999px;
      background: var(--gray-100);
      border:1px solid var(--gray-200);
      color: var(--gray-700);
      font-weight:850;
      font-size:.9rem;
    }

    .show-actions{
      margin-top:auto;
      display:flex;
      gap:.6rem;
      flex-wrap:wrap;
      align-items:center;
    }

    .mini{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height: 44px;
      padding: .75rem .95rem;
      font-size:.92rem;
      border:1px solid var(--gray-200);
      border-radius: 999px;
      background: var(--white);
      color: var(--black);
      font-weight:950;
      cursor:pointer;
      text-decoration:none;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .mini:hover{ transform: translateY(-1px); background: var(--gray-50); border-color: rgba(224,107,26,.25); }
    .mini.primary{
      background: var(--orange);
      color: var(--white);
      border-color: transparent;
    }
    .mini.primary:hover{ background: var(--orange-dark); }

    /* Modal */
    .modal{display:none;}
    .modal.open{display:block;}
    .backdrop{
      position:fixed; inset:0;
      background: rgba(0,0,0,.62);
      z-index: 2000;
    }
    .panel{
      position:fixed;
      z-index: 2001;
      left:50%; top:50%;
      transform: translate(-50%, -50%);
      width:min(760px, calc(100% - 2rem));
      background: var(--white);
      border-radius: 22px;
      border: 1px solid var(--gray-200);
      box-shadow: 0 30px 90px rgba(0,0,0,.40);
      overflow:hidden;
    }
    .panel-media{
      height: 250px;
      background:#111;
      position:relative;
    }
    .panel-media::before{
      content:"";
      position:absolute; inset:0;
      background-image: var(--mimg);
      background-size: cover;
      background-position:center;
      transform: scale(1.03);
    }
    .panel-media::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62));
    }
    .close{
      position:absolute;
      top: 12px; right: 12px;
      width: 44px; height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(0,0,0,.22);
      color: var(--white);
      cursor:pointer;
      z-index: 3;
      backdrop-filter: blur(10px);
      font-weight:1000;
    }
    .panel-content{ padding: 1.1rem 1.2rem 1.25rem; }
    .panel-content h3{
      margin:0;
      font-size:1.35rem;
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .panel-pills{
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
      margin:.75rem 0 .8rem;
    }
    .panel-pills .pillmeta{
      background: var(--orange-soft);
      border-color: rgba(224,107,26,.25);
      color: var(--orange-dark);
    }
    .panel-content p{
      margin:0;
      color: var(--gray-700);
      font-weight:650;
      line-height:1.7;
    }
    .panel-actions{
      margin-top: 1.05rem;
      display:flex;
      gap:.7rem;
      flex-wrap:wrap;
      align-items:center;
    }

    /* Toast */
    .toast{
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      background: rgba(0,0,0,.86);
      color: rgba(255,255,255,.95);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      padding: .7rem 1rem;
      font-weight: 850;
      box-shadow: 0 18px 50px rgba(0,0,0,.35);
      z-index: 3000;
      opacity: 0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .toast.show{
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
    }

    /* Shared section head */
  .sec-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom: 1.05rem;
  }
  .sec-head h2{
    margin:0;
    font-size: clamp(1.9rem, 2.6vw, 2.35rem);
    letter-spacing:-.6px;
    font-weight:1000;
  }
  .sec-head p{ margin:.45rem 0 0; max-width: 78ch; font-weight:650; line-height:1.75; }

  /* Ghost button variant (matches your button sizing) */
  .btn.btn-ghost{
    background: var(--white);
    color: var(--black);
    border:1px solid var(--gray-200);
  }
  .btn.btn-ghost:hover{
    background: var(--gray-50);
    border-color: rgba(224,107,26,.25);
  }

 /* ---------- Featured Cars ---------- */
.fc{
  padding: 3.2rem 0;
  background:
    radial-gradient(900px 360px at 18% 20%, rgba(224,107,26,.10), transparent 60%),
    linear-gradient(180deg, var(--white), var(--gray-50));
  border-top: 1px solid rgba(0,0,0,.06);
}
.fc-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom: 1.1rem;
}
.fc-head h2{
  margin:0;
  font-size: clamp(1.9rem, 2.6vw, 2.35rem);
  letter-spacing:-.6px;
  font-weight: 1000;
}
.fc-controls{display:flex; gap:.55rem;}
.fc-btn{
  width:46px; height:46px;
  border-radius: 16px;
  border:1px solid var(--gray-200);
  background: var(--white);
  font-weight: 1000;
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.fc-btn:hover{ transform: translateY(-1px); border-color: rgba(224,107,26,.28); background: var(--gray-50); }

.fc-stage{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
  align-items: stretch;
}

/* Spotlight */
.fc-spot{
  position:relative;
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(224,107,26,.18);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  background: #111;
  min-height: 520px;
}
.fc-spot-media{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.fc-spot::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.78) 70%, rgba(0,0,0,.88) 100%);
}

#fcSpotTitle{
    padding-bottom: 1em;
}

.fc-spot-overlay{
  position:absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.25rem 1.2rem;
  z-index: 2;
}
.fc-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background: rgba(224,107,26,.22);
  border:1px solid rgba(224,107,26,.35);
  color:#ffd7b8;
  font-weight: 950;
  font-size:.85rem;
}
.fc-spot-overlay h3{
  margin:.7rem 0 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  letter-spacing:-.6px;
  font-weight: 1000;
}
.fc-spot-overlay p{ margin:.45rem 0 0; color: rgba(255,255,255,.82); font-weight: 650; max-width: 70ch; }

.fc-meta{
  display:flex;
  gap:.55rem;
  flex-wrap:wrap;
  margin: .95rem 0 1.05rem;
}
.fc-chip{
  display:inline-flex;
  align-items:center;
  padding:.35rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size:.9rem;
}
.fc-actions{ display:flex; gap:.7rem; flex-wrap:wrap; }

/* Rail (right) */
.fc-rail{
  display:grid;
  gap:.85rem;
}
.fc-card{
  text-align:left;
  width:100%;
  border-radius: 22px;
  padding: 1rem 1rem 1.05rem;
  border:1px solid var(--gray-200);
  background: var(--white);
  cursor:pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  display:grid;
  grid-template-columns: 54px 1fr;
  gap: .9rem;
  align-items: start;
}
.fc-card:hover{ transform: translateY(-2px); border-color: rgba(224,107,26,.25); box-shadow: 0 20px 55px rgba(0,0,0,.14); }
.fc-card.is-active{
  border-color: rgba(224,107,26,.35);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  background: linear-gradient(180deg, var(--white), var(--orange-soft));
}
.fc-card-num{
  width:54px; height:54px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: var(--orange-soft);
  border: 1px solid rgba(224,107,26,.25);
  color: var(--orange-dark);
  font-weight: 1000;
}
.fc-card-title{
  display:block;
  font-weight: 1000;
  letter-spacing: -.2px;
  color: var(--black);
  margin-top:.15rem;
  font-size: 18px;
}
.fc-card-sub{
  display:block;
  margin-top:.25rem;
  color: var(--gray-700);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .fc-stage{ grid-template-columns: 1fr; }
  .fc-spot{ min-height: 420px; }
}


   /* ===== SPONSORS ===== */
  .sponsors{
    padding: 3.2rem 0;
    background:
      radial-gradient(900px 360px at 18% 30%, rgba(224,107,26,.10), transparent 60%),
      linear-gradient(180deg, var(--white), var(--gray-50));
    border-top: 1px solid rgba(0,0,0,.06);
  }

  .sponsor-wrap{
    margin-top: 1.1rem;
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }

  .sponsor-card{
    grid-column: span 4;
    border-radius: 26px;
    background: var(--white);
    border:1px solid var(--gray-200);
    box-shadow: var(--shadow);
    padding: 1.1rem 1.05rem 1.15rem;
    display:flex;
    flex-direction:column;
    gap:.65rem;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
  }
  .sponsor-card:hover{
    transform: translateY(-3px);
    border-color: rgba(224,107,26,.28);
    box-shadow: 0 28px 70px rgba(0,0,0,.20);
  }

  .sponsor-top{
    display:flex;
    gap:.85rem;
    align-items:center;
  }
  .sponsor-mark{
    width:52px;height:52px;border-radius:18px;
    display:grid; place-items:center;
    background: var(--orange-soft);
    border: 1px solid rgba(224,107,26,.25);
    color: var(--orange-dark);
    font-weight:1000;
    letter-spacing:-.3px;
    flex:0 0 auto;
  }
  .sponsor-top strong{ display:block; font-weight:1000; letter-spacing:-.2px; }
  .sponsor-links{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:auto; }

  .s-link{
    display:inline-flex;
    align-items:center;
    gap:.35rem;
    font-weight:950;
    color: var(--black);
    text-decoration:none;
    border-bottom:2px solid transparent;
    padding:.25rem .1rem;
  }
  .s-link:hover{ border-color: rgba(224,107,26,.55); color: var(--orange-dark); }

  /* Callout tile */
  .sponsor-callout{
    grid-column: span 12;
    border: 1px solid rgba(224,107,26,.25);
    background:
      radial-gradient(700px 220px at 18% 35%, rgba(224,107,26,.20), transparent 60%),
      linear-gradient(180deg, var(--white), var(--orange-soft));
  }
  .callout-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
  }
  .callout-ico{
    width:54px;height:54px;border-radius:18px;
    display:grid; place-items:center;
    background: rgba(224,107,26,.14);
    border: 1px solid rgba(224,107,26,.25);
    color: var(--orange-dark);
    font-size:1.4rem;
    flex:0 0 auto;
  }

  .sponsor-strip{
    margin-top: 1.05rem;
    display:flex;
    align-items:center;
    gap:.6rem;
    color: var(--gray-700);
    font-weight:650;
  }
  .strip-dot{
    width:10px;height:10px;border-radius:999px;
    background: rgba(224,107,26,.85);
    box-shadow: 0 0 0 6px rgba(224,107,26,.12);
  }

  @media (max-width: 1000px){
    .sponsor-card{ grid-column: span 6; }
  }
  @media (max-width: 680px){
    .sponsor-card{ grid-column: span 12; }
    .callout-inner{ align-items:flex-start; }
  }

  /* ---------- Photo Wall (curation wall) ---------- */
.pw{
  padding: 3.2rem 0;
  background:
    radial-gradient(900px 360px at 78% 18%, rgba(224,107,26,.10), transparent 60%),
    linear-gradient(180deg, var(--gray-50), var(--white));
  border-top: 1px solid rgba(0,0,0,.06);
}
.pw-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom: 1.1rem;
}
.pw-head h2{
  margin:0;
  font-size: clamp(1.9rem, 2.6vw, 2.35rem);
  letter-spacing:-.6px;
  font-weight: 1000;
}
.pw-actions{display:flex; gap:.7rem; flex-wrap:wrap; align-items:center;}

.pw-wall{
  display:grid;
  gap: 1rem;
}

/* Tiles */
.pw-tile{
  position:relative;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  overflow:hidden;
  background: #111;
  cursor:pointer;
  box-shadow: var(--shadow);
  min-height: 240px;
  outline:none;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.pw-tile::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.pw-tile::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.68));
  pointer-events:none;
}
.pw-tile:hover,
.pw-tile:focus-visible{
  transform: translateY(-3px);
  border-color: rgba(224,107,26,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.20);
}
.pw-caption{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:.15rem;
  color: rgba(255,255,255,.92);
  text-align:left;
}
.pw-caption strong{
  font-weight: 1000;
  letter-spacing:-.2px;
}
.pw-caption .muted{ color: rgba(255,255,255,.78); }

.pw-badge{
  position:absolute;
  left: 14px;
  top: 14px;
  z-index:2;
  padding:.35rem .65rem;
  border-radius:999px;
  background: rgba(224,107,26,.22);
  border:1px solid rgba(224,107,26,.35);
  color:#ffd7b8;
  font-weight: 950;
  font-size:.85rem;
  backdrop-filter: blur(10px);
}

/* Wall layout */
.pw-hero{ min-height: 420px; }

.pw-wall{
  grid-template-columns: 1fr;
}
.pw-wall .pw-hero{
  width:100%;
}
.pw-wall{
  display:grid;
  gap:1rem;
}
.pw-wall > .pw-tall{
  min-height: 360px;
}

.pw-cluster{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:1rem;
}
.pw-cluster .pw-tile{ min-height: 230px; }

.pw-note{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding: .35rem .25rem 0;
}
.pw-dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(224,107,26,.85);
  box-shadow: 0 0 0 6px rgba(224,107,26,.12);
}

@media (max-width: 980px){
  .pw-hero{ min-height: 320px; }
  .pw-wall > .pw-tall{ min-height: 280px; }
}
@media (max-width: 640px){
  .pw-cluster{ grid-template-columns: 1fr; }
}

/* ---------- Lightbox ---------- */
.lb{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.lb.open{ display:block; }

.lb-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.lb-panel{
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 2rem));
  max-height: 86vh;
  border-radius: 22px;
  overflow:hidden;
  background: #0b0b0b;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lb-panel img{
  display:block;
  width:100%;
  max-height: 76vh;
  object-fit: contain;
  background: #000;
  transition: opacity .15s ease;
}
.lb-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor:pointer;
  font-weight: 900;
  z-index: 2;
}
.lb-hint{
  padding: .75rem 1rem;
  background: rgba(0,0,0,.65);
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-weight: 650;
}





/* Footer */
    /* --- FOOTER COMPLETE --- */
.site-footer{
  background:#050505;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.10);
}

.site-footer .container{
  padding:2.75rem 0 1.25rem;
}

.site-footer::before{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(
    90deg,
    rgba(224,107,26,0),
    rgba(224,107,26,.9),
    rgba(224,107,26,0)
  );
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns:1.15fr 1.85fr;
  gap:2rem;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.footer-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:950;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.footer-brand p{
  margin:.45rem 0 0;
  max-width:50ch;
}

/* Social */
.footer-social{
  margin-top:.75rem;
  display:flex;
  gap:.6rem;
}

.footer-social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.9);
}


/* Columns */
.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1.25fr; /* hours | map */
  gap: 1.75rem;
}


.footer-col h4{
  margin:0 0 .75rem;
  font-size:.95rem;
  color:var(--white);
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
}

.footer-col a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-col a:hover{
  color:var(--orange);
}

/* Opening hours */
.hours{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}

.hours li{
  display:grid;
  grid-template-columns: 1fr auto; /* left label + right time */
  align-items:baseline;
  gap:1rem;
  padding:.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.hours li:last-child{
  border-bottom:none;
}

.hours li span:first-child{
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.hours li span:last-child{
  color: rgba(255,255,255,.76);
  font-weight: 650;
  white-space:nowrap; /* prevents wrapping into weird shapes */
}

/* Map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
}

.address{
  margin-top:.5rem;
  font-size:.85rem;
}

/* Bottom */
.footer-bottom{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.9rem;
  color:rgba(255,255,255,.65);
}

/* Back to top */
.back-to-top{
  color:var(--orange);
  font-weight:800;
  text-decoration:none;
}
.back-to-top:hover{
  text-decoration:underline;
}

/* Footer readability overrides */
.site-footer .muted{
  color: rgba(255,255,255,.70) !important;
}

.site-footer p,
.site-footer li,
.site-footer span{
  color: rgba(255,255,255,.78);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.68);
}

.site-footer .address{
  color: rgba(255,255,255,.72);
}

/* =========================
   RESPONSIVE POLISH — Car Shows
   Paste at VERY END of carshow.css
   ========================= */

/* Tablet (<= 980px) */
@media (max-width: 980px){
  /* Topbar stacks instead of squeezing */
  .topbar .inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }

  /* Brand can wrap */
  .brand{
    white-space: normal;
    max-width: 78%;
    line-height: 1.15;
  }

  /* Poster: tighter spacing */
  .poster-inner{
    padding: 2.2rem 0 2.2rem;
  }

  /* How strip: keep it breathable */
  .how-it-works{ padding: 2.4rem 0; }

  /* Modal image slightly taller on tablets */
  .panel-media{ height: 260px; }

  /* Featured cars: ensure spotlight not too tall */
  .fc-spot{ min-height: 420px; }

  /* Footer collapses */
  .footer-top{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-map iframe{ height: 220px; }
}

/* Phone (<= 560px) */
@media (max-width: 560px){
  /* Reduce section padding */
  .poster-inner{ padding: 1.7rem 0 1.8rem; }
  .how-it-works{ padding: 2rem 0; }
  .upcoming{ padding: 2.2rem 0; }
  .fc{ padding: 2.2rem 0; }
  .sponsors{ padding: 2.2rem 0; }
  .pw{ padding: 2.2rem 0; }

  /* Header: hide "All events" button to avoid crowding */
  .nav-cta .btn.primary{ display:none; }

  /* Poster: heading + paragraph scale */
  .poster-title h1{
    font-size: clamp(2rem, 7vw, 2.6rem);
    max-width: 22ch;
  }
  .poster-title p{ font-size: 1rem; }

  /* Turnup: make the button full width (tap friendly) */
  .turnup .actions{ width:100%; }
  .turnup .actions .btn{ width:100%; justify-content:center; }

  /* How cards: already 1-col at 900px, but tighten padding */
  .how{ padding: 1rem; border-radius: 22px; }

  /* Show cards: make actions stack full width */
  .show-media{ height: 210px; }
  .show-card{ min-height: auto; }
  .show-actions{ width:100%; }
  .show-actions .mini{
    width:100%;
    justify-content:center;
  }

  /* Modal: near full-screen for readability */
  .panel{
    width: calc(100% - 1rem);
    border-radius: 18px;
  }
  .panel-media{ height: 210px; }
  .panel-actions .mini{
    width:100%;
    justify-content:center;
  }

  /* Featured cars: convert rail to horizontal scroll */
  .fc-stage{ grid-template-columns: 1fr; }
  .fc-spot{ min-height: 360px; }

  .fc-rail{
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: .35rem;
  }
  .fc-card{
    scroll-snap-align: start;
    min-width: 240px;
  }

  /* Sponsors: already collapses at 680px, but reduce card radius/padding */
  .sponsor-card{
    border-radius: 22px;
    padding: 1rem;
  }

  /* Photo wall: cluster becomes 1-col already at 640px, reduce heights */
  .pw-wall > .pw-tall{ min-height: 240px; }
  .pw-tile{ min-height: 210px; }

  /* Lightbox: make image feel better on mobile */
  .lb-panel{
    width: calc(100% - 1rem);
    border-radius: 18px;
  }
  .lb-panel img{
    max-height: 68vh;
  }

  /* Footer hours: stop weird wrapping */
  .hours li{
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .hours li span:last-child{ white-space: normal; }

  /* Footer bottom stacks */
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }
}
