/* ==========================================================================
   clickschmidt.de – Stylesheet
   Statische Seite, handgecodet. Mobile-First, keine Frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften (lokal gehostet, DSGVO-konform – kein Google-CDN)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../fonts/fraunces-var-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-var-latin.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */

:root {
  --navy:        #1c2b4e;
  --navy-dark:   #14203a;
  --gold:        #d4a13c;
  --gold-hover:  #8f6a1f;
  --weiss:       #ffffff;
  --offwhite:    #f7f8fa;
  --linie:       #e6e9ee;
  --text:        #1f2733;
  --text-weich:  #5a6472;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-s: 8px;
  --shadow-s: 0 1px 3px rgba(20, 32, 58, 0.06), 0 4px 14px rgba(20, 32, 58, 0.05);
  --shadow-m: 0 4px 10px rgba(20, 32, 58, 0.07), 0 14px 34px rgba(20, 32, 58, 0.09);
  --header-h: 76px;
  --container: 1140px;
}

/* --------------------------------------------------------------------------
   3. Reset & Basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.7;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-hover);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--navy);
}

ul,
ol {
  padding-left: 1.3em;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* Sichtbarer Fokus für Tastaturnutzung */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Nur für Screenreader 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 {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 200;
  background: var(--navy);
  color: var(--weiss);
  padding: 0.6em 1.2em;
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--weiss);
}

/* --------------------------------------------------------------------------
   4. Layout-Helfer
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.section--off {
  background: var(--offwhite);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 0.75rem;
}

.section-head p {
  margin-top: 1rem;
  color: var(--text-weich);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-weich);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(212, 161, 60, 0.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--linie);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Ghost-Variante auf dunklen Flächen */
.btn--ghost-light {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Text-Link mit Pfeil */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}

.arrow-link .arrow {
  transition: transform 0.2s ease;
}

.arrow-link:hover {
  color: var(--gold-hover);
}

.arrow-link:hover .arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--linie);
  box-shadow: var(--shadow-s);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.logo:hover {
  color: var(--navy);
}

.logo .logo__gold {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
  list-style: none;
  padding: 0;
}

.main-nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text);
  padding-block: 0.4em;
}

.main-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav__link:hover,
.main-nav__link[aria-current='page'] {
  color: var(--navy);
}

.main-nav__link:hover::after,
.main-nav__link[aria-current='page']::after {
  transform: scaleX(1);
}

.main-nav__link--ext .ext-icon {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.3em;
  vertical-align: 0.1em;
}

/* Burger-Button (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--linie);
    box-shadow: var(--shadow-m);
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    display: none;
  }

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

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav__link {
    display: block;
    padding: 0.8em 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--linie);
  }

  .main-nav__link::after {
    display: none;
  }

  .main-nav .btn {
    margin-top: 1.25rem;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 12vw, 8.5rem);
  background:
    radial-gradient(ellipse 900px 480px at 85% -10%, rgba(212, 161, 60, 0.10), transparent 65%),
    radial-gradient(ellipse 800px 500px at -10% 110%, rgba(28, 43, 78, 0.06), transparent 60%),
    var(--weiss);
}

/* dezentes Punktraster als Tiefen-Detail */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28, 43, 78, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 80% 20%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 90% at 80% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hero__text {
  max-width: 780px;
}

.hero h1 .accent {
  color: var(--gold-hover);
}

/* "für" ist auf dem Handy golden, auf Desktop wieder normal (Navy) */
@media (min-width: 860px) {
  .hero h1 .accent--fuer {
    color: var(--navy);
  }
}

.hero__media {
  display: none;
}

@media (min-width: 860px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero__media {
    display: block;
  }

  .hero__media img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.hero__sub {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--text-weich);
  max-width: 560px;
  margin-top: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero__actions--single {
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   8. Karten & Grids
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-s);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
  border-color: rgba(212, 161, 60, 0.5);
}

.card__icon {
  height: 64px;
  width: auto;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-weich);
  font-size: 0.98rem;
}

.section__more {
  text-align: center;
  margin-top: clamp(2rem, 5vw, 3rem);
}

/* Feature-Liste ("Warum Clickschmidt") */
.feature-grid {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.feature p {
  color: var(--text-weich);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   9. Über-mich-Sektion (Bild + Text)
   -------------------------------------------------------------------------- */

.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .about {
    grid-template-columns: 5fr 7fr;
  }
}

.about__media {
  position: relative;
  max-width: 420px;
}

.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
}

/* goldener Rahmen-Versatz hinter dem Foto */
.about__media::before {
  content: '';
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about__text h2 {
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--text-weich);
}

.about__text .arrow-link {
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   10. CTA-Streifen (Navy)
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    radial-gradient(ellipse 700px 350px at 90% 120%, rgba(212, 161, 60, 0.18), transparent 60%),
    var(--navy);
  color: var(--weiss);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.cta-band h2 {
  color: var(--weiss);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-inline: auto;
}

.cta-band .btn {
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   11. Unterseiten: Seitenkopf & Inhalts-Layouts
   -------------------------------------------------------------------------- */

.page-head {
  background:
    radial-gradient(ellipse 700px 380px at 90% -20%, rgba(212, 161, 60, 0.10), transparent 65%),
    var(--offwhite);
  border-bottom: 1px solid var(--linie);
  padding-block: clamp(3rem, 8vw, 5rem);
}

.page-head h1 {
  margin-bottom: 0.5rem;
}

.page-head p {
  color: var(--text-weich);
  max-width: 620px;
}

/* Leistungs-Blöcke (abwechselnd Bild/Text) */
.service {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .service {
    grid-template-columns: 4fr 7fr;
  }

  .service--flip .service__media {
    order: 2;
  }
}

.service + .service {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--linie);
}

.service__media {
  display: grid;
  place-items: center;
  background: var(--offwhite);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
}

.service__media img {
  height: clamp(110px, 16vw, 150px);
  width: auto;
}

.service__text h2 {
  margin-bottom: 0.75rem;
}

.service__text > p {
  color: var(--text-weich);
  margin-bottom: 1.25rem;
}

/* Häkchen-Liste */
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9em;
  color: var(--text);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  background: rgba(212, 161, 60, 0.16);
  /* Haken als Inline-SVG in Gold */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23bd8b2b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E");
  background-size: 62%;
  background-position: center;
  background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   12. FAQ (Accordion)
   -------------------------------------------------------------------------- */

.faq {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq details {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-s);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details[open] {
  border-color: rgba(212, 161, 60, 0.5);
  box-shadow: var(--shadow-s);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  padding: 1.1rem 1.4rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold-hover);
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-weich);
}

/* --------------------------------------------------------------------------
   13. Kontaktseite & Formular
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 5fr 7fr;
  }
}

.contact-ways {
  display: grid;
  gap: 1rem;
}

.contact-way {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-s);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-way:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 161, 60, 0.5);
  box-shadow: var(--shadow-s);
  color: var(--text);
}

.contact-way__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 161, 60, 0.14);
  color: var(--gold-hover);
}

.contact-way__icon svg {
  width: 20px;
  height: 20px;
}

.contact-way strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 0.98rem;
}

.contact-way span {
  font-size: 0.9rem;
  color: var(--text-weich);
}

/* Formular */
.form {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  display: grid;
  gap: 1.2rem;
}

.form__row {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 560px) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form input[type='text'],
.form input[type='email'],
.form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--offwhite);
  border: 1px solid var(--linie);
  border-radius: var(--radius-s);
  padding: 0.75em 1em;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  background: var(--weiss);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 161, 60, 0.2);
}

.form textarea {
  min-height: 160px;
  resize: vertical;
}

.form .required {
  color: var(--gold-hover);
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  /* überschreibt die fette Label-Grundschrift für den Einwilligungstext */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-weich);
}

.form__check input {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--gold-hover);
}

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

.form__status {
  display: none;
  padding: 0.9em 1.2em;
  border-radius: var(--radius-s);
  font-size: 0.95rem;
}

.form__status.is-visible {
  display: block;
}

.form__status--ok {
  background: #eaf6ec;
  border: 1px solid #bfe3c6;
  color: #1e6b2d;
}

.form__status--error {
  background: #fdeeee;
  border: 1px solid #f2c6c6;
  color: #a03030;
}

/* --------------------------------------------------------------------------
   14. Rechtstexte (Impressum, AGB, Datenschutz)
   -------------------------------------------------------------------------- */

.legal {
  max-width: 780px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal p,
.legal li {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.legal ul {
  margin-bottom: 1rem;
}

.legal address {
  font-style: normal;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3rem, 7vw, 4.5rem);
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

@media (min-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer .logo {
  color: var(--weiss);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.site-footer__claim {
  max-width: 300px;
}

.site-footer h2 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.88rem;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Cookie-Hinweis
   -------------------------------------------------------------------------- */

.consent-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 150;
  max-width: 480px;
  margin-inline: auto;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 1.4rem 1.6rem;
  font-size: 0.92rem;
  color: var(--text-weich);
}

@media (min-width: 700px) {
  .consent-banner {
    inset-inline: auto 1.5rem;
    bottom: 1.5rem;
  }
}

.consent-banner h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.consent-banner .btn {
  padding: 0.7em 1.4em;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   17. Scroll-Animationen (mit reduced-motion-Fallback)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  /* Nur ausblenden, wenn JS (und damit der IntersectionObserver, der
     .is-visible wieder setzt) tatsächlich läuft – ohne JS bleibt alles
     sichtbar. Klasse "js" wird per Inline-Script im <head> gesetzt. */
  html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* gestaffeltes Einblenden innerhalb von Grids */
  .reveal:nth-child(2) { transition-delay: 0.08s; }
  .reveal:nth-child(3) { transition-delay: 0.16s; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
