@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Basis ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:       #1B4A42;
  --forest-dark:  #122F29;
  --forest-mid:   #2A6357;
  --forest-light: #EDF3F1;
  --gold:         #B8922A;
  --gold-dark:    #9A7820;
  --gold-light:   #FBF5E6;
  --cream:        #FAF9F6;
  --white:        #FFFFFF;
  --dark:         #1A2120;
  --mid:          #485250;
  --light-mid:    #6B7775;
  --border:       #DEE8E5;
  --border-light: #EBF0EF;
  --amber:        #A87020;
  --amber-light:  #FBF4E5;
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  /* legacy aliases */
  --teal:         var(--forest);
  --teal-dark:    var(--forest-dark);
  --teal-light:   var(--forest-light);
  --font:         var(--font-sans);
  --max:          800px;
  --radius:       8px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:       0 4px 14px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.78;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typografie ── */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.005em;
}
p  { color: var(--mid); }
a  { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0 1.5rem;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.25;
}
.nav-logo span {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.73rem;
  color: var(--light-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--forest-light);
  color: var(--forest);
  text-decoration: none;
}
.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 0.4rem 0.9rem !important;
}
.nav-cta:hover { background: var(--forest-dark) !important; }

/* ── Mobile Nav ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--mid); }
@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.65rem 0.7rem; }
}

/* ── Seitenbreite ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ── Hero ── */
.hero {
  background: var(--forest);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  line-height: 1.72;
  max-width: 560px;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

/* ── Status-Box ── */
.status-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.25rem;
}
.status-box-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.status-box p { color: rgba(255,255,255,0.78); font-size: 0.93rem; line-height: 1.65; }
.status-box strong { color: var(--white); font-weight: 500; }

/* Status-Box auf hellem Hintergrund */
.status-box.light {
  background: var(--amber-light);
  border: 1px solid #E8D4A0;
  border-left: 3px solid var(--amber);
}
.status-box.light .status-box-label { color: var(--amber); }
.status-box.light p { color: #5A3800; }
.status-box.light strong { color: #3A2200; font-weight: 600; }

/* ── Buttons ── */
.btn-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.8rem 1.65rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  text-decoration: none;
}
/* Dunkel-Variante (auf hellem Hintergrund) */
.btn-secondary-dark {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary-dark:hover {
  background: var(--forest-light);
  text-decoration: none;
}

/* ── Sektionen ── */
.section { padding: 4rem 1.5rem; }
.section-alt { background: var(--white); }
.section h2 { margin-bottom: 0.6rem; }
.section-lead {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Goldene Dekorationslinie unter h2 */
.section .section-title {
  margin-bottom: 2rem;
}
.section .section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.6rem;
}
.section-title-center { text-align: center; }
.section-title-center::after { margin-left: auto; margin-right: auto; }

/* ── Info-Karten ── */
.cards { display: grid; gap: 1.25rem; }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.card-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}
.card-icon svg {
  width: 1.1rem; height: 1.1rem;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.card p { font-size: 0.93rem; line-height: 1.65; }

/* ── Checkliste ── */
.check-list { list-style: none; display: grid; gap: 0.65rem; }
.check-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--mid);
  font-size: 0.97rem;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--forest);
  font-weight: 700;
}
.cross-list { list-style: none; display: grid; gap: 0.65rem; }
.cross-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--mid);
  font-size: 0.97rem;
}
.cross-list li::before {
  content: '✕';
  position: absolute; left: 0;
  color: #9A2020;
  font-weight: 700;
}

/* ── Schritte ── */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border-light);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.step h3 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.step p { font-size: 0.95rem; }

/* ── Info-Box ── */
.info-box {
  background: var(--forest-light);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
}
.info-box p { color: var(--dark); font-size: 0.95rem; line-height: 1.65; }

/* ── Zweispaltig ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 580px) { .two-col { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0;
  font-size: 1rem; font-weight: 500; color: var(--dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--forest); }
.faq-q svg { flex-shrink: 0; transition: transform 0.2s; stroke: var(--light-mid); }
.faq-item.open .faq-q { color: var(--forest); }
.faq-item.open .faq-q svg { transform: rotate(180deg); stroke: var(--forest); }
.faq-a { display: none; padding: 0 0 1.1rem; color: var(--mid); font-size: 0.97rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA-Banner ── */
.cta-banner {
  background: var(--forest);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,146,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; max-width: var(--max); margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 0.65rem;
}
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.25rem 1.5rem;
  font-size: 0.84rem;
  border-top: 2px solid var(--forest);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.footer a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── Seiten-Header ── */
.page-header {
  background: var(--forest);
  padding: 3.5rem 1.5rem 2.75rem;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header-inner { max-width: var(--max); margin: 0 auto; }
.page-header-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-header-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin-bottom: 0.55rem;
}
.page-header p { color: rgba(255,255,255,0.68); font-size: 1.02rem; max-width: 540px; }

/* ── Qualifikations-Box ── */
.qual-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.qual-box h3 {
  color: var(--forest);
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.qual-list { list-style: none; display: grid; gap: 0.5rem; }
.qual-list li { font-size: 0.93rem; color: var(--mid); padding-left: 1.3rem; position: relative; }
.qual-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.85rem; line-height: 1.75; }

/* ── Angebot-Block ── */
.offer-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.offer-block-header {
  background: var(--forest);
  color: var(--white);
  padding: 0.85rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.offer-block-header.red { background: #7A1818; }
.offer-block-body { padding: 1.3rem 1.5rem; background: var(--white); }

/* ── Utility ── */
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-sm { margin-bottom: 0.75rem; }
.mb-md { margin-bottom: 1.5rem; }
.text-teal { color: var(--forest); }
.text-forest { color: var(--forest); }
.text-gold  { color: var(--gold); }
.text-mid   { color: var(--mid); }
.text-sm    { font-size: 0.9rem; }
.font-bold  { font-weight: 600; }

/* ── Portrait & Sektionsbilder ─────────────────────────── */
.portrait-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.portrait-row > div {
  flex: 1;
  min-width: 220px;
}
.portrait-img {
  width: 220px;
  height: 290px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
.section-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 640px) {
  .portrait-img { width: 100%; height: 240px; }
  .section-img { height: 210px; }
}
