/* ============================================================
   MARVIDEO — Finn Marung, Videograf Berlin
   ============================================================ */

/* === DARK MODE === */
[data-theme="dark"] {
  --bg: #0C0C0C;
  --text: #F0F0EC;
  --text-muted: rgba(240,240,236,0.45);
  --border: rgba(240,240,236,0.09);
  --surface: #161616;
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(12,12,12,0.92);
}

[data-theme="dark"] .page-loader {
  background: #0C0C0C;
}

[data-theme="dark"] .page-loader__logo {
  color: #F0F0EC;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: auto;
}

body {
  font-family: 'Syne', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === VARIABLES === */
:root {
  --bg: #EDECEA;
  --text: #0A0A0A;
  --text-muted: #787870;
  --border: #D4D4CE;
  --surface: #E4E3E0;
  --white: #EDECEA;
  --font: 'Syne', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);

  --container: 1440px;
  --gutter: clamp(24px, 5vw, 80px);

  --nav-h: 72px;
}

/* === CUSTOM CURSOR === */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  border-radius: 50%;
  will-change: transform;
}

.cursor-ring,
.cursor-label {
  display: none !important;
}

.cursor-dot {
  display: none !important;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1.5px solid #ffffff;
  top: -22px;
  left: -22px;
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              top 0.35s var(--ease-out),
              left 0.35s var(--ease-out),
              border-color 0.2s,
              background-color 0.2s;
}

.cursor-ring.is-hovering {
  width: 72px;
  height: 72px;
  top: -36px;
  left: -36px;
  background: rgba(255,255,255,0.12);
}

.cursor-ring.is-view {
  width: 88px;
  height: 88px;
  top: -44px;
  left: -44px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-label {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-label.visible {
  opacity: 1;
}

/* === PAGE LOADER === */
.page-loader {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s var(--ease-in-out);
}

.page-loader__logo {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: #FAFAF8;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.page-loader__logo span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-out);
}

.page-loader.reveal .page-loader__logo span {
  transform: translateY(0);
}

.page-loader.exit {
  transform: translateY(-100%);
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  color: rgba(255,255,255,0.85);
  transition: background 0.4s, backdrop-filter 0.4s, color 0.4s;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.nav__logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 48px;
}

.lang-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 4px 0;
}

.lang-btn.active {
  opacity: 1;
}

.lang-divider {
  width: 1px;
  height: 12px;
  background: currentColor;
  opacity: 0.2;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) 0 clamp(24px, 4vh, 48px);
  overflow: hidden;
}

/* Film grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Video placeholder gradient */
.hero__video-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #1a1a1a 0%, #0A0A0A 60%);
  z-index: 0;
}

/* Subtle vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__showreel-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero:hover .hero__showreel-btn {
  opacity: 1;
}

.hero__play-ring {
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}

.hero__showreel-btn:hover .hero__play-ring {
  transform: scale(1.1);
  border-color: rgba(255,255,255,0.9);
}

.hero__play-ring svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-left: 3px;
}

.hero__play-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* === HERO TITLE — full-screen typographic layout === */
.hero__title {
  font-size: clamp(56px, 18vw, 300px);
  font-weight: 800;
  color: #FAFAF8;
  letter-spacing: -0.04em;
  line-height: 0.88;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* MAR — right-aligned, pushes to the right edge */
.hero__t-mar {
  display: block;
  text-align: right;
  padding-right: var(--gutter);
  overflow: hidden;
  transform: translateY(110%);
  transition: transform 1.4s 0.1s var(--ease-out);
}

/* VIDEO — left-aligned, pushes to the left edge */
.hero__t-video {
  display: block;
  text-align: left;
  padding-left: var(--gutter);
  overflow: hidden;
  transform: translateY(110%);
  transition: transform 1.4s 0.28s var(--ease-out);
}

/* Middle row — slogan + eyebrow in the diagonal gap */
.hero__title-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 1.5vh, 20px) var(--gutter);
  gap: 16px;
  overflow: hidden;
}

.hero__tagline {
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  overflow: hidden;
}

.hero__tagline span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s 0.45s var(--ease-out);
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__eyebrow span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.7s 0.55s var(--ease-out);
}

/* Meta row — location bottom */
.hero__meta {
  display: flex;
  justify-content: flex-end;
  padding: clamp(10px, 1.5vh, 20px) var(--gutter) 0;
}

.hero__location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(217,53,53,0.55);
  text-transform: uppercase;
}

.hero__scroll-hint {
  position: absolute;
  bottom: clamp(30px, 4vh, 56px);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Craft-mark underline in hero tagline */
.craft-mark {
  position: relative;
  display: inline;
}

.craft-mark::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D93535;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s 1.2s var(--ease-out);
}

.hero.loaded .craft-mark::after {
  transform: scaleX(1);
}

/* === HERO CINEMATIC OVERLAY === */

/* Obere Viewfinder-Ecken */
.hero__vf-tl,
.hero__vf-tr {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 3;
  pointer-events: none;
  top: calc(var(--nav-h) + 24px);
}

.hero__vf-tl {
  left: var(--gutter);
  border-top: 1.5px solid rgba(255,255,255,0.10);
  border-left: 1.5px solid rgba(255,255,255,0.10);
}

.hero__vf-tr {
  right: var(--gutter);
  border-top: 1.5px solid rgba(255,255,255,0.10);
  border-right: 1.5px solid rgba(255,255,255,0.10);
}

/* Feine horizontale Linie — mittig im leeren Bereich */
.hero__scan-line {
  position: absolute;
  top: 36%;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: rgba(255,255,255,0.055);
  z-index: 3;
  pointer-events: none;
}

/* Subtiler Lichtspot im oberen Bereich */
.hero__glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 40%;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.028) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* REC-Punkt — kleiner roter Aufnahme-Indikator */
.hero__rec {
  position: absolute;
  top: calc(var(--nav-h) + 27px);
  right: calc(var(--gutter) + 52px);
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__rec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D93535;
  opacity: 0.75;
  animation: recBlink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__rec-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.14);
  text-transform: uppercase;
}

@keyframes recBlink {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 0.12; }
}

/* === HERO LOADED STATE === */
.hero.loaded .hero__eyebrow span,
.hero.loaded .hero__title span,
.hero.loaded .hero__tagline span {
  transform: translateY(0);
}

/* === MARQUEE === */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg);
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee__dot {
  font-size: 8px;
  color: #D93535;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.85;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SECTION BASE === */
.section {
  padding: clamp(80px, 12vh, 160px) 0;
}

.section--flush-top {
  padding-top: 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 7vh, 96px);
  gap: 24px;
}

.section__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.section__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--text);
  transition: gap 0.3s var(--ease-out);
}

.section__link:hover {
  gap: 14px;
}

/* === WORK / PORTFOLIO === */
.work-grid {
  columns: 2;
  column-gap: 16px;
}

.work-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: block;
}

.work-item__thumb {
  width: 100%;
  display: block;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.work-item__thumb-inner {
  width: 100%;
  background: linear-gradient(135deg, #1c1c1c 0%, #111 50%, #1a1a1a 100%);
  transition: transform 0.7s var(--ease-out);
  position: relative;
}

/* Different aspect ratios for masonry feel */
.work-item:nth-child(1) .work-item__thumb-inner { aspect-ratio: 16/10; }
.work-item:nth-child(2) .work-item__thumb-inner { aspect-ratio: 3/4; }
.work-item:nth-child(3) .work-item__thumb-inner { aspect-ratio: 4/3; }
.work-item:nth-child(4) .work-item__thumb-inner { aspect-ratio: 16/10; }
.work-item:nth-child(5) .work-item__thumb-inner { aspect-ratio: 1/1; }
.work-item:nth-child(6) .work-item__thumb-inner { aspect-ratio: 3/2; }

/* Subtle pattern on placeholder thumbnails */
.work-item__thumb-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.work-item__thumb-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.work-item:hover .work-item__thumb-inner {
  transform: scale(1.04);
}

.work-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.work-item:hover .work-item__overlay {
  opacity: 1;
}

.work-item__info {
  padding: 16px 0 0;
}

.work-item__client {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}

.work-item__overlay .work-item__client {
  color: #FAFAF8;
  font-size: 20px;
  margin-bottom: 4px;
}

.work-item__category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-item__overlay .work-item__category {
  color: rgba(255,255,255,0.5);
}

.work-item__year {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

/* === SERVICES === */
.services-list {
  border-top: 1px solid var(--border);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}

.service-item::after {
  content: '';
  position: absolute;
  left: -var(--gutter);
  right: -var(--gutter);
  top: 0;
  bottom: 0;
  background: var(--surface);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: -1;
}

.service-item:hover::after {
  opacity: 1;
}

.service-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #D93535;
  padding-top: 6px;
}

.service-body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-name {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-detail {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.45s var(--ease-out),
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    padding-top 0.35s var(--ease-out);
  max-width: 520px;
}

.service-item:hover .service-detail {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 10px;
}


.service-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.3s;
  margin-left: 16px;
  padding-top: 4px;
}

.service-item:hover .service-arrow {
  transform: translate(4px, -4px);
  color: var(--text);
}

/* === ABOUT === */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.about__photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--surface);
  overflow: hidden;
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2a2a2a 0%, #111 60%, #1c1c1c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about__photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.2;
}

.about__photo-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.about__photo-border {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__name {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.about__bio {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  position: relative;
}

.about__bio::before {
  content: '\201C';
  position: absolute;
  top: -48px;
  left: -8px;
  font-size: 96px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: var(--font);
  opacity: 0.7;
}

.about__bio > * {
  position: relative;
  z-index: 1;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 8px;
}

.about__stat {
  background: var(--bg);
  padding: 24px 20px;
}

.about__stat-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* === GUARANTEE === */
.guarantee {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.guarantee__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 14vh, 160px) var(--gutter);
}

.guarantee__header {
  max-width: 800px;
  margin-bottom: clamp(56px, 9vh, 100px);
}

.guarantee__overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.guarantee__title {
  font-size: clamp(28px, 9vw, 140px);
  font-weight: 800;
  color: #FAFAF8;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 32px;
  position: relative;
}

/* "Risiko." with animated strikethrough */
.guarantee__title-struck {
  position: relative;
  display: inline-block;
}

.guarantee__title-struck::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  width: auto;
  top: 48%;
  height: 7px;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0s;
}

.guarantee__title.revealed .guarantee__title-struck::after {
  transform: scaleX(1);
  transition: transform 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* × symbol next to struck word */
.guarantee__title-cross {
  font-size: clamp(32px, 5vw, 72px);
  color: rgba(255,255,255,0.25);
  margin-left: 16px;
  vertical-align: middle;
  font-weight: 400;
}

.guarantee__sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 560px;
}

/* Three-column grid */
.guarantee__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: clamp(48px, 7vh, 80px);
}

.guarantee__item {
  padding: clamp(28px, 4vh, 48px) 0 clamp(28px, 4vh, 48px) 0;
  padding-right: clamp(24px, 3vw, 48px);
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee__item:first-child {
  padding-left: 0;
}

.guarantee__item:last-child {
  border-right: none;
  padding-right: 0;
}

.guarantee__item + .guarantee__item {
  padding-left: clamp(24px, 3vw, 48px);
}

.guarantee__item-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(217,53,53,0.7);
}

.guarantee__item-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #FAFAF8;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.guarantee__item-text {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Creative separator */
.guarantee__sep {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(40px, 6vh, 72px);
}

.guarantee__sep-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transition: transform 0.9s var(--ease-out);
}

.guarantee__sep-line--left  { transform-origin: left; }
.guarantee__sep-line--right { transform-origin: right; }

.guarantee__sep.revealed .guarantee__sep-line--left {
  transform: scaleX(1);
  transition-delay: 0.1s;
}

.guarantee__sep.revealed .guarantee__sep-line--right {
  transform: scaleX(1);
  transition-delay: 0.1s;
}

.guarantee__sep-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  flex-shrink: 0;
}

/* CTA button within guarantee */
.guarantee__cta {
  display: flex;
}

.guarantee__btn {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #FAFAF8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, gap 0.3s var(--ease-out);
}

.guarantee__btn:hover {
  border-color: #FAFAF8;
  background: rgba(255,255,255,0.06);
  gap: 18px;
}

.guarantee__btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
  .guarantee__grid {
    grid-template-columns: 1fr;
  }

  .guarantee__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-right: 0;
    padding-left: 0 !important;
  }

  .guarantee__item:last-child {
    border-bottom: none;
  }

  .guarantee__title-cross {
    display: none;
  }
}

/* === CTA === */
/* === FILMSTRIP DIVIDER === */
.filmstrip-divider {
  background: #0A0A0A;
  padding: 0;
  overflow: hidden;
}

.filmstrip-divider__track {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0.65;
}

.filmstrip-divider__holes {
  display: flex;
  gap: 0;
  padding: 5px 0;
}

.filmstrip-divider__holes span {
  flex: 0 0 calc(5%);
  aspect-ratio: 1.4 / 1;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 3px;
  background: #0A0A0A;
}

.filmstrip-divider__label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  /* stretch content to full width */
  justify-content: space-between;
}

.filmstrip-divider__dot {
  color: #D93535;
  opacity: 0.5;
  font-size: 8px;
  flex-shrink: 0;
}

/* === CTA REDESIGN === */
.cta {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  padding: clamp(80px, 13vw, 160px) var(--gutter);
}

/* Film-Grain texture */
.cta__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Two decorative horizontal lines — no rectangle */
.cta__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta__deco-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77,0,0.18,1);
}

.cta__deco-line--top    { top: 20%; transition-delay: 0.1s; }
.cta__deco-line--bottom { bottom: 20%; transition-delay: 0.35s; }

.cta.frames-in .cta__deco-line {
  clip-path: inset(0 0% 0 0);
}

/* REC indicator — top right */
.cta__rec {
  position: absolute;
  top: clamp(20px, 3vw, 36px);
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 3;
  pointer-events: none;
}

.cta__rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D93535;
  animation: rec-blink 1.4s ease-in-out infinite;
}

@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

.cta__rec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* Content */
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.cta__overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}

.cta__title {
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  margin-bottom: 0;
}

.cta__line {
  font-size: clamp(32px, 5.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #FAFAF8;
  display: block;
}

/* Short red accent line below headline */
.cta__title-accent {
  width: 36px;
  height: 2px;
  background: #D93535;
  margin-top: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* White outline button */
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #FAFAF8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

/* Fill effect on hover */
.cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FAFAF8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
}

.cta__btn:hover {
  color: #0A0A0A;
}

.cta__btn:hover::before {
  transform: scaleX(1);
}

.cta__btn span {
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 700px) {
  .cta__deco-line--bottom { bottom: 10%; }
}

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(32px, 5vh, 56px) var(--gutter);
  position: relative;
}

/* Roter Akzent-Strich ganz oben im Footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--gutter);
  width: 32px;
  height: 2px;
  background: #D93535;
  opacity: 0.7;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer__logo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
}

.footer__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.footer__social {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__social:hover {
  color: var(--text);
}

.footer__email {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__email:hover {
  color: var(--text);
}

.footer__inner {
  grid-template-columns: 1fr auto;
}

.footer__bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--text);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 10vh, 120px));
  padding-bottom: clamp(48px, 8vh, 80px);
  border-bottom: 1px solid var(--border);
}

.page-hero__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(52px, 8vw, 128px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  margin-bottom: clamp(48px, 7vh, 80px);
  flex-wrap: wrap;
  padding-top: clamp(32px, 5vh, 56px);
}

.filter-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.25s;
  cursor: none;
}

.filter-btn {
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.portfolio-masonry {
  columns: 2;
  column-gap: 16px;
}

.portfolio-masonry .work-item {
  cursor: pointer;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-info__title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 32px;
}

.contact-info__text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D93535;
  opacity: 0.75;
}

.contact-detail__value {
  font-size: 16px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--text);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: none;
  height: 120px;
  line-height: 1.6;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s, gap 0.3s var(--ease-out);
  margin-top: 8px;
}

.form-submit:hover {
  background: #1a1a1a;
  gap: 18px;
}

.form-submit svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal {
  padding-top: calc(var(--nav-h) + clamp(60px, 10vh, 100px));
  padding-bottom: clamp(80px, 12vh, 140px);
}

.legal__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: clamp(40px, 6vh, 72px);
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}

.legal__content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content p,
.legal__content address {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 12px;
}

.legal__content a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.legal__content a:hover {
  border-color: var(--text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__photo {
    aspect-ratio: 4/3;
    max-height: 460px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 60px 1fr;
  }

  .service-desc {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__links {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  html { cursor: auto; }

  .cursor-dot, .cursor-ring, .cursor-label {
    display: none;
  }

  .nav__links {
    display: none;
  }

  .nav__lang {
    margin-left: auto;
  }

  .work-grid,
  .portfolio-masonry {
    columns: 1;
  }

  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item {
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .service-arrow {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer__right {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta__title {
    font-size: clamp(32px, 8vw, 56px);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(56px, 14vw, 80px);
  }
}

/* === PAGE TRANSITION === */
/* Page fade overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.page-transition.pt-enter {
  opacity: 1;
  pointer-events: all;
}

.page-transition.pt-exit {
  opacity: 0;
  pointer-events: none;
}

/* === FILM GRAIN === */
.grain-overlay {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9989;
  animation: grain 0.35s steps(1) infinite;
}

@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%,4%); }
  40%  { transform: translate(4%,-2%); }
  60%  { transform: translate(-2%,3%); }
  80%  { transform: translate(3%,-4%); }
  100% { transform: translate(-4%,2%); }
}

/* === LETTERBOX === */
.hero__lb-top,
.hero__lb-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  background: #000;
  z-index: 4;
  transition: height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero__lb-top    { top: 0; }
.hero__lb-bottom { bottom: 0; }

.hero:hover .hero__lb-top,
.hero:hover .hero__lb-bottom {
  height: clamp(28px, 4.5vw, 68px);
}

/* === PROGRESS BAR === */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D93535;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9996;
  pointer-events: none;
  opacity: 0.9;
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: clamp(24px, 4vh, 40px);
  right: clamp(20px, 3vw, 40px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta:hover {
  opacity: 0.85;
}

.floating-cta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* === SECTION COUNTER === */
.section-counter {
  position: fixed;
  right: clamp(16px, 2.5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.section-counter.visible {
  opacity: 1;
}

.section-counter__current {
  color: #ffffff;
  font-size: 13px;
}

.section-counter__sep {
  opacity: 0.3;
  margin: 2px 0;
}

/* === THEME TOGGLE === */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 4px 0;
  margin-left: 20px;
  flex-shrink: 0;
}

.theme-toggle:hover { opacity: 1; }

.theme-toggle__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.theme-toggle__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.35s var(--ease-out);
}

.theme-toggle.active .theme-toggle__icon::after {
  clip-path: inset(0 0% 0 0);
}

/* === WORD REVEAL === */
.wr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.wr-word.wr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === UTILITY === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}
.anfragen-btn, [class*="anfragen"], .floating-btn, [class*="floating"] {
  display: none !important;
}

/* ============================================================
   DESIGN UPGRADE — Statement Block, BG Deco, Facts Strip
   ============================================================ */

/* === STATEMENT BLOCK === */
.statement-block {
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 14vh, 180px) var(--gutter) clamp(110px, 18vh, 220px);
}

.sb-bg-word {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: clamp(100px, 20vw, 380px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.022);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.sb-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}

.sb-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: clamp(20px, 3vh, 36px);
}

.sb-headline {
  font-size: clamp(40px, 6.5vw, 100px);
  font-weight: 800;
  color: #FAFAF8;
  letter-spacing: -0.03em;
  line-height: 0.93;
}

.sb-tagline {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 380px;
  align-self: end;
  padding-bottom: 4px;
}

/* Diagonaler Schnitt unten — heller Bg-Dreieck schneidet in den dunklen Block */
.statement-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: clamp(48px, 8vw, 110px);
  background: var(--bg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .sb-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* === SECTION BG DEKO TEXT === */
.section {
  position: relative;
  overflow: hidden;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-bg-deco {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: clamp(80px, 16vw, 260px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.section-bg-deco--bottom {
  top: auto;
  right: auto;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}

/* === FACTS STRIP === */
.facts-strip {
  background: #0A0A0A;
  padding: clamp(60px, 10vh, 112px) var(--gutter) clamp(48px, 8vh, 96px);
  position: relative;
  overflow: hidden;
}

/* Diagonaler Schnitt oben */
.facts-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(40px, 7vw, 90px);
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 2;
}

.facts-strip__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-size: clamp(50px, 11vw, 180px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.facts-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.facts-strip__cell {
  background: #0A0A0A;
  padding: clamp(24px, 4vh, 40px) clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
}

.facts-strip__cell:hover {
  background: #141414;
}

.facts-strip__num {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FAFAF8;
  line-height: 1;
}

.facts-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

@media (max-width: 768px) {
  .facts-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === FILM STRIP GRAPHIC === */
.film-strip-graphic {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vh, 48px) 0;
}

/* Diagonaler Schnitt oben (heller Bg schneidet in den dunklen Block) */
.film-strip-graphic::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(36px, 6vw, 80px);
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 2;
}

/* Diagonaler Schnitt unten */
.film-strip-graphic::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: clamp(36px, 6vw, 80px);
  background: #0A0A0A;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 2;
}

/* Perforation rail — SVG background pattern scrollt endlos */
.fsg__rail {
  height: 34px;
  background-color: #0A0A0A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='34'%3E%3Crect x='11' y='8' width='26' height='18' rx='3' fill='none' stroke='white' stroke-opacity='0.22' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 center;
  animation: filmPan 14s linear infinite;
}

.fsg__rail--bottom {
  animation-direction: reverse;
  animation-duration: 19s;
}

/* Dunkles Mittelband zwischen den Perforationsreihen */
.fsg__center {
  height: clamp(40px, 6vh, 72px);
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

@keyframes filmPan {
  from { background-position-x: 0; }
  to   { background-position-x: -48px; }
}

/* === FORM ERROR === */
/* Inline field errors */
.form-field-error {
  display: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e05252;
  margin-top: 4px;
}

.form-field-error.visible {
  display: block;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-bottom-color: #e05252;
}

/* Clear invalid state on interaction */
.form-input.invalid:focus,
.form-select.invalid:focus {
  border-bottom-color: var(--text);
}

.form-error {
  font-size: 14px;
  font-weight: 500;
  color: #e05252;
  line-height: 1.5;
  padding: 12px 0 0;
  display: none;
}

.form-error.visible {
  display: block;
}

/* === CONTACT PAGE HERO === */
.contact-hero {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + clamp(60px, 10vh, 120px)) var(--gutter) clamp(80px, 13vh, 160px);
}

/* Diagonaler Schnitt unten */
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: clamp(40px, 7vw, 100px);
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.contact-hero__bg-word {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: clamp(80px, 18vw, 300px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.contact-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

.contact-hero__title {
  font-size: clamp(52px, 10vw, 160px);
  font-weight: 800;
  color: #FAFAF8;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

/* ============================================================
   GUARANTEE — HANDSCHRIFT-EFFEKT (rotes K / N über Buchstabe,
   roter Strich durch Risiko.)
   ============================================================ */

/* Bestehende CSS-Durchstreichung deaktivieren */
.guarantee__title-struck::after { display: none !important; }
.guarantee__title-cross { display: none !important; }

.gt-firstline {
  display: block;
  white-space: nowrap;
}

/* Wrapper um erstes Wort (Dein / Your) — Ankerpunkt für das SVG */
.gt-word1 {
  position: relative;
  display: inline-block;
}

/* Das handgeschriebene K (DE) — diagonaler linker Arm auf D-Mitte */
.gt-letter {
  position: absolute;
  top: -0.05em;
  left: 0.18em;
  width: 1.1em;
  height: 1.25em;
  pointer-events: none;
  overflow: visible;
}

/* EN: "No" — zentriert über "The", wirkt absichtlich verdeckend */
.gt-letter--en {
  width: 1.9em;
  left: 0.1em;
  top: -0.08em;
}

/* Sprachabhängige Sichtbarkeit */
html[lang="en"]     .gt-letter--de { display: none; }
html:not([lang="en"]) .gt-letter--en { display: none; }

/* Wrapper um "Risiko." / "Risk." — für den Strich */
.gt-struck-word {
  position: relative;
  display: inline-block;
}

/* Der rote Strich — streckt sich über die volle Breite des Wortes */
.gt-strikethrough {
  position: absolute;
  top: 50%;
  left: -3%;
  width: 106%;
  height: 0.5em;
  transform: translateY(-48%);
  pointer-events: none;
  overflow: visible;
}

/* === ANIMATION: Pfade starten unsichtbar === */
.gt-letter g > path {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  transition: stroke-dashoffset 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gt-strikethrough path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee__title.revealed .gt-letter g > path,
.guarantee__title.revealed .gt-strikethrough path {
  stroke-dashoffset: 0;
}

/* K / N-Strich (Buchstabe Strich für Strich), dann o, dann Durchstreichung */
.gt-letter g > path:nth-child(1)  { transition-delay: 0.05s; }
.gt-letter g > path:nth-child(2)  { transition-delay: 0.08s; }
.gt-letter g > path:nth-child(3)  { transition-delay: 0.11s; }
.gt-letter g > path:nth-child(4)  { transition-delay: 0.30s; }
.gt-letter g > path:nth-child(5)  { transition-delay: 0.34s; }
.gt-letter g > path:nth-child(6)  { transition-delay: 0.38s; }
.gt-letter g > path:nth-child(7)  { transition-delay: 0.55s; }
.gt-letter g > path:nth-child(8)  { transition-delay: 0.59s; }
.gt-letter g > path:nth-child(9)  { transition-delay: 0.63s; }
/* o-Oval (nur für EN "No") */
.gt-letter g > path:nth-child(10) { transition-delay: 0.82s; transition-duration: 0.6s; }
.gt-letter g > path:nth-child(11) { transition-delay: 0.88s; transition-duration: 0.55s; }
.gt-letter g > path:nth-child(12) { transition-delay: 0.94s; transition-duration: 0.5s; }

.gt-strikethrough path:nth-child(1) { transition-delay: 1.05s; }
.gt-strikethrough path:nth-child(2) { transition-delay: 1.18s; transition-duration: 0.85s; }
.gt-strikethrough path:nth-child(3) { transition-delay: 1.30s; transition-duration: 0.75s; }

/* === FILMKLAPPE & KAMERA-DEKO === */

.about__photo-placeholder {
  position: relative;
}

.about__clapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  width: 85%;
  height: auto;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
  stroke-width: 1.5px;
}

.about__camera {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.about__camera-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D93535;
  opacity: 0.8;
}

.about__camera-value {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta__clapper {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%) rotate(14deg);
  width: min(65%, 480px);
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  stroke-width: 1.5px;
}

/* ============================================================
   DANKE PAGE
   ============================================================ */

.danke-hero {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  min-height: 65svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + clamp(40px, 8vh, 100px)) var(--gutter) clamp(80px, 14vh, 160px);
}

.danke-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: clamp(40px, 7vw, 100px);
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.danke-hero__bg-word {
  position: absolute;
  bottom: 0;
  right: -4%;
  font-family: var(--font);
  font-size: clamp(80px, 20vw, 340px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}

.danke-hero__inner {
  max-width: var(--container);
  width: 100%;
  position: relative;
  z-index: 1;
}

.danke-hero__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

.danke-hero__title {
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  color: #FAFAF8;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

/* === DANKE CONTENT === */
.danke-content {
  padding: clamp(80px, 13vh, 140px) 0 clamp(80px, 14vh, 160px);
  position: relative;
}

.danke-content__inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vh, 64px);
}

/* Animated checkmark — positioned at black/white boundary, right side */
.danke-check {
  position: absolute;
  right: var(--gutter);
  top: -60px;
  width: 120px;
  height: 120px;
  z-index: 10;
  pointer-events: none;
}

.danke-check__svg {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 4px 16px rgba(217,53,53,0.25));
}

.danke-check__tick {
  stroke: #D93535;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 65;
  stroke-dashoffset: 65;
  animation: dash-tick 0.5s cubic-bezier(0.65,0,0.35,1) 0.4s forwards;
}

@keyframes dash-tick {
  to { stroke-dashoffset: 0; }
}

/* 24h badge */
.danke-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.danke-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D93535;
  animation: rec-blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* Data summary */
.danke-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.danke-summary__row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.danke-summary__row:last-child {
  border-bottom: none;
}

.danke-summary__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 90px;
  flex-shrink: 0;
}

.danke-summary__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.danke-summary__value--empty {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}

.danke-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease-out), opacity 0.2s;
  align-self: flex-start;
}

.danke-back:hover {
  gap: 18px;
  opacity: 0.7;
}

.danke-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: clamp(24px, 4vh, 40px);
  border-top: 1px solid var(--border);
}

.danke-social__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.danke-social__links {
  display: flex;
  gap: 24px;
}

.danke-social__links a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.danke-social__links a:hover {
  color: var(--text);
}