@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
  --gold:        #C49A2A;
  --gold-light:  #D4A93C;
  --gold-pale:   #E8C66A;
  --gold-dark:   #7A5800;
  --gold-line:   rgba(196,154,42,.22);
  --gold-bg:     rgba(196,154,42,.07);
  --canvas:      #ffffff;
  --canvas2:     #f5f4f2;
  --card:        #ffffff;
  --line:        rgba(0,0,0,.07);
  --line-mid:    rgba(0,0,0,.10);
  --text:        #0a0a0c;
  --text-muted:  rgba(10,10,12,.52);
  --text-dim:    rgba(10,10,12,.33);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.05);
  --shadow-md:   0 2px 6px rgba(0,0,0,.06), 0 16px 48px rgba(0,0,0,.08);
  --container:   1240px;
  --gutter:      clamp(20px, 4vw, 40px);
  --radius:      20px;
}

/* ── Base ── */
body {
  font-family: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
  background: var(--canvas);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

/* ── Typography ── */
h1 {
  font-size: clamp(42px, 5.6vw, 80px);
  font-weight: 900; letter-spacing: -.03em; line-height: .97;
  color: var(--text);
}
h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 900; letter-spacing: -.025em; line-height: 1.03;
  color: var(--text); margin-bottom: 24px;
}
h3 { font-size: 18px; font-weight: 800; letter-spacing: -.015em; color: var(--text); }
h1 .accent, h2 .accent {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 17.5px; color: var(--text-muted); max-width: 680px; margin-top: 20px; line-height: 1.68; }
.muted { color: var(--text-muted); line-height: 1.7; }
.mt { margin-top: 16px; }
.center { text-align: center; display: block; }

/* ── Layout ── */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin: 0 auto; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.eyebrow.center { justify-content: center; }

/* ── Hero tag ── */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--gold-bg); border: 1px solid var(--gold-line);
  color: var(--gold-dark); font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-tag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-light); box-shadow: 0 0 6px rgba(196,154,42,.6);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px; font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  transition: all .2s; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 45%, var(--gold-dark) 100%);
  color: #050508; font-weight: 800;
  border-color: rgba(196,154,42,.30);
  box-shadow: 0 4px 16px rgba(196,154,42,.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F2DC9B, var(--gold-pale));
  box-shadow: 0 8px 28px rgba(196,154,42,.32);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--gold-dark); border-color: var(--gold-line);
}
.btn-ghost:hover { background: var(--gold-bg); border-color: var(--gold-light); color: var(--gold); }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; position: relative; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-weight: 900; font-size: 22px; letter-spacing: -1.2px; color: var(--text); }
.logo-sub { font-weight: 700; font-size: 9.5px; letter-spacing: 2.8px; color: var(--gold); margin-top: 4px; text-transform: uppercase; }
/* ── Menu Toggle ── */
.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px 6px; width: 38px; height: 38px; flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav Panel ── */
.main-nav {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-mid);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  padding: 10px; min-width: 248px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.main-nav a {
  display: block; padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--gold-bg); color: var(--gold); }
.main-nav a.active { background: var(--gold-bg); color: var(--gold); font-weight: 700; }
.nav-group-head {
  display: block; padding: 10px 16px 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
}
.main-nav a.nav-indent { padding-left: 28px; font-size: 13.5px; }
.nav-sep { height: 1px; background: var(--line); margin: 6px 8px; pointer-events: none; }

/* ── Page hero (Unterseiten) ── */
.page-hero {
  padding: 110px 0 80px;
  background: var(--canvas2);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 820px; }

/* ── Content / Split ── */
.content { padding: 80px 0; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: start; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* ── Info card ── */
.info-card {
  background: var(--card);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-md);
}
.info-card h3 { margin-bottom: 20px; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.info-list li { font-size: 14px; color: var(--text-muted); padding-left: 14px; border-left: 2px solid var(--gold-line); line-height: 1.55; }
.info-list strong { color: var(--gold); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: 2px; }

/* ── Features ── */
.features { padding: 100px 0; background: var(--canvas2); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
@media (max-width: 980px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 28px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .22s, transform .22s, box-shadow .22s;
  position: relative;
}
.feature:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--gold-line);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--gold-bg); border: 1px solid var(--gold-line);
  margin-bottom: 18px; font-size: 20px; color: var(--gold);
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: 14px; line-height: 1.68; }

/* ── CTA Band ── */
.cta-band {
  padding: 80px 0;
  background: #0a0a0c;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(212,169,60,.08), transparent 62%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: rgba(255,255,255,.95); }
.cta-band p { color: rgba(255,255,255,.52); margin-top: 6px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-dark));
  color: #0a0a0c; border-color: rgba(196,154,42,.3);
  box-shadow: 0 8px 28px rgba(196,154,42,.2);
}
.cta-band .btn-primary:hover {
  background: linear-gradient(135deg, #F2DC9B, var(--gold-pale));
  box-shadow: 0 12px 36px rgba(196,154,42,.3);
}
.cta-band .btn-ghost {
  color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.14);
}
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.95); }

/* ── Products ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .22s, transform .22s, box-shadow .22s;
  display: flex; flex-direction: column; color: inherit;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }

.product-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #19160d 0%, #080808 55%, #141008 100%);
  position: relative; display: grid; place-items: center;
  color: #D4A93C; font-size: 40px;
}
.product-image::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(212,169,60,.04) 52px 53px),
    repeating-linear-gradient(0deg,  transparent 0 52px, rgba(212,169,60,.04) 52px 53px);
}
.product-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(212,169,60,.16), transparent 68%);
}
.product-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-tag { font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--text-muted); font-size: 13.5px; flex: 1; line-height: 1.62; }
.product-card .more { margin-top: 16px; color: var(--gold); font-weight: 700; font-size: 12.5px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.step:hover { border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-size: 36px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px; letter-spacing: -.04em;
}
.step h3 { margin-bottom: 8px; font-size: 16px; }
.step p { color: var(--text-muted); font-size: 13.5px; line-height: 1.62; }

/* ── Forms ── */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px; padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 820px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.input, .select, .textarea {
  width: 100%; padding: 13px 16px;
  background: var(--canvas2); border: 1px solid var(--line-mid);
  border-radius: 10px; color: var(--text); font-family: inherit; font-size: 15px;
  transition: all .18s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-dim); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(196,154,42,.12);
  background: var(--canvas);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C49A2A' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 44px;
  background-color: var(--canvas2);
}
.select option { background: var(--canvas); color: var(--text); }
.textarea { resize: vertical; min-height: 120px; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-muted); cursor: pointer; }
.checkbox input { width: 20px; height: 20px; accent-color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.checkbox a { color: var(--gold); text-decoration: underline; }
.form-success {
  background: var(--gold-bg); border: 1px solid var(--gold-line);
  border-radius: 10px; padding: 16px 20px;
  color: var(--gold-dark); font-size: 14px; display: none; margin-bottom: 20px;
}
.form-success.is-visible { display: block; }

/* ── Footer ── */
footer {
  padding: 36px 0; border-top: 1px solid var(--line);
  background: var(--canvas2);
  text-align: center; color: var(--text-dim); font-size: 13px;
}
footer strong { color: var(--gold); }

/* ── Kontakt ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--card); border-radius: var(--radius); padding: 36px; border: 1px solid var(--line-mid); box-shadow: var(--shadow-sm); }
.contact-info h3 { margin-bottom: 24px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border: 0; }
.contact-row .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-bg); border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold); font-weight: 900; flex-shrink: 0; }
.contact-row .lbl { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.contact-row .val { color: var(--text); font-weight: 500; margin-top: 2px; }
.contact-row .val a { color: var(--text); transition: color .15s; }
.contact-row .val a:hover { color: var(--gold); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 52px auto 0; }
.faq-item { background: var(--card); border: 1px solid var(--line-mid); border-radius: 14px; overflow: hidden; }
.faq-item summary { padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--text); display: flex; justify-content: space-between; align-items: center; list-style: none; font-size: 15px; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 22px; font-weight: 300; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 24px 22px; color: var(--text-muted); font-size: 14.5px; line-height: 1.68; }

/* ── Refs ── */
.refs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 52px; }
@media (max-width: 760px) { .refs-grid { grid-template-columns: 1fr; } }
.ref-card { background: var(--card); border: 1px solid var(--line-mid); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.ref-card .quote { font-size: 16.5px; line-height: 1.6; color: var(--text); font-weight: 500; }
.ref-card .author { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-muted); }
.ref-card .author strong { color: var(--gold); }


/* ── Org Grid (Für Vereine) ── */
.org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
@media (max-width: 760px) { .org-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .org-grid { grid-template-columns: 1fr; } }
.org-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s;
}
.org-card:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.org-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-bg); border: 1px solid var(--gold-line);
  display: grid; place-items: center; font-size: 18px; color: var(--gold);
}
.org-label { font-weight: 700; font-size: 13.5px; color: var(--text); line-height: 1.35; }
