@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;1,400&family=Barlow:wght@300;400;500&display=swap');

/* ============================================================
   MSV HAINICHEN – CORE VARIABLES
   ============================================================ */
:root {
  --red:       #D0021B;
  --red-dark:  #920013;
  --black:     #0A0A0A;
  --dark:      #141414;
  --dark-2:    #1E1E1E;
  --grey:      #2C2C2C;
  --grey-mid:  #555;
  --grey-light:#999;
  --white:     #F5F5F5;
  --accent:    #FF2233;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-red    { color: var(--red) !important; }
.text-upper  { text-transform: uppercase; letter-spacing: .1em; }
.section-gap { padding: 80px 0; }
.section-gap-sm { padding: 50px 0; }

/* ============================================================
   DIAGONAL STRIPE ACCENT
   ============================================================ */
.stripe-divider {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0px,
    var(--red) 10px,
    var(--black) 10px,
    var(--black) 20px
  );
}

/* ============================================================
   TOPBAR
   ============================================================ */
#topbar {
  background: var(--red);
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 0;
}
#topbar a:hover { color: var(--black); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
  padding: 0;
  transition: background .3s;
  z-index: 1050;
}
#mainNav.sticky-top { position: sticky; top: 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.navbar-brand img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(208,2,27,.6));
}
.brand-text {
  line-height: 1.1;
}
.brand-text .club-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: .08em;
  color: var(--white);
}
.brand-text .club-sub {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

.navbar-toggler {
  border: 1px solid var(--red);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28208,2,27,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white) !important;
  padding: 22px 16px !important;
  position: relative;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--red) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* ============================================================
   HERO – HOMEPAGE
   ============================================================ */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.72) 42%, rgba(10,10,10,.36) 100%),
    linear-gradient(180deg, rgba(10,10,10,.18) 0%, rgba(10,10,10,.82) 100%),
    url('../images/header.png') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(208,2,27,.16) 0%, transparent 70%);
}

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

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .92;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .outline-text {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-title .red-word { color: var(--red); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 480px;
  margin-bottom: 36px;
}

.btn-msv {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, color .2s;
  display: inline-block;
  cursor: pointer;
}
.btn-msv:hover {
  background: transparent;
  color: var(--red);
}
.btn-msv-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-msv-outline:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-cond);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero stats bar */
.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
}
.hero-stat .label {
  font-family: var(--font-cond);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey-light);
}

/* Track status traffic light */
.track-status {
  width: min(100%, 560px);
  margin-top: 32px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(20,20,20,.86);
  border: 1px solid var(--grey);
  border-left: 4px solid var(--grey-mid);
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}
.track-status-green { border-left-color: #22c55e; }
.track-status-yellow { border-left-color: #facc15; }
.track-status-red { border-left-color: var(--red); }

.traffic-light {
  flex: 0 0 auto;
  width: 42px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: #080808;
  display: grid;
  gap: 7px;
}
.traffic-light-horizontal {
  width: auto;
  grid-template-columns: repeat(3, 18px);
}
.light {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  opacity: .22;
  background: var(--grey-mid);
  box-shadow: inset 0 0 7px rgba(0,0,0,.65);
}
.light.red { background: #ef4444; }
.light.yellow { background: #facc15; }
.light.green { background: #22c55e; }
.light.active {
  opacity: 1;
  box-shadow: 0 0 18px currentColor, inset 0 0 5px rgba(255,255,255,.35);
}
.light.red.active { color: #ef4444; }
.light.yellow.active { color: #facc15; }
.light.green.active { color: #22c55e; }

.track-status-copy { min-width: 0; }
.track-status-label {
  font-family: var(--font-cond);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--white);
}
.track-status-copy p {
  margin: 4px 0 2px;
  color: var(--grey-light);
  font-size: .95rem;
  line-height: 1.45;
}
.track-status-meta {
  font-family: var(--font-cond);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.track-status-band {
  background: var(--dark);
  padding: 34px 0;
}
.track-status-wide {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--dark-2);
  border: 1px solid var(--grey);
  border-left: 5px solid var(--grey-mid);
}
.track-status-wide.track-status-green { border-left-color: #22c55e; }
.track-status-wide.track-status-yellow { border-left-color: #facc15; }
.track-status-wide.track-status-red { border-left-color: var(--red); }
.track-status-wide .eyebrow {
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.track-status-wide h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--white);
}
.track-status-wide p {
  margin: 0;
  color: var(--grey-light);
  max-width: 760px;
}
.track-status-updated {
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: right;
  color: var(--grey-light);
  white-space: nowrap;
}
.track-status-updated strong {
  display: inline-block;
  margin-top: 3px;
  color: var(--white);
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading {
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--white);
}
.section-heading .lead {
  color: var(--grey-light);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 560px;
}
.heading-line {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 14px 0 0;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--dark-2);
  border: 1px solid var(--grey);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  height: 100%;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.news-card .card-img-wrapper {
  overflow: hidden;
  height: 200px;
}
.news-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-card:hover .card-img-wrapper img { transform: scale(1.06); }
.news-card .card-body { padding: 24px; }
.news-card .card-cat {
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.news-card .card-date {
  font-size: .8rem;
  color: var(--grey-mid);
  margin-bottom: 10px;
}
.news-card h4 {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-card p { font-size: .9rem; color: var(--grey-light); }
.news-card .card-link {
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card .card-link::after { content: '→'; transition: transform .2s; }
.news-card:hover .card-link::after { transform: translateX(4px); }

/* ============================================================
   EVENT TABLE / CARDS
   ============================================================ */
.event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  background: var(--dark-2);
  border-left: 4px solid transparent;
  border-bottom: 1px solid var(--grey);
  transition: border-color .25s, background .25s;
}
.event-row:hover {
  border-left-color: var(--red);
  background: var(--grey);
}
.event-date-box {
  flex-shrink: 0;
  width: 62px;
  text-align: center;
  background: var(--red);
  padding: 8px 4px;
}
.event-date-box .day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
}
.event-date-box .month {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.event-info { flex: 1; }
.event-info h5 {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.event-info .meta {
  font-size: .82rem;
  color: var(--grey-light);
}
.event-badge {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  white-space: nowrap;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(208,2,27,.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  font-size: 2rem;
  color: var(--white);
}
.gallery-item:hover .overlay { opacity: 1; }

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(255,255,255,.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .02em;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
}
.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin-top: 12px;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: var(--grey-light); font-size: .82rem; }
.page-hero .breadcrumb-item.active { color: var(--red); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: var(--grey-mid); }

/* ============================================================
   ABOUT / VEREIN
   ============================================================ */
.about-block {
  background: var(--dark-2);
  border: 1px solid var(--grey);
  padding: 32px;
}
.about-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 12px;
}
.about-block .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--grey-light);
  --bs-table-border-color: var(--grey);
  color: var(--grey-light) !important;
  font-size: .92rem;
}
.about-block .table td {
  background: transparent;
  color: var(--grey-light);
  padding: .65rem .5rem;
}
.about-block .table td:first-child {
  color: var(--white) !important;
  font-weight: 600;
}
.vorstand-card {
  background: var(--dark-2);
  border: 1px solid var(--grey);
  padding: 24px;
  text-align: center;
  transition: border-color .25s;
}
.vorstand-card:hover { border-color: var(--red); }
.vorstand-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 2rem;
  color: var(--red);
  border: 2px solid var(--red);
}
.vorstand-card h5 {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.vorstand-card .rolle {
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--dark-2);
  border: 1px solid var(--grey);
  color: var(--white);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--red);
  background: var(--dark-2);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(208,2,27,.15);
}
.contact-form label {
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 6px;
}
.contact-form textarea { min-height: 150px; }
.contact-form ::placeholder { color: var(--grey-mid); }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  background: var(--dark-2);
  border: 1px solid var(--grey);
  padding: 40px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  margin-top: 32px;
  margin-bottom: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--grey-light); font-size: .92rem; line-height: 1.75; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content a { color: var(--red); text-decoration: underline; }

/* ============================================================
   SPONSOR STRIP
   ============================================================ */
.sponsor-strip {
  background: var(--dark);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  padding: 30px 0;
}
.sponsor-strip p {
  font-family: var(--font-cond);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}
.sponsor-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity .3s;
}
.sponsor-logos:hover { opacity: .8; }
.sponsor-logos span {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 60px 0 0;
}
#footer .footer-logo img {
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(208,2,27,.5));
}
#footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--white);
}
#footer .footer-sub {
  font-family: var(--font-cond);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}
#footer .footer-desc {
  font-size: .88rem;
  color: var(--grey-mid);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.7;
}

#footer h6 {
  font-family: var(--font-cond);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
#footer ul li {
  margin-bottom: 8px;
}
#footer ul li a {
  font-size: .88rem;
  color: var(--grey-mid);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
#footer ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  background: rgba(0,0,0,.4);
  padding: 18px 0;
  margin-top: 48px;
  font-size: .78rem;
  color: var(--grey-mid);
  border-top: 1px solid var(--grey);
}
.footer-bottom a { color: var(--grey-mid); }
.footer-bottom a:hover { color: var(--red); }

/* Social icons */
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--grey-light);
  transition: background .2s, border-color .2s, color .2s;
}
.social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .nav-link { padding: 12px 16px !important; }
  .nav-link::after { display: none; }
  .hero-stats { gap: 24px; }
  .track-status-wide {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .track-status-updated {
    grid-column: 2;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .section-gap { padding: 56px 0; }
  #topbar { display: none; }
  .event-row { flex-wrap: wrap; }
  .legal-content { padding: 24px; }
  .track-status {
    align-items: flex-start;
    padding: 14px;
  }
  .track-status-label {
    font-size: 1.02rem;
  }
  .track-status-band {
    padding: 24px 0;
  }
  .track-status-wide {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .track-status-updated {
    grid-column: auto;
  }
}
