/* ===== Homerefresh – Stylesheet ===== */
:root {
  --yellow: #f5a800;
  --yellow-bright: #ffbe2e;
  --bg: #0f0f10;
  --bg-2: #161618;
  --bg-3: #1d1d20;
  --line: #2a2a2e;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --wa: #25d366;
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--maxw), 92%); margin-inline: auto; }

h1, h2, h3 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.12; letter-spacing: .2px; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,16,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; flex-direction: row; align-items: center; gap: 14px; }
.logo__img { height: 50px; width: auto; display: block; }
.logo__owner { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); padding-left: 14px; border-left: 1px solid var(--line); }
.logo--footer { justify-content: center; }
.logo--footer .logo__img { height: 54px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav__cta {
  background: var(--yellow); color: #1a1300 !important; font-weight: 700;
  padding: 9px 18px; border-radius: 999px; transition: background .2s ease, transform .18s var(--ease-out);
}
.nav__cta:hover { background: var(--yellow-bright); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: .25s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .18s var(--ease-out), background .2s ease, box-shadow .2s ease; cursor: pointer; border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--yellow); color: #1a1300; }
.btn--primary:hover { background: var(--yellow-bright); box-shadow: 0 10px 26px -10px var(--yellow); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { box-shadow: 0 10px 26px -10px var(--wa); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 32%; transform: scale(1.05); }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(15,15,16,.96) 0%, rgba(15,15,16,.86) 48%, rgba(15,15,16,.62) 100%),
  linear-gradient(0deg, rgba(15,15,16,.6) 0%, transparent 40%); }
.hero__content { position: relative; padding: 90px 0; max-width: 760px; }
.hero__eyebrow { color: var(--yellow); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }
.hero__title { font-size: clamp(2.3rem, 6vw, 4.1rem); font-weight: 700; text-transform: uppercase; }
.hero__title .hl { color: var(--yellow); }
.hero__title-sub { display: inline-block; margin-top: 8px; font-size: clamp(1.05rem, 2.6vw, 1.7rem); font-weight: 600; text-transform: none; color: #e4e4e7; }
.hero__sub { margin: 20px 0 18px; font-size: clamp(1rem, 2vw, 1.18rem); color: #d4d4d8; max-width: 580px; }
.hero__sub strong { color: #fff; font-weight: 600; }
.hero__services { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 30px; }
.hero__services li { font-size: 13.5px; font-weight: 600; color: #e4e4e7; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 7px 14px; border-radius: 999px; }
.hero__services li:first-child { background: var(--yellow); color: #1a1300; border-color: var(--yellow); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== USPs ===== */
.usps { background: var(--bg-2); border-block: 1px solid var(--line); }
.usps__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; padding: 30px 0; }
.usp { display: flex; align-items: center; gap: 14px; }
.usp__ico { color: var(--yellow); font-size: 14px; }
.usp strong { display: block; font-size: 15px; }
.usp p { font-size: 13.5px; color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-2); }
.section__eyebrow { color: var(--yellow); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.section__title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 16px; max-width: 720px; }
.section__intro, .section__contact-intro { color: var(--muted); margin-bottom: 38px; max-width: 600px; }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.service {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s var(--ease-out), border-color .25s ease; display: flex; flex-direction: column;
}
.service:hover { transform: translateY(-4px); border-color: #3a3a40; }
.service--feature { grid-column: span 2; flex-direction: row; }
.service__img { background-size: cover; background-position: center; min-height: 200px; }
.service--feature .service__img { flex: 0 0 clamp(300px, 46%, 520px); aspect-ratio: 1402 / 1122; background-size: cover; background-position: center; min-height: 0; }
.service:not(.service--feature) .service__img { aspect-ratio: 689 / 313; min-height: 0; }
.service__body { padding: 24px 26px; }
.service--feature .service__body { flex: 1 1 50%; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.service__body h3 { font-size: 1.5rem; margin: 6px 0 8px; }
.service__body p { color: var(--muted); font-size: 15px; }
.service__more { color: var(--yellow); font-weight: 600; margin-top: 14px; font-size: 15px; }
.service__samples { display: inline-block; margin-top: 14px; background: none; border: 0; padding: 0; font: inherit; color: var(--yellow); font-weight: 600; font-size: 15px; cursor: pointer; transition: color .2s ease; }
.service__samples:hover { color: var(--yellow-bright); }

/* Lightbox / Karussell (Steinteppich-Muster) */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,8,9,.93); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-height: 86vh; max-width: min(100%, 1100px); width: auto; height: auto; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 70px -12px rgba(0,0,0,.85); display: block; cursor: zoom-in; transition: transform .25s var(--ease-out); }
.lightbox__img.zoomed { transform: scale(2.8); cursor: zoom-out; border-radius: 0; }
.lightbox__nav { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s ease, transform .2s ease; z-index: 3; }
.lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__nav:active { transform: translateY(-50%) scale(.92); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__close { position: fixed; top: 16px; right: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s ease; z-index: 3; }
.lightbox__close:hover { background: rgba(255,255,255,.28); }
.lightbox__counter { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; font-weight: 500; background: rgba(0,0,0,.45); padding: 5px 14px; border-radius: 999px; z-index: 3; }
@media (max-width: 560px) { .lightbox__nav { width: 44px; height: 44px; font-size: 26px; } .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } }
.tag { align-self: flex-start; background: rgba(245,168,0,.14); color: var(--yellow); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }

/* ===== Epoxid feature ===== */
.epoxid { padding: 90px 0; background:
  radial-gradient(900px 500px at 85% -10%, rgba(245,168,0,.08), transparent 60%), var(--bg); }
.epoxid__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.lead { font-size: 1.12rem; color: #d4d4d8; margin-bottom: 28px; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.steps li { display: flex; gap: 18px; }
.steps span { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--yellow); flex: none; width: 42px; }
.steps strong { display: block; font-size: 1.05rem; }
.steps p { color: var(--muted); font-size: 14.5px; }
.epoxid__media { display: grid; gap: 16px; }
.epoxid__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.epoxid__media img:first-child { aspect-ratio: 16/10; }
.epoxid__media img:last-child { aspect-ratio: 16/9; }

/* ===== Gallery ===== */
.gallery { column-count: 3; column-gap: 20px; }
.gallery .shot { break-inside: avoid; margin-bottom: 20px; }
.shot { border-radius: var(--radius); overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); }
.shot img { width: 100%; height: auto; display: block; }
.shot--pair { column-span: none; }
.shot--pair .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.shot--pair .pair img { width: 100%; aspect-ratio: 1170 / 1316; object-fit: cover; display: block; }
.shot--pair .pair img:first-child { object-position: bottom; }
@media (max-width: 560px) { .shot--pair { grid-column: auto; } }
.shot figcaption, .compare figcaption { padding: 13px 16px; font-size: 14px; color: var(--muted); font-weight: 500; }

/* compare slider */
.compare { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); grid-column: span 1; }
.compare img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.compare__before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 3px solid var(--yellow); }
.compare__before-wrap img { width: 100%; height: 100%; }
.compare__before { position: absolute; inset: 0; }
.compare figcaption { position: relative; }
.compare__range { position: absolute; top: 0; left: 0; width: 100%; height: calc(100% - 44px); margin: 0; background: none; -webkit-appearance: none; appearance: none; cursor: ew-resize; }
.compare__range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; cursor: ew-resize; }
.compare__range::-moz-range-thumb { width: 44px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.compare__handle { position: absolute; top: calc((100% - 44px)/2); left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; pointer-events: none; box-shadow: 0 4px 14px rgba(0,0,0,.5); }
.compare__handle::before { content: "‹ ›"; color: #1a1300; font-weight: 700; font-size: 15px; letter-spacing: -1px; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.about__text p { color: #d4d4d8; margin-bottom: 14px; }
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-top: 14px; }
.checks li { position: relative; padding-left: 26px; font-size: 15px; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }
.about__card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.about__card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips span { background: var(--bg); border: 1px solid var(--line); color: var(--muted); font-size: 13.5px; padding: 7px 13px; border-radius: 999px; }

/* ===== Contact ===== */
.contact { padding: 90px 0; background:
  radial-gradient(800px 400px at 15% 0%, rgba(245,168,0,.07), transparent 60%), var(--bg-2); }
.contact__intro { color: var(--muted); margin-bottom: 36px; max-width: 560px; }
.contact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ccard {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .22s var(--ease-out), border-color .22s ease;
}
.ccard:hover { transform: translateY(-4px); border-color: var(--yellow); }
.ccard__ico { width: 52px; height: 52px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; color: var(--yellow); margin-bottom: 8px; }
.ccard strong { font-size: 1.05rem; }
.ccard span:last-child { color: var(--muted); font-size: 14px; }
.ccard--wa .ccard__ico { color: var(--wa); }
.ccard--ig .ccard__ico { color: #e1306c; }
.contact__address { margin-top: 34px; color: var(--muted); font-size: 15px; }
.contact__address strong { color: var(--text); }

/* ===== Footer ===== */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 50px 0 36px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.logo--footer { justify-content: center; }
.footer__tag { color: var(--yellow); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 6px; }
.footer__nav a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer__nav a:hover { color: var(--yellow); }
.footer__copy { color: #6b6b73; font-size: 13px; margin-top: 8px; }

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
  transition: transform .2s; animation: fabpulse 2.6s infinite;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes fabpulse { 0%,100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55); } 50% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.9); } }

/* ===== Legal pages ===== */
.legal { padding: 60px 0 90px; max-width: 820px; }
.legal h1 { font-size: 2.2rem; margin-bottom: 24px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 10px; color: var(--yellow); }
.legal p, .legal li { color: #d4d4d8; margin-bottom: 10px; }
.legal a { color: var(--yellow); }
.legal .back { display: inline-block; margin-bottom: 30px; color: var(--muted); }
.placeholder { background: rgba(245,168,0,.12); border: 1px dashed var(--yellow); color: var(--yellow-bright); padding: 2px 8px; border-radius: 5px; font-size: .92em; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 10px 0; transform: translateY(calc(-100% - 72px)); transition: transform .3s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 14px 6%; }
  .nav__cta { border-radius: 0; text-align: left; }
  .nav-toggle { display: flex; }
  .usps__grid { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr; }
  .service--feature { grid-column: span 1; flex-direction: column; }
  .service--feature .service__img { flex: none; width: 100%; aspect-ratio: 1402 / 1122; max-height: 70vh; min-height: 0; }
  .epoxid__grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { column-count: 2; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .usps__grid { grid-template-columns: 1fr; }
  .gallery { column-count: 1; }
  .contact__grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .section, .epoxid, .contact { padding: 64px 0; }
}
@media (max-width: 480px) {
  .logo { gap: 9px; }
  .logo__img { height: 40px; }
  .logo__owner { font-size: 9.5px; letter-spacing: 1.5px; padding-left: 9px; }
}

/* ===== Politur: Press-Feedback, Fokus, Touch, Reduced Motion ===== */

/* Press-Feedback – die UI reagiert spürbar auf Klick/Tap */
.btn:active { transform: scale(.96); }
.nav__cta:active,
.ccard:active { transform: scale(.97); }
.fab-wa:active { transform: scale(.93); }
.nav-toggle:active { transform: scale(.92); }

/* Sichtbarer Tastatur-Fokus (Maus-Klicks bleiben unberührt) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Touch-Geräte: kein „klebender" Hover-Lift nach dem Tippen */
@media (hover: none) {
  .btn:hover,
  .service:hover,
  .ccard:hover,
  .nav__cta:hover,
  .fab-wa:hover { transform: none; }
}

/* Bewegungsempfindliche Nutzer: Animationen reduzieren, Inhalt bleibt */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
