@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Syne:wght@400;500;600;700;800&display=swap');

/* ─── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Syne', sans-serif;
  background: #f0ece4;
  color: #0f0f0f;
  overflow-x: hidden;
  cursor: default;
  overflow-y: scroll;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 10px; height: 10px;
  background: #c0201e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(192,32,30,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.25s, height 0.25s;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  mix-blend-mode: normal;
  background: transparent;
  transition: background 0.4s, border-color 0.4s;
}
.nav.solid {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(192,32,30,0.3);
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
}
.nav-brand-mark {
  width: 38px; height: 38px;
  background: #c0201e;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: #fff;
  flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff;
}
.nav-brand-sub {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(192,32,30,0.9);
}
.nav-menu {
  display: flex; align-items: center; gap: 40px;
}
.nav-menu a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative; transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #c0201e;
  transition: width 0.25s;
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-contact {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff !important;
  background: #c0201e;
  padding: 10px 22px;
  transition: background 0.2s !important;
}
.nav-contact:hover { background: #e02424 !important; }
.nav-contact::after { display: none !important; }
.nav-burger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.nav-burger span { width: 22px; height: 1.5px; background: #fff; display: block; transition: 0.3s; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #0f0f0f;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.45) saturate(0.8);
}
/* Diagonal dark strip from left */
.hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg,
      rgba(15,15,15,0.97) 0%,
      rgba(15,15,15,0.82) 45%,
      rgba(15,15,15,0.20) 75%,
      transparent 100%
    );
}
/* Red vertical accent bar */
.hero-bar {
  position: absolute;
  left: 42%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 10%, #c0201e 40%, #c0201e 60%, transparent 90%);
  opacity: 0.7;
}
.hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 80px;
  max-width: 820px;
}
.hero-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #c0201e;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: #c0201e; }
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-h1 em {
  font-style: italic;
  color: #c0201e;
  display: block;
}
.hero-body {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #c0201e; color: #fff;
  padding: 16px 36px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #e02424; transform: translateX(3px); }
.btn-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-link:hover { color: #fff; }
.hero-counter {
  position: absolute;
  right: 80px; bottom: 80px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 20px;
}
.hero-counter-item { text-align: right; }
.hero-counter-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; line-height: 1;
  color: #fff;
}
.hero-counter-num sup { font-size: 1.2rem; color: #c0201e; }
.hero-counter-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-text {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDrop 1.8s infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  background: #c0201e;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
}
.marquee-track span::after {
  content: '·';
  padding-left: 32px;
  opacity: 0.5;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ────────────────────────────────────────────── */
.section { padding: 120px 80px; }
.section-dark { background: #0f0f0f; }
.section-cream { background: #f0ece4; }
.section-off { background: #e8e2d8; }

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #c0201e; margin-bottom: 20px;
}
.tag::before { content: ''; width: 32px; height: 1.5px; background: #c0201e; }

.display-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.display-title em { font-style: italic; color: #c0201e; }
.display-title.light { color: #fff; }

.body-text {
  font-size: 15px; font-weight: 400;
  color: #666; line-height: 1.8;
  max-width: 560px;
}
.body-text.light { color: rgba(255,255,255,0.5); }

/* ─── SERVICES ────────────────────────────────────────────── */
.services-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  min-height: 600px;
}
.services-left {
  background: #0f0f0f;
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.services-number {
  font-family: 'DM Serif Display', serif;
  font-size: 10rem; line-height: 0.85;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.04em;
  user-select: none;
}
.services-right { background: #f0ece4; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.svc {
  padding: 48px 44px;
  border-bottom: 1px solid #d8d2c8;
  border-right: 1px solid #d8d2c8;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
  text-decoration: none; color: inherit;
}
.svc:nth-child(even) { border-right: none; }
.svc:nth-last-child(-n+2) { border-bottom: none; }
.svc::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: #c0201e;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.svc:hover { background: #0f0f0f; }
.svc:hover::before { transform: scaleY(1); }
.svc:hover .svc-num { color: rgba(255,255,255,0.06); }
.svc:hover .svc-title { color: #fff; }
.svc:hover .svc-desc { color: rgba(255,255,255,0.45); }
.svc:hover .svc-arrow { color: #c0201e; transform: translateX(4px); }
.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem; line-height: 1;
  color: #d8d2c8; transition: color 0.35s;
}
.svc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; line-height: 1.2;
  transition: color 0.35s;
}
.svc-desc {
  font-size: 13px; color: #888; line-height: 1.7;
  flex: 1; transition: color 0.35s;
}
.svc-arrow {
  font-size: 18px; color: #bbb;
  transition: color 0.35s, transform 0.35s;
  align-self: flex-end;
}

/* ─── PHOTO STRIP ─────────────────────────────────────────── */
.strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 480px;
  gap: 4px;
}
.strip-img {
  position: relative; overflow: hidden; cursor: zoom-in;
}
.strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0,0,1);
}
.strip-img:hover img { transform: scale(1.06); }
.strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(15,15,15,0.88), transparent);
  opacity: 0; transition: opacity 0.3s;
  transform: translateY(6px); transition: opacity 0.3s, transform 0.3s;
}
.strip-img:hover .strip-caption { opacity: 1; transform: translateY(0); }
.strip-caption span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.strip-caption h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #fff; margin-top: 3px;
}

/* ─── BEFORE / AFTER ──────────────────────────────────────── */
.ba-layout {
  padding: 120px 80px;
  background: #0f0f0f;
}
.ba-header { margin-bottom: 64px; }
.ba-pairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ba-pair {
  position: relative;
}
.ba-pair-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.ba-side { position: relative; overflow: hidden; cursor: zoom-in; }
.ba-side img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.ba-side:hover img { transform: scale(1.05); }
.ba-badge {
  position: absolute; top: 0; left: 0;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px;
}
.ba-badge.v { background: rgba(15,15,15,0.85); color: rgba(255,255,255,0.7); }
.ba-badge.n { background: #c0201e; color: #fff; }
.ba-info {
  background: #191919;
  padding: 16px 18px;
}
.ba-info h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: #fff; margin-bottom: 2px;
}
.ba-info p {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #c0201e;
}

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-visual {
  position: relative; overflow: hidden;
  background: #0f0f0f;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.75;
}
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,32,30,0.15) 0%, transparent 60%);
}
.about-stat-box {
  position: absolute;
  bottom: 48px; right: -1px;
  background: #c0201e;
  padding: 28px 32px;
}
.about-stat-box-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem; line-height: 1; color: #fff;
}
.about-stat-box-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-top: 4px;
}
.about-content {
  background: #f0ece4;
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-body { font-size: 15px; color: #666; line-height: 1.85; margin-bottom: 16px; }
.about-pillars {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 0;
}
.about-pillar {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #d8d2c8;
}
.about-pillar:last-child { border-bottom: 1px solid #d8d2c8; }
.about-pillar-n {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: #d8d2c8; line-height: 1; flex-shrink: 0;
  width: 36px;
}
.about-pillar h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.about-pillar p { font-size: 13px; color: #888; line-height: 1.65; }

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 80px;
  background: #0f0f0f;
  border-top: 1px solid rgba(192,32,30,0.25);
}
.cta-band-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: #fff; line-height: 1.05;
  letter-spacing: -0.02em;
}
.cta-band-title em { font-style: italic; color: #c0201e; }
.btn-outline-red {
  display: inline-flex; align-items: center; gap: 12px;
  background: #c0201e; color: #fff;
  padding: 16px 36px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-outline-red:hover { background: #e02424; transform: translateY(-1px); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #080808;
  color: rgba(255,255,255,0.45);
  padding: 72px 80px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.footer-brand-desc {
  font-size: 13px; line-height: 1.8;
  margin-top: 20px; max-width: 240px;
}
.footer-col h6 {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a::before { content: '→'; font-size: 11px; color: #c0201e; }
.footer-contact-line {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; margin-bottom: 10px;
}
.footer-contact-line span:first-child { color: #c0201e; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 11px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  width: 100%; min-height: 420px;
  background: #0f0f0f;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}
.page-hero-wash {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0f0f0f 0%, rgba(15,15,15,0.4) 60%, transparent 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  padding: 80px 80px 72px;
  width: 100%;
  padding-top: 64px; /* nav height */
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb .sep { color: rgba(255,255,255,0.15); }
.page-hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 0.96; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 20px;
}
.page-hero-h1 em { font-style: italic; color: #c0201e; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 520px; line-height: 1.75; }

/* ─── DIENST DETAIL ───────────────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  padding: 100px 80px;
  background: #f0ece4;
}
.detail-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
.detail-content p { font-size: 14px; color: #666; line-height: 1.88; margin-bottom: 14px; }
.detail-img { width: 100%; height: 340px; object-fit: cover; margin: 32px 0; }
.detail-list { margin: 24px 0; }
.detail-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid #d8d2c8; font-size: 14px;
}
.detail-list li::before { content: '→'; color: #c0201e; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.detail-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-box { background: #0f0f0f; padding: 36px; color: #fff; }
.sidebar-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; margin-bottom: 12px;
}
.sidebar-box p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.7; }
.sidebar-tel {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #c0201e; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-svs { background: #e8e2d8; padding: 28px; }
.sidebar-svs h4 {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 16px; color: #888;
}
.sidebar-svs li + li { margin-top: 8px; }
.sidebar-svs li a {
  font-size: 13px; color: #555;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.sidebar-svs li a::before { content: '→'; color: #c0201e; font-size: 11px; }
.sidebar-svs li a:hover { color: #0f0f0f; }

/* ─── REFERENZEN PAGE ─────────────────────────────────────── */
.ref-layout { padding: 80px; background: #f0ece4; }
.ref-layout.dark { background: #0f0f0f; }
.ba-fullgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 60px;
}
.ba-card { background: #191919; }
.ba-card-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-card-side { position: relative; overflow: hidden; cursor: zoom-in; }
.ba-card-side img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.45s; }
.ba-card-side:hover img { transform: scale(1.06); }
.ba-card-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center; padding: 5px 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.ba-card-badge.v { background: rgba(15,15,15,0.88); color: rgba(255,255,255,0.65); }
.ba-card-badge.n { background: #c0201e; color: #fff; }
.ba-card-info { padding: 14px 16px; }
.ba-card-info h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: #fff; margin-bottom: 2px;
}
.ba-card-info p { font-size: 10px; color: #c0201e; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.neu-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
  margin-top: 60px;
}
.neu-cell { position: relative; overflow: hidden; cursor: zoom-in; }
.neu-cell.tall { grid-row: span 2; }
.neu-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.neu-cell:hover img { transform: scale(1.07); }
.neu-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
}
.neu-cell:hover .neu-overlay { opacity: 1; }
.neu-overlay h4 { font-family: 'DM Serif Display', serif; font-size: 1rem; color: #fff; margin-bottom: 2px; }
.neu-overlay span { font-size: 10px; color: #c0201e; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── KONTAKT PAGE ────────────────────────────────────────── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.kontakt-info {
  background: #f0ece4;
  padding: 100px 80px;
}
.kontakt-info-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.kontakt-info-sub { font-size: 14px; color: #888; line-height: 1.75; margin-bottom: 52px; }
.kinfo-items { display: flex; flex-direction: column; gap: 24px; }
.kinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.kinfo-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: #c0201e;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}
.kinfo-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #c0201e; margin-bottom: 4px;
}
.kinfo-value { font-size: 14px; line-height: 1.6; color: #333; }
.kinfo-value a { color: #333; transition: color 0.2s; }
.kinfo-value a:hover { color: #c0201e; }
.khours {
  margin-top: 48px;
  border-top: 2px solid #d8d2c8;
  padding-top: 28px;
}
.khours-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #c0201e; margin-bottom: 16px;
}
.khours-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid #d8d2c8;
}
.khours-row:last-child { border-bottom: none; }
.kontakt-form-wrap {
  background: #0f0f0f;
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.kontakt-form-wrap h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: #fff; margin-bottom: 8px;
}
.kontakt-form-wrap > p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff; font-family: 'Syne', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg select option { background: #1a1a1a; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: #c0201e; }
.fg textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: #c0201e; color: #fff; border: none;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: #e02424; }
.form-note { font-size: 10px; color: rgba(255,255,255,0.2); text-align: center; margin-top: 10px; }

/* ─── ÜBER UNS PAGE ───────────────────────────────────────── */
.ueber-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.ueber-photo { position: relative; overflow: hidden; min-height: 500px; }
.ueber-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ueber-photo-badge {
  position: absolute; bottom: 48px; right: 0;
  background: #c0201e; color: #fff;
  padding: 24px 32px; text-align: center;
}
.ueber-photo-badge strong {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem; display: block; line-height: 1;
}
.ueber-photo-badge span { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.ueber-text-wrap {
  padding: 100px 80px;
  background: #f0ece4;
  display: flex; flex-direction: column; justify-content: center;
}
.ueber-text-wrap p { font-size: 14px; color: #666; line-height: 1.88; margin-bottom: 14px; }
.ueber-pillars { margin-top: 40px; }
.ueber-pillar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid #d8d2c8;
}
.ueber-pillar:last-child { border-bottom: 1px solid #d8d2c8; }
.ueber-pillar-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #c0201e;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff;
}
.ueber-pillar h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.ueber-pillar p { font-size: 13px; color: #888; line-height: 1.6; }

.werte-band { padding: 100px 80px; background: #0f0f0f; }
.werte-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 60px;
}
.wert {
  background: #0f0f0f; padding: 52px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.wert:hover { border-top-color: #c0201e; }
.wert-n {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; line-height: 1; color: #fff; margin-bottom: 10px;
}
.wert-n sup { font-size: 1.5rem; color: #c0201e; }
.wert h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.wert p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ─── LIGHTBOX ────────────────────────────────────────────── */
.lb {
  display: none; position: fixed; inset: 0;
  background: rgba(8,8,8,0.97); z-index: 9999;
  align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: #c0201e; color: #fff; border: none; cursor: pointer;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
}

/* ─── LEGAL ───────────────────────────────────────────────── */
.legal { padding: 100px 80px; max-width: 840px; }
.legal h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin: 40px 0 14px; }
.legal h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #c0201e; margin: 28px 0 8px; }
.legal p  { font-size: 14px; color: #666; line-height: 1.85; margin-bottom: 12px; }
.legal a  { color: #c0201e; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */

/* ── PROJECTS ROW (Startseite) ────────────────────────────── */
.projects-row-section {
  padding: 100px 80px;
  background: #0f0f0f;
}
.projects-row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.projects-row-link {
  flex-shrink: 0;
  margin-bottom: 6px; /* align with baseline */
}
.projects-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.proj-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
}
.proj-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0, 0, 1);
}
.proj-item:hover img { transform: scale(1.08); }
.proj-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(15,15,15,0.92) 0%, transparent 100%);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.proj-item:hover .proj-caption { opacity: 1; transform: translateY(0); }
.proj-caption span {
  display: block;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #c0201e; margin-bottom: 3px;
}
.proj-caption h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem; color: #fff;
  line-height: 1.2;
}

/* Responsive */

/* ── SERVICE CARDS WITH IMAGE ─────────────────────────────── */
.svc-cards-section {
  background: #0f0f0f;
  padding: 100px 80px;
}
.svc-cards-header {
  margin-bottom: 60px;
}
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* Wide card spans full row */
.svc-card--wide {
  grid-column: span 3;
}
.svc-card--wide .svc-card-img {
  height: 320px;
}
.svc-card--wide .svc-card-body {
  display: flex;
  align-items: center;
  gap: 80px;
}
.svc-card--wide .svc-card-desc {
  max-width: 560px;
}
.svc-card--wide .svc-card-cta {
  margin-top: 0;
  flex-shrink: 0;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: #161616;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.3s;
}
.svc-card:hover { background: #1e1e1e; }

/* Red left border reveal on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: #c0201e;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.svc-card:hover::before { transform: scaleY(1); }

/* Image container */
.svc-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0, 0, 1);
  filter: saturate(0.75) brightness(0.85);
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.07);
  filter: saturate(0.9) brightness(0.95);
}

/* Subtle gradient at bottom of image */
.svc-card-wash {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(22,22,22,0.7) 100%
  );
  pointer-events: none;
}

/* Text body */
.svc-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.svc-card:hover .svc-card-title { color: #fff; }

.svc-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  flex: 1;
}
.svc-card-cta {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c0201e;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s, color 0.2s;
}
.svc-card:hover .svc-card-cta {
  gap: 14px;
  color: #e03030;
}

/* Responsive */

/* ── SERVICE ACCORDION ────────────────────────────────────── */
.svc-accordion-section {
  background: #0a0a0a;
  padding: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: 64px;
}
.svc-accordion-header {
  padding: 48px 80px 32px;
}

/* The accordion strip */
.svc-accordion {
  display: flex;
  height: 580px;
  width: 100%;
  gap: 2px;
  background: #000;
}

/* Each panel */
.svc-panel {
  position: relative;
  flex: 1;               /* all equal by default */
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: flex 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Hover: the active panel expands */
.svc-accordion:hover .svc-panel { flex: 0.35; }
.svc-accordion .svc-panel:hover { flex: 4; }

/* Photo */
.svc-panel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.4) brightness(0.35);
  transition: filter 0.65s, transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: center;
}
.svc-panel:hover .svc-panel-img {
  filter: saturate(0.9) brightness(0.75);
  transform: scale(1.04);
}

/* Dark gradient wash */
.svc-panel-wash {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.65s;
}
.svc-panel:hover .svc-panel-wash {
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.4) 45%,
    rgba(10,10,10,0.1) 100%
  );
}

/* Vertical label (visible when collapsed) */
.svc-panel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: opacity 0.25s, color 0.3s;
  pointer-events: none;
  z-index: 2;
}
.svc-panel:hover .svc-panel-label {
  opacity: 0;
  transition: opacity 0.15s;
}

/* Content shown on hover */
.svc-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 44px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s 0.2s, transform 0.35s 0.2s;
  pointer-events: none;
}
.svc-panel:hover .svc-panel-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.svc-panel-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* Red line above title */
.svc-panel-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #c0201e;
  margin-bottom: 16px;
}

.svc-panel-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 24px;
}

.svc-panel-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c0201e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.svc-panel:hover .svc-panel-cta { gap: 14px; }

/* Responsive: stack vertically on small screens */

/* ── GALLERY WOW ──────────────────────────────────────────── */
.gallery-wow-section {
  background: #0a0a0a;
  padding: 0;
  overflow: hidden;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: 64px;
}
.gallery-wow-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  padding: 48px 80px 0;
}
.gallery-wow-all { flex-shrink: 0; margin-bottom: 4px; }

/* CSS Grid with named areas for editorial asymmetry */
.gallery-wow-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.6fr 1fr 1.4fr;
  grid-template-rows: 300px 260px;
  gap: 4px;
  perspective: 1200px;
}

/* Grid placement */
.gwi-tall-left  { grid-column: 1; grid-row: 1 / 3; }
.gwi-top-mid    { grid-column: 2; grid-row: 1; }
.gwi-top-right  { grid-column: 3 / 5; grid-row: 1; }
.gwi-bot-wide   { grid-column: 2 / 4; grid-row: 2; }
.gwi-bot-right  { display: none; } /* hidden – grid already full */
.gwi-far-right  { grid-column: 4; grid-row: 2; }

/* Each item */
.gwi {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #111;
  /* 3D tilt on hover */
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
  transform-style: preserve-3d;
}
.gwi:hover {
  z-index: 2;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transform: scale(1.025) translateY(-4px);
}

/* Photo */
.gwi img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.75);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s;
}
.gwi:hover img {
  transform: scale(1.07);
  filter: saturate(0.95) brightness(0.88);
}

/* Gradient */
.gwi::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.9) 0%,
    rgba(10,10,10,0.2) 50%,
    transparent 100%
  );
  transition: opacity 0.4s;
}
.gwi:hover::before { opacity: 0.7; }

/* Big transparent number — decorative */
.gwi-num {
  position: absolute;
  top: 16px; right: 20px;
  z-index: 2;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.4s;
}
.gwi:hover .gwi-num { color: rgba(192,32,30,0.12); }

/* Info label */
.gwi-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 24px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.35s 0.05s, transform 0.35s 0.05s;
}
.gwi:hover .gwi-info {
  opacity: 1;
  transform: translateY(0);
}
.gwi-info span {
  display: block;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #c0201e; margin-bottom: 4px;
}
.gwi-info h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #fff; line-height: 1.2;
}

/* Red bottom border that draws on hover */
.gwi::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #c0201e;
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.gwi:hover::after { transform: scaleX(1); }

/* JS tilt effect enhancement */
.gwi.tilt {
  transition: transform 0.15s ease, box-shadow 0.15s;
}

/* Responsive */

/* ── ABOUT WOW ────────────────────────────────────────────── */
.about-wow {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: #0a0a0a;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Full-bleed photo on the left half */
.about-wow-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.about-wow-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.45);
  transition: transform 8s ease, filter 8s ease;
}
.about-wow:hover .about-wow-photo {
  transform: scale(1.04);
  filter: saturate(0.65) brightness(0.5);
}

/* Diagonal gradient bleeding into right panel */
.about-wow-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      transparent 0%,
      transparent 55%,
      rgba(10,10,10,0.85) 75%,
      #0a0a0a 100%
    ),
    linear-gradient(to bottom,
      rgba(10,10,10,0.4) 0%,
      transparent 30%,
      transparent 70%,
      rgba(10,10,10,0.6) 100%
    );
}

/* Giant ghost word behind everything */
.about-wow-ghost {
  position: absolute;
  bottom: -0.15em;
  left: -0.05em;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Floating stat chips */
/* Stats strip — right edge of the about photo */
.about-wow-chips {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(10,10,10,0.92);
  border-left: 2px solid #c0201e;
  min-width: 130px;
}
.about-wow-chip {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: static;
  animation: none;
}
.about-wow-chip:last-child { border-bottom: none; }
.awc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; line-height: 1;
  color: #fff; margin-bottom: 4px;
}
.awc-num sup { font-size: 1rem; color: #c0201e; }
.awc-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Right side: text content */
.about-wow-content {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.about-wow-text {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 460px;
}

/* Three value columns */
.about-wow-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.awv { display: flex; flex-direction: column; gap: 10px; }
.awv-line {
  width: 24px; height: 2px;
  background: #c0201e;
}
.awv h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #fff;
}
.awv p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

/* Responsive */

/* ── LOGO SVG ─────────────────────────────────────────────── */
.nav-logo-svg {
  height: 48px;
  width: auto;
  display: block;
  /* Text is dark (#0e1425) → make it white. Red (#8a0808) stays red.
     We use a custom filter: saturate(0) makes text grey, then invert+brightness makes it white,
     but we keep hue for red. Simplest: just invert the whole thing — red becomes cyan.
     Better: use sepia+saturate to shift dark→white keeping red.
     Best approach: recolor via CSS filter chain */
  filter: none;
  transition: opacity 0.2s;
}
.nav-logo-svg:hover { opacity: 0.82; }

/* Footer version */
.nav-logo-svg--footer {
  height: 26px;
  margin-bottom: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
}




/* Nav is transparent over hero, solid over other sections —
   sections get padding-top: 72px so content clears the nav */
.svc-accordion-section,
.gallery-wow-section,
.about-wow {
  padding-top: 72px;
  box-sizing: border-box;
}

/* ── RED CTA PANEL in accordion ──────────────────────────── */
.svc-panel--cta {
  background: #c0201e;
  flex: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: flex 0.65s cubic-bezier(0.76, 0, 0.24, 1), background 0.3s;
}
.svc-accordion:hover .svc-panel--cta { flex: 0.5 !important; }
.svc-accordion .svc-panel--cta:hover { flex: 2 !important; background: #e02424; }

.svc-panel--cta::before,
.svc-panel--cta::after { display: none; }

/* Decorative bg text */
.svc-panel--cta .svc-panel-img { display: none; }
.svc-panel--cta .svc-panel-wash { display: none; }
.svc-panel--cta .svc-panel-label { display: none; }
.svc-panel--cta .svc-panel-content { display: none; }

.svc-panel-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  z-index: 2;
  position: relative;
}
.svc-panel-cta-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.svc-panel-cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: #fff; line-height: 1.2;
  white-space: nowrap;
}
.svc-panel-cta-arrow {
  font-size: 2rem; color: rgba(255,255,255,0.8);
  transition: transform 0.3s;
}
.svc-panel--cta:hover .svc-panel-cta-arrow {
  transform: translateX(8px);
}


/* About-wow inner grid (visual + content) */
.about-wow-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Header above the grid */
.about-wow-header {
  padding: 48px 80px 32px;
  flex-shrink: 0;
}

/* Visual fills its cell fully */
.about-wow-visual {
  position: relative;
  overflow: hidden;
}
.about-wow-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.45);
}

/* Content fills its cell */
.about-wow-content {
  padding: 40px 80px 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}


/* ── ÜBER UNS (Startseite) — Header oben, Inhalt darunter ── */
.about-new {
  background: #0a0a0a;
  height: 100svh;
  scroll-margin-top: 64px;
  display: flex;
  flex-direction: column;
}

/* Header: oben, volle Breite */
.about-new-header {
  padding: 48px 80px 32px;
  flex-shrink: 0;
}

/* Body: füllt den Rest */
.about-new-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: 0;
}

/* Foto */
.about-new-img {
  position: relative;
  overflow: hidden;
}
.about-new-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.45);
}
.about-new-chips {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(10,10,10,0.92);
  border-left: 2px solid #c0201e;
  min-width: 130px;
}

/* Text */
.about-new-text {
  padding: 40px 80px 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}


/* ── GALLERY CTA TILE ─────────────────────────────────────── */
.gwi-cta {
  background: #c0201e !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.gwi-cta img,
.gwi-cta::before,
.gwi-cta::after { display: none !important; }
.gwi-cta:hover { background: #e02424 !important; transform: none; box-shadow: none; }

.gwi-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 12px;
}
.gwi-cta-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.gwi-cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: #fff;
  line-height: 1.2;
}
.gwi-cta-arrow {
  font-size: 2rem; color: rgba(255,255,255,0.8);
  transition: transform 0.3s;
}
.gwi-cta:hover .gwi-cta-arrow { transform: translateX(8px); }

/* ── SERVICE GRID (Startseite) — gleiche Struktur wie Galerie ── */
.svc-grid-section {
  background: #0a0a0a;
  height: 100svh;
  scroll-margin-top: 64px;
  display: flex;
  flex-direction: column;
}
.svc-grid-header {
  padding: 48px 80px 32px;
  flex-shrink: 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.6fr 1fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  flex: 1;
  min-height: 0;
}

/* Grid placement — same as gallery */
.sgi-tall-left  { grid-column: 1; grid-row: 1 / 3; }
.sgi-top-mid    { grid-column: 2; grid-row: 1; }
.sgi-top-right  { grid-column: 3 / 5; grid-row: 1; }
.sgi-bot-wide   { grid-column: 2 / 4; grid-row: 2; }
.sgi-bot-right  { display: none; }
.sgi-far-right  { grid-column: 4; grid-row: 2; }

/* Each tile */
.sgi {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: #111;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s;
  transform-style: preserve-3d;
}
.sgi:hover {
  z-index: 2;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  transform: scale(1.025) translateY(-4px);
}
.sgi img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.75);
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s;
}
.sgi:hover img {
  transform: scale(1.07);
  filter: saturate(0.95) brightness(0.88);
}
.sgi-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 55%);
  opacity: 0.6; transition: opacity 0.4s;
}
.sgi:hover .sgi-overlay { opacity: 0.85; }
.sgi-num {
  position: absolute; top: 16px; right: 20px; z-index: 2;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.4s;
}
.sgi:hover .sgi-num { color: rgba(192,32,30,0.12); }
.sgi-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 20px 24px;
  transform: translateY(6px); opacity: 0;
  transition: opacity 0.35s 0.05s, transform 0.35s 0.05s;
}
.sgi:hover .sgi-info { opacity: 1; transform: translateY(0); }
.sgi-info span {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #c0201e; margin-bottom: 4px;
}
.sgi-info h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #fff; line-height: 1.2;
}
.sgi::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #c0201e; z-index: 4;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}
.sgi:hover::after { transform: scaleX(1); }

/* Red CTA tile */
.sgi-cta {
  background: #c0201e !important;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.sgi-cta img, .sgi-cta .sgi-overlay,
.sgi-cta .sgi-num, .sgi-cta .sgi-info,
.sgi-cta::after { display: none !important; }
.sgi-cta:hover { background: #e02424 !important; transform: none; box-shadow: none; }

.sgi-cta-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 32px; gap: 12px;
}

/* Responsive */

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — sauber & konsolidiert
   Breakpoints: 1100px | 860px | 600px
   ════════════════════════════════════════════════════════════ */

/* ── TABLET (≤1100px) ──────────────────────────────────────── */
@media (max-width: 1100px) {

  /* Nav */
  .nav { padding: 0 32px; }

  /* Hero counters */
  .hero-counter { right: 32px; bottom: 48px; gap: 20px; }

  /* Sections padding */
  .section { padding: 64px 40px; }
  .section-sm { padding: 48px 40px; }

  /* Service grid — 2 col */
  .svc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .sgi-tall-left  { grid-column: 1 / 3; grid-row: 1; }
  .sgi-top-mid    { grid-column: 1; grid-row: 2; }
  .sgi-top-right  { grid-column: 2; grid-row: 2; }
  .sgi-bot-wide   { grid-column: 1; grid-row: 3; }
  .sgi-bot-right  { display: none; }
  .sgi-far-right  { grid-column: 2; grid-row: 3; display: flex; }

  /* Gallery grid — 2 col */
  .gallery-wow-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gwi-tall-left  { grid-column: 1 / 3; grid-row: 1; }
  .gwi-top-mid    { grid-column: 1; grid-row: 2; }
  .gwi-top-right  { grid-column: 2; grid-row: 2; }
  .gwi-bot-wide   { grid-column: 1; grid-row: 3; }
  .gwi-bot-right  { display: none; }
  .gwi-far-right  { grid-column: 2; grid-row: 3; display: flex; }

  /* About new */
  .about-new-body { grid-template-columns: 1fr; }
  .about-new-img  { min-height: 260px; }
  .about-new-text { padding: 36px 40px; }

  /* Über uns page */
  .ueber-layout { grid-template-columns: 1fr; }
  .ueber-photo  { min-height: 320px; }
  .ueber-text-wrap { padding: 56px 40px; }
  .werte-row { grid-template-columns: repeat(2, 1fr); }

  /* Dienst detail */
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .detail-sidebar { position: static; }

  /* Kontakt */
  .kontakt-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Ref page */
  .ba-fullgrid { grid-template-columns: repeat(2, 1fr); }
  .neu-masonry { grid-template-columns: repeat(2, 1fr); }
  .neu-cell.tall { grid-row: span 1; }
}

/* ── MOBILE (≤860px) ───────────────────────────────────────── */
@media (max-width: 860px) {

  /* Nav: burger */
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: #0f0f0f;
    padding: 28px 24px; gap: 20px;
    border-top: 1px solid rgba(192,32,30,0.3);
    z-index: 499;
  }
  .nav-burger { display: flex; }
  .nav { padding: 0 20px; }

  /* Hero */
  .hero-inner { padding: 0 24px 56px; }
  .hero-h1 { font-size: 3rem; }
  .hero-counter { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-bar { display: none; }

  /* Section headers */
  .svc-grid-header { padding: 32px 24px 20px; }
  .gallery-wow-header { padding: 32px 24px 0; flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-new-header { padding: 32px 24px 20px; }

  /* Service + gallery grids: stay 2-col but shorter */
  .svc-grid {
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-wow-grid {
    grid-template-rows: repeat(3, 180px);
  }

  /* Section heights */
  .svc-grid-section,
  .gallery-wow-section,
  .about-new { height: auto; min-height: 100svh; }

  /* Page hero */
  .page-hero-inner { padding: 40px 24px 48px; }
  .page-hero-h1 { font-size: 2.4rem; }

  /* CTA band */
  .cta-band {
    flex-direction: column;
    padding: 56px 24px;
    gap: 32px;
  }
  .cta-band-title { font-size: 2.2rem; }

  /* About new */
  .about-new-text { padding: 32px 24px; }
  .about-wow-values { grid-template-columns: 1fr; gap: 14px; }

  /* Über uns page */
  .ueber-text-wrap { padding: 48px 24px; }
  .werte-band { padding: 64px 24px; }
  .werte-row { grid-template-columns: 1fr 1fr; }

  /* Referenzen */
  .ref-layout { padding: 56px 24px; }
  .ba-fullgrid { grid-template-columns: 1fr; }
  .neu-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .vnd-pair { height: 240px; }
  .ref-section-head { padding: 56px 24px 0; flex-direction: column; align-items: flex-start; }

  /* Kontakt */
  .kontakt-info { padding: 56px 24px; }
  .kontakt-form-wrap { padding: 48px 24px; }

  /* Dienst */
  .detail-layout { padding: 56px 24px; }
  .svd-intro { grid-template-columns: 1fr; }
  .svd-intro-img { min-height: 320px; }
  .svd-intro-text { padding: 48px 24px; }
  .svd-leistungen { padding: 56px 0; }
  .svd-leistungen-inner { padding: 0 24px; }
  .svd-li-grid { grid-template-columns: 1fr; }
  .svd-process { grid-template-columns: 1fr; }
  .svd-process-left { padding: 56px 24px 36px; }
  .svd-process-right { padding: 36px 24px 56px; }
  .svd-text-block { padding: 56px 0; }
  .svd-text-block-inner { padding: 0 24px; }
  .svd-text-cols { grid-template-columns: 1fr; gap: 16px; }

  /* Ueber uns page */
  .uu-intro { grid-template-columns: 1fr; }
  .uu-intro-visual { min-height: 280px; }
  .uu-intro-text { padding: 48px 24px 56px; }
  .uu-stats { grid-template-columns: repeat(3, 1fr); }
  .uu-content-block { grid-template-columns: 1fr; }
  .uu-content-block.reverse { direction: ltr; }
  .uu-block-img { min-height: 280px; }
  .uu-block-text { padding: 48px 24px; }

  /* Footer */
  .footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Impressum / Datenschutz */
  .legal { padding: 56px 24px; }

  /* Dienstleistungen page */
  .ld-accordion-label { padding: 0 24px 32px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
}

/* ── SMALL MOBILE (≤600px) ──────────────────────────────────── */
@media (max-width: 600px) {

  /* Hero */
  .hero-h1 { font-size: 2.6rem; line-height: 1.05; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Service + gallery: single column */
  .svc-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 160px);
  }
  .sgi { grid-column: 1 !important; grid-row: auto !important; display: flex !important; }
  .sgi-bot-right { display: flex !important; }

  .gallery-wow-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 160px);
  }
  .gwi { grid-column: 1 !important; grid-row: auto !important; }
  .gwi-bot-right { display: flex !important; }

  /* Display titles */
  .display-title { font-size: 2rem; }
  .page-hero-h1 { font-size: 2rem; }
  .cta-band-title { font-size: 1.8rem; }

  /* Werte */
  .werte-row { grid-template-columns: 1fr 1fr; }

  /* Über uns stats */
  .uu-stats { grid-template-columns: 1fr 1fr; }
  .uu-stat { padding: 28px 20px; }

  /* Neu masonry: single col */
  .neu-masonry { grid-template-columns: 1fr; }
  .neu-cell.wide { grid-column: span 1; }
  .vnd-pair { height: 200px; }

  /* Footer: single col */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* About chips */
  .about-new-chips { position: static; transform: none; flex-direction: row; border-left: none; border-top: 2px solid #c0201e; }
  .about-wow-chip { border-right: 1px solid rgba(255,255,255,0.06); border-bottom: none; flex: 1; }

  /* Kontakt layout */
  .kontakt-layout { grid-template-columns: 1fr; }

  /* Ba fullgrid */
  .ba-fullgrid { grid-template-columns: 1fr; }

  /* Svd li grid */
  .svd-li-grid { grid-template-columns: 1fr; }
}
