:root {
  --bg: #f3f5f2;
  --surface: #ffffff;
  --surface-alt: #edf1ec;
  --text: #18201c;
  --muted: #54615a;
  --primary: #214234;
  --primary-strong: #173125;
  --accent: #d8b25a;
  --accent-strong: #c89e41;
  --border: #d8e0db;
  --shadow: 0 16px 40px rgba(18, 32, 25, 0.08);
  --radius: 18px;
  --header-bg: rgba(18, 31, 25, 0.92);
  --header-text: #f7faf7;
  --success-bg: #e8f7ea;
  --success-text: #14532d;
  --error-bg: #fdecec;
  --error-text: #7f1d1d;
}

html[data-theme="dark"] {
  --bg: #0f1412;
  --surface: #171d1a;
  --surface-alt: #1d2521;
  --text: #edf2ef;
  --muted: #b9c4be;
  --primary: #98bfa7;
  --primary-strong: #d9efe0;
  --accent: #ebc86e;
  --accent-strong: #f4d98e;
  --border: #2c3831;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(12, 17, 15, 0.95);
  --header-text: #f5f7f6;
  --success-bg: #12321b;
  --success-text: #c9f3d3;
  --error-bg: #3a1818;
  --error-text: #ffd2d2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100%);
}

.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================
   TOPBAR & HEADER
   ========================================= */

.topbar {
  background: var(--header-bg);
  color: #fff;
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.topbar-inner p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--header-text);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-kicker {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand strong {
  font-size: 1rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  color: var(--header-text);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--header-text);
  cursor: pointer;
  transition: 0.2s ease;
}

.icon-btn:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  min-height: calc(100svh - 132px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13, 27, 21, 0.84), rgba(24, 49, 37, 0.62)),
    url("assets/images/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(216, 178, 90, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(216, 178, 90, 0.12), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  color: #fff;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
  margin-bottom: 1.75rem;
}

.lead-dark {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-banner {
  max-width: min(100%, 760px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.5rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  color: var(--primary);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-small {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
}

.btn-nav {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

/* =========================================
   COUNTDOWN
   ========================================= */

.countdown-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.countdown-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.countdown-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.countdown-item {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.countdown-item span {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
}

.countdown-item small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 5.25rem 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 760px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 72ch;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* =========================================
   CARDS
   ========================================= */

.image-card,
.content-card,
.info-card,
.contact-card,
.gallery-card,
.portrait-card,
.form-card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card,
.gallery-card,
.portrait-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card,
.info-card,
.contact-card,
.form-card,
.legal-card {
  padding: 1.35rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-date {
  margin: 0 0 0.5rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.info-card h3,
.content-card h3,
.contact-card h3,
.legal-card h2 {
  margin-bottom: 0.8rem;
  color: var(--primary);
}

/* =========================================
   TERMINE
   ========================================= */

.termine-list {
  display: grid;
  gap: 1rem;
}

.termin-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.termin-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.termin-date strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.termin-date span {
  color: var(--muted);
}

.termin-content h3 {
  margin-bottom: 0.45rem;
  color: var(--primary);
}

/* =========================================
   VORSTAND
   ========================================= */

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 2rem;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-card figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
}

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

.role-grid > :last-child {
  grid-column: 1 / -1;
}

.role-list {
  margin: 0;
  padding-left: 1.1rem;
}

.role-list li {
  margin-bottom: 0.55rem;
}

/* =========================================
   GALERIE & LIGHTBOX
   ========================================= */

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-group {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

/* ── Desktop: Versteckte Bilder-Grid, nur Preview sichtbar ── */
.gallery-group .gallery-grid { display: none; }
.gallery-group h3 { display: none; }

/* ── Desktop Preview-Karte (Diashow) ── */
.gallery-preview-card {
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
  overflow: hidden;
  display: block;
}

.gallery-preview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s ease;
}

.gallery-preview-card img.active { opacity: 1; }

.gallery-preview-card:hover img.active { transform: scale(1.03); transition: opacity 0.75s ease, transform 4s ease; }

.gallery-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(10, 18, 14, 0.75));
  pointer-events: none;
  z-index: 2;
}

.gallery-preview-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.gallery-preview-caption {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.55rem;
  min-height: 1em;
}

.gallery-preview-dots {
  display: flex;
  gap: 5px;
}

.gallery-preview-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.gallery-preview-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* Zoom-Icon beim Hover */
.gallery-preview-zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 3;
}

.gallery-preview-card:hover .gallery-preview-zoom { opacity: 1; }

/* ── Fortschrittsbalken ── */
.gallery-preview-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  transition: width linear;
  z-index: 4;
}

@media (max-width: 960px) {
  .gallery-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
  outline: none;
}

.gallery-caption {
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  background: var(--surface);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 15, 12, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  user-select: none;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-align: center;
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  transition: 0.2s;
}

.lightbox-close:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10000;
  padding-bottom: 4px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

#lightbox-img {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

#lightbox-img.fading {
  opacity: 0;
}

/* =========================================
   SPORTSCHÜTZEN (NEU)
   ========================================= */

.sport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.sport-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sport-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(18, 32, 25, 0.12);
}

.sport-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.sport-card-header h3 {
  color: var(--primary);
  font-size: 1.3rem;
}

.sport-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.sport-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sport-details li {
  font-size: 0.9rem;
  color: var(--muted);
}

.sport-details strong {
  color: var(--text);
}

/* Schießstand Info-Banner */
.range-info {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

html[data-theme="dark"] .range-info {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.range-info-content h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

html[data-theme="dark"] .range-info-content h3 {
  color: var(--primary);
}

.range-info-content p {
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

html[data-theme="dark"] .range-info-content p {
  opacity: 1;
  color: var(--muted);
}

.range-info-content .btn-primary {
  margin-top: 0.5rem;
}

.range-info-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: center;
}

html[data-theme="dark"] .badge-item {
  background: var(--surface-alt);
  border-color: var(--border);
}

.badge-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.badge-item span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* =========================================
   KONTAKT
   ========================================= */

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

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

/* =========================================
   FORMULAR
   ========================================= */

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.form-group small {
  color: var(--muted);
}

.checkbox-group {
  margin: 1rem 0;
}

.checkbox-group label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 0.3rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.status-box {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  font-weight: 700;
}

.status-box.success {
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid transparent;
}

.status-box.error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid transparent;
}

.hidden {
  display: none;
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-card h2 {
  margin-top: 1.6rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-note {
  color: var(--muted);
  font-style: italic;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  padding: 1.5rem 0;
  background: var(--header-bg);
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
}

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

/* Social Links – Topbar */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
}

.social-link svg {
  flex-shrink: 0;
}

/* Social Icons – Footer */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
}

.social-link-footer:hover {
  color: var(--accent);
}

/* =========================================
   SCHIESSTAND INLINE (index.html)
   ========================================= */

.stand-inline {
  margin-top: 3rem;
}

.stand-facts-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stand-fact {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  color: #fff;
}

html[data-theme="dark"] .stand-fact {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.stand-fact strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: "Playfair Display", Georgia, serif;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stand-fact span {
  font-size: 0.85rem;
  opacity: 0.85;
}

html[data-theme="dark"] .stand-fact span {
  color: var(--muted);
  opacity: 1;
}

.stand-cards-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.stand-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.stand-block h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.9rem;
  font-family: "Playfair Display", Georgia, serif;
}

.stand-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stand-block ul li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}

.stand-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.inline-training-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.inline-training-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.inline-training-table tr:last-child td {
  border-bottom: none;
}

.inline-training-table td:first-child {
  padding-right: 0.75rem;
  width: 48%;
}

.inline-training-table small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.stand-note {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.stand-map-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.stand-map-link:hover {
  color: var(--accent-strong);
}

.stand-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 0;
}

.stand-map-embed iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
}

/* =========================================
   VEREINSHEIM PAGE
   ========================================= */

.vh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.vh-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.vh-feature-card .vh-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.vh-feature-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vh-feature-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.form-section-divider {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 1.75rem 0 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.rental-notice {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.rental-notice strong {
  color: var(--text);
}

.form-card-large {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

@media (max-width: 960px) {
  .stand-facts-inline {
    grid-template-columns: repeat(2, 1fr);
  }

  .stand-cards-inline {
    grid-template-columns: 1fr 1fr;
  }

  .vh-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .stand-facts-inline {
    grid-template-columns: repeat(2, 1fr);
  }

  .stand-cards-inline {
    grid-template-columns: 1fr;
  }

  .vh-feature-grid {
    grid-template-columns: 1fr;
  }

  .form-card-large {
    padding: 1.25rem;
  }
}

/* =========================================
   BARRIEREFREIER MODUS
   Ziel: WCAG AA / AAA – Kontrastverhältnis ≥ 7:1
   ========================================= */

body.accessible {
  /* Farb-Tokens – alle Kontraste geprüft */
  --bg:             #ffffff;
  --surface:        #ffffff;
  --surface-alt:    #f2f2f2;      /* Grau auf Weiß: klar erkennbar */
  --text:           #000000;      /* 21:1 auf Weiß */
  --muted:          #1a1a1a;      /* 18:1 auf Weiß */
  --primary:        #0a2119;      /* 14:1 auf Weiß */
  --primary-strong: #000000;
  --accent:         #4a3000;      /* 12:1 auf Weiß – Eyebrow, Divider */
  --accent-strong:  #2d1c00;
  --border:         #000000;      /* Maximaler Kontrast */
  --shadow:         none;
  --header-bg:      #000000;      /* Schwarze Kopfleiste */
  --header-text:    #ffffff;      /* 21:1 auf Schwarz */
  --success-bg:     #d0f0d8;
  --success-text:   #002d0f;      /* 14:1 auf hellgrün */
  --error-bg:       #fadddd;
  --error-text:     #5a0000;      /* 11:1 auf hellrot */

  font-size: 19px;
  line-height: 1.85;
  letter-spacing: 0.015em;
  word-spacing: 0.05em;
}

/* Fokus-Indikator – gut sichtbar für alle interaktiven Elemente */
body.accessible :focus-visible {
  outline: 3px solid #000000;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Links immer deutlich unterstrichen */
body.accessible a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Buttons: Mindestgröße für motorisch eingeschränkte Nutzer */
body.accessible .btn,
body.accessible .icon-btn,
body.accessible .menu-toggle {
  min-height: 54px;
  min-width: 54px;
}

/* Primär-Buttons: dunkle Basis statt goldenem Akzent */
body.accessible .btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

body.accessible .btn-primary:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

/* Sekundär-Buttons auf hellen Seiten gut sichtbar */
body.accessible .btn-secondary {
  background: transparent;
  color: #000000;
  border-color: #000000;
  border-width: 2px;
}

body.accessible .btn-secondary:hover {
  background: #000000;
  color: #ffffff;
}

/* Karten: scharfe 2px-Rahmen für klare Trennung */
body.accessible .image-card,
body.accessible .content-card,
body.accessible .info-card,
body.accessible .contact-card,
body.accessible .gallery-card,
body.accessible .portrait-card,
body.accessible .form-card,
body.accessible .legal-card,
body.accessible .termin-card,
body.accessible .countdown-item,
body.accessible .sport-card,
body.accessible .stand-block,
body.accessible .vh-feature-card,
body.accessible .form-card-large {
  border: 2px solid #000000;
  box-shadow: none;
}

/* Formularfelder: dicke schwarze Rahmen */
body.accessible .form-group input,
body.accessible .form-group textarea,
body.accessible .form-group select {
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
}

body.accessible .form-group input:focus,
body.accessible .form-group textarea:focus {
  outline: 3px solid #000000;
  outline-offset: 2px;
  border-color: #000000;
}

/* Labels deutlicher */
body.accessible .form-group label {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

/* Status-Boxen: hoher Kontrast + Rahmen */
body.accessible .status-box.success {
  background: var(--success-bg);
  color: var(--success-text);
  border: 2px solid var(--success-text);
}

body.accessible .status-box.error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 2px solid var(--error-text);
}

/* Schießstand-Fakten-Kästen: Kontrast sicherstellen */
body.accessible .stand-fact {
  background: var(--primary);
  border: 2px solid #000000;
  color: #ffffff;
}

body.accessible .stand-fact strong {
  color: #ffd966;   /* helles Gelb auf dunkelgrünem Grund: >7:1 */
}

/* Countdown */
body.accessible .countdown-item span {
  color: var(--primary);
  font-weight: 900;
}

/* Termin-Datum */
body.accessible .termin-date strong {
  color: var(--primary);
  font-weight: 900;
}

/* Eyebrow-Texte: Akzentfarbe muss auf Weiß kontrastieren */
body.accessible .eyebrow {
  color: var(--accent);
  font-weight: 900;
}

/* Divider im Formular */
body.accessible .form-section-divider {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Hire-Notice */
body.accessible .rental-notice {
  border-left-color: var(--primary);
  background: var(--surface-alt);
  color: #000000;
}

/* Range-Info-Banner */
body.accessible .range-info {
  background: var(--primary);
  border: 2px solid #000000;
}

body.accessible .range-info-content h3 {
  color: #ffd966;
}

body.accessible .range-info-content p {
  color: #f0f0f0;
  opacity: 1;
}

body.accessible .badge-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.5);
}

body.accessible .badge-item strong {
  color: #ffd966;
}

/* Muted-Texte: auf Karten immer dunkel genug */
body.accessible .gallery-caption,
body.accessible .section-intro,
body.accessible .lead-dark,
body.accessible .legal-note {
  color: #1a1a1a;
}

/* Topbar: schwarze Leiste mit weißem Text */
body.accessible .topbar {
  background: #111111;
}

/* Header-Nav-Links */
body.accessible .site-nav a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

body.accessible .site-nav a:hover,
body.accessible .site-nav a:focus-visible {
  background: rgba(255,255,255,0.2);
  color: #ffd966;
}

/* Icon-Buttons in der Kopfzeile */
body.accessible .icon-btn,
body.accessible .menu-toggle {
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
}

body.accessible .icon-btn:hover,
body.accessible .menu-toggle:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
}

/* Page-Hero: helles Background, dunkle Überschrift */
body.accessible .page-hero {
  background: #f2f2f2;
  border-bottom: 2px solid #000000;
}

body.accessible .page-hero h1 {
  color: #000000;
}

/* Section-Alt: klarer Hintergrund-Wechsel */
body.accessible .section-alt {
  background: #f2f2f2;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

/* h2 in Sections */
body.accessible .section h2 {
  color: #000000;
}

/* Portrait-Karte Caption */
body.accessible .portrait-card figcaption {
  color: #000000;
  font-weight: 600;
}

/* Footer */
body.accessible .site-footer {
  background: #000000;
  border-top: 2px solid #ffffff;
}

body.accessible .footer-links a {
  color: #ffffff;
  text-decoration: underline;
}

body.accessible .footer-links a:hover {
  color: #ffd966;
}

body.accessible .social-link-footer {
  color: #cccccc;
}

body.accessible .social-link-footer:hover {
  color: #ffd966;
}

/* Checkbox-Labels */
body.accessible .checkbox-group label {
  font-size: 1rem;
  color: #000000;
}

/* Karten-Datum */
body.accessible .card-date {
  color: var(--accent);
  font-weight: 900;
}

/* Inline-Training-Table */
body.accessible .inline-training-table td {
  border-bottom-color: #000000;
  color: #000000;
}

body.accessible .stand-note {
  color: #1a1a1a;
}

/* =========================================
   VERBÄNDE
   ========================================= */

.verband-section {
  margin: 2.5rem 0;
}

.verband-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.verband-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.verband-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(18,32,25,0.12);
  border-color: var(--accent);
}

.verband-logo {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.verband-favicon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  position: absolute;
}

.verband-abbr {
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
}

.verband-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.verband-info strong {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.2;
}

.verband-info span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

.verband-arrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.verband-card:hover .verband-arrow {
  transform: translateX(3px);
}

/* =========================================
   VEREINSKALENDER
   ========================================= */

.kalender-wrap {
  /* wrapper already styled inline */
}

.kalender-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.kalender-embed iframe {
  width: 100%;
  height: 580px;
  display: block;
  border: none;
}

/* =========================================
   RESPONSIVE – VERBÄNDE & KALENDER
   ========================================= */

@media (max-width: 1080px) {
  .verband-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .verband-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .verband-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem;
  }

  .verband-arrow {
    display: none;
  }

  .kalender-embed iframe {
    height: 480px;
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1080px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .countdown-wrap,
  .grid-two,
  .role-grid,
  .portrait-grid,
  .gallery-grid,
  .contact-grid,
  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

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

  .range-info {
    grid-template-columns: 1fr;
  }

  .range-info-badges {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: unset;
  }

  .badge-item {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: var(--header-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
  }

  .nav-panel.open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .toolbar {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

/* =========================================
   SWIPE-SCROLL HINT – Desktop versteckt
   ========================================= */

.swipe-hint {
  display: none;
}

/* =========================================
   MOBILE – UNIVERSELLES SWIPE-KARUSSELL
   Gilt für alle Card-Sections ≤ 700px
   ========================================= */

@media (max-width: 700px) {

  /* ══════════════════════════════════════════════
     MOBILE SWIPE – scroll-snap-stop: always
     Stoppt garantiert bei jeder Card, egal wie
     schnell gewischt wird. Kein JS für Animation.
     ══════════════════════════════════════════════ */

  /* ── Swipe-Hinweis ── */
  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  /* ── Container: horizontaler Snap-Scroll ── */
  .swipe-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    overscroll-behavior-x: contain !important;
    -webkit-overflow-scrolling: auto !important; /* kein Momentum */
    scrollbar-width: none !important;
    gap: 0.75rem !important;
    padding: 0.25rem 1rem 1rem !important;
    margin: 0 -1rem !important;
    grid-template-columns: unset !important;
    align-items: stretch !important;
  }

  .swipe-row::-webkit-scrollbar { display: none; }

  /* ── Jede Card: Snap-Punkt, stoppt immer ── */
  .swipe-row > * {
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;   /* ← verhindert Überspringen */
    flex-shrink: 0 !important;
    min-width: 0 !important;
  }

  /* ── Karten-Breiten ── */
  .card-grid.swipe-row > *          { flex: 0 0 78vw !important; max-width: 300px; }
  .sport-grid.swipe-row > *         { flex: 0 0 82vw !important; max-width: 320px; }
  .stand-facts-inline.swipe-row > * { flex: 0 0 44vw !important; max-width: 180px; }
  .stand-cards-inline.swipe-row > * { flex: 0 0 82vw !important; max-width: 320px; }
  .termine-list.swipe-row > *       { flex: 0 0 82vw !important; max-width: 320px; }
  .portrait-grid.swipe-row > *      { flex: 0 0 44vw !important; max-width: 180px; }
  .role-grid.swipe-row > *          { flex: 0 0 82vw !important; max-width: 320px; grid-column: unset !important; }
  .contact-grid.swipe-row > *       { flex: 0 0 82vw !important; max-width: 320px; }
  .vh-feature-grid.swipe-row > *    { flex: 0 0 72vw !important; max-width: 260px; }

  /* ── Dot-Indikatoren ── */
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem 0 0.25rem;
  }

  .swipe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .swipe-dot.active {
    background: var(--accent);
    transform: scale(1.4);
  }

  /* ── Galerie: Gruppen als horizontaler Swipe ── */
  .gallery-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    overscroll-behavior-x: contain !important;
    -webkit-overflow-scrolling: auto !important;
    scrollbar-width: none !important;
    gap: 0.85rem !important;
    padding: 0.25rem 1rem 1rem !important;
    margin: 0 -1rem !important;
    grid-template-columns: unset !important;
  }

  .gallery-wrapper::-webkit-scrollbar { display: none; }

  .gallery-group {
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    flex: 0 0 82vw !important;
    max-width: 320px;
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* ── Mobile: Preview verstecken, Grid wieder zeigen ── */
  .gallery-preview-card { display: none !important; }
  .gallery-group .gallery-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    overscroll-behavior-x: contain !important;
    -webkit-overflow-scrolling: auto !important;
    scrollbar-width: none !important;
    gap: 0 !important;
    flex: 1;
    grid-template-columns: unset !important;
  }
  .gallery-group .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-group h3 {
    display: block !important;
    padding: 0.85rem 1rem 0.6rem;
    margin: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
  }

  .gallery-card {
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    flex: 0 0 100% !important;
    min-width: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform: none !important;
  }

  .gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  .gallery-caption {
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── Galerie-Dots ── */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem 0 0.75rem;
    background: var(--surface);
  }

  .gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .gallery-dot.active {
    background: var(--accent);
    transform: scale(1.35);
  }

  /* ── Dot-Indikatoren ── */
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem 0 0.25rem;
  }

  .swipe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .swipe-dot.active {
    background: var(--accent);
    transform: scale(1.4);
  }

  /* ── Sonstige Mobile-Fixes ── */
  .topbar-inner,
  .footer-inner,
  .countdown-wrap,
  .grid-two,
  .form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero { min-height: auto; }
  .hero-content { padding: 4.5rem 0; }
  .termin-card { grid-template-columns: 1fr; }
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
  .range-info { padding: 1.5rem; }
  .range-info-badges { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================
   INSTAGRAM REELS SECTION
   ========================================= */

.section-ig {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ig-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.ig-reel-wrap {
  display: flex;
  justify-content: center;
}

/* Instagram blockquote überschreiben, damit es die volle Breite nutzt */
.ig-reel-wrap .instagram-media {
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}

.ig-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.ig-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .ig-reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .ig-reels-grid {
    grid-template-columns: 1fr;
  }
}