/* ==========================================================================
   AS-Bewerbung.ch — Stylesheet
   --------------------------------------------------------------------------
   Ein einziges CSS-File. Refined Minimalism, ruhig, hochwertig, editorial.
   
   Aufbau:
     1. Designsystem (Variablen)  ←  HIER zentrale Anpassungen
     2. Reset und Basis
     3. Typografie
     4. Layout-Helfer (Container, Section)
     5. Komponenten (Button, Card, Eyebrow, Hairline, FAQ, Step, Form)
     6. Header und Footer
     7. Hilfsklassen
     8. Responsive (Mobile)
     9. Accessibility und Print
   ========================================================================== */

/* Schriftarten von Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ==========================================================================
   1. DESIGNSYSTEM
   --------------------------------------------------------------------------
   Hier alles zentral ändern. Alle Werte werden überall im CSS verwendet.
   ========================================================================== */
:root {
  /* --- Farben ----------------------------------------------------------- */
  --ink:        #1A1F1C;   /* Haupttext, fast schwarz mit grünem Unterton */
  --ink-soft:   #3A4240;   /* Sekundärer Text */
  --ink-muted:  #6B7570;   /* Eyebrow-Labels, kleine Hinweise */

  --paper:      #F7F5F0;   /* Hauptseiten-Hintergrund, off-white warm */
  --paper-warm: #EFEBE2;   /* Warmer Sektions-Hintergrund */
  --paper-cool: #E8E9E4;   /* Kühler Sektions-Hintergrund */

  --accent:      #3F5A4E;  /* Salbeigrün, CTAs und Links */
  --accent-deep: #2C4338;  /* Dunkleres Salbei für Hover und Akzente */
  --accent-soft: #7A8E83;  /* Helleres Salbei für Selektion */

  --line:      #D8D4C8;    /* Standard-Trennlinien */
  --line-soft: #E5E2D8;    /* Leichtere Trennlinien */

  /* --- Schriftarten ---------------------------------------------------- */
  --font-display: "Cormorant Garamond", Garamond, Georgia, serif;
  --font-body:    "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-sans:    Inter, ui-sans-serif, system-ui, sans-serif;

  /* --- Schriftgrößen (responsiv via clamp) ----------------------------- */
  --size-display-xl: clamp(2.75rem, 5.5vw, 4.5rem);
  --size-display-lg: clamp(2.25rem, 4.5vw, 3.5rem);
  --size-display-md: clamp(1.75rem, 3.2vw, 2.5rem);
  --size-display-sm: clamp(1.5rem, 2.4vw, 2rem);
  --size-lead:       clamp(1.125rem, 1.4vw, 1.25rem);
  --size-base:       1.0625rem;     /* 17px */
  --size-eyebrow:    0.78rem;
  --size-small:      0.875rem;
  --size-tiny:       0.75rem;

  /* --- Abstände ------------------------------------------------------- */
  --section-y:    clamp(4rem, 8vw, 7rem);
  --section-y-sm: clamp(3rem, 6vw, 5rem);

  /* --- Container-Breiten --------------------------------------------- */
  --max-narrow:  38rem;
  --max-content: 64rem;
  --max-wide:    76rem;

  /* --- Sonstiges ----------------------------------------------------- */
  --radius:    0.25rem;
  --easing:    cubic-bezier(0.4, 0, 0.2, 1);
  --speed:     200ms;
}

/* ==========================================================================
   2. RESET UND BASIS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.65;
  font-weight: 400;
  text-underline-offset: 0.2em;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--accent);
  transition: color var(--speed) var(--easing);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover { color: var(--accent-deep); }

::selection {
  background-color: var(--accent-soft);
  color: var(--paper);
}

/* Verstecken, aber für Screen-Reader sichtbar */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  left: 1rem; top: 1rem;
  z-index: 100;
  background-color: var(--accent);
  color: var(--paper);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: var(--size-small);
  transform: translateY(-200%);
  transition: transform var(--speed) var(--easing);
}
.skip-link:focus { transform: translateY(0); color: var(--paper); }

/* ==========================================================================
   3. TYPOGRAFIE
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: var(--size-display-xl); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: var(--size-display-lg); line-height: 1.1;  letter-spacing: -0.015em; }
h3 { font-size: var(--size-display-md); line-height: 1.15; letter-spacing: -0.01em; }
h4 { font-size: var(--size-display-sm); line-height: 1.2;  letter-spacing: -0.005em; }

p { color: var(--ink-soft); max-width: 68ch; }

em { font-style: italic; }
strong { font-weight: 500; color: var(--ink); }

/* Eyebrow: kleines Label oberhalb von Überschriften */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--size-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 1.25rem;
}
.eyebrow-light { color: rgba(247, 245, 240, 0.6); }
.eyebrow-accent { color: var(--accent-deep); }

/* Lead-Absatz */
.lead {
  font-family: var(--font-body);
  font-size: var(--size-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38rem;
}

.italic { font-style: italic; }
.text-accent { color: var(--accent-deep); }
.text-ink { color: var(--ink); }
.text-muted { color: var(--ink-muted); }

/* ==========================================================================
   4. LAYOUT-HELFER
   ========================================================================== */
.container-narrow,
.container-content,
.container-wide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 640px) {
  .container-narrow,
  .container-content,
  .container-wide {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container-narrow  { max-width: var(--max-narrow); }
.container-content { max-width: var(--max-content); }
.container-wide    { max-width: var(--max-wide); }

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-sm { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }

.section-default { background-color: var(--paper); color: var(--ink); }
.section-warm    { background-color: var(--paper-warm); color: var(--ink); }
.section-cool    { background-color: var(--paper-cool); color: var(--ink); }
.section-ink     { background-color: var(--ink); color: var(--paper); }

.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--paper); }
.section-ink p { color: rgba(247, 245, 240, 0.8); }
.section-ink a { color: var(--paper); }

/* Anker mit Offset für sticky Header */
[id] { scroll-margin-top: 6rem; }

/* ==========================================================================
   5. KOMPONENTEN
   ========================================================================== */

/* --- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--speed) var(--easing);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.btn-primary:hover {
  background-color: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--paper);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink);
  border-color: rgba(26, 31, 28, 0.3);
}
.btn-secondary:hover {
  border-color: var(--ink);
  background-color: rgba(26, 31, 28, 0.05);
  color: var(--ink);
}

/* Buttons in dunklen Sektionen */
.section-ink .btn-primary {
  background-color: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.section-ink .btn-primary:hover {
  background-color: var(--paper-warm);
  color: var(--ink);
}
.section-ink .btn-secondary {
  color: var(--paper);
  border-color: rgba(247, 245, 240, 0.4);
}
.section-ink .btn-secondary:hover {
  background-color: rgba(247, 245, 240, 0.1);
  color: var(--paper);
  border-color: var(--paper);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.btn-group-center { align-items: center; }
@media (min-width: 640px) {
  .btn-group { flex-direction: row; }
}

/* --- Hairline / Trennstrich ------------------------------------------ */
.hairline {
  height: 1px;
  width: 100%;
  background-color: var(--line);
  border: none;
}
.hairline-soft { background-color: var(--line-soft); }

/* --- Card ------------------------------------------------------------ */
.card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-emphasis {
  background-color: var(--paper-warm);
  border-color: rgba(63, 90, 78, 0.3);
}

/* OfferCard – spezifischer Aufbau */
.offer-card-header { margin-bottom: 1.5rem; }
.offer-card-role {
  font-family: var(--font-sans);
  font-size: var(--size-small);
  color: var(--ink-muted);
  letter-spacing: 0.025em;
}
.offer-card-title {
  font-size: var(--size-display-sm);
  margin-bottom: 0.5rem;
}
.offer-card-description {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  flex-grow: 1;
}
.offer-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.offer-card-investition-label {
  font-family: var(--font-sans);
  font-size: var(--size-tiny);
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.offer-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}

/* --- FAQ-Item (natives details/summary) ------------------------------ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--ink);
  transition: color var(--speed) var(--easing);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep); }

.faq-item-icon {
  margin-top: 0.5rem;
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform var(--speed) var(--easing);
}
.faq-item[open] .faq-item-icon { transform: rotate(45deg); }

.faq-item-answer {
  margin-top: 1rem;
  padding-right: 3rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* --- Step-Card ------------------------------------------------------- */
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.step-card-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-muted);
  line-height: 1;
  padding-top: 0.25rem;
}
.step-card-title {
  font-size: var(--size-display-sm);
  margin-bottom: 0.5rem;
}
.step-card-text { color: var(--ink-soft); }

/* --- Listen ---------------------------------------------------------- */
.list-clean { list-style: none; }
.list-clean li {
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}
.list-clean li:first-child { border-top: none; padding-top: 0; }
.list-clean .marker { color: var(--accent-deep); flex-shrink: 0; }
.list-clean .marker-soft { color: var(--ink-muted); }

.section-ink .list-clean li { border-color: rgba(247, 245, 240, 0.2); }
.section-ink .list-clean .marker { color: rgba(247, 245, 240, 0.5); }

/* Erweiterungen-Liste mit Preis rechts */
.list-pricing { list-style: none; }
.list-pricing li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.list-pricing li:last-child { border-bottom: 1px solid var(--line); }
.list-pricing .price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink);
  flex-shrink: 0;
}

/* --- Hervorgehobener Hinweis-Block ----------------------------------- */
.notice {
  background-color: var(--paper-warm);
  border-left: 4px solid var(--accent);
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.notice-info {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2.5rem;
}

/* --- Form ------------------------------------------------------------ */
.form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--size-small);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-label .required { color: var(--accent); }
.form-label .optional {
  color: var(--ink-muted);
  font-size: var(--size-tiny);
  margin-left: 0.25rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--size-base);
  transition: border-color var(--speed) var(--easing);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 117, 112, 0.7);
}
.form-textarea { resize: vertical; min-height: 8rem; }

.form-file {
  width: 100%;
  font-size: var(--size-small);
  color: var(--ink-soft);
}
.form-file::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  background-color: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--size-small);
  transition: background-color var(--speed) var(--easing);
}
.form-file::file-selector-button:hover { background-color: var(--paper-warm); }

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.form-checkbox {
  margin-top: 0.375rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-checkbox-label {
  font-size: var(--size-small);
  color: var(--ink-soft);
  line-height: 1.6;
}

.form-hint {
  font-size: var(--size-tiny);
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

.form-honeypot { display: none; }

/* ==========================================================================
   6. HEADER UND FOOTER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.site-logo:hover { color: var(--accent-deep); }
.site-logo-suffix {
  color: var(--ink-muted);
  font-size: 1rem;
  margin-left: 0.125rem;
}

.site-nav { display: none; }
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--speed) var(--easing);
}
.site-nav a:hover { color: var(--accent-deep); }
.site-nav a.is-active {
  color: var(--accent-deep);
  font-weight: 500;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background-color: var(--paper);
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav ul {
  list-style: none;
  padding: 1.5rem;
}
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--speed) var(--easing);
}
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.is-active { color: var(--accent-deep); }

/* --- Footer ---------------------------------------------------------- */
.site-footer {
  background-color: var(--ink);
  color: var(--paper);
}
.site-footer .container-wide { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-brand-name-suffix {
  color: rgba(247, 245, 240, 0.5);
  font-size: 1.25rem;
}
.footer-tagline {
  color: rgba(247, 245, 240, 0.7);
  max-width: 24rem;
  line-height: 1.65;
}
.footer-leitsatz {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(247, 245, 240, 0.9);
  margin-top: 2rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-list a {
  color: rgba(247, 245, 240, 0.8);
  text-decoration: none;
  transition: color var(--speed) var(--easing);
}
.footer-list a:hover { color: var(--paper); }

.footer-section + .footer-section { margin-top: 2rem; }

.footer-trust {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 245, 240, 0.15);
  color: rgba(247, 245, 240, 0.6);
  font-size: var(--size-small);
  line-height: 1.65;
  max-width: 48rem;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}
.footer-copyright { color: rgba(247, 245, 240, 0.5); font-size: var(--size-small); }
.footer-tagline-small {
  color: rgba(247, 245, 240, 0.4);
  font-size: var(--size-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   7. HILFSKLASSEN
   ========================================================================== */
.text-center { text-align: center; }

.mb-3   { margin-bottom: 0.75rem; }
.mb-4   { margin-bottom: 1rem; }
.mb-6   { margin-bottom: 1.5rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-10  { margin-bottom: 2.5rem; }
.mb-12  { margin-bottom: 3rem; }
.mb-16  { margin-bottom: 4rem; }
.mt-6   { margin-top: 1.5rem; }
.mt-8   { margin-top: 2rem; }
.mt-10  { margin-top: 2.5rem; }
.mt-12  { margin-top: 3rem; }

.max-prose { max-width: 38rem; }
.max-2xl   { max-width: 42rem; }
.max-3xl   { max-width: 48rem; }
.mx-auto   { margin-left: auto; margin-right: auto; }

/* --- Grid-Helfer für Inhaltsstrukturen ------------------------------ */
.grid-12 { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); }
  .col-5 { grid-column: span 5; }
  .col-7 { grid-column: span 7; }
  .col-4 { grid-column: span 4; }
  .col-8 { grid-column: span 8; }
  .col-6 { grid-column: span 6; }
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
}

.grid-3 {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.split-with-line { padding-left: 0; border-left: none; }
@media (min-width: 1024px) {
  .split-with-line {
    padding-left: 3rem;
    border-left: 1px solid var(--line);
  }
  .section-ink .split-with-line { border-left-color: rgba(247, 245, 240, 0.15); }
}

.italic-line {
  font-family: var(--font-display);
  font-size: var(--size-display-md);
  font-style: italic;
  color: var(--accent-deep);
}

.price-display {
  font-family: var(--font-display);
  font-size: var(--size-display-xl);
  color: var(--ink);
}
.section-ink .price-display { color: var(--paper); }

/* ==========================================================================
   8. ACCESSIBILITY UND PRINT
   ========================================================================== */

/* Sichtbare Fokus-Zustände */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced Motion respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print-freundlich */
@media print {
  .site-header, .site-footer, .skip-link, .btn { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
