/* =========================================================================
   Jagdschützen Interlaken – Stylesheet der öffentlichen Website
   ========================================================================= */

/* ------------------------------- Schriften ------------------------------- */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-latin-ext.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------- Tokens -------------------------------- */

:root {
  --green-950: #071B11;
  --green-900: #0C2A1A;
  --green-800: #12341F;
  --green-700: #17452A;
  --green-600: #1D6438;
  --green-500: #268A4B;
  --green-400: #46A96C;
  --green-300: #7FC79A;

  --red-600: #B8112B;
  --red-500: #D2233C;

  --bone-50:  #FCFBF8;
  --bone-100: #F5F3ED;
  --bone-200: #E9E5DA;
  --bone-300: #D8D3C5;

  --ink:      #14120F;
  --ink-soft: #4C463E;
  --muted:    #7C756A;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgb(20 18 15 / 5%), 0 1px 3px rgb(20 18 15 / 4%);
  --shadow-md: 0 4px 6px -2px rgb(20 18 15 / 6%), 0 12px 24px -8px rgb(20 18 15 / 10%);
  --shadow-lg: 0 8px 16px -6px rgb(20 18 15 / 8%), 0 24px 48px -12px rgb(20 18 15 / 14%);

  --header-h: 74px;
  --shell: 1180px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------- Basis --------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bone-50);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: 'cv05' 1, 'cv11' 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--green-700);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

/* -------------------------------- Header --------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-stuck,
.page-sub .site-header {
  background: rgb(252 251 248 / 88%);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--bone-200);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 25%);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck .brand__mark,
.page-sub .brand__mark { box-shadow: 0 0 0 1px var(--bone-200); }

.brand__text { display: flex; flex-direction: column; min-width: 0; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color .3s var(--ease);
  white-space: nowrap;
}

.brand__claim {
  font-size: 0.6875rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 70%);
  transition: color .3s var(--ease);
  white-space: nowrap;
}

.site-header.is-stuck .brand__name,
.page-sub .brand__name { color: var(--ink); }
.site-header.is-stuck .brand__claim,
.page-sub .brand__claim { color: var(--muted); }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.site-nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: rgb(255 255 255 / 88%);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}
.site-nav__link:hover { background: rgb(255 255 255 / 14%); color: #fff; }

.site-header.is-stuck .site-nav__link,
.page-sub .site-nav__link { color: var(--ink-soft); }
.site-header.is-stuck .site-nav__link:hover,
.page-sub .site-nav__link:hover { background: var(--bone-100); color: var(--ink); }

.site-nav__link.is-active {
  color: #fff;
  background: rgb(255 255 255 / 18%);
}
.site-header.is-stuck .site-nav__link.is-active,
.page-sub .site-nav__link.is-active {
  color: var(--green-600);
  background: rgb(38 138 75 / 10%);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 10px;
  cursor: pointer;
}
.site-header.is-stuck .nav-toggle,
.page-sub .nav-toggle { background: var(--bone-100); border-color: var(--bone-200); }

.nav-toggle__bars { display: grid; gap: 4px; width: 19px; }
.nav-toggle__bars i {
  display: block; height: 2px; border-radius: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck .nav-toggle__bars i,
.page-sub .nav-toggle__bars i { background: var(--ink); }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

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

.hero {
  position: relative;
  min-height: min(92svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + 64px) clamp(48px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
  background: var(--green-950);
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgb(7 27 17 / 94%) 0%, rgb(7 27 17 / 72%) 32%,
                    rgb(7 27 17 / 34%) 62%, rgb(7 27 17 / 52%) 100%),
    radial-gradient(120% 90% at 20% 100%, rgb(12 42 26 / 60%), transparent 60%);
}

.hero__inner { color: #fff; }

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-300);
}

.hero__title {
  font-size: clamp(2.85rem, 8.2vw, 5.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.hero__lead {
  max-width: 46ch;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgb(255 255 255 / 84%);
  margin-bottom: 34px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(44px, 6vw, 72px); }

.hero__facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  padding-top: 26px;
}

.hero__facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 20px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.9375rem;
}
.hero__facts .icon { color: var(--green-300); margin-top: 2px; }
.hero__facts span { display: flex; flex-direction: column; }
.hero__facts strong {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

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

.btn {
  --btn-bg: var(--green-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9688rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--green-600); }
.btn--primary:hover { --btn-bg: var(--green-500); }

.btn--ghost {
  --btn-bg: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 32%);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { --btn-bg: rgb(255 255 255 / 18%); }

.btn--small { padding: 10px 18px; font-size: 0.875rem; }

.btn__icon { width: 1.05em; height: 1.05em; transition: transform .22s var(--ease); }
.btn:hover .btn__icon { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--green-600);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .22s var(--ease), color .22s var(--ease);
}
.link-arrow:hover { border-bottom-color: currentColor; }
.link-arrow--light { color: var(--green-300); }
.link-arrow__icon { width: 1.05em; height: 1.05em; transition: transform .22s var(--ease); }
.link-arrow:hover .link-arrow__icon { transform: translateX(3px); }

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

.section { padding-block: clamp(72px, 9vw, 128px); }
.section--tint { background: var(--bone-100); }
.section--dark { background: var(--green-900); color: rgb(255 255 255 / 78%); }
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: rgb(255 255 255 / 70%); }

.section__head { max-width: 62ch; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--accent { color: var(--green-600); }
.eyebrow--light { color: var(--green-300); }

.section__title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  margin-bottom: 18px;
}

.section__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--ink-soft);
  margin: 0;
}

.block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.block-title .icon { color: var(--green-600); width: 1.15em; height: 1.15em; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  font-size: 0.8438rem;
  font-weight: 600;
}
.badge--time {
  background: rgb(38 138 75 / 10%);
  color: var(--green-600);
}
.badge--time .icon { width: 1.1em; height: 1.1em; }
.badge--light { background: rgb(255 255 255 / 12%); color: var(--green-300); }

.hinweis {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

/* --------------------------- Anlage: Feature-Block ------------------------ */

.feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding: clamp(20px, 2.5vw, 28px);
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature__media { margin: 0; }
.feature__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.feature__caption {
  margin: 12px 2px 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.feature__title { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 16px; }
.feature__body p { color: var(--ink-soft); }

.feature__price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.feature__price span {
  padding: 6px 13px;
  border: 1px solid var(--bone-200);
  border-radius: 999px;
  background: var(--bone-50);
  font-size: 0.8438rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.feature__price--light span {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 16%);
  color: #fff;
}

/* -------------------------------- Karten --------------------------------- */

.disziplin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card p { color: var(--ink-soft); }
.card__title { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-bottom: 16px; }
.card__subtitle {
  margin: 26px 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.card__note {
  margin-top: 18px;
  font-size: 0.8438rem;
  color: var(--muted);
}

.card--dark {
  background: linear-gradient(155deg, var(--green-800), var(--green-950));
  border-color: rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 76%);
}
.card--dark p { color: rgb(255 255 255 / 76%); }
.card--dark .card__title { color: #fff; }

.card__glyph {
  position: absolute;
  top: -18px; right: -18px;
  color: rgb(255 255 255 / 7%);
}
.card__glyph .icon { width: 168px; height: 168px; stroke-width: 1; }

.card__highlight {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 18px;
  background: rgb(70 169 108 / 14%);
  border-left: 3px solid var(--green-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9375rem;
}
.card__highlight .icon { color: var(--green-300); margin-top: 3px; width: 1.1em; height: 1.1em; }

/* Schussbilder */

.ziele {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 12px;
}

.ziel { display: flex; flex-direction: column; gap: 8px; }
.ziel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bone-200);
  background: var(--bone-100);
}
.ziel__icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--bone-300);
  background: var(--bone-50);
  color: var(--green-500);
}
.ziel__icon .icon { width: 28px; height: 28px; }
.ziel__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}

/* ------------------------------ Schiesstage ------------------------------ */

.tage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.tagkarte {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  border-left: 4px solid var(--green-500);
}

.tagkarte__tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.tagkarte__zeit {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--green-600);
}
.tagkarte__angebot { margin: 0 0 12px; color: var(--ink-soft); }
.tagkarte__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.tagkarte__ausnahme::before { content: '· '; }

.winter {
  margin-top: 34px;
  padding: 24px 26px;
  background: var(--green-900);
  color: rgb(255 255 255 / 78%);
  border-radius: var(--radius);
}
.winter .block-title { color: rgb(255 255 255 / 60%); margin-bottom: 6px; }
.winter__meta { margin: 0 0 16px; font-size: 0.875rem; color: var(--green-300); }
.winter__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.winter__list li {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.termine { list-style: none; position: relative; }
.termine::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--green-400), var(--bone-300));
  border-radius: 2px;
}

.termin {
  position: relative;
  display: flex;
  gap: 22px;
  padding-block: 15px;
  border-bottom: 1px solid var(--bone-200);
}
.termin:last-of-type { border-bottom: 0; }

.termin__marker {
  position: relative;
  z-index: 1;
  flex: none;
  width: 14px; height: 14px;
  margin-top: 7px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green-500);
}
.termin--offen .termin__marker { border-color: var(--bone-300); }

.termin__titel {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
}
.termin__datum {
  margin: 0;
  font-size: 0.9063rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.termin__zeit { color: var(--green-600); font-weight: 600; }
.termin__zeit::before { content: '· '; color: var(--muted); font-weight: 400; }

/* --------------------------------- Preise -------------------------------- */

.preistabelle-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.preistabelle {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.preistabelle th, .preistabelle td {
  padding: 18px clamp(18px, 3vw, 32px);
  text-align: left;
}

.preistabelle thead th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--bone-200);
  padding-block: 16px;
}

.preistabelle tbody tr { border-bottom: 1px solid var(--bone-100); transition: background-color .2s var(--ease); }
.preistabelle tbody tr:last-child { border-bottom: 0; }
.preistabelle tbody tr:hover { background: var(--bone-50); }

.preistabelle tbody th {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.preistabelle__zusatz {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
}

.preistabelle .num { text-align: right; white-space: nowrap; }
.preistabelle .num--strong { font-weight: 700; color: var(--green-600); }
.preistabelle thead .num { text-align: right; }

.beitraege {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 36px);
}

.beitrag {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.beitrag__titel {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.beitrag__liste { margin: 0 0 14px; }
.beitrag__liste > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding-block: 7px;
  border-bottom: 1px dashed var(--bone-200);
}
.beitrag__liste > div:last-child { border-bottom: 0; }

/* Lange Beschriftungen dürfen umbrechen; reicht der Platz trotzdem nicht,
   rutscht der Betrag auf eine eigene Zeile statt die Karte zu sprengen. */
.beitrag__liste dt {
  font-size: 0.875rem;
  color: var(--ink-soft);
  min-width: 0;
  overflow-wrap: break-word;
}
.beitrag__liste dd {
  margin: 0 0 0 auto;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--green-600);
}

.beitrag__text {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.beitrag .link-arrow { margin-top: auto; align-self: flex-start; }

/* -------------------------------- Aktuelles ------------------------------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.news {
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), background-color .3s var(--ease),
              border-color .3s var(--ease);
}
.news:hover {
  transform: translateY(-4px);
  background: rgb(255 255 255 / 9%);
  border-color: rgb(255 255 255 / 22%);
}

.news__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }

.news__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--green-800); }
.news__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.news:hover .news__media img { transform: scale(1.04); }

.news__body { display: flex; flex-direction: column; flex: 1; padding: 26px; }

.news__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 10px;
}

.news__title {
  font-size: 1.3125rem;
  color: #fff;
  margin-bottom: 10px;
}

.news__lead {
  font-size: 0.9375rem;
  color: rgb(255 255 255 / 68%);
  margin-bottom: 20px;
}

.news__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-300);
}
.news:hover .news__more .link-arrow__icon { transform: translateX(3px); }
.news__more .link-arrow__icon { transition: transform .22s var(--ease); }

.leer {
  padding: 40px;
  text-align: center;
  border: 1px dashed rgb(255 255 255 / 20%);
  border-radius: var(--radius);
  color: rgb(255 255 255 / 60%);
}

/* --------------------------------- Verein -------------------------------- */

.vorstand {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.person {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.person:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.person__rolle {
  margin: 0 0 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-600);
}
.person__name {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
}
.person__mail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.person__mail:hover { color: var(--green-600); }
.person__mail .icon { width: 1.1em; height: 1.1em; }

.mitglied-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: clamp(28px, 3.5vw, 44px);
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  border-radius: var(--radius-lg);
  color: rgb(255 255 255 / 80%);
}
.mitglied-cta > div { max-width: 58ch; }
.mitglied-cta__titel { font-size: clamp(1.4rem, 2.4vw, 1.875rem); color: #fff; margin-bottom: 12px; }
.mitglied-cta .btn { flex: none; }
.mitglied-cta .btn--primary { --btn-bg: var(--green-500); }
.mitglied-cta .btn--primary:hover { --btn-bg: var(--green-400); }

/* -------------------------------- Kontakt -------------------------------- */

.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.kontakt__spalte + .kontakt__spalte .block-title:first-child { margin-top: 0; }
.kontakt__spalte .block-title:not(:first-child) { margin-top: 36px; }

.route { list-style: none; counter-reset: schritt; margin-bottom: 8px; }
.route li {
  counter-increment: schritt;
  display: flex;
  gap: 16px;
  padding-block: 11px;
  border-bottom: 1px solid var(--bone-200);
  color: var(--ink-soft);
}
.route li:last-child { border-bottom: 0; }
.route li::before {
  content: counter(schritt);
  flex: none;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.koordinaten { margin: 0; }
.koordinaten > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 11px;
  border-bottom: 1px solid var(--bone-200);
}
.koordinaten > div:last-child { border-bottom: 0; }
.koordinaten dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}
.koordinaten dd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.9063rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.copy {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--bone-200);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.copy:hover { color: var(--green-600); border-color: var(--green-400); }
.copy .icon { width: 15px; height: 15px; }
.copy.is-done { color: #fff; background: var(--green-500); border-color: var(--green-500); }

.kontakt__karten-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.kontakt__karten-links .btn {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  border-color: var(--bone-200);
}
.kontakt__karten-links .btn:hover { --btn-bg: #fff; border-color: var(--green-400); }

.kontakt__text { color: var(--ink-soft); margin-bottom: 20px; }

.karte {
  margin-top: 36px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bone-200);
  background:
    repeating-linear-gradient(45deg, var(--bone-100) 0 12px, var(--bone-50) 12px 24px);
}
.karte iframe { width: 100%; height: 100%; border: 0; display: block; }

.karte__platzhalter {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
}
.karte__titel {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.karte__hinweis { margin: 0; font-size: 0.8438rem; color: var(--muted); max-width: 34ch; }
.karte__fallback { margin: 6px 0 0; font-size: 0.8125rem; }
.karte__fallback a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

/* --------------------------------- Partner -------------------------------- */

.partner { margin-top: clamp(44px, 6vw, 72px); }
.partner__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.partner__list a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 100%;
  padding: 18px 44px 18px 20px;
  background: #fff;
  border: 1px solid var(--bone-200);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
}
.partner__list a:hover {
  transform: translateY(-3px);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}
.partner__name { font-weight: 600; }
.partner__sub { font-size: 0.8125rem; color: var(--muted); }
.partner__icon {
  position: absolute;
  top: 18px; right: 18px;
  width: 16px; height: 16px;
  color: var(--bone-300);
  transition: color .25s var(--ease);
}
.partner__list a:hover .partner__icon { color: var(--green-500); }

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

.site-footer {
  background: var(--green-950);
  color: rgb(255 255 255 / 62%);
  padding-block: clamp(52px, 6vw, 80px) 28px;
  font-size: 0.9375rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 44px;
}

.site-footer__brand img { border-radius: 50%; margin-bottom: 16px; }
.site-footer__name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.site-footer__claim { margin: 0; font-size: 0.875rem; line-height: 1.6; }

.site-footer__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 45%);
  margin-bottom: 16px;
}

.site-footer__list { list-style: none; display: grid; gap: 9px; }
.site-footer__list a {
  text-decoration: none;
  transition: color .2s var(--ease);
}
.site-footer__list a:hover { color: var(--green-300); }

.site-footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 45%);
}
.site-footer__bar p { margin: 0; }
.site-footer__bar a { text-decoration: none; }
.site-footer__bar a:hover { color: var(--green-300); }

/* ------------------------------ News-Seiten ------------------------------ */

.page-sub main { padding-top: var(--header-h); }

.page-head {
  padding-block: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--bone-200);
  background: var(--bone-100);
}
.page-head__title { font-size: clamp(2.1rem, 4.6vw, 3.35rem); margin-bottom: 14px; }
.page-head__lead { font-size: 1.0625rem; color: var(--ink-soft); max-width: 60ch; margin: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--green-600); }

.news-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
  padding-block: clamp(44px, 6vw, 72px);
}

.news-liste .news {
  background: #fff;
  border-color: var(--bone-200);
  box-shadow: var(--shadow-sm);
}
.news-liste .news:hover { background: #fff; border-color: var(--green-300); box-shadow: var(--shadow-md); }
.news-liste .news__media { background: var(--bone-100); }
.news-liste .news__date { color: var(--green-600); }
.news-liste .news__title { color: var(--ink); }
.news-liste .news__lead { color: var(--ink-soft); }
.news-liste .news__more { color: var(--green-600); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.pagination a, .pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding-inline: 12px;
  border: 1px solid var(--bone-200);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.pagination a:hover { border-color: var(--green-400); color: var(--green-600); }
.pagination .is-current { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.pagination .is-disabled { color: var(--bone-300); background: var(--bone-50); }

/* Einzelner Beitrag */

.beitrag-seite { padding-block: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 96px); }

.beitrag-seite__inner { max-width: 760px; margin-inline: auto; }

.beitrag-seite__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-600);
}
.beitrag-seite__meta .dot { color: var(--bone-300); }
.beitrag-seite__meta .autor { color: var(--muted); }

.beitrag-seite__titel { font-size: clamp(2.1rem, 4.6vw, 3.15rem); margin-bottom: 20px; }

.beitrag-seite__lead {
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--bone-200);
}

.beitrag-seite__bild {
  margin: 0 0 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bone-200);
}
.beitrag-seite__bild img { width: 100%; }

/* Rich-Text aus dem Editor */

.prose { font-size: 1.0938rem; line-height: 1.72; color: var(--ink-soft); }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  margin: 2em 0 0.6em;
  color: var(--ink);
}
.prose h3 {
  font-size: clamp(1.25rem, 2vw, 1.4375rem);
  margin: 1.8em 0 0.5em;
  color: var(--ink);
}
.prose h4 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 1.6em 0 0.4em;
  color: var(--ink);
}
.prose p { margin: 0 0 1.25em; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose a { color: var(--green-600); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose ul, .prose ol { margin: 0 0 1.25em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.6em; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0.35em; top: 0.65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}
.prose blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--green-400);
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--ink);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.8em 0;
  border: 1px solid var(--bone-200);
}
.prose figure { margin: 1.8em 0; }
.prose figure img { margin: 0; }
.prose figcaption {
  margin-top: 10px;
  font-size: 0.8438rem;
  color: var(--muted);
  text-align: center;
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--bone-200);
  margin: 2.5em 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: 0.9375rem;
}
.prose th, .prose td {
  padding: 12px 14px;
  border: 1px solid var(--bone-200);
  text-align: left;
}
.prose th { background: var(--bone-100); font-weight: 600; color: var(--ink); }
.prose code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--bone-100);
  font-size: 0.9em;
}
.prose pre {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--green-950);
  color: #E6EDE8;
  overflow-x: auto;
}
.prose pre code { background: none; padding: 0; }

.beitrag-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--bone-200);
}

/* ------------------------------- Animation ------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1000px) {
  .feature { grid-template-columns: 1fr; }
  .tage, .kontakt { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgb(252 251 248 / 97%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bone-200);
    box-shadow: var(--shadow-lg);
    padding: 12px clamp(20px, 5vw, 48px) 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .site-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav__link {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1.0625rem;
    color: var(--ink) !important;
  }
  .site-nav__link:hover { background: var(--bone-100) !important; }
  .site-nav__link.is-active {
    color: var(--green-600) !important;
    background: rgb(38 138 75 / 10%) !important;
  }

  .hero { min-height: min(88svh, 760px); }
  .hero__facts { grid-template-columns: 1fr; gap: 16px; }
  .hero__facts li { padding-right: 0; }

  .section__head--split { align-items: flex-start; flex-direction: column; }

  .mitglied-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }

  .brand__claim { display: none; }
  .brand__name { font-size: 1rem; }

  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }

  .card, .feature { padding: 22px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .beitrag-seite__meta { gap: 8px; }
  .termin { gap: 16px; }
}

/* ------------------------------ Bedienhilfen ------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav-toggle, .site-nav, .karte, .skip-link { display: none !important; }
  body { background: #fff; }
  .section--dark, .card--dark, .mitglied-cta, .winter { background: #fff !important; color: #000 !important; }
  .section--dark .section__title, .card--dark .card__title { color: #000 !important; }
}
