/* ═══════════════════════════════════════════
   SELBST-GEHOSTETE SCHRIFTEN (DSGVO-konform)
   Variable Fonts — 5 Dateien decken alle Gewichte ab.
═══════════════════════════════════════════ */

/* Cinzel — Display, Logo, H1 */
@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-Variable.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond — H2, H3, Zitate */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Italic-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* DM Sans — Fließtext, Nav, Buttons */
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-Italic-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy:          #1C2E4A;
  --navy-mid:      #2E4A72;
  --navy-light:    #EEF1F6;
  --orange:        #C25520;
  --orange-warm:   #D97030;
  --orange-light:  #FFF0E6;
  --bg:            #F8F6F2;
  --white:         #FFFFFF;
  --text:          #1C2E4A;
  --text-mid:      #5A6B80;
  --border:        #DDD8CC;
  --shadow-sm:     0 2px 8px rgba(28, 46, 74, 0.07);
  --shadow:        0 4px 20px rgba(28, 46, 74, 0.11);
  --radius:        12px;
  --radius-sm:     8px;
  --max-width:     860px;
  --nav-height:    68px;
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.18;
  color: var(--navy);
}

h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h2 { font-size: clamp(1.85rem, 3.8vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); line-height: 1.75; }

.overline {
  display: block;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--light { background: var(--navy-light); }
.section--navy  { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 50px;
  transition: background 0.2s;
}

.nav-links a.nav-cta:hover { background: var(--orange-warm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  line-height: 1;
}

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-warm); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.48);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   HERO — INDEX
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(140deg, #1C2E4A 0%, #243d60 40%, #C25520 100%);
  padding: 100px 24px 92px;
  text-align: center;
  color: var(--white);
}

.hero-overline {
  display: block;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.hero > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto 38px;
}

.hero .btn-row { justify-content: center; }

/* ═══════════════════════════════════════════
   PAGE HERO — INNER PAGES
═══════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 72px 24px 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════
   QUOTE BLOCK
═══════════════════════════════════════════ */
.quote-block {
  background: var(--navy-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 32px 40px;
  text-align: center;
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   FEATURE CARDS — 3 columns
═══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.card p  { font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   OFFER CARDS — 2 columns
═══════════════════════════════════════════ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.offer-card-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.offer-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.offer-card > p { font-size: 0.92rem; margin-bottom: 20px; }

.offer-card ul { padding: 0; }

.offer-card li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0 5px 20px;
  position: relative;
}

.offer-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   TEASER — about preview on index
═══════════════════════════════════════════ */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.teaser-image {
  background: var(--navy-light);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.82rem;
  text-align: center;
  border: 2px dashed var(--border);
  gap: 10px;
  padding: 20px;
}

.teaser-image svg {
  width: 36px;
  height: 36px;
  stroke: var(--text-mid);
  fill: none;
  stroke-width: 1.5;
}

.teaser-text h2 { margin-bottom: 16px; }
.teaser-text > p { margin-bottom: 16px; }

.values-list { margin: 20px 0 28px; }

.values-list li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   TWO-COLUMN TEXT SECTION
═══════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col h3 { margin-bottom: 12px; font-size: 1.1rem; }
.two-col p  { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   HOW I WORK — checklist style
═══════════════════════════════════════════ */
.how-list { padding: 0; }

.how-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.how-list li:last-child { border-bottom: none; }

.how-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 76px 24px;
  text-align: center;
  color: var(--white);
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 32px; }
.cta-section .btn-row { justify-content: center; }

/* ═══════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step { text-align: center; padding: 32px 20px; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  font-family: 'Cinzel', Georgia, serif;
}

.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p  { font-size: 0.88rem; }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 24px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.contact-detail span { font-size: 0.92rem; color: var(--text-mid); }
.contact-detail a    { color: var(--orange); }

.contact-sublist { margin-top: 28px; }

.contact-sublist h4 {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-sublist li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 4px 0 4px 18px;
  position: relative;
}

.contact-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }

.form-group textarea { min-height: 140px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-card .btn { width: 100%; margin-top: 4px; }

/* ═══════════════════════════════════════════
   NOTICE BOX
═══════════════════════════════════════════ */
.notice-box {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.notice-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-box p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════ */
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 88px;
}

.legal-content h1 { font-size: 2rem; margin-bottom: 36px; }
.legal-content h2 { font-size: 1.1rem; margin: 36px 0 10px; }
.legal-content p  { margin-bottom: 12px; font-size: 0.92rem; }
.legal-content strong { color: var(--navy); }

.legal-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}

.legal-content li {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.legal-placeholder {
  display: inline-block;
  background: #FFF8E6;
  border: 1.5px dashed #D4A800;
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 0.85rem;
  color: #7A5E00;
  font-style: normal;
}

.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 52px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 32px;
}

.footer-logo {
  display: block;
  line-height: 0;
}

.footer-brand > p {
  font-size: 0.85rem;
  margin-top: 8px;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.95rem;
  }

  .nav-links a.nav-cta {
    margin-top: 10px;
    padding: 12px 0;
    background: transparent;
    color: var(--orange);
    border-bottom: none;
  }

  .cards-grid   { grid-template-columns: 1fr; gap: 16px; }
  .offer-grid   { grid-template-columns: 1fr; }
  .teaser-grid  { grid-template-columns: 1fr; gap: 32px; }
  .teaser-image { aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps        { grid-template-columns: 1fr; gap: 8px; }
  .two-col      { grid-template-columns: 1fr; gap: 32px; }
  .form-row     { grid-template-columns: 1fr; }

  .footer-top    { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero      { padding: 72px 20px 64px; }
  .page-hero { padding: 56px 20px 48px; }

  .hero h1      { font-size: 1.95rem; }
  .page-hero h1 { font-size: 1.8rem; }

  .btn-row { flex-direction: column; align-items: center; }
  .btn-row .btn { width: 100%; max-width: 320px; }

  .form-card   { padding: 28px 20px; }
  .quote-block { padding: 24px 20px; }
  .notice-box  { flex-direction: column; }
  .cta-section { padding: 56px 20px; }
}
