/* ===== Flixwash — Premium Dark Gold ===== */

:root {
  --bg: #0a0b0f;
  --bg-glow: #14161d;
  --surface: #131519;
  --surface-2: #191c22;
  --border: #262930;
  --border-soft: rgba(255,255,255,0.07);
  --text: #f0ede4;
  --text-muted: #9195a0;
  --text-faint: #63666f;
  --gold: #c9973f;
  --gold-light: #e3bd6d;
  --gold-hi: #f0d698;
  --cream: #f0ede4;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --shadow: 0 14px 34px rgba(0,0,0,0.45);
  --container: 1160px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Bebas Neue', 'Poppins', sans-serif;
  --font-mono: 'Roboto Mono', 'SF Mono', monospace;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #14161c;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,18,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #171208;
  box-shadow: 0 8px 24px rgba(201,151,63,0.25);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(201,151,63,0.35); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: 0 8px 20px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-large { padding: 16px 30px; font-size: 1.05rem; }

.header-cta { display: inline-flex; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(201,151,63,0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-sweep::after {
  content: '';
  position: absolute;
  top: -25%;
  left: 0;
  width: 40%;
  height: 150%;
  background: linear-gradient(100deg, transparent 0%, rgba(201,151,63,0.5) 50%, transparent 100%);
  transform: translateX(-140%) skewX(-14deg);
  animation: heroSweep 8s ease-in-out infinite;
}
@keyframes heroSweep {
  0%, 100% { transform: translateX(-140%) skewX(-14deg); }
  50% { transform: translateX(340%) skewX(-14deg); }
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.hero-line {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 22px;
  transform-origin: left;
  animation: drawLine 1.1s cubic-bezier(.4,0,.2,1) .15s both;
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.96;
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--gold-light); }

.hero-sub {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 0 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-soft);
  max-width: 640px;
}
.hero-specs li {
  flex: 1;
  min-width: 150px;
  padding: 16px 20px 0 0;
  border-left: 1px solid var(--border-soft);
  padding-left: 18px;
  margin-top: -1px;
}
.hero-specs li:first-child { border-left: none; padding-left: 0; }
.spec-k {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.spec-v { display: block; font-size: 0.92rem; color: var(--text); }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent); }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.section-sub { color: var(--text-muted); margin: 0; }

/* ===== Preise ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.price-card--featured {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border-color: rgba(201,151,63,0.4);
  box-shadow: var(--shadow);
}
.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 64px 64px 0;
  border-color: transparent var(--gold) transparent transparent;
}

.price-card-badge {
  position: absolute;
  top: 13px;
  right: 3px;
  transform: rotate(45deg);
  transform-origin: center;
  color: #171208;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.price-card-sub { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-card-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }

.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.price-list span { color: var(--text); font-size: 0.98rem; }
.price-list em { color: var(--text-faint); font-style: normal; font-size: 0.82rem; }
.price-list strong {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.price-list--compact li { font-size: 0.92rem; }
.price-list--compact strong { font-size: 0.95rem; }

.price-card-note { color: var(--text-faint); font-size: 0.82rem; margin: 20px 0 0; }

.price-footnote {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 0;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.footnote-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171208;
  background: var(--gold);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
}

/* ===== Preisrechner ===== */
.calculator {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 30px;
}

.calc-label { display: block; font-weight: 600; margin-bottom: 14px; font-size: 1.02rem; }
.calc-label em { color: var(--text-faint); font-style: normal; font-weight: 400; font-size: 0.85rem; }

.calc-options { display: flex; gap: 12px; flex-wrap: wrap; }
.calc-options--stack { flex-direction: column; }
.calc-options[hidden] { display: none; }

.calc-option {
  font-family: var(--font);
  text-align: left;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.98rem;
  transition: border-color .15s, background .15s;
  flex: 1;
  min-width: 160px;
}
.calc-option:hover { border-color: var(--gold); }
.calc-option-hint { display: block; font-style: normal; color: var(--text-faint); font-size: 0.8rem; margin-top: 4px; font-weight: 400; }
.calc-option.is-active {
  border-color: var(--gold);
  background: rgba(217,169,85,0.14);
  color: var(--gold-light);
  font-weight: 600;
}

.calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}
.calc-result span { color: var(--text-muted); display: block; font-size: 0.9rem; margin-bottom: 4px; }
.calc-result strong {
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ===== Vorher/Nachher ===== */
.compare {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: none;
}
.compare-after, .compare-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.compare-after img, .compare-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-before { width: 50%; }

.compare-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(10,12,18,0.65);
  backdrop-filter: blur(4px);
}
.compare-tag--after { right: 16px; color: var(--gold-light); }
.compare-tag--before { left: 16px; color: var(--text); }

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  border-left: 2px solid var(--gold);
  transform: translateX(-1px);
  cursor: ew-resize;
}
.compare-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #171208;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.compare-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.82rem;
  margin: 18px 0 0;
}

/* ===== Schritte (Wäsche vs. Politur) ===== */
.steps {
  max-width: 720px;
  margin: 72px auto 0;
}

.steps-head { text-align: center; margin: 0 0 40px; }
.steps-head h3 { font-size: 1.4rem; margin: 0 0 12px; }
.steps-head p { color: var(--text-muted); margin: 0; }

.step-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}

.step-photo { aspect-ratio: 16 / 11; overflow: hidden; }
.step-photo img { width: 100%; height: 100%; object-fit: cover; }

.step-text { padding: 24px 28px 28px; position: relative; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #171208;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.step-text h4 { margin: 0 0 8px; font-size: 1.1rem; }
.step-text p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.steps-cta { display: flex; justify-content: center; margin: 12px auto 0; width: fit-content; }

@media (min-width: 640px) {
  .step-text { padding: 28px 36px 34px; }
  .step-text p { max-width: 560px; font-size: 1rem; }
}

/* ===== Versiegelungs-Effekt ===== */
.seal { max-width: 760px; margin: 72px auto 0; }

.seal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.seal-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}
.seal-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.seal-card figcaption { position: absolute; top: 14px; left: 14px; }

.seal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.seal-tag--good { background: rgba(37,211,102,0.85); color: #06210f; }
.seal-tag--bad { background: rgba(10,12,18,0.75); color: var(--text); border: 1px solid var(--border); }

@media (max-width: 560px) {
  .seal-grid { grid-template-columns: 1fr; }
}

/* ===== Ablauf ===== */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.flow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.flow-card h4 { margin: 0 0 10px; font-size: 1.1rem; }
.flow-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

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

/* ===== Über mich ===== */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo-frame {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-photo-frame::after {
  content: 'Foto folgt';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.about-text h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  text-wrap: balance;
}
.about-text p { color: var(--text-muted); margin: 0 0 16px; }

.about-facts {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-facts li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.95rem;
}
.about-facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== Kontakt ===== */
.contact { text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  text-wrap: balance;
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}
.contact-area { color: var(--text-faint); font-size: 0.88rem; }

/* ===== Scroll-Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-sweep::after { animation: none; }
  .hero-line { animation: none; transform: none; }
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 0.85rem;
}
.footer-inner a { color: var(--text-faint); text-decoration: none; }
.footer-inner a:hover { color: var(--gold-light); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { padding: 56px 0 56px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .calc-result { flex-direction: column; align-items: flex-start; }
  .calc-result .btn-whatsapp { width: 100%; justify-content: center; }
}
