/* ============================================================
   Armin Cehic Tennisschule – Stylesheet
   ============================================================ */

:root {
  --bg:        #060807;
  --bg-2:      #0c0f0d;
  --panel:     #111613;
  --panel-2:   #161b18;
  --card:      #14110d;
  --line:      rgba(255,255,255,.08);
  --lime:      #c6f032;
  --lime-2:    #b3e600;
  --lime-deep: #8bbf00;
  --white:     #ffffff;
  --text:      #e9ece8;
  --muted:     #9aa39b;
  --muted-2:   #6f786f;
  --radius:    18px;
  --radius-lg: 26px;
  --maxw:      1180px;
  --head-h:    84px;
  --ff-head:   'Saira Condensed', 'Arial Narrow', sans-serif;
  --ff-body:   'Inter', system-ui, sans-serif;
  --ff-script: 'Great Vibes', cursive;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--head-h); }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .arrow { font-size: 16px; line-height: 1; }
.btn-lg { padding: 18px 32px; font-size: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-2) 100%);
  color: #0a0d07;
  box-shadow: 0 8px 26px rgba(179,230,0,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(179,230,0,.42); }

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(5px);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-dark {
  background: #0b0f08;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.btn-dark:hover { transform: translateY(-2px); background: #000; }

/* calendar icon (mini) */
.cal-icon {
  width: 15px; height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
  position: relative;
  flex: none;
}
.cal-icon::before {
  content: ""; position: absolute; top: -4px; left: 2px; right: 2px;
  height: 3px; border-left: 2px solid currentColor; border-right: 2px solid currentColor;
}
.cal-icon::after {
  content: ""; position: absolute; top: 4px; left: 1px; right: 1px;
  border-top: 2px solid currentColor;
}

/* ---------- Eyebrow / Section title ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow-lime { color: var(--lime); }

.section-title {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 10px 0 26px;
}

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: .04em;
  color: var(--white);
}
.logo-sub {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--lime);
  margin-top: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--head-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(6,8,7,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--lime); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--lime); border-radius: 2px;
}
.header-cta { margin-left: 8px; }

/* burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--head-h);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 40%, rgba(120,70,20,.55) 0%, rgba(40,25,10,.25) 35%, transparent 60%),
    linear-gradient(180deg, #05070a 0%, #070a0c 60%, #060807 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../assets/hero-player.png") center right / cover no-repeat;
  /* innerer Schatten / Vignette – blendet alle Kanten ins Dunkle */
  box-shadow:
    inset 0 0 160px 50px rgba(6,8,7,.95),
    inset 0 -140px 120px -30px var(--bg),
    inset 0 120px 90px -40px var(--bg);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  /* linker, weicher Übergang: deckt die harte Bildkante ab und fadet ins Foto */
  background:
    linear-gradient(90deg, var(--bg) 22%, rgba(6,8,7,.92) 38%, rgba(6,8,7,.45) 54%, rgba(6,8,7,.12) 70%, transparent 84%),
    radial-gradient(60% 70% at 78% 55%, rgba(198,240,50,.08), transparent 60%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(360px, 78vh, 760px);
  width: auto;
  opacity: .34;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; display: flex; }

/* sticky social rail (links, fix) */
.social-rail {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 16px 12px;
  border-radius: 40px;
  background: rgba(10,13,8,.45);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.social-rail .soc { width: 20px; height: 20px; }
.social-rail .rail-line {
  width: 1px; height: 56px;
  background: linear-gradient(var(--lime), transparent);
  margin-top: 4px;
}
.hero-content { max-width: 620px; }

.eyebrow.eyebrow-lime { font-size: 13px; }
.hero-content .eyebrow { margin-bottom: 14px; }

.hero-title {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: .005em;
  margin-bottom: 26px;
}
.hero-title span { display: block; }
.hero-title-white { color: var(--white); font-size: clamp(54px, 8.4vw, 104px); }
.hero-title-lime  { color: var(--lime);  font-size: clamp(50px, 7.6vw, 96px); }

.hero-lead {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-badge { display: flex; align-items: center; gap: 16px; }
.laurel {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--lime);
  font-size: 18px;
  border: 2px solid rgba(198,240,50,.4);
  border-radius: 50%;
  position: relative;
}
.badge-title {
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  color: var(--white); text-transform: uppercase;
}
.badge-sub { font-size: 13px; color: var(--muted); }

/* social icon buttons */
.soc {
  width: 22px; height: 22px;
  display: inline-block;
  background: currentColor;
  color: var(--text);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  transition: color .2s ease, transform .2s ease;
}
.soc:hover { color: var(--lime); transform: translateY(-2px); }
.soc-ig { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.2c3.2 0 3.6 0 4.9.07 1.2.05 1.8.25 2.2.42.56.22.96.48 1.38.9.42.42.68.82.9 1.38.17.4.37 1 .42 2.2.06 1.3.07 1.7.07 4.9s0 3.6-.07 4.9c-.05 1.2-.25 1.8-.42 2.2-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.4.17-1 .37-2.2.42-1.3.06-1.7.07-4.9.07s-3.6 0-4.9-.07c-1.2-.05-1.8-.25-2.2-.42a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.17-.4-.37-1-.42-2.2C2.21 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.05-1.2.25-1.8.42-2.2.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.4-.17 1-.37 2.2-.42C8.4 2.21 8.8 2.2 12 2.2Zm0 1.8c-3.14 0-3.5.01-4.74.07-.9.04-1.38.2-1.7.32-.43.17-.74.37-1.06.69-.32.32-.52.63-.69 1.06-.12.32-.28.8-.32 1.7C3.43 9.16 3.4 9.5 3.4 12s.02 2.84.08 4.08c.04.9.2 1.38.32 1.7.17.43.37.74.69 1.06.32.32.63.52 1.06.69.32.12.8.28 1.7.32 1.24.06 1.6.07 4.74.07s3.5-.01 4.74-.07c.9-.04 1.38-.2 1.7-.32.43-.17.74-.37 1.06-.69.32-.32.52-.63.69-1.06.12-.32.28-.8.32-1.7.06-1.24.07-1.6.07-4.08s-.01-2.84-.07-4.08c-.04-.9-.2-1.38-.32-1.7a2.85 2.85 0 0 0-.69-1.06 2.85 2.85 0 0 0-1.06-.69c-.32-.12-.8-.28-1.7-.32C15.5 4.01 15.14 4 12 4Zm0 3.06A4.94 4.94 0 1 1 7.06 12 4.94 4.94 0 0 1 12 7.06Zm0 8.14A3.2 3.2 0 1 0 8.8 12 3.2 3.2 0 0 0 12 15.2Zm6.3-8.34a1.15 1.15 0 1 1-1.15-1.15 1.15 1.15 0 0 1 1.15 1.15Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.2c3.2 0 3.6 0 4.9.07 1.2.05 1.8.25 2.2.42.56.22.96.48 1.38.9.42.42.68.82.9 1.38.17.4.37 1 .42 2.2.06 1.3.07 1.7.07 4.9s0 3.6-.07 4.9c-.05 1.2-.25 1.8-.42 2.2-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.4.17-1 .37-2.2.42-1.3.06-1.7.07-4.9.07s-3.6 0-4.9-.07c-1.2-.05-1.8-.25-2.2-.42a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.17-.4-.37-1-.42-2.2C2.21 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.05-1.2.25-1.8.42-2.2.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.4-.17 1-.37 2.2-.42C8.4 2.21 8.8 2.2 12 2.2Zm0 1.8c-3.14 0-3.5.01-4.74.07-.9.04-1.38.2-1.7.32-.43.17-.74.37-1.06.69-.32.32-.52.63-.69 1.06-.12.32-.28.8-.32 1.7C3.43 9.16 3.4 9.5 3.4 12s.02 2.84.08 4.08c.04.9.2 1.38.32 1.7.17.43.37.74.69 1.06.32.32.63.52 1.06.69.32.12.8.28 1.7.32 1.24.06 1.6.07 4.74.07s3.5-.01 4.74-.07c.9-.04 1.38-.2 1.7-.32.43-.17.74-.37 1.06-.69.32-.32.52-.63.69-1.06.12-.32.28-.8.32-1.7.06-1.24.07-1.6.07-4.08s-.01-2.84-.07-4.08c-.04-.9-.2-1.38-.32-1.7a2.85 2.85 0 0 0-.69-1.06 2.85 2.85 0 0 0-1.06-.69c-.32-.12-.8-.28-1.7-.32C15.5 4.01 15.14 4 12 4Zm0 3.06A4.94 4.94 0 1 1 7.06 12 4.94 4.94 0 0 1 12 7.06Zm0 8.14A3.2 3.2 0 1 0 8.8 12 3.2 3.2 0 0 0 12 15.2Zm6.3-8.34a1.15 1.15 0 1 1-1.15-1.15 1.15 1.15 0 0 1 1.15 1.15Z'/%3E%3C/svg%3E"); }
.soc-fb { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 8.5h2.5V5.3C16.1 5.2 15 5 13.8 5 11.3 5 9.6 6.5 9.6 9.3v2.2H6.8v3.3h2.8V23h3.4v-8.2h2.7l.43-3.3h-3.1V9.6c0-.95.26-1.6 1.6-1.6Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 8.5h2.5V5.3C16.1 5.2 15 5 13.8 5 11.3 5 9.6 6.5 9.6 9.3v2.2H6.8v3.3h2.8V23h3.4v-8.2h2.7l.43-3.3h-3.1V9.6c0-.95.26-1.6 1.6-1.6Z'/%3E%3C/svg%3E"); }
.soc-wa { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-8.5 15.3L2 22l4.8-1.5A10 10 0 1 0 12 2Zm0 18a8 8 0 0 1-4.1-1.1l-.3-.18-2.85.9.92-2.78-.2-.3A8 8 0 1 1 12 20Zm4.5-5.9c-.25-.13-1.47-.72-1.7-.8-.23-.09-.4-.13-.56.13-.17.25-.64.8-.78.97-.14.16-.29.18-.54.06-.25-.13-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.39.11-.51.11-.11.25-.29.38-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43-.06-.13-.56-1.35-.77-1.85-.2-.48-.4-.41-.56-.42h-.48c-.16 0-.43.06-.65.31-.22.25-.85.84-.85 2.04s.87 2.37.99 2.53c.12.17 1.71 2.6 4.14 3.65.58.25 1.03.4 1.38.51.58.18 1.1.16 1.52.1.46-.07 1.43-.58 1.63-1.15.2-.56.2-1.05.14-1.15-.06-.1-.22-.16-.47-.28Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-8.5 15.3L2 22l4.8-1.5A10 10 0 1 0 12 2Zm0 18a8 8 0 0 1-4.1-1.1l-.3-.18-2.85.9.92-2.78-.2-.3A8 8 0 1 1 12 20Zm4.5-5.9c-.25-.13-1.47-.72-1.7-.8-.23-.09-.4-.13-.56.13-.17.25-.64.8-.78.97-.14.16-.29.18-.54.06-.25-.13-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.39.11-.51.11-.11.25-.29.38-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43-.06-.13-.56-1.35-.77-1.85-.2-.48-.4-.41-.56-.42h-.48c-.16 0-.43.06-.65.31-.22.25-.85.84-.85 2.04s.87 2.37.99 2.53c.12.17 1.71 2.6 4.14 3.65.58.25 1.03.4 1.38.51.58.18 1.1.16 1.52.1.46-.07 1.43-.58 1.63-1.15.2-.56.2-1.05.14-1.15-.06-.1-.22-.16-.47-.28Z'/%3E%3C/svg%3E"); }

/* ============================================================
   TRAINING
   ============================================================ */
.training { padding: 80px 0; background: var(--bg); }
.training-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.training-head .section-title { margin: 8px 0 14px; }
.training-sub { color: var(--muted); font-size: 15px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--card) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(198,240,50,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.card h3 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 16px 0 8px;
  line-height: 1.02;
}
.card p { font-size: 13px; color: var(--muted); }

.card-icon {
  width: 42px; height: 42px;
  display: inline-block;
  background: var(--lime);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.icon-group { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.icon-star { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E"); }
.icon-chart { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E"); }
.icon-trophy { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6'/%3E%3Cpath d='M18 9h1.5a2.5 2.5 0 0 0 0-5H18'/%3E%3Cpath d='M4 22h16'/%3E%3Cpath d='M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22'/%3E%3Cpath d='M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22'/%3E%3Cpath d='M18 2H6v7a6 6 0 0 0 12 0V2Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6'/%3E%3Cpath d='M18 9h1.5a2.5 2.5 0 0 0 0-5H18'/%3E%3Cpath d='M4 22h16'/%3E%3Cpath d='M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22'/%3E%3Cpath d='M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22'/%3E%3Cpath d='M18 2H6v7a6 6 0 0 0 12 0V2Z'/%3E%3C/svg%3E"); }


/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 50px 0 70px; }
.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: stretch;
}

/* Portrait */
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--line);
  background: #0d0f0c;
}
.about-portrait-img {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(6,8,7,.85) 100%),
    url("../assets/armin-portrait.png") center top / cover no-repeat,
    linear-gradient(135deg, #1c2118, #0d0f0c);
}
.about-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 80% 0%, rgba(198,240,50,.16), transparent 60%);
  pointer-events: none;
}
.about-portrait-badge {
  position: absolute; left: 28px; bottom: 26px; z-index: 2;
  display: flex; flex-direction: column;
}
.about-sign {
  font-family: var(--ff-script);
  font-size: 44px;
  line-height: .9;
  color: var(--white);
}
.about-role {
  font-family: var(--ff-body);
  font-weight: 700; font-size: 11px; letter-spacing: .26em;
  color: var(--lime); margin-top: 8px;
}

/* Inhalt */
.about-content { align-self: center; }
.about-content .section-title { margin: 8px 0 18px; }
.about-content .section-title span { color: var(--lime); }
.about-lead { color: var(--muted); font-size: 15px; max-width: 520px; margin-bottom: 26px; }

.about-sub-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-body);
  font-weight: 700; font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 16px;
}
.title-deco { width: 26px; height: 2px; background: var(--lime); border-radius: 2px; }

.comp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-bottom: 30px;
}
.comp-list li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  color: var(--text);
}
.comp-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--lime), var(--lime-2))
    no-repeat;
  -webkit-mask: none;
}
.comp-list li::after {
  content: "";
  position: absolute; left: 6px; top: 7px;
  width: 4px; height: 8px;
  border: solid #0a0d07;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.about-mini-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--card) 100%);
  overflow: hidden;
}
.ams {
  flex: 1;
  padding: 20px 14px;
  text-align: center;
  position: relative;
}
.ams:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 18%; bottom: 18%;
  width: 1px; background: var(--line);
}
.ams-num {
  display: block;
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: 34px;
  color: var(--lime);
  line-height: 1;
}
.ams-label { display: block; font-size: 12.5px; color: var(--muted); margin-top: 7px; }

/* Weiterbildungen & Lizenzen */
.about-certs {
  margin-top: 34px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(198,240,50,.06), transparent 55%),
    linear-gradient(180deg, var(--panel) 0%, var(--card) 100%);
}
.about-certs .about-sub-title { margin-bottom: 22px; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cert {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: border-color .25s ease, transform .25s ease;
}
.cert:hover { border-color: rgba(198,240,50,.4); transform: translateY(-3px); }
.cert-badge {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(198,240,50,.12);
  border: 1px solid rgba(198,240,50,.35);
  display: grid; place-items: center;
}
.cert-badge::after {
  content: "";
  width: 9px; height: 16px;
  border: solid var(--lime);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin-top: -3px;
}
.cert-text strong {
  display: block;
  font-weight: 600; font-size: 15px; color: var(--white);
}
.cert-text small { color: var(--muted); font-size: 12.5px; }

/* ============================================================
   GALERIE (Swiper)
   ============================================================ */
.gallery { padding: 30px 0 60px; }
.gallery-head { text-align: center; margin-bottom: 36px; }
.gallery-head .section-title { margin: 8px 0 14px; }
.gallery-sub { color: var(--muted); font-size: 15px; }

.gallery-swiper-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.gallery-swiper { padding-bottom: 56px; overflow: hidden; }
.gallery-swiper .swiper-slide {
  width: 380px;
  height: 460px;
  transition: transform .4s ease, opacity .4s ease;
}

.g-slide {
  position: relative;
  height: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.82) 100%),
    var(--slide-img, none) center/cover no-repeat,
    linear-gradient(135deg, #1c3326 0%, #0e1611 100%);
}
.g-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 10%, rgba(198,240,50,.10), transparent 55%);
}
.g-slide figcaption {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}
.g-slide figcaption::before {
  content: "";
  display: block;
  width: 38px; height: 3px;
  background: var(--lime);
  margin-bottom: 12px;
  border-radius: 2px;
}
.gallery-swiper .swiper-slide:not(.swiper-slide-active) .g-slide { opacity: .55; }

/* Swiper controls in brand colors */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(10,13,8,.7);
  border: 1px solid rgba(198,240,50,.35);
  backdrop-filter: blur(6px);
  color: var(--lime);
  transition: background .2s ease, transform .2s ease;
}
.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: var(--lime); color: #0a0d07; transform: scale(1.06);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after { font-size: 17px; font-weight: 800; }

.gallery-swiper .swiper-pagination-bullet {
  background: var(--muted); opacity: .5; width: 9px; height: 9px;
  transition: opacity .2s, width .2s, background .2s;
}
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--lime); opacity: 1; width: 26px; border-radius: 5px;
}

@media (max-width: 600px) {
  .gallery-swiper-wrap { padding-inline: 18px; }
  .gallery-swiper .swiper-slide { width: 80%; height: 380px; }
  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next { display: none; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 0 0 80px; }
.cta-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, #161b10 0%, #0d100b 55%, #0a0d08 100%);
  border: 1px solid rgba(198,240,50,.18);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.cta-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 80% at 85% 24%, rgba(198,240,50,.22), transparent 60%),
    radial-gradient(40% 70% at 100% 100%, rgba(198,240,50,.10), transparent 55%);
}

.cta-top {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  align-items: center;
  gap: 24px;
  padding: 56px 52px 44px;
}
.cta-main { min-width: 0; }
.cta-title {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(30px, 3.9vw, 50px);
  line-height: .96;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title span { color: var(--lime); }
.cta-sub { color: var(--muted); font-size: 15px; max-width: 380px; margin-bottom: 28px; }

/* Ball mit Leucht-Halo auf dunklem Grund */
.cta-visual {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-visual::before {
  content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,240,50,.40) 0%, rgba(198,240,50,.12) 45%, transparent 68%);
  filter: blur(6px);
}
.cta-ball {
  position: relative;
  width: 250px; height: 250px;
  background: url("../assets/ball.png") center / contain no-repeat;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.55));
  animation: cta-float 5s ease-in-out infinite;
}
@keyframes cta-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .cta-ball { animation: none; } }

.cta-features {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.cta-feature {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
  padding: 28px 18px;
}
.cta-feature:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.cta-feature p {
  font-family: var(--ff-head);
  font-weight: 800; font-size: 15px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--white); line-height: 1.05;
}
.feat-icon {
  width: 38px; height: 38px; display: inline-block;
  background: var(--lime);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.feat-calendar { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); }
.feat-user { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.feat-bars { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3Cline x1='12' y1='20' x2='12' y2='8'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3Cline x1='12' y1='20' x2='12' y2='8'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3C/svg%3E"); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 30px 0; border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
.logo-footer .logo-img { height: 42px; }
.logo-footer .logo-title { font-size: 20px; }
.logo-footer .logo-sub { font-size: 8px; }
.copyright { color: var(--muted-2); font-size: 13px; margin: 0 auto; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--lime); }
.footer-social { display: flex; gap: 16px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  :root { --head-h: 70px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* mobile menu panel */
  .main-nav.open {
    display: block;
    position: fixed;
    top: var(--head-h); left: 0; right: 0;
    background: rgba(6,8,7,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 18px 0 26px;
    z-index: 99;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; padding: 0 24px; }
  .main-nav.open a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .main-nav.open a.active::after { display: none; }
  .main-nav.open .mobile-cta { margin-top: 18px; width: 100%; justify-content: center; }

  .hero::after { background: linear-gradient(180deg, rgba(6,8,7,.4) 0%, rgba(6,8,7,.55) 55%, var(--bg) 100%); }
  .hero-bg { opacity: .5; background-position: right -40px center; }
  .social-rail {
    flex-direction: row;
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    gap: 22px;
    padding: 10px 18px;
  }
  .social-rail .rail-line { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-portrait { min-height: 380px; }
  .about-certs { padding: 28px 22px; }

  .cta-top { grid-template-columns: 1fr; gap: 8px; padding: 44px 28px 32px; text-align: center; }
  .cta-main { order: 2; display: flex; flex-direction: column; align-items: center; }
  .cta-sub { margin-inline: auto; }
  .cta-visual { order: 1; min-height: 200px; margin-bottom: 8px; }
  .cta-ball { width: 180px; height: 180px; }
  .cta-visual::before { width: 220px; height: 220px; }
}

@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  .hero-title-white { font-size: clamp(44px, 13vw, 66px); }
  .hero-title-lime  { font-size: clamp(40px, 12vw, 60px); }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card { padding: 22px 14px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 18px; }
  .copyright { order: 3; }
  .comp-list { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .about-mini-stats { flex-wrap: wrap; }
  .ams-num { font-size: 28px; }
  .cta-features { grid-template-columns: 1fr; }
  .cta-feature { flex-direction: row; justify-content: center; gap: 14px; padding: 18px; }
  .cta-feature:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .cta-feature p { text-align: left; }
  .cta-feature p br { display: none; }
}

@media (max-width: 380px) {
  .cards { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(4,6,5,.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lb-stage {
  margin: 0;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(.96);
  transition: transform .3s ease;
}
.lightbox.open .lb-stage { transform: scale(1); }

.lb-image {
  width: 100%;
  height: min(76vh, 760px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(198,240,50,.25);
  background-color: #0e1611;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lb-caption {
  margin-top: 18px;
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
}
.lb-counter {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 13px; letter-spacing: .2em; color: var(--muted);
}

.lb-close, .lb-nav {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(12,15,8,.7);
  border: 1px solid rgba(198,240,50,.3);
  color: var(--lime);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lb-close:hover, .lb-nav:hover { background: var(--lime); color: #0a0d07; }

.lb-close {
  top: 26px; right: 26px;
  width: 48px; height: 48px;
  font-size: 30px; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 34px; line-height: 1;
}
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }

body.lb-locked { overflow: hidden; }

@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lb-image { height: 64vh; }
  .lb-nav { width: 44px; height: 44px; font-size: 26px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .lb-caption { font-size: 18px; }
}

/* ============================================================
   KONTAKT-MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(4,6,5,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.open { opacity: 1; visibility: visible; }

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #14191400 0%, #0c0f0b 18%), linear-gradient(180deg, var(--panel) 0%, #0b0e0a 100%);
  border: 1px solid rgba(198,240,50,.22);
  border-radius: var(--radius-lg);
  padding: 40px 38px 34px;
  box-shadow: 0 40px 100px rgba(0,0,0,.65);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.modal.open .modal-panel { transform: none; opacity: 1; }

.modal-glow {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(80% 50% at 80% 0%, rgba(198,240,50,.16), transparent 60%);
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 26px; line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index: 2;
}
.modal-close:hover { background: var(--lime); color: #0a0d07; transform: rotate(90deg); }

.modal-head { margin-bottom: 26px; position: relative; }
.modal-title {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin: 8px 0 10px;
}
.modal-sub { color: var(--muted); font-size: 14px; max-width: 420px; }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 16px; position: relative; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.field label span { color: var(--lime); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c6f032' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.field select option { background: #0c0f0b; color: var(--text); }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(198,240,50,.05);
  box-shadow: 0 0 0 3px rgba(198,240,50,.12);
}
.field input:user-invalid,
.field input.invalid {
  border-color: #ff5d5d;
  box-shadow: 0 0 0 3px rgba(255,93,93,.12);
}

/* Honeypot – für Menschen unsichtbar, fängt Bots ab */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-error-banner {
  background: rgba(255,93,93,.1);
  border: 1px solid rgba(255,93,93,.4);
  color: #ff8e8e;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.form-submit { justify-content: center; margin-top: 6px; }
.form-submit:disabled { opacity: .7; cursor: progress; transform: none; }
.form-note { font-size: 12px; color: var(--muted-2); text-align: center; }
.form-note span { color: var(--lime); }

/* success state */
.modal-success { text-align: center; padding: 24px 6px 10px; }
.success-icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-size: 38px;
  color: #0a0d07;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(179,230,0,.35);
}
.modal-success h3 {
  font-family: var(--ff-head); font-style: italic; font-weight: 800;
  font-size: 30px; text-transform: uppercase; color: var(--white); margin-bottom: 10px;
}
.modal-success p { color: var(--muted); margin-bottom: 24px; }

body.modal-locked { overflow: hidden; }

@media (max-width: 600px) {
  .modal { padding: 16px; }
  .modal-panel { padding: 32px 22px 26px; }
  .modal-title { font-size: 30px; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-page { padding: calc(var(--head-h) + 60px) 0 80px; min-height: 70vh; }
.legal-content { max-width: 760px; margin-top: 10px; }
.legal-content h2 {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  margin: 30px 0 10px;
}
.legal-content p { color: var(--muted); margin-bottom: 12px; }
.legal-content a { color: var(--lime); }
.legal-content a:hover { text-decoration: underline; }
.legal-hint { margin-top: 30px; font-size: 13px; color: var(--muted-2); }

/* ============================================================
   FORM: Checkbox + Inline-Links
   ============================================================ */
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  margin-top: 4px;
  user-select: none;
}
.checkbox-field input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cb-box {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.cb-box::after {
  content: "";
  width: 6px; height: 11px;
  border: solid #0a0d07;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .18s ease;
  margin-top: -2px;
}
.checkbox-field input:checked + .cb-box {
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  border-color: var(--lime);
}
.checkbox-field input:checked + .cb-box::after { transform: rotate(45deg) scale(1); }
.checkbox-field input:focus-visible + .cb-box {
  box-shadow: 0 0 0 3px rgba(198,240,50,.25);
}
.cb-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.cb-text span { color: var(--lime); }
.checkbox-field.cb-invalid .cb-box {
  border-color: #ff5d5d;
  box-shadow: 0 0 0 3px rgba(255,93,93,.12);
}

.link-inline {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--lime);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-inline:hover { color: var(--lime-2); }
.form-note .link-inline { color: var(--muted); }
.form-note .link-inline:hover { color: var(--lime); }

/* ============================================================
   LEGAL MODAL CONTENT
   ============================================================ */
.modal-legal { position: relative; }
.modal-legal .modal-title { margin: 8px 0 18px; }
.modal-legal h3 {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--white);
  margin: 22px 0 8px;
}
.modal-legal p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.modal-legal a { color: var(--lime); }
.modal-legal a:hover { text-decoration: underline; }
.modal-legal .legal-hint { margin-top: 22px; font-size: 12.5px; color: var(--muted-2); }
