/* =========================================================
   CREATIVE CAR COSMETICS – STYLE.CSS
   Sauberer Stand:
   - Fixer Header
   - Mobile Burger Menü mit Icons
   - Sauberer Anchor-Scroll per JS
   - Hero-Bild Web/Mobile einheitlich
   - Statistik Counter
   - Versicherung & Partner Section
   - Kontaktformular
   - Google Maps bündig vor Footer
   - Responsive Feinschliff sauber getrennt
   - Datenschutz Checkbox Final Fix
========================================================= */


/* ================================
   01. Variablen & Reset
================================ */

:root {
  --black: #050505;
  --black-soft: #111111;
  --black-card: #151515;

  --white: #ffffff;
  --white-soft: #f5f5f5;

  --gray: #666666;
  --gray-light: #e7e7e7;

  --red: #d71920;
  --red-dark: #a80f15;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  --shadow-red: 0 18px 36px rgba(215, 25, 32, 0.24);

  --max-width: 1180px;
  --header-width: 1400px;

  --header-height: 100px;
  --mobile-header-height: 78px;
	  
  --gold: #d4af37;
  --gold-light: #f1d27a;
	  
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}


/* ================================
   02. Header & Navigation
================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.985);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.site-header .container {
  width: min(96%, var(--header-width));
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo img {
  width: auto;
  max-height: 80px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 3px;

  background: var(--red);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Desktop: Icons versteckt, Mobile: sichtbar */
.main-nav a i {
  display: none;
  color: var(--red);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.main-nav a span {
  display: inline-block;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-socials a,
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: var(--red);
  color: var(--white);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.header-socials a:hover,
.social-links a:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  background: var(--red);
  color: var(--white);

  padding: 12px 18px;
  border-radius: 999px;

  font-weight: 900;
  box-shadow: var(--shadow-red);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.header-phone:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}


/* ================================
   03. Burger-Menü
================================ */

.burger-menu {
  display: none;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: transparent;

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.burger-menu span {
  width: 23px;
  height: 2px;

  background: var(--white);
  border-radius: 99px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ================================
   04. Globale Bereiche
================================ */

main {
  padding-top: var(--header-height);
  background: var(--black);
  overflow: hidden;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

.section {
  padding: 86px 0 96px;
  position: relative;
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 14px;
  margin-bottom: 14px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.section-heading h2,
.split-content h2,
.contact-info h2,
.page-hero h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.9px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.section-heading h2::after,
.split-content h2::after,
.contact-info h2::after,
.page-hero h1::after,
.hero h1::after {
  content: "";
  display: block;

  width: 72px;
  height: 5px;

  background: var(--red);
  border-radius: 999px;
  margin-top: 18px;
}

.section-heading p,
.split-content p {
  color: var(--gray);
  font-size: 18px;
}

.section-dark .section-heading p,
.section-dark .split-content p {
  color: #d0d0d0;
}


/* ================================
   05. Buttons
================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 26px;

  border: 2px solid transparent;
  border-radius: 999px;

  font-weight: 900;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--red);
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}


/* ================================
   06. Hero
================================ */

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.74),
      rgba(0, 0, 0, 0.48),
      rgba(0, 0, 0, 0.14)),
    url("../images/hero.webp");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 8px;
  background: var(--red);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 72% 45%,
      rgba(255, 255, 255, 0.10),
      transparent 36%);

  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr;
  align-items: center;

  padding: 86px 0 120px;
}

.hero-content {
  max-width: 860px;
}

.hero-brand {
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 1.8px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 680px;
  color: #eeeeee;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .btn {
  min-width: 230px;
}


/* ================================
   07. Split / Über uns
================================ */

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.split-image {
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.split-content p {
  margin-bottom: 18px;
}

.split-content .btn {
  margin-top: 16px;
}


/* ================================
   08. Statistik
================================ */

.stats-section {
  background: var(--white-soft);
  color: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 26px;

  padding: 34px 24px;
  text-align: center;

  box-shadow: var(--shadow);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-7px);
  border-color: var(--red);
}

.stat-card i {
  width: 64px;
  height: 64px;

  background: var(--red);
  color: var(--white);

  border-radius: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  margin-bottom: 22px;
}

.stat-card strong {
  display: block;

  color: var(--black);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;

  margin-bottom: 12px;
  font-weight: 900;
}

.stat-card span:last-child {
  display: block;
  color: var(--gray);
  font-size: 16px;
  font-weight: 800;
}


/* ================================
   09. Leistungen
================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.service-card {
  background: var(--black-card);
  border: 1px solid #2e2e2e;
  border-radius: 26px;

  padding: 34px 28px;
  min-height: 250px;

  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.service-card-featured {
  border-color: #2e2e2e;
  background: var(--black-card);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--red);
}

.service-card i {
  width: 60px;
  height: 60px;

  background: var(--red);
  color: var(--white);

  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;
  margin: 0 auto 24px;
}

.service-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #cccccc;
}


/* ================================
   10. Warum wir
================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.why-card {
  background: var(--white-soft);
  border: 1px solid var(--gray-light);
  border-radius: 26px;

  padding: 32px 26px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.why-card span {
  display: inline-flex;

  color: var(--red);
  font-size: 28px;
  font-weight: 900;

  margin-bottom: 20px;
}

.why-card h3 {
  color: var(--black);
  font-size: 21px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
}


/* ================================
   11. Versicherung & Partner
================================ */

.insurance-section {
  background: var(--black);
  color: var(--white);
}

.insurance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.insurance-media {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--black-card);
  box-shadow: var(--shadow);
}

.insurance-media > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.insurance-partner-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255, 255, 255, 0.96);
  border-left: 5px solid var(--red);
  border-radius: 18px;

  padding: 14px 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.insurance-partner-badge span {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insurance-partner-badge img {
  max-height: 44px;
  width: auto;
}

.insurance-content {
  max-width: 680px;
}

.insurance-content h2 {
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
}

.insurance-content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: var(--red);
  border-radius: 999px;
  margin-top: 18px;
}

.insurance-content p {
  color: #d0d0d0;
  font-size: 18px;
  margin-bottom: 28px;
}

.insurance-list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.insurance-list-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;

  background: var(--black-card);
  border: 1px solid #2e2e2e;
  border-radius: 18px;

  padding: 16px 18px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.insurance-list-item:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

.insurance-list-item i {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--red);
  color: var(--white);

  border-radius: 14px;
  font-size: 20px;
}

.insurance-list-item span {
  color: var(--white);
  font-weight: 800;
  line-height: 1.4;
}


/* ================================
   12. Galerie
================================ */

/* Galerie-Teaser auf der Startseite */
#galerie {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: var(--white);
}

/* Galerie darf auf Desktop etwas breiter wirken */
#galerie .container {
  width: min(96%, 1480px);
}

/* Galerie Grid */
.gallery-preview,
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Galerie Bilder Startseite */
.gallery-preview img {
  width: 100%;
  height: clamp(460px, 36vw, 620px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Galerie Bilder Unterseite */
.gallery-item img {
  width: 100%;
  height: clamp(430px, 34vw, 580px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover Effekt */
.gallery-preview img:hover,
.gallery-item img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.gallery-item {
  overflow: hidden;
  border-radius: 26px;
}

/* Button unter Galerie mit genug Abstand */
#galerie .center-button {
  margin-top: 42px;
}


/* Galerie-Unterseite: große Bildwirkung */
.gallery-page-grid {
  width: min(100%, 1480px);
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  min-width: 0;
  background: var(--white);
}


/* Galerie-Unterseite Desktop: 2 große Spalten für bessere Sichtbarkeit */
.gallery-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* ================================
   13. Kontakt
================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  height: 100%;
}

.contact-info {
  background: var(--black-card);
  color: var(--white);
  border-left: 6px solid var(--red);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
}

.contact-info p {
  color: #d5d5d5;
  margin-bottom: 18px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-details p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin: 0;
  align-items: start;
}

.contact-details i {
  color: var(--red);
  margin-top: 4px;
}

.contact-details a {
  color: var(--white);
  font-weight: 800;
}

.contact-details a:hover {
  color: var(--red);
}

.opening-box {
  display: grid;
  gap: 4px;
  background: var(--black);
  border-left: 5px solid var(--red);
  border-radius: 18px;
  padding: 20px;
  margin-top: auto;
}

/* Formular */
.contact-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 16px;
  font-family: inherit;
  color: var(--black);
  outline: none;
  appearance: none;
}

.contact-form input,
.contact-form select {
  height: 58px;
  line-height: 58px;
}

.contact-form textarea {
  min-height: 210px;
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: var(--white);
  border-color: var(--red);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6d737c;
}

.contact-form select {
  cursor: pointer;
}

.contact-form .btn {
  width: 100%;
  margin-top: 2px;
}

/* Datenschutz Checkbox */
.contact-form .privacy-wrap {
  display: block;
  width: 100%;
  position: relative;
  z-index: 5;
}

.contact-form .privacy-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  width: 100%;
}

.contact-form .privacy-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;

  margin: 4px 0 0 0 !important;
  padding: 0 !important;

  background: initial !important;
  border-radius: 3px !important;

  appearance: auto !important;
  -webkit-appearance: checkbox !important;

  cursor: pointer;
  accent-color: var(--red);
}

.contact-form .privacy-row label {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
}

.contact-form .privacy-link {
  display: inline-block;
  margin-top: 8px;

  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;

  position: relative;
  z-index: 10;
}

.contact-form .privacy-link:hover {
  text-decoration: underline;
}

/* Unsichtbares Spam-Feld */
.contact-form .hp-field {
  display: none !important;
}


/* ================================
   13.1 Google Maps
================================ */

.map-section {
  width: 100%;
  height: 360px;
  padding: 0;
  margin: 0;
  background: var(--black);
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-section + .site-footer {
  margin-top: 0;
}


/* ================================
   14. Unterseiten / Legal
   Desktop / Basisregeln
================================ */

.page-hero {
  padding: 110px 0 90px;
}

.page-hero p {
  max-width: 720px;
  color: #d0d0d0;
  font-size: 19px;
  line-height: 1.7;
}

.legal-section {
  min-height: 50vh;
}

.legal-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
}

/* Impressum Grid */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.legal-grid > div {
  padding: 4px 0;
}

.legal-grid h3,
.privacy-content h3,
.legal-note h3 {
  color: var(--black);
  font-size: 20px;
  margin-bottom: 10px;
}

.legal-grid p,
.privacy-content p,
.legal-note p {
  color: var(--gray);
  line-height: 1.75;
}

.legal-grid a,
.privacy-content a,
.legal-note a {
  color: var(--red);
  font-weight: 800;
}

/* Datenschutz Inhalt */
.privacy-content {
  display: block;
}

.privacy-content > div {
  margin-bottom: 30px;
}

.privacy-content > div:last-child {
  margin-bottom: 0;
}

.privacy-content ul {
  margin: 12px 0 18px 20px;
  padding-left: 18px;
  color: var(--gray);
}

.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.privacy-content li::marker {
  color: var(--red);
}

/* Zusatzbereich Impressum */
.legal-note {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}

.legal-note h3 {
  margin-top: 22px;
}

.legal-note h3:first-child {
  margin-top: 0;
}

/* ================================
   15. Scroll-Reveal Animation
================================ */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================
   16. Footer
================================ */

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 6px solid var(--red);
  padding: 52px 0 28px;
}

.footer-simple {
  text-align: center;
}

.footer-simple h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 900;
}

.footer-trust {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-trust-item {
  min-width: 190px;
  background: var(--black-card);
  border: 1px solid #2e2e2e;
  border-left: 5px solid var(--red);
  border-radius: 18px;
  padding: 18px 22px;
  text-align: left;
}

.footer-trust-item strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
  font-weight: 900;
}

.footer-trust-item span {
  display: block;
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 700;
}

.footer-simple-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
}

.footer-simple-links a {
  color: var(--white);
  transition: color 0.25s ease;
}

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

.footer-simple-links span {
  color: var(--white);
  opacity: 0.75;
}

.footer-bottom-simple {
  border-top: 1px solid #2c2c2c;
  padding-top: 22px;

  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;

  color: #a8a8a8;
  font-size: 15px;
}

.footer-bottom-simple a {
  color: var(--gold);
  font-weight: 900;
}

.footer-bottom-simple a:hover {
  color: var(--gold-light);
}


/* ================================
   17. Responsive Tablet
================================ */

@media (max-width: 1100px) {
  .header-phone span {
    display: none;
  }

  .main-nav {
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 980px) {
  /* Header / Burger */
  .burger-menu {
    display: inline-flex;
  }

  .header-phone {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
  }

  .header-actions {
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;

    width: 100%;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    background: var(--black);
    border-bottom: 1px solid #202020;
    box-shadow: var(--shadow);

    padding: 22px 4%;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 0;

    border-bottom: 1px solid #202020;

    font-size: 17px;

    display: flex;
    align-items: center;
    gap: 12px;
  }

  .main-nav a i {
    display: inline-flex;
  }

  .main-nav a::after {
    display: none;
  }

  /* Einspaltige Bereiche */
  .split-grid,
  .insurance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Versicherung */
  .insurance-grid {
    gap: 42px;
  }

  .insurance-media,
  .insurance-media > img {
    min-height: 380px;
  }

  .insurance-content {
    max-width: 100%;
  }

  /* Kontakt */
  .contact-info,
  .contact-form {
    height: auto;
  }

  .opening-box {
    margin-top: 28px;
  }

  /* Karten-Grids */
  .service-grid,
  .gallery-preview,
  .gallery-page-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Galerie auf Tablet nicht künstlich Bildschirmhöhe erzwingen */
  #galerie {
    min-height: auto;
    display: block;
  }

  .gallery-preview,
  .gallery-page-grid {
    gap: 22px;
  }

  .gallery-preview img {
    height: 400px;
  }

  .gallery-item img {
    height: 380px;
  }

  /* Legal */
  .legal-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   18. Responsive Mobile
================================ */

@media (max-width: 680px) {
  /* Grundlayout */
  main {
    padding-top: var(--mobile-header-height);
  }

  section[id] {
    scroll-margin-top: var(--mobile-header-height);
  }

  .container {
    width: min(92%, var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  /* Header */
  .header-inner {
    min-height: var(--mobile-header-height);
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
  }

  .logo img {
    max-width: 168px;
    max-height: 54px;
  }

  .header-actions {
    justify-self: end;
    gap: 7px;
  }

  .header-socials {
    gap: 7px;
  }

  .header-socials a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .burger-menu {
    width: 40px;
    height: 40px;
    justify-self: end;
  }

  .main-nav {
    top: var(--mobile-header-height);
  }

  /* Hero Mobile – echter Hero-Look */
  .hero {
    min-height: calc(90svh - var(--mobile-header-height));
    align-items: center;

    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.54) 0%,
        rgba(0, 0, 0, 0.70) 48%,
        rgba(0, 0, 0, 0.92) 100%),
      url("../images/hero.webp");

    /*
      Wichtig:
      cover bleibt drin, damit es ein echter Hero bleibt.
      Über background-position steuerst du den Bildausschnitt.
    */
    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    padding: 38px 0 52px;
  }

  .hero-content,
  .section-heading,
  .split-content,
  .insurance-content,
  .contact-info,
  .page-hero {
    text-align: center;
  }

  .hero h1::after,
  .section-heading h2::after,
  .split-content h2::after,
  .insurance-content h2::after,
  .contact-info h2::after,
  .page-hero h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading h2,
  .split-content h2,
  .insurance-content h2,
  .contact-info h2,
  .page-hero h1 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.14;
    letter-spacing: -0.5px;
  }

  .hero-brand {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.1;
  }

  .hero h1 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.08;
  }

  .hero-text {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn,
  .btn {
    width: 100%;
  }

  /* Mobile: Leistungen, Warum Creative, Zahlen & Versicherung bleiben immer zweispaltig */
  .service-grid,
  .why-grid,
  .stats-grid,
  .insurance-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  /* Mobile: Startseiten-Galerie bleibt groß, Galerie-Seite bekommt 2 Spalten */
  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* Über uns Bild */
  .split-image,
  .split-image img {
    min-height: 280px;
  }

  /* Galerie Mobile */
  #galerie {
    min-height: auto;
    display: block;
  }

  .gallery-preview img {
    height: 260px;
    border-radius: 22px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-item img {
    height: clamp(210px, 46vw, 300px);
    border-radius: 18px;
  }

  #galerie .center-button {
    margin-top: 32px;
  }

  /* Versicherung Mobile */
  .insurance-grid {
    gap: 34px;
  }

  .insurance-media,
  .insurance-media > img {
    min-height: 280px;
  }

  .insurance-partner-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }

  .insurance-list-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 12px;
  }

  .insurance-list-item i {
    margin: 0 auto;
  }

  .insurance-list-item span {
    font-size: 14px;
    line-height: 1.35;
  }

  .insurance-content .btn {
    width: 100%;
  }

  /* Karten allgemein */
  .stat-card,
  .service-card,
  .why-card,
  .insurance-list-item {
    text-align: center;
    min-width: 0;
  }

  /* Mobile Kompakt-Modus für 2er-Kacheln */
  .stat-card,
  .service-card,
  .why-card {
    min-height: auto;
    padding: 22px 14px;
    border-radius: 20px;
  }

  .stat-card i,
  .service-card i {
    width: 48px;
    height: 48px;
    font-size: 21px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .stat-card strong {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 8px;
  }

  .stat-card span:last-child,
  .service-card h3,
  .why-card h3,
  .insurance-list-item span {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .service-card h3,
  .why-card h3 {
    font-size: 17px;
    line-height: 1.25;
  }

  .service-card p,
  .why-card p,
  .stat-card span:last-child {
    font-size: 14px;
    line-height: 1.45;
  }

  .why-card span {
    font-size: 23px;
    margin-bottom: 14px;
  }

  /* Kontakt Mobile */
  .contact-info,
  .contact-form,
  .legal-box {
    padding: 28px;
    border-radius: 24px;
  }

  .contact-details {
    text-align: left;
  }

  .contact-details p {
    grid-template-columns: 24px 1fr;
    text-align: left;
    gap: 12px;
    align-items: start;
  }

  .contact-details i {
    margin: 4px 0 0 0;
  }

  .opening-box {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    margin-left: 0;
    margin-right: 0;
    padding: 22px;
    text-align: left;
    border-radius: 22px;
  }

  .opening-box strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .opening-box span {
    font-size: 16px;
    line-height: 1.55;
  }

  /* Formular Mobile */
  .contact-form input,
  .contact-form select {
    height: 56px;
    line-height: 56px;
  }

  .contact-form textarea {
    min-height: 180px;
  }

  /* Datenschutz Checkbox Mobile Fix */
  .contact-form .privacy-wrap {
    text-align: left;
  }

  .contact-form .privacy-row {
    grid-template-columns: 20px 1fr;
    align-items: start;
  }

  .contact-form .privacy-row input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    line-height: normal !important;
  }

  .contact-form .privacy-row label {
    font-size: 13px;
    line-height: 1.5;
  }

  .contact-form .privacy-link {
    font-size: 13px;
  }

  /* Legal Mobile */
  .page-hero {
    padding: 95px 0 70px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .legal-box {
    border-radius: 22px;
    padding: 28px 22px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-grid h3,
  .privacy-content h3,
  .legal-note h3 {
    font-size: 18px;
  }

  .privacy-content > div {
    margin-bottom: 26px;
  }

  .privacy-content ul {
    margin-left: 16px;
    padding-left: 14px;
  }

  /* Google Maps */
  .map-section {
    height: 300px;
  }

  /* Footer Mobile */
  .footer-simple h3 {
    margin-bottom: 26px;
  }

  .footer-trust {
    gap: 14px;
  }

  .footer-trust-item {
    width: 100%;
    text-align: center;
    border-left: 0;
    border-top: 5px solid var(--red);
  }

  .footer-simple-links {
    flex-wrap: wrap;
    font-size: 17px;
  }

  .footer-bottom-simple {
    flex-direction: column;
    text-align: center;
  }
}


/* ================================
   19. Sehr kleine Handys
================================ */

@media (max-width: 420px) {
  /* Auch auf sehr kleinen Handys 2 Spalten beibehalten, aber kompakter */
  .service-grid,
  .why-grid,
  .stats-grid,
  .insurance-list {
    gap: 12px;
  }

  .stat-card,
  .service-card,
  .why-card,
  .insurance-list-item {
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-card h3,
  .why-card h3 {
    font-size: 16px;
  }

  .service-card p,
  .why-card p,
  .stat-card span:last-child,
  .insurance-list-item span {
    font-size: 13px;
    line-height: 1.4;
  }

  .logo img {
    max-width: 145px;
  }

  .header-socials a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .burger-menu {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: calc(88svh - var(--mobile-header-height));

    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.56) 0%,
        rgba(0, 0, 0, 0.72) 48%,
        rgba(0, 0, 0, 0.94) 100%),
      url("../images/hero.webp");

    background-size: cover;
    background-position: 78% center;
    background-repeat: no-repeat;
  }

  .hero-grid {
    padding: 34px 0 46px;
  }

  .hero-brand {
    font-size: 29px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .section-heading h2,
  .split-content h2,
  .insurance-content h2,
  .contact-info h2,
  .page-hero h1 {
    font-size: 25px;
  }



  .hero-text {
    font-size: 15px;
    max-width: 94%;
  }

  .insurance-partner-badge {
    flex-direction: column;
    gap: 8px;
  }

  .insurance-partner-badge img {
    max-height: 38px;
  }

  .gallery-preview img {
    height: 230px;
  }

  .gallery-page-grid {
    gap: 10px;
  }

  .gallery-item img {
    height: 190px;
  }

  .map-section {
    height: 260px;
  }

  .opening-box {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
  }

  .opening-box strong {
    font-size: 17px;
  }

  .opening-box span {
    font-size: 15px;
    line-height: 1.5;
  }


  /* Legal sehr kleine Handys */
  .page-hero {
    padding: 85px 0 58px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .legal-box {
    padding: 24px 18px;
    border-radius: 18px;
  }
}
	  
/* ================================
   20. Danke-Seite
================================ */

.thankyou-page {
  background: var(--black);
  color: var(--white);
}

.thankyou-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
  background: var(--black);
}

.thankyou-box {
  max-width: 820px;
  text-align: center;
}

.thankyou-box h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.thankyou-box h1::after {
  content: "";
  display: block;
  width: 82px;
  height: 5px;
  background: var(--red);
  border-radius: 999px;
  margin: 22px auto 0;
}

.thankyou-box p:not(.eyebrow) {
  color: #eeeeee;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 680px;
}

.thankyou-box .btn {
  min-width: 270px;
}

@media (max-width: 680px) {
  .thankyou-section {
    min-height: calc(100vh - var(--mobile-header-height));
    padding: 70px 0;
  }

  .thankyou-box h1 {
    font-size: 42px;
  }

  .thankyou-box p:not(.eyebrow) {
    font-size: 17px;
  }

  .thankyou-box .btn {
    width: 100%;
  }
}

/* ================================
   21. Cookie Banner & Consent – kompakt
================================ */

[hidden] {
  display: none !important;
}

/* Kleines Floating-Banner statt Vollbild-Overlay */
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: auto;
  top: auto;

  z-index: 100000;

  width: min(430px, calc(100% - 44px));
  padding: 0;

  background: transparent;
  backdrop-filter: none;

  display: block;
}

.cookie-box {
  width: 100%;
  max-height: calc(100svh - 44px);
  overflow-y: auto;

  background: var(--black-card);
  color: var(--white);

  border: 1px solid #2e2e2e;
  border-left: 5px solid var(--red);
  border-radius: 22px;

  padding: 22px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);

  display: grid;
  gap: 16px;
}

.cookie-text h3 {
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-text a {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cookie-options label {
  min-width: 0;

  background: var(--black);
  border: 1px solid #2e2e2e;
  border-radius: 14px;
  padding: 11px 12px;

  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
}

.cookie-options input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  accent-color: var(--red);
  cursor: pointer;
}

.cookie-options input[disabled] {
  cursor: not-allowed;
}

.cookie-options span {
  overflow-wrap: anywhere;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.cookie-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 10px 15px;

  font-size: 14px;
  white-space: normal;
}

.cookie-settings-btn {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9998;

  width: 52px;
  height: 52px;

  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);

  padding: 0;
  font-size: 22px;
  font-weight: 900;

  cursor: pointer;
  box-shadow: var(--shadow-red);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.cookie-settings-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.noscript-cookie-note {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100001;

  background: var(--black-card);
  color: var(--white);
  border-left: 5px solid var(--red);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

/* Google Maps Platzhalter, solange externe Medien nicht akzeptiert wurden */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;

  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), rgba(0, 0, 0, 0)),
    var(--black-card);
  color: var(--white);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  text-align: center;
  padding: 28px;
}

.map-placeholder h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.map-placeholder p {
  color: #d0d0d0;
  max-width: 560px;
  line-height: 1.6;
}

.map-placeholder .btn {
  min-width: 210px;
}

.map-section iframe:not([src]) {
  display: none;
}

.map-section iframe[src] + .map-placeholder,
.map-section .map-placeholder.is-hidden {
  display: none;
}

/* Tablet */
@media (max-width: 980px) {
  .cookie-banner {
    right: 18px;
    bottom: 18px;
    width: min(400px, calc(100% - 36px));
  }
}

/* Mobile */
@media (max-width: 680px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-box {
    max-height: 62svh;
    padding: 18px;
    border-radius: 18px;
    gap: 14px;
  }

  .cookie-text h3 {
    font-size: 18px;
  }

  .cookie-text p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-text a {
    font-size: 13px;
  }

  .cookie-options label {
    padding: 10px 11px;
    font-size: 13px;
  }

  .cookie-actions {
    gap: 8px;
  }

  .cookie-actions .btn {
    min-height: 41px;
    padding: 9px 13px;
    font-size: 13px;
  }

  .cookie-settings-btn {
    left: 12px;
    bottom: 12px;

    width: 48px;
    height: 48px;

    padding: 0;
    font-size: 20px;
  }

  .map-placeholder {
    min-height: 300px;
    padding: 24px 18px;
  }

  .map-placeholder .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Sehr kleine Handys */
@media (max-width: 420px) {
  .cookie-box {
    max-height: 58svh;
    padding: 16px;
    border-left-width: 0;
    border-top: 5px solid var(--red);
  }

  .cookie-settings-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .cookie-text h3 {
    font-size: 17px;
  }

  .cookie-text p,
  .cookie-text a,
  .cookie-options label,
  .cookie-actions .btn {
    font-size: 12.5px;
  }
}

