/* =========================================================================
   Stahlhof Training – Demo-Website
   Gebaut von TEAM Gold LLC
   Gemeinsames Stylesheet für alle Unterseiten
   ========================================================================= */

:root {
  --color-ink: #0c0e0c;
  --color-ink-soft: #141714;
  --color-steel: #1d211c;
  --color-steel-light: #2a2f28;
  --color-lime: #c6f224;
  --color-lime-bright: #d9ff4a;
  --color-lime-dark: #9bc10a;
  --color-paper: #f4f5f1;
  --color-paper-dark: #e6e8e0;
  --color-white: #ffffff;
  --color-text: #1a1d19;
  --color-text-soft: #555c52;
  --color-line: rgba(12, 14, 12, 0.14);
  --color-line-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Anton", "Archivo Black", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-md: 6px;
  --radius-lg: 14px;
  --shadow-soft: 0 14px 32px -16px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 26px 54px -22px rgba(0, 0, 0, 0.6);
  --container-w: 1180px;
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
strong { font-weight: 700; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ------------------------------ Type scale ------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lime-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--color-lime);
  display: inline-block;
}
h1 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; }
.lede {
  font-size: 1.13rem;
  color: var(--color-text-soft);
  max-width: 62ch;
}
.section-head {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left { margin: 0 0 44px; text-align: left; }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-lime);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--color-lime-bright); box-shadow: var(--shadow-strong); }
.btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
  background: transparent;
}
.btn-outline:hover { background: var(--color-white); color: var(--color-ink); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--color-ink);
  color: var(--color-ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--color-ink); color: var(--color-lime); }
.btn-dark { background: var(--color-ink); color: var(--color-lime); }
.btn-dark:hover { background: var(--color-steel); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 0.78rem; }
.btn svg { width: 18px; height: 18px; }

/* ------------------------------ Header / Nav ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 14, 12, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198, 242, 36, 0.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: var(--container-w);
  margin: 0 auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}
.brand-icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lime);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  row-gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-white);
  border-color: var(--color-lime);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-lime);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--color-ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 40px;
    gap: 2px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid var(--color-line-dark);
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { width: 100%; padding: 13px 4px; border-bottom: 1px solid var(--color-line-dark); font-size: 0.95rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn span.long { display: none; }
}

/* --------------------- Hero: harter Diagonal-Split --------------------- */
.hero-split {
  position: relative;
  padding: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background: #0a0c0a;
  isolation: isolate;
}
/* Limettenkante entlang der Diagonalen (liegt unter der Fotofläche) */
.hero-split-edge {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-lime);
  clip-path: polygon(calc(52% - 4px) 0, 100% 0, 100% 100%, calc(38% - 4px) 100%);
}
/* Randlose Fotofläche rechts der Diagonalen */
.hero-split-media {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 38% 100%);
  background: #0a0c0a;
}
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: grayscale(0.25) contrast(1.06) brightness(0.86);
}
.hero-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(101deg, rgba(10,12,10,0.95) 30%, rgba(10,12,10,0.72) 42%, rgba(10,12,10,0.22) 56%, rgba(10,12,10,0) 72%),
    linear-gradient(to top, rgba(10,12,10,0.5), rgba(10,12,10,0) 45%);
  pointer-events: none;
}
/* Textfläche */
.hero-split-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 84px 28px 84px;
}
.hero-split-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 0% 50%, rgba(10,12,10,0.92) 40%, rgba(10,12,10,0) 78%);
  pointer-events: none;
}
/* Textspalte bleibt links der Diagonalen: min() aus Wunschbreite,
   Containerrand-Formel und Diagonalen-Formel */
.hero-split-text { max-width: min(30rem, calc(538px - 9vw), calc(41vw - 82px)); }
.hero-split-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
  margin: 0 0 26px;
  white-space: nowrap;
}
.hero-split h1 {
  width: min(62vw, calc(538px + 9vw), calc(59vw - 82px));
  max-width: none;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero-split h1 em { font-style: normal; color: var(--color-lime); }
.hero-split-lede {
  font-size: 1.05rem;
  line-height: 1.62;
  color: rgba(255,255,255,0.78);
  max-width: none;
  margin: 0 0 34px;
}
.hero-split-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-square { border-radius: 4px; }
.hero-split-actions .btn { padding: 15px 22px; font-size: 0.84rem; }
/* Vertikale Kleinschrift am linken Hero-Rand */
.hero-split-mark {
  position: absolute;
  left: 26px;
  bottom: 92px;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(198,242,36,0.72);
  white-space: nowrap;
}
.hero-split-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 1px;
  height: 34px;
  background: rgba(198,242,36,0.45);
}

@media (max-width: 1240px) and (min-width: 901px) {
  .hero-split-inner { padding-left: 58px; }
  .hero-split-mark { left: 16px; }
  .hero-split-eyebrow { letter-spacing: 0.24em; }
}

/* Kennzahlenleiste direkt unter dem Hero */
.hero-facts {
  background: #000;
  color: var(--color-white);
  padding: 0;
  border-top: 4px solid var(--color-lime);
}
.hero-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}
.hero-fact {
  padding: 42px 16px 40px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.13);
}
.hero-fact:first-child { border-left: 0; }
.hero-fact-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-lime);
}
.hero-fact-label {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .hero-split {
    display: block;
    min-height: 0;
  }
  .hero-split-edge { display: none; }
  .hero-split-media {
    position: relative;
    inset: auto;
    height: 45vh;
    min-height: 260px;
    clip-path: none;
    border-bottom: 4px solid var(--color-lime);
  }
  .hero-split-media::after {
    background: linear-gradient(to top, rgba(10,12,10,0.75), rgba(10,12,10,0) 60%);
  }
  .hero-split-inner { padding: 46px 28px 54px; }
  .hero-split-eyebrow { letter-spacing: 0.22em; font-size: 0.68rem; margin-bottom: 18px; white-space: normal; }
  .hero-split-inner::before { display: none; }
  .hero-split-text { max-width: none; }
  .hero-split h1 { width: auto; max-width: 100%; }
  .hero-split-actions { max-width: none; }
  .hero-split-mark { display: none; }
  .hero-split-lede { max-width: 58ch; }
  .hero-fact { padding: 30px 8px 28px; }
  .hero-fact-label { font-size: 0.62rem; letter-spacing: 0.13em; }
}
@media (max-width: 370px) {
  .hero-split h1 { font-size: 2.9rem; }
}
@media (max-width: 560px) {
  .hero-facts-grid { padding: 0 14px; }
  .hero-fact { padding: 24px 6px 22px; }
  .hero-fact-num { font-size: 2rem; }
  .hero-fact-label { font-size: 0.56rem; letter-spacing: 0.09em; margin-top: 8px; }
  .hero-split-actions .btn { width: 100%; justify-content: center; }
}

/* Seitenkopf der Unterseiten */
.page-hero {
  color: var(--color-white);
  background: linear-gradient(115deg, var(--color-ink) 0%, var(--color-steel) 65%, #2c3720 120%);
  padding: 72px 0 66px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(198,242,36,0.04) 0 3px, transparent 3px 24px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); max-width: 900px; }
.page-hero h1 em { font-style: normal; color: var(--color-lime); }
.page-hero .lede { color: rgba(255,255,255,0.85); max-width: 68ch; }
.page-hero .eyebrow { color: var(--color-lime); }
.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--color-lime); }

/* ------------------------------ Sektionen ------------------------------ */
section { padding: 84px 0; }
.section-alt { background: var(--color-paper-dark); }
.section-dark {
  background: linear-gradient(160deg, var(--color-ink), var(--color-steel));
  color: rgba(255,255,255,0.86);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark h2 em, .section-dark h3 em { font-style: normal; color: var(--color-lime); }
.section-dark .lede { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: var(--color-lime); }
h2 em, h3 em { font-style: normal; color: var(--color-lime-dark); }

/* ------------------------------ Raster ------------------------------ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-lime);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 27px; height: 27px; color: var(--color-lime); }
.icon-badge.lime { background: var(--color-lime); }
.icon-badge.lime svg { color: var(--color-ink); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.feature-card p { color: var(--color-text-soft); margin-bottom: 0; font-size: 0.96rem; }

/* Nummerierte Karten */
.num-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.num-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-lime-dark);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.num-card p { color: var(--color-text-soft); font-size: 0.96rem; margin-bottom: 0; }

/* ------------------------------ Stats-Leiste ------------------------------ */
.stats-bar {
  background: var(--color-ink);
  color: var(--color-white);
  padding: 54px 0;
  border-top: 4px solid var(--color-lime);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-lime);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.66);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }

/* ------------------------------ Ausstattungs-/Kurskarten ------------------------------ */
.kit-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kit-card .kit-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.kit-card .icon-badge { margin-bottom: 0; width: 46px; height: 46px; flex-shrink: 0; }
.kit-card .icon-badge svg { width: 23px; height: 23px; }
.kit-card h3 { margin: 0; font-size: 1.18rem; }
.kit-card p { color: var(--color-text-soft); font-size: 0.96rem; }
.spec-list { margin-top: auto; padding-top: 8px; }
.spec-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  border-bottom: 1px dashed var(--color-line);
}
.spec-list li:last-child { border-bottom: none; }
.spec-list svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--color-lime-dark); margin-top: 3px; }

.tag-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
  background: var(--color-ink);
  color: var(--color-lime);
}
.tag.light { background: var(--color-paper-dark); color: var(--color-text); }

/* ------------------------------ Kursplan-Tabelle ------------------------------ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.plan-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.plan-table th, .plan-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.92rem;
  vertical-align: top;
}
.plan-table thead th {
  background: var(--color-ink);
  color: var(--color-lime);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none;
}
.plan-table tbody tr:nth-child(even) { background: rgba(12,14,12,0.025); }
.plan-table td:first-child { font-weight: 800; color: var(--color-ink); white-space: nowrap; }
.plan-table .slot { display: block; font-weight: 700; color: var(--color-ink); }
.plan-table .slot-meta { display: block; font-size: 0.8rem; color: var(--color-text-soft); }
.plan-table .empty { color: rgba(12,14,12,0.25); }

/* Vergleichstabelle Tarife */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.93rem;
  text-align: center;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; color: var(--color-ink); }
.compare-table thead th {
  background: var(--color-ink);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}
.compare-table thead th.highlight { background: var(--color-lime); color: var(--color-ink); }
.compare-table tbody tr:nth-child(even) { background: rgba(12,14,12,0.025); }
.check-yes { color: var(--color-lime-dark); font-weight: 800; }
.check-no { color: rgba(12,14,12,0.3); }

/* ------------------------------ Tarifkarten ------------------------------ */
.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--color-lime);
  background: var(--color-ink);
  color: rgba(255,255,255,0.84);
}
.price-card.featured h3, .price-card.featured .price-num { color: var(--color-white); }
.price-card.featured .price-num { color: var(--color-lime); }
.price-card.featured .package-list li { color: rgba(255,255,255,0.78); border-color: var(--color-line-dark); }
.price-card.featured .package-list svg { color: var(--color-lime); }
.price-card.featured .price-meta { color: rgba(255,255,255,0.6); }
.price-badge {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--color-lime);
  color: var(--color-ink);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 3px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-ink);
  margin: 10px 0 4px;
}
.price-num small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--color-text-soft); }
.price-meta { font-size: 0.83rem; color: var(--color-text-soft); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 20px; }
.package-list { margin: 0 0 24px; }
.package-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--color-text-soft);
  border-bottom: 1px dashed var(--color-line);
}
.package-list li:last-child { border-bottom: none; }
.package-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-lime-dark); margin-top: 3px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ------------------------------ Bewertungen ------------------------------ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  padding: 11px 20px;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  font-size: 0.9rem;
}
.stars { display: inline-flex; gap: 2px; color: var(--color-lime-dark); }
.stars svg { width: 18px; height: 18px; }

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-lime);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.testimonial-quote { font-size: 1rem; color: var(--color-text-soft); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.monogram {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 800; font-size: 0.94rem; color: var(--color-ink); }
.testimonial-meta { font-size: 0.82rem; color: var(--color-text-soft); }

/* ------------------------------ Zeitstrahl ------------------------------ */
.timeline { position: relative; margin-left: 12px; padding-left: 36px; border-left: 3px solid var(--color-lime); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 6px;
  width: 18px; height: 18px;
  border-radius: 3px;
  background: var(--color-ink);
  box-shadow: 0 0 0 3px var(--color-lime);
}
.timeline-year {
  font-family: var(--font-display);
  color: var(--color-lime-dark);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p { color: var(--color-text-soft); margin-bottom: 0; font-size: 0.97rem; }
.section-dark .timeline-item p { color: rgba(255,255,255,0.76); }
.section-dark .timeline-year { color: var(--color-lime); }
.section-dark .timeline-item::before { background: var(--color-white); }

/* Prozess-Zeitstrahl (horizontal) */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
@media (max-width: 900px) { .process-strip { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }
@media (max-width: 370px) {
  .hero-split h1 { font-size: 2.9rem; }
}
@media (max-width: 560px) { .process-strip { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  padding: 0 22px;
  border-top: 3px solid rgba(255,255,255,0.15);
  padding-top: 26px;
}
.process-step:first-child { padding-left: 0; }
.process-step::after {
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 46px; height: 3px;
  background: var(--color-lime);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-lime);
  margin-bottom: 8px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.93rem; margin-bottom: 0; }

/* ------------------------------ Team ------------------------------ */
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.team-monogram {
  width: 82px; height: 82px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.9rem;
  color: var(--color-lime);
  background: var(--color-ink);
}
.team-card h3 { margin-bottom: 4px; }
.team-role { color: var(--color-lime-dark); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.team-bio { color: var(--color-text-soft); font-size: 0.94rem; }
.team-quals { margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--color-line); }
.team-quals li { font-size: 0.84rem; color: var(--color-text-soft); padding: 4px 0 4px 18px; position: relative; }
.team-quals li::before { content: "▸"; position: absolute; left: 0; color: var(--color-lime-dark); }

/* ------------------------------ Info / Kontakt ------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block { display: flex; gap: 16px; margin-bottom: 26px; }
.info-block .icon-badge { flex-shrink: 0; margin-bottom: 0; }
.info-block h3 { margin-bottom: 6px; font-size: 1.1rem; }
.info-block p { color: var(--color-text-soft); margin-bottom: 0; font-size: 0.96rem; }

.map-placeholder {
  border-radius: var(--radius-md);
  height: 280px;
  background: linear-gradient(135deg, #dfe3d6, #c5cdb8);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--color-line);
}
.map-placeholder svg.map-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 50%; left: 52%; transform: translate(-50%, -100%); width: 44px; height: 44px; color: var(--color-ink); filter: drop-shadow(0 6px 8px rgba(0,0,0,0.3)); }
.map-note {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(12,14,12,0.85);
  color: var(--color-lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.demo-notice {
  background: #fbffe4;
  border: 1px solid var(--color-lime-dark);
  border-left: 4px solid var(--color-lime-dark);
  color: #444d16;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.demo-notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-lime);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 4px; }
@media (max-width: 370px) {
  .hero-split h1 { font-size: 2.9rem; }
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-line);
  background: var(--color-paper);
  color: var(--color-text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-lime-dark);
  background: var(--color-white);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--color-text-soft); margin-bottom: 22px; }
.field-check input { margin-top: 4px; }
.form-demo-feedback {
  display: none;
  background: var(--color-ink);
  color: var(--color-lime);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* ------------------------------ Öffnungszeiten ------------------------------ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px dashed var(--color-line); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 800; color: var(--color-ink); }
.hours-table tr:last-child td { border-bottom: none; }

/* ------------------------------ CTA-Band ------------------------------ */
.cta-band {
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 6px solid var(--color-lime);
  padding: 52px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-band h2 em { font-style: normal; color: var(--color-lime); }
.cta-band p { color: rgba(255,255,255,0.76); margin-bottom: 0; max-width: 60ch; }

/* ------------------------------ Rechtliches ------------------------------ */
.legal-block { max-width: 830px; margin: 0 auto; }
.legal-block h2 { margin-top: 52px; }
.legal-block h2:first-child { margin-top: 0; }
.legal-block h3 { font-size: 1.12rem; margin-top: 30px; }
.legal-block p, .legal-block li { color: var(--color-text-soft); }
.legal-block ul { margin: 12px 0 12px 4px; }
.legal-block li { padding: 4px 0 4px 20px; position: relative; }
.legal-block li::before { content: "—"; position: absolute; left: 0; color: var(--color-lime-dark); }
.legal-tabs { display: flex; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.legal-tabs a {
  padding: 11px 20px;
  border-radius: 4px;
  border: 1.5px solid var(--color-line);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-tabs a:hover { border-color: var(--color-lime-dark); background: var(--color-lime); color: var(--color-ink); }
hr.legal-divider { border: none; border-top: 3px solid var(--color-lime); margin: 60px 0; }

/* ------------------------------ Footer ------------------------------ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.76);
  padding: 62px 0 28px;
  border-top: 4px solid var(--color-lime);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 370px) {
  .hero-split h1 { font-size: 2.9rem; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-icon { width: 38px; height: 38px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.24rem; color: var(--color-white); text-transform: uppercase; }
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--color-lime);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 16px;
}
.site-footer p { font-size: 0.92rem; }
.footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a { transition: color 0.15s ease; }
.footer-links a:hover { color: var(--color-lime); }
.footer-bottom {
  border-top: 1px solid var(--color-line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.footer-demo-note {
  background: rgba(198,242,36,0.07);
  border: 1px dashed rgba(198,242,36,0.4);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.82rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.72);
}
.footer-demo-note strong { color: var(--color-lime); }

/* ------------------------------ Helfer ------------------------------ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.two-col-text { columns: 2; column-gap: 48px; }
@media (max-width: 780px) { .two-col-text { columns: 1; } }
.lede.center { margin-left: auto; margin-right: auto; }

.rule-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-lime);
  color: var(--color-ink);
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.rule-strip svg { width: 18px; height: 18px; }

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 640px) { .value-list { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-item .icon-badge { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; }
.value-item .icon-badge svg { width: 22px; height: 22px; }
.value-item h4 { margin-bottom: 4px; font-family: var(--font-body); font-weight: 800; font-size: 1rem; text-transform: none; letter-spacing: 0; }
.value-item p { font-size: 0.92rem; color: var(--color-text-soft); margin-bottom: 0; }
.section-dark .value-item h4 { color: var(--color-white); }
.section-dark .value-item p { color: rgba(255,255,255,0.74); }

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--color-text-soft); font-size: 0.95rem; margin-bottom: 0; }

/* =========================================================================
   Fotografie
   ========================================================================= */

.page-hero.has-photo {
  background-image:
    linear-gradient(100deg, rgba(9,11,9,0.95) 0%, rgba(16,20,15,0.88) 45%, rgba(70,92,10,0.56) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Vollbreite Foto-Band */
.photo-band {
  position: relative;
  padding: 0;
  color: var(--color-white);
  background-image:
    linear-gradient(100deg, rgba(9,11,9,0.94) 0%, rgba(16,20,15,0.82) 45%, rgba(70,92,10,0.5) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.photo-band-inner { padding: 112px 0; max-width: 800px; }
.photo-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--color-white);
}
.photo-band blockquote em { font-style: normal; color: var(--color-lime); }
.photo-band cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-lime);
}
@media (max-width: 700px) { .photo-band-inner { padding: 76px 0; } }

/* Split Text/Bild */
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .split-media { grid-template-columns: 1fr; gap: 32px; } }
.media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame.framed-lime { border: 3px solid var(--color-lime); }
.media-caption {
  font-size: 0.84rem;
  color: var(--color-text-soft);
  margin-top: 10px;
}
.section-dark .media-caption { color: rgba(255,255,255,0.6); }

/* Foto-Galerie (gemischtes Raster) */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.photo-gallery figure {
  margin: 0;
  position: relative;
  grid-column: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-ink);
}
.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}
.photo-gallery figure:hover img { transform: scale(1.05); }
.photo-gallery figure.span-3 { grid-column: span 3; }
.photo-gallery figure.span-4 { grid-column: span 4; }
.photo-gallery figure.span-6 { grid-column: span 6; }
.photo-gallery figure.span-3 img { aspect-ratio: 4 / 3; }
.photo-gallery figure.span-4 img { aspect-ratio: 16 / 9; }
.photo-gallery figure.span-6 img { aspect-ratio: 16 / 9; }
.photo-gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 20px 18px;
  color: var(--color-white);
  font-size: 0.88rem;
  line-height: 1.45;
  background: linear-gradient(to top, rgba(9,11,9,0.94) 0%, rgba(9,11,9,0.6) 55%, rgba(9,11,9,0) 100%);
}
.photo-gallery figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
  color: var(--color-lime);
}

/* Typografische Kacheln im Galerie-Raster */
.type-tile {
  grid-column: span 2;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.type-tile.span-3 { grid-column: span 3; aspect-ratio: 4 / 3; }
.type-tile.span-4 { grid-column: span 4; aspect-ratio: 16 / 9; }
.type-tile .tile-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.type-tile .tile-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}
.type-tile .tile-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.75;
}
.tile-lime { background: var(--color-lime); color: var(--color-ink); }
.tile-lime .tile-num { color: var(--color-ink); }
.tile-ink { background: var(--color-ink); color: rgba(255,255,255,0.8); }
.tile-ink .tile-num { color: var(--color-lime); }
.tile-steel { background: var(--color-steel-light); color: rgba(255,255,255,0.8); }
.tile-steel .tile-num { color: var(--color-lime); }
.type-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,0.05) 0 3px, transparent 3px 24px);
  pointer-events: none;
}
.tile-ink::before, .tile-steel::before {
  background-image: repeating-linear-gradient(-45deg, rgba(198,242,36,0.06) 0 3px, transparent 3px 24px);
}

@media (max-width: 900px) {
  .photo-gallery { grid-template-columns: repeat(4, 1fr); }
  .photo-gallery figure.span-4, .type-tile.span-4 { grid-column: span 4; }
  .photo-gallery figure.span-6 { grid-column: span 4; }
}
@media (max-width: 600px) {
  .photo-gallery { grid-template-columns: 1fr; gap: 16px; }
  .photo-gallery figure,
  .photo-gallery figure.span-3,
  .photo-gallery figure.span-4,
  .photo-gallery figure.span-6,
  .type-tile, .type-tile.span-3, .type-tile.span-4 { grid-column: span 1; }
  .photo-gallery img,
  .photo-gallery figure.span-3 img,
  .photo-gallery figure.span-4 img,
  .photo-gallery figure.span-6 img { aspect-ratio: 4 / 3; }
  .type-tile, .type-tile.span-3, .type-tile.span-4 { aspect-ratio: auto; min-height: 200px; }
}
/* Fix: Markenname im Header einzeilig halten */
.site-header .brand-name,
.site-header .logo-text,
.site-header .brand-text{ white-space: nowrap; }
.site-header .brand-text small{ white-space: nowrap; }
