/* Aktalan Entrümpelung – Styles */
:root {
  --color-navy: #14365c;
  --color-navy-light: #1e4a7a;
  --color-blue: #2563b8;
  --color-accent: #f97316;
  --color-accent-hover: #ea580c;
  --color-bg: #f4f6f9;
  --color-bg-alt: #e8edf4;
  --color-text: #1a1f2e;
  --color-muted: #5c6578;
  --color-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20, 54, 92, 0.08);
  --shadow-md: 0 12px 40px rgba(20, 54, 92, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 8px;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Verstecktes SVG-Sprite (Logo-Symbol für <use>) */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 54, 92, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
  height: 48px;
  width: auto;
  aspect-ratio: 72 / 62;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.05;
}

.brand-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.brand-subtitle {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy-light);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-navy);
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-white) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(20, 54, 92, 0.1);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--color-bg);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .brand-mark {
    height: 42px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37, 99, 184, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(249, 115, 22, 0.08), transparent 45%),
    linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin-inline: auto;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.text-accent {
  color: var(--color-accent);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

@media (max-width: 900px) {
  .lead {
    max-width: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: rgba(20, 54, 92, 0.25);
}

.btn-outline:hover {
  border-color: var(--color-navy);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-navy);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.0625rem;
}

.hero-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}

.hero-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Trust */
.trust-bar {
  padding: 1.25rem 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-icon {
  color: var(--color-accent);
  font-weight: 700;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  color: var(--color-navy);
  margin: 0 0 0.75rem;
}

.section-sub {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--color-white);
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 54, 92, 0.06);
}

.card h3 {
  font-size: 1.125rem;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9875rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  vertical-align: middle;
}

.gallery-item figcaption {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 360px;
    margin-inline: auto;
  }
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-text p {
  color: var(--color-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-accent);
}

/* CTA band */
.section-cta {
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
  color: var(--color-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.cta-inner p {
  margin: 0;
  opacity: 0.92;
  max-width: 520px;
}

.section-cta .btn-primary {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--color-white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 54, 92, 0.06);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.contact-list {
  margin: 0;
}

.contact-list dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-top: 1rem;
}

.contact-list dt:first-child {
  margin-top: 0;
}

.contact-list dd {
  margin: 0.25rem 0 0;
}

.hint {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--color-white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 54, 92, 0.06);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--color-navy);
}

.optional {
  font-weight: 400;
  color: var(--color-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(20, 54, 92, 0.2);
  border-radius: 8px;
  background: #fafbfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(37, 99, 184, 0.35);
  outline-offset: 1px;
  border-color: var(--color-blue);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

/* Legal */
.legal {
  padding-bottom: 3rem;
}

.legal-inner h2 {
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 2rem 0 1rem;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 0.75rem 1rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.legal-block {
  font-style: normal;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0 2.25rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.footer-mark {
  flex-shrink: 0;
  display: block;
  height: 38px;
  width: auto;
  aspect-ratio: 72 / 62;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.05;
}

.footer-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-subtitle {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-nav a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-copy {
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  opacity: 0.75;
  text-align: center;
}
