/* ==========================================================================
   Traktorrennen Reingers — Design System 2026
   „24 Stunden um das Goldene Hanfblatt"
   ========================================================================== */

:root {
  /* Farben */
  --green-950: #0e1a0b;
  --green-900: #16240f;
  --green-800: #1f3317;
  --green-700: #2c4a1e;
  --green-600: #3f7d2c;
  --green-500: #4f9c36;
  --green-100: #e4efdc;
  --red-700: #a52424;
  --red-600: #c62f2f;
  --red-500: #d94040;
  --gold-500: #e9b949;
  --gold-600: #d4a02c;
  --paper: #f7f6f1;
  --paper-2: #efede4;
  --white: #ffffff;
  --ink: #1c2118;
  --ink-soft: #4a5244;
  --line: #dcd9cc;

  /* Typo */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(20, 30, 12, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 26, 11, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
}

.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--red-600);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red-600);
  display: inline-block;
}
.kicker--light { color: var(--gold-500); }
.kicker--light::before { background: var(--gold-500); }

.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 14px; }
.section-lead { color: var(--ink-soft); max-width: 640px; font-size: 1.06rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--red { background: var(--red-600); color: var(--white); box-shadow: 0 8px 20px rgba(198, 47, 47, 0.35); }
.btn--red:hover { background: var(--red-500); color: var(--white); }
.btn--green { background: var(--green-600); color: var(--white); box-shadow: 0 8px 20px rgba(63, 125, 44, 0.35); }
.btn--green:hover { background: var(--green-500); color: var(--white); }
.btn--outline { border-color: rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn--outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }
.btn--sm { padding: 9px 18px; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Topbar + Navigation
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--green-950);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold-500); }
.topbar__meta { display: flex; gap: 18px; flex-wrap: wrap; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(20,30,12,0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 13px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--green-500), var(--green-700) 70%);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  border: 3px solid var(--gold-500);
  flex-shrink: 0;
}
.brand__text { line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  display: block;
}
.brand__sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-600);
  font-weight: 600;
  display: block;
}

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links > li { position: relative; }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 6px;
  display: block;
}
.nav__links a:hover { background: var(--green-100); color: var(--green-700); }
.nav__links a.is-active { color: var(--red-600); }
.nav__cta { margin-left: 10px; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.42;
  filter: saturate(0.9);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14,26,11,0.94) 20%, rgba(14,26,11,0.55) 60%, rgba(14,26,11,0.35)),
    linear-gradient(0deg, rgba(14,26,11,0.9) 0%, transparent 35%);
}
.hero__inner {
  position: relative;
  padding: clamp(70px, 11vw, 130px) 0 clamp(56px, 9vw, 100px);
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(233, 185, 73, 0.14);
  border: 1px solid rgba(233, 185, 73, 0.5);
  color: var(--gold-500);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.9rem, 7.5vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 8px;
}
.hero h1 .accent { color: var(--gold-500); }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 14px 0 30px;
}
.hero__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.hero__date .pin { color: var(--gold-500); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Countdown */
.countdown {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.countdown__cell {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 12px 0 10px;
  text-align: center;
  min-width: 86px;
}
.countdown__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold-500);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Zielflagge-Streifen */
.checker {
  height: 14px;
  background:
    repeating-conic-gradient(#111 0% 25%, #f4f2ea 0% 50%) 0 0 / 28px 28px;
  opacity: 0.92;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--green-950); color: rgba(255,255,255,0.85); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section__head { margin-bottom: 42px; }
.section__head--center { text-align: center; }
.section__head--center .kicker { justify-content: center; }
.section__head--center .section-lead { margin: 0 auto; }
.section__head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* Fakten-Band */
.factband {
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  position: relative;
}
.factband .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.fact { text-align: center; }
.fact__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold-500);
  line-height: 1;
}
.fact__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 7px;
}

/* Karten */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media {
  aspect-ratio: 16 / 9.5;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  position: relative;
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card__tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--white);
  background: var(--green-600);
  padding: 3px 11px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.card__tag--red { background: var(--red-600); }
.card__tag--gold { background: var(--gold-600); }
.card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card__link {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--red-600);
}
.card__link:hover { color: var(--red-700); }
.card__meta { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 8px; display: flex; gap: 14px; }

/* Icon-Kacheln */
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.tile__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.tile h3 { font-size: 1.3rem; margin-bottom: 6px; }
.tile p { color: var(--ink-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Zeitplan / Timeline
   -------------------------------------------------------------------------- */

.dayswitch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.dayswitch button {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
}
.dayswitch button:hover { border-color: var(--green-600); color: var(--green-700); }
.dayswitch button.is-active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--line);
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  padding: 0 0 26px 22px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--green-600);
}
.timeline__item--hl::before { border-color: var(--red-600); }
.timeline__time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--red-600);
  letter-spacing: 0.02em;
}
.timeline__title { font-weight: 700; font-size: 1.05rem; }
.timeline__desc { color: var(--ink-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Teams / Tabellen
   -------------------------------------------------------------------------- */

.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  align-items: center;
}
.toolbar input[type="search"],
.toolbar select {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 11px 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  min-width: 210px;
}
.toolbar input[type="search"]:focus,
.toolbar select:focus { border-color: var(--green-600); }

.chipbar { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 7px 15px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: 0.15s;
  color: var(--ink);
}
.chip:hover { border-color: var(--green-600); }
.chip.is-active { background: var(--green-600); border-color: var(--green-600); color: var(--white); }

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.data th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  color: var(--white);
  background: var(--green-900);
  padding: 13px 18px;
  white-space: nowrap;
}
table.data td {
  padding: 12px 18px;
  border-top: 1px solid var(--paper-2);
  font-size: 0.97rem;
}
table.data tbody tr:hover { background: #f2f6ec; }
table.data .startnr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--gold-500);
  border-radius: 6px;
  padding: 2px 10px;
  display: inline-block;
  min-width: 46px;
  text-align: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 3px 11px;
  border-radius: 999px;
}
.badge--green { background: var(--green-100); color: var(--green-700); }
.badge--gold { background: #faf0d3; color: #8a6a14; }
.badge--red { background: #fbe4e4; color: var(--red-700); }
.badge--grey { background: var(--paper-2); color: var(--ink-soft); }

/* Team-Karten (Starterliste) */
.teamgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.teamcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.teamcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.teamcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  overflow: hidden;
}
.teamcard__media img { width: 100%; height: 100%; object-fit: cover; }
.teamcard__nr {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--gold-500);
  color: var(--ink);
  border-radius: 8px;
  padding: 2px 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.teamcard__klasse {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--green-950);
  color: var(--white);
  border-radius: 6px;
  padding: 3px 11px;
  letter-spacing: 0.06em;
}
.teamcard__body { padding: 18px 20px 20px; }
.teamcard__body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.teamcard__body p { color: var(--ink-soft); font-size: 0.93rem; }
.teamcard__more {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
  color: var(--red-600);
}

/* Team-Detail-Overlay */
.teammodal {
  position: fixed;
  inset: 0;
  background: rgba(14,26,11,0.72);
  display: none;
  place-items: center;
  z-index: 300;
  padding: 22px;
}
.teammodal.is-open { display: grid; }
.teammodal__card {
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  width: min(880px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}
.teammodal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(14,26,11,0.75);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}
.teammodal__close:hover { background: var(--red-600); }
.teammodal__hero { aspect-ratio: 16 / 8; overflow: hidden; background: var(--green-900); }
.teammodal__hero img { width: 100%; height: 100%; object-fit: cover; }
.teammodal__body { padding: 26px 30px 34px; }
.teammodal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.teammodal__head h2 { font-size: 1.9rem; }
.teammodal__head p { color: var(--ink-soft); margin-top: 4px; }
.teammodal__nr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  background: var(--gold-500);
  border-radius: 10px;
  padding: 4px 18px;
  flex-shrink: 0;
}
.teammodal__meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 6px; }
.teammodal__body h3 {
  font-size: 1.25rem;
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--line);
}
.teammodal__people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}
.teammodal__person {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.teammodal__person img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.teammodal__person figcaption {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 6px;
  line-height: 1.25;
}

/* Sponsor-Logos */
.sponsor--logo { padding: 10px; background: var(--white); }
.sponsor--logo img { max-height: 74px; width: auto; max-width: 100%; object-fit: contain; }

/* Shop */
.card__media--product {
  aspect-ratio: 1 / 1;
  background: var(--white);
  display: grid;
  place-items: center;
}
.card__media--product img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.shop__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  margin-top: 12px;
  color: var(--green-700);
}

/* Downloads & Archiv */
.dl-list { list-style: none; margin-top: 10px; }
.dl-list li { padding: 7px 0; border-bottom: 1px solid var(--paper-2); }
.dl-list li:last-child { border-bottom: none; }
.dl-list a { font-weight: 600; }

.galgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.galyear {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  text-align: center;
  transition: 0.15s;
}
.galyear:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.galyear__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-700);
}
.galyear__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* Podium (Ergebnisse) */
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: end; }
.podium__step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px 22px;
  text-align: center;
  position: relative;
}
.podium__step--1 { padding-top: 44px; border-top: 6px solid var(--gold-500); }
.podium__step--2 { border-top: 6px solid #9aa3ab; }
.podium__step--3 { border-top: 6px solid #b8794d; }
.podium__rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-600);
}
.podium__step--2 .podium__rank { color: #7d8790; }
.podium__step--3 .podium__rank { color: #a2643a; }
.podium__team { font-weight: 700; font-size: 1.1rem; margin-top: 8px; }
.podium__info { color: var(--ink-soft); font-size: 0.88rem; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Info / FAQ / Kontakt
   -------------------------------------------------------------------------- */

.infolist { list-style: none; }
.infolist li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.infolist li:last-child { border-bottom: none; }
.infolist .ico { font-size: 1.25rem; flex-shrink: 0; }
.infolist strong { display: block; }
.infolist span { color: var(--ink-soft); font-size: 0.95rem; }

details.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 17px 22px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-600);
  transition: transform 0.2s;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq__body { padding: 0 22px 18px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Sponsoren
   -------------------------------------------------------------------------- */

.sponsorgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sponsorgrid--6 { grid-template-columns: repeat(6, 1fr); }
.sponsor {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 86px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: center;
  padding: 12px;
  font-size: 0.95rem;
  transition: 0.15s;
}
.sponsor:hover { border-color: var(--green-600); color: var(--green-700); }

/* --------------------------------------------------------------------------
   CTA-Band
   -------------------------------------------------------------------------- */

.ctaband {
  position: relative;
  background:
    linear-gradient(100deg, rgba(165,36,36,0.96), rgba(198,47,47,0.88)),
    var(--red-600);
  color: var(--white);
  overflow: hidden;
}
.ctaband .container {
  padding-top: clamp(46px, 7vw, 72px);
  padding-bottom: clamp(46px, 7vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.ctaband h2 { color: var(--white); font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.ctaband p { color: rgba(255,255,255,0.88); max-width: 520px; margin-top: 8px; }
.ctaband .btn--outline { border-color: rgba(255,255,255,0.7); }
.ctaband .btn--white { background: var(--white); color: var(--red-700); }
.ctaband .btn--white:hover { background: #fff6f6; color: var(--red-700); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: clamp(48px, 7vw, 72px) 0 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer a { color: rgba(255,255,255,0.72); }
.footer a:hover { color: var(--gold-500); }
.footer__brand p { margin-top: 14px; max-width: 300px; font-size: 0.9rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.footer__social a:hover { border-color: var(--gold-500); }

/* --------------------------------------------------------------------------
   Page-Hero (Unterseiten)
   -------------------------------------------------------------------------- */

.pagehero {
  background:
    linear-gradient(100deg, rgba(14,26,11,0.93), rgba(14,26,11,0.72)),
    var(--green-900);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(48px, 8vw, 84px) 0;
}
.pagehero h1 { color: var(--white); font-size: clamp(2.3rem, 5.5vw, 3.8rem); }
.pagehero p { color: rgba(255,255,255,0.82); max-width: 620px; margin-top: 10px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-500); }

/* Rechtstexte */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.6rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; }

/* Hinweis-Box */
.notice {
  background: #fdf6e3;
  border: 1px solid #ecd9a0;
  border-left: 5px solid var(--gold-600);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: #6b5a1e;
  margin: 22px 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .teamgrid { grid-template-columns: repeat(2, 1fr); }
  .galgrid { grid-template-columns: repeat(3, 1fr); }
  .sponsorgrid, .sponsorgrid--6 { grid-template-columns: repeat(3, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .factband .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 22px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__cta { margin: 10px 0 0; }
  .nav__burger { display: block; }
}

@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .teamgrid { grid-template-columns: 1fr; }
  .galgrid { grid-template-columns: repeat(2, 1fr); }
  .teammodal { padding: 10px; }
  .teammodal__body { padding: 20px 18px 26px; }
  .podium { grid-template-columns: 1fr; }
  .sponsorgrid, .sponsorgrid--6 { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .topbar__meta span:nth-child(2) { display: none; }
  .countdown__cell { min-width: 70px; flex: 1; }
}
