/* ==========================================================================
   Laserreinigung Chiemgau — Stylesheet
   Farben & Schriften gemäß Markenhandbuch (LRC, 2026)
   ========================================================================== */

:root {
  --gold: #C8A24C;
  --gold-light: #EBD48A;
  --gold-dark: #9C7B34;
  --silver: #B7BEC5;
  --silver-light: #E8EAED;
  --black: #0B0C0E;
  --anthrazit: #16181B;
  --anthrazit-2: #1E2124;
  --creme: #F4F1EA;
  --creme-2: #EAE5D9;
  --text-light: #EDEEF0;
  --text-muted: #A7ACB3;
  --text-dark: #201F1C;
  --text-dark-muted: #5B584F;

  --font-display: "Cinzel", serif;
  --font-accent: "Cormorant Garamond", serif;
  --font-body: "Hanken Grotesk", sans-serif;

  --radius: 6px;
  --container: 1180px;
  --shadow-soft: 0 20px 50px rgba(0,0,0,0.35);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }

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

.section {
  padding: 100px 0;
  position: relative;
}
.section--tight { padding: 70px 0; }
.section--dark { background: var(--black); color: var(--text-light); }
.section--anthrazit { background: var(--anthrazit); color: var(--text-light); }
.section--creme { background: var(--creme); color: var(--text-dark); }
.section--creme h1, .section--creme h2, .section--creme h3 { color: var(--text-dark); }
.section--creme p { color: var(--text-dark-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.accent-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 500;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
}
.section--creme .lead { color: var(--text-dark-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1305;
}
.btn--gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn--outline {
  border-color: rgba(183,190,197,0.5);
  color: var(--text-light);
  background: transparent;
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }
.section--creme .btn--outline { border-color: rgba(32,31,28,0.3); color: var(--text-dark); }
.section--creme .btn--outline:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: linear-gradient(to bottom, rgba(11,12,14,0.85), transparent);
}
.site-header.is-scrolled {
  background: rgba(11,12,14,0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(200,162,76,0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height var(--transition); }
.site-header.is-scrolled .brand img { height: 38px; }

.main-nav ul { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--silver-light); }
.header-phone svg { width: 16px; height: 16px; fill: var(--gold); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(183,190,197,0.35);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--text-light);
  transition: all var(--transition);
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(11,12,14,0.55), rgba(11,12,14,0.88) 70%, var(--black)),
              radial-gradient(ellipse at 70% 20%, rgba(200,162,76,0.16), transparent 55%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -1;
}
.hero-inner { max-width: 760px; padding-top: 90px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-family: var(--font-accent); font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero p.lead { max-width: 560px; margin-bottom: 32px; }

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-light);
}
.hero-stats div span { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.3px; }

.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(180deg, rgba(11,12,14,0.6), var(--black)), var(--hero-image, none);
  background-size: cover;
  background-position: center;
  text-align: left;
}
.page-hero .lead { max-width: 640px; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============ Grids & Cards ============ */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--anthrazit);
  border: 1px solid rgba(183,190,197,0.12);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: rgba(200,162,76,0.4); }
.card .icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(200,162,76,0.1);
  margin-bottom: 20px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.section--creme .card { background: #fff; border-color: rgba(32,31,28,0.08); box-shadow: 0 10px 30px rgba(32,31,28,0.06); }
.section--creme .card p { color: var(--text-dark-muted); }

.card--bordered {
  background: transparent;
  border: 1px solid rgba(183,190,197,0.25);
}

/* Zielgruppen tabs (Privat / Firmen) */
.audience-toggle {
  display: inline-flex;
  border: 1px solid rgba(183,190,197,0.3);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 46px;
}
.audience-toggle button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
}
.audience-toggle button.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1305;
}
.audience-panel { display: none; }
.audience-panel.is-active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

/* ============ Vorteile / Why-us with numbers ============ */
.reason {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(183,190,197,0.15);
}
.reason:last-child { border-bottom: 1px solid rgba(183,190,197,0.15); }
.reason .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 44px;
}
.reason h3 { margin-bottom: 6px; font-size: 1.1rem; }
.reason p { color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ============ Vorher/Nachher Slider ============ */
.compare {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  user-select: none;
  margin: 0 auto;
}
.compare img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.compare .compare-after { clip-path: inset(0 0 0 50%); }
.compare .compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold-light);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 5;
}
.compare .compare-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  color: #1a1305;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.compare-tag {
  position: absolute; top: 14px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(11,12,14,0.65);
  color: var(--text-light);
  z-index: 4;
}
.compare-tag--before { left: 14px; }
.compare-tag--after { right: 14px; background: rgba(200,162,76,0.85); color: #1a1305; }

.compare-card { display: flex; flex-direction: column; gap: 18px; }
.compare-card .compare-info h3 { margin-bottom: 6px; }
.compare-card .compare-info p { color: var(--text-muted); font-size: 0.93rem; }

.compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; margin-bottom: 110px; }
.compare-row:last-child { margin-bottom: 0; }
.compare-row:nth-child(even) .compare { order: 2; }
.compare-row:nth-child(even) .compare-card { order: 1; }

/* simple side-by-side fallback gallery */
.pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: var(--radius); overflow: hidden; }
.pair-grid figure { margin: 0; position: relative; aspect-ratio: 3/4; overflow: hidden; }
.pair-grid img { width: 100%; height: 100%; object-fit: cover; }
.pair-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
}

/* ============ Process steps ============ */
.steps { counter-reset: step; }
.step { display: flex; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(183,190,197,0.15); }
.step:last-child { border-bottom: 1px solid rgba(183,190,197,0.15); }
.step .step-num {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #1a1305;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step .step-num::before { content: counter(step); }

/* ============ Testimonial / quote ============ */
.quote-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-block p { font-family: var(--font-accent); font-style: italic; font-size: 1.7rem; color: var(--gold-light); line-height: 1.5; }
.quote-block cite { font-style: normal; font-size: 0.9rem; color: var(--text-muted); }

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(135deg, var(--anthrazit), var(--black));
  border-top: 1px solid rgba(200,162,76,0.2);
  border-bottom: 1px solid rgba(200,162,76,0.2);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { margin-bottom: 14px; }

/* ============ Forms ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; letter-spacing: 0.3px; margin-bottom: 8px; color: var(--text-muted); }
.section--creme label { color: var(--text-dark-muted); }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(183,190,197,0.3);
  border-radius: 3px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.section--creme input, .section--creme select, .section--creme textarea {
  background: #fff;
  color: var(--text-dark);
  border-color: rgba(32,31,28,0.15);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }
.form-field { margin-bottom: 22px; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.checkbox-field label { margin: 0; color: var(--text-muted); font-size: 0.85rem; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(200,162,76,0.12);
  border: 1px solid rgba(200,162,76,0.4);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

/* ============ Contact info blocks ============ */
.contact-info-item { display: flex; gap: 18px; margin-bottom: 30px; }
.contact-info-item .icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200,162,76,0.12);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon svg { width: 20px; height: 20px; stroke: var(--gold-light); fill: none; }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.contact-info-item a:hover { color: var(--gold-light); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(183,190,197,0.2); filter: grayscale(0.3) contrast(1.05); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ============ Footer ============ */
.site-footer { background: #08090a; padding: 70px 0 26px; border-top: 1px solid rgba(200,162,76,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 36px; height: 36px; border: 1px solid rgba(183,190,197,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.social-row svg { width: 16px; height: 16px; fill: var(--silver); }
.social-row a:hover { border-color: var(--gold); }
.social-row a:hover svg { fill: var(--gold-light); }

/* ============ Legal pages ============ */
.legal-content h2 { margin-top: 2em; font-size: 1.4rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.6em; }
.legal-content p, .legal-content li { color: var(--text-dark-muted); }
.legal-content ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-note {
  background: rgba(200,162,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  font-size: 0.88rem;
  margin: 30px 0;
  color: var(--text-dark-muted);
}

/* ============ Utilities ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; letter-spacing: 0.3px;
  padding: 9px 16px;
  border: 1px solid rgba(183,190,197,0.3);
  border-radius: 30px;
  color: var(--text-muted);
}
.badge svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 70px; }
  .compare-row:nth-child(even) .compare,
  .compare-row:nth-child(even) .compare-card { order: initial; }
}

@media (max-width: 760px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: var(--anthrazit);
    padding: 100px 34px 40px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: 82vh; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pair-grid { grid-template-columns: 1fr 1fr; }
}

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
}
.nav-overlay.is-open { display: block; }
