/* ==========================================================================
   Schöpfer GmbH & Co. KG — schoepfer.de
   Statischer Nachbau (HTML/CSS) der bisherigen WordPress/Elementor-Seite
   ========================================================================== */

/* ---------- Fonts (lokal gehostet, kein Google-Fonts-Request) ---------- */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/PlusJakartaSans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/PlusJakartaSans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design-Tokens ---------- */
:root {
  --accent: #e6007e;
  --accent-dark: #b60064;
  --heading: #3f3f50;
  --text: rgba(30, 30, 47, 0.8);
  --muted: #8f8f8f;
  --bg-light: #f0f3f6;
  --white: #fff;
  --dark: #141415;
  --radius: 20px;
  --radius-pill: 50px;
  --shadow: 0 10px 30px rgba(30, 30, 47, 0.08);
  --container: 1200px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  padding-block: 90px;
}

/* ---------- Bausteine ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  flex: none;
}

.badge .badge-icon svg {
  width: 16px;
  height: 16px;
}

.badge .badge-label {
  background: var(--white);
  color: var(--heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 6px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 24px;
}

.divider-dashed {
  border: none;
  border-top: 1px dashed #c9ccd4;
  margin: 28px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

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

.btn .btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex: none;
}

.btn .btn-circle svg,
.btn > svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn--ghost {
  background: rgba(230, 0, 126, 0.35);
}

.btn--ghost:hover {
  background: var(--accent);
}

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

.btn--light:hover {
  background: var(--bg-light);
  color: var(--accent-dark);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(30, 30, 47, 0.07);
}

.site-header .container {
  max-width: 1400px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.site-logo img {
  width: 180px;
  height: auto;
}

.main-nav ul {
  list-style: none;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--heading);
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--accent);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(30, 30, 47, 0.16);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li + li {
  border-top: 1px solid #f1f2f5;
}

.header-cta {
  flex: none;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--heading);
  transition: transform 0.25s, opacity 0.25s;
}

/* ==========================================================================
   Schwebende Seiten-Buttons
   ========================================================================== */
.float-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}

.float-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px 0 0 14px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230, 0, 126, 0.4);
  transition: background 0.2s, width 0.2s;
}

.float-buttons a:hover {
  background: var(--accent-dark);
  width: 66px;
}

.float-buttons svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Hero (Startseite) — CSS-Slideshow mit Ken-Burns-Effekt
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-fade 25s infinite;
}

.hero-slides .slide:nth-child(1) { animation-delay: 0s; }
.hero-slides .slide:nth-child(2) { animation-delay: 5s; }
.hero-slides .slide:nth-child(3) { animation-delay: 10s; }
.hero-slides .slide:nth-child(4) { animation-delay: 15s; }
.hero-slides .slide:nth-child(5) { animation-delay: 20s; }

@keyframes hero-fade {
  0%      { opacity: 0; transform: scale(1); }
  2%      { opacity: 1; }
  20%     { opacity: 1; }
  24%     { opacity: 0; transform: scale(1.12); }
  100%    { opacity: 0; }
}

/* Magenta/Dunkel-Split wie im Original (43 %) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--accent) 43%, rgba(20, 20, 21, 0.46) 43%);
}

.hero-content {
  padding-block: 170px;
  max-width: 620px;
}

.hero .badge .badge-label {
  box-shadow: none;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5.4vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

/* Rotierende Begriffe */
.rotate-words {
  display: block;
  height: 1.2em;
  overflow: hidden;
}

.rotate-words span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
  animation: word-rotate 9s infinite;
}

@keyframes word-rotate {
  0%, 28%   { transform: translateY(0); }
  33%, 61%  { transform: translateY(-100%); }
  66%, 94%  { transform: translateY(-200%); }
  100%      { transform: translateY(-300%); }
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   Unterseiten-Hero (Leistungen)
   ========================================================================== */
.page-hero {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding-block: 140px;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 20, 21, 0.82) 0%, rgba(20, 20, 21, 0.35) 100%);
}

.page-hero .page-hero-content {
  max-width: 640px;
}

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

.page-hero p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .btn {
  margin-top: 14px;
}

/* ==========================================================================
   Über uns
   ========================================================================== */
.about {
  background: var(--white);
}

.about .about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ff2f9e 0%, var(--accent) 45%, #6d1147 100%);
  padding: 48px 40px 0;
  overflow: hidden;
}

.about-visual img {
  margin-inline: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.about-text p + p,
.page-hero p + p {
  margin-top: 14px;
}

.about-text .cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.booking-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-weight: 600;
}

.booking-hint .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-hint svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   CTA „Planen Sie Ihren Erfolg"
   ========================================================================== */
.cta-phone {
  background: var(--bg-light);
}

.cta-phone .cta-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.cta-phone .cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(100deg, #4a4149 0%, #8c1360 45%, var(--accent) 100%);
  border-radius: 28px;
  padding: 56px 64px;
  color: var(--white);
}

.cta-panel .phone-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-panel .phone-visual img {
  max-height: 380px;
  width: auto;
}

.cta-panel h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}

.cta-panel .cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-panel .doodle {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 120px;
  opacity: 0.9;
}

/* ==========================================================================
   Geschichte (Timeline)
   ========================================================================== */
.history {
  background: url("../assets/img/geschichte-bg.jpg") center / cover no-repeat;
}

.history .history-inner {
  margin-left: auto;
  width: min(620px, 100%);
}

.history .section-title {
  margin-bottom: 48px;
}

.timeline {
  list-style: none;
  position: relative;
  padding-left: 56px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: var(--accent);
}

.timeline li {
  position: relative;
  padding-bottom: 44px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -56px;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 4px var(--white);
}

.timeline h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline .year {
  display: block;
  color: var(--muted);
  margin: 4px 0 6px;
}

/* ==========================================================================
   Jubiläums-Galerie (Marquee)
   ========================================================================== */
.strip {
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.strip .strip-track {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: strip-scroll 45s linear infinite;
}

.strip:hover .strip-track {
  animation-play-state: paused;
}

.strip img {
  height: 280px;
  width: auto;
}

@keyframes strip-scroll {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Karriere
   ========================================================================== */
.career {
  background: var(--bg-light);
  text-align: center;
}

.career .career-intro {
  max-width: 760px;
  margin-inline: auto;
}

.career .cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px 0 48px;
}

.jobs {
  max-width: 1080px;
  margin-inline: auto;
  text-align: left;
}

.jobs details {
  background: var(--accent);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-radius 0.2s;
}

.jobs details[open] {
  border-radius: 28px;
}

.jobs summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  color: var(--white);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 16px 64px;
  cursor: pointer;
  text-align: center;
}

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

.jobs summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

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

.jobs .job-body {
  background: var(--white);
  padding: 26px 34px;
}

/* ==========================================================================
   Ansprechpartner (Team)
   ========================================================================== */
.team {
  background: var(--white);
  text-align: center;
}

.team .section-title {
  margin-bottom: 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px 28px;
  max-width: 1160px;
  margin-inline: auto;
}

.team-card {
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-14px);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  background: var(--bg-light);
  margin-bottom: 18px;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.team-platzhalter {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bg-light);
  color: var(--accent);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.team-kontakt {
  list-style: none;
  margin-top: 10px;
  font-size: 0.875rem;
}

.team-kontakt li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-block: 2px;
}

.team-kontakt svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex: none;
}

.team-kontakt a {
  color: var(--text);
}

.team-kontakt a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Kundenstimmen
   ========================================================================== */
.testimonials {
  background: var(--bg-light);
}

.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 9fr;
  gap: 48px;
  align-items: start;
}

.testimonials .quote-mark {
  color: var(--accent);
  width: 110px;
  height: auto;
}

.testimonials .section-title {
  margin-bottom: 40px;
}

.slider {
  position: relative;
}

.slider-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 800px) {
  .slide-card {
    flex-basis: calc(50% - 16px);
  }
}

.slide-card blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.slide-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--heading);
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.slider-dots button {
  width: 26px;
  height: 8px;
  border: none;
  border-radius: 6px;
  background: #d2cfd2;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.slider-dots button[aria-current="true"] {
  background: var(--accent);
  width: 40px;
}

/* ==========================================================================
   Referenzen
   ========================================================================== */
.references {
  background: var(--white);
}

.references .references-head {
  text-align: center;
  margin-bottom: 48px;
}

.references .badge {
  justify-content: center;
}

.gallery {
  columns: 4 260px;
  column-gap: 14px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Kontakt / Anfrage
   ========================================================================== */
.contact {
  background: var(--bg-light);
}

.contact .contact-head {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 40px;
  margin-bottom: 24px;
}

.contact .contact-head .section-title {
  margin-bottom: 0;
}

.contact .contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 70px;
  margin-top: 56px;
}

.contact-info h3 {
  font-size: 1.375rem;
  margin: 30px 0 14px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 4px;
}

.contact-info li svg {
  width: 20px;
  height: 20px;
  color: var(--heading);
  flex: none;
}

.contact-info a {
  color: var(--text);
}

.contact-info a:hover {
  color: var(--accent);
}

/* Direktkontakt-Box */
.kontakt-box {
  background: linear-gradient(115deg, #8c1360 0%, var(--accent) 70%, #ff2f9e 100%);
  border-radius: 28px;
  color: var(--white);
  padding: 48px 52px;
}

.kontakt-box h3 {
  color: var(--white);
  font-size: 1.625rem;
  margin-bottom: 14px;
}

.kontakt-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.kontakt-box-aktionen {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.kontakt-box-hinweis {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  margin: 28px 0 0;
}

.kontakt-box-hinweis svg {
  width: 18px;
  height: 18px;
  flex: none;
}

/* Karte / Anfahrt */
.map-note {
  padding: 0;
}

.map-note .map-panel {
  background: var(--white);
  text-align: center;
  padding: 70px 24px;
  border-top: 1px solid #e3e7ec;
}

.map-note .map-panel p {
  margin-bottom: 22px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(170deg, #b95f92 0%, #cb2a88 45%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding-top: 70px;
}

.site-footer .footer-logo {
  width: 200px;
  margin: 0 auto 30px;
}

.site-footer .social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.site-footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.site-footer .social a:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.site-footer .social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 34px 24px 40px;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 34px;
  list-style: none;
  margin-bottom: 20px;
}

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

.site-footer .footer-links a:hover {
  text-decoration: underline;
}

.site-footer .copyright {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================================== */
.legal {
  background: var(--white);
}

.legal .legal-content {
  max-width: 860px;
  margin-inline: auto;
}

.legal h1 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.625rem;
  margin: 44px 0 16px;
}

.legal h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.legal p,
.legal ul,
.legal ol {
  margin-bottom: 16px;
}

.legal ul,
.legal ol {
  padding-left: 24px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .main-nav {
    position: fixed;
    inset: 96px 0 auto 0;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(30, 30, 47, 0.15);
    padding: 20px 24px 30px;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid #f1f2f5;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  section {
    padding-block: 64px;
  }

  .hero-content {
    padding-block: 110px;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--accent) 0%, rgba(122, 8, 69, 0.75) 100%);
  }

  .about .about-grid,
  .cta-phone .cta-panel,
  .contact .contact-grid,
  .contact .contact-head,
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-phone .cta-panel {
    padding: 40px 28px;
  }

  .cta-panel .doodle {
    display: none;
  }

  .history .history-inner {
    background: rgba(240, 243, 246, 0.88);
    border-radius: var(--radius);
    padding: 32px;
  }

  .testimonials .quote-mark {
    width: 70px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .strip img {
    height: 190px;
  }
}

/* ==========================================================================
   Barrierefreiheit: Skip-Link (nur bei Tastaturfokus sichtbar)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}
main:focus { outline: none; }
