/* =========================================================
   GlanzWERK Waren — Dark Cinematic Showroom
   Design system + sections
   ========================================================= */

/* Italianno with the capital-G under-swash removed (self-hosted, subset) */
@font-face {
  font-family: "ItaliannoClean";
  src: url("../assets/fonts/Italianno-Clean.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* Clash Display + Switzer, self-hosted (formerly Fontshare CDN) */
@font-face { font-family: "Clash Display"; src: url("../assets/fonts/clash-display-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("../assets/fonts/clash-display-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("../assets/fonts/clash-display-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("../assets/fonts/clash-display-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../assets/fonts/switzer-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../assets/fonts/switzer-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../assets/fonts/switzer-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

/* ----------------------- TOKENS ----------------------- */
:root {
  /* color */
  --bg:        #0E0F11;
  --bg-2:      #131519;
  --surface:   #181B20;
  --surface-2: #1F232A;
  --ink:       #F5F6F8;
  --muted:     #9BA1AA;
  --muted-2:   #6E747D;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.05);

  --red:       #D81F2D;
  --red-bright:#FF2E3C;
  --red-deep:  #8E1019;
  --chrome-1:  #ffffff;
  --chrome-2:  #c7ccd3;

  /* type */
  --f-display: "Clash Display", "Switzer", system-ui, sans-serif;
  --f-body:    "Switzer", system-ui, -apple-system, sans-serif;
  --f-script:  "ItaliannoClean", "Italianno", cursive;

  /* spacing / layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 160px);

  /* radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  /* motion */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ----------------------- RESET ----------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(16px, 1.05vw, 18px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--red); color: #fff; }

/* ----------------------- SHARED TYPE ----------------------- */
.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--red);
  font-style: normal;
  /* Italianno is a tall slanted calligraphy; give the slant a little room */
  display: inline-block;
  line-height: 0.9;
  padding: 0 0.1em;
}

/* red "Glanz" wordmark image used inline inside headings */
.glanz-img { display: inline-block; height: 1.05em; width: auto; vertical-align: -0.28em; }
.hero__title .glanz-img { height: 1.12em; vertical-align: -0.3em; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.section-eyebrow .dot,
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px 1px var(--red);
  flex: none;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-top: 0.4em;
}
.section-title--light { color: #fff; }
/* Italianno reads small/condensed next to the grotesk, so scale the highlight up */
.section-title .script { font-size: 1.34em; line-height: 0.7; }
/* keep a script word and its trailing punctuation on the same line */
.kw { white-space: nowrap; }

.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 52ch;
  margin-top: 1.1rem;
}

/* ----------------------- BUTTONS ----------------------- */
.btn {
  --bg-btn: var(--red);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 100px;
  background: var(--bg-btn);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
  box-shadow: 0 8px 24px -10px rgba(216, 31, 45, 0.7);
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease-out);
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost::after { background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.12) 50%, transparent 80%); }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(216,31,45,0.85); }
  .btn--ghost:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); background: rgba(255,255,255,0.03); }
  .btn:hover::after { transform: translateX(130%); }
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; }

/* ----------------------- PRELOADER ----------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-content: center; gap: 26px;
  background: var(--bg);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark { text-align: center; line-height: 0.8; }
.preloader__logo { width: clamp(190px, 42vw, 300px); height: auto; display: block; margin: 0 auto; }
.preloader__bar {
  width: min(220px, 60vw); height: 2px; background: var(--line);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-bright));
  box-shadow: 0 0 14px var(--red);
}

/* ----------------------- CURSOR GLOW ----------------------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 8000;
  width: 380px; height: 380px; border-radius: 50%;
  pointer-events: none; opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(216,31,45,0.16), transparent 62%);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* ----------------------- NAV ----------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14, 15, 17, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-105%); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand__img {
  height: 40px; width: auto; display: block;
  transition: transform 0.5s var(--ease-out), filter 0.4s var(--ease-out);
}
@media (hover: hover) { .brand:hover .brand__img { transform: translateY(-1px); } }
.brand--footer .brand__img--footer { height: clamp(88px, 11vw, 128px); }

.nav__links { margin-left: auto; display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
  position: relative; padding: 4px 0; transition: color 0.25s var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) {
  .nav__links a:hover { color: var(--ink); }
  .nav__links a:hover::after { transform: scaleX(1); }
}
.nav__cta { flex: none; }
.nav__links a:focus-visible, .brand:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 4px; border-radius: 2px; }

.nav__burger {
  display: none; width: 44px; height: 44px; margin-left: auto;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(11, 12, 14, 0.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s var(--ease-in-out);
  pointer-events: none;
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2rem, 11vw, 3.2rem); letter-spacing: -0.02em;
  padding: 10px 0; color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  transform: translateY(18px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out), color 0.25s;
}
.mobile-menu.is-open .mobile-menu__links a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: 0.30s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: 0.36s; }
.mobile-menu__links a:active { color: var(--red); }
.mobile-menu__foot { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* ----------------------- HERO ----------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.62; transform: scale(1.08);
  will-change: transform;
}
.hero__sheen {
  position: absolute; inset: -10%;
  background: radial-gradient(circle 40vw at var(--mx, 30%) var(--my, 40%),
              rgba(255, 90, 100, 0.22), rgba(216,31,45,0.06) 30%, transparent 55%);
  mix-blend-mode: screen;
  transition: background 0.18s linear;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(14,15,17,0.45) 40%, rgba(14,15,17,0.78) 100%),
    radial-gradient(120% 80% at 70% 10%, transparent 40%, rgba(14,15,17,0.7) 100%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content { position: relative; z-index: 2; max-width: 980px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: clamp(0.82rem, 1.05vw, 0.96rem); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 23px;
}
.eyebrow-werk { color: #fff; font-style: normal; font-weight: 700; }
.hero__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.7rem, 8.4vw, 7rem);
  line-height: 0.98; letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero__title > span { display: block; }
.hero__title .script { font-size: 1.32em; line-height: 0.7; }
.hero__sub {
  margin-top: 26px; max-width: 46ch;
  color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.28rem);
}
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero__rating {
  position: absolute; z-index: 2;
  right: var(--gutter); bottom: clamp(48px, 8vh, 96px);
  text-align: right;
}
.hero__rating .stars { color: var(--red); letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating-text { color: var(--muted); font-size: 0.86rem; margin-top: 2px; }
.hero__rating-text strong { color: var(--ink); }
.hero__rating-meta { color: var(--muted-2); font-size: 0.78rem; letter-spacing: 0.02em; margin-top: 3px; }

.hero__scrollline {
  position: absolute; left: 50%; bottom: 0; z-index: 2;
  width: 1px; height: 64px; background: var(--line); overflow: hidden;
}
.hero__scrollline span {
  position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--red);
  animation: scrolldrop 2.4s var(--ease-in-out) infinite;
}
@keyframes scrolldrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ----------------------- MARQUEE ----------------------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__group span {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem); letter-spacing: -0.01em;
  color: var(--muted); padding: 0 26px; white-space: nowrap;
}
.marquee__group .sep { color: var(--red); padding: 0 4px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------- INTRO STATEMENT ----------------------- */
.intro {
  max-width: var(--maxw); margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
.intro__label {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 1.4rem;
}
.intro__text {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 3.6rem);
  line-height: 1.12; letter-spacing: -0.02em;
  max-width: 22ch;
}
.intro__text span { display: inline-block; }
.intro__accent { color: var(--ink); }
.intro__text > span:not(.intro__accent) { color: var(--muted-2); }

/* word reveal */
[data-reveal-word] {
  opacity: 0; transform: translateY(0.5em);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal-word].is-in { opacity: 1; transform: none; }

/* ----------------------- BEFORE / AFTER ----------------------- */
.ba { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) var(--section-y); }
.ba__head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 52px); }
.ba__stage {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9), inset 0 0 0 1px var(--line);
  user-select: none; touch-action: pan-y;
  cursor: ew-resize;
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__img--before { clip-path: inset(0 50% 0 0); }
.ba__img--before img { filter: none; }
.ba__tag {
  position: absolute; top: 16px; padding: 6px 14px; border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  backdrop-filter: blur(8px); background: rgba(14,15,17,0.55);
}
.ba__tag--after { right: 16px; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.ba__tag--before { left: 16px; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: rgba(255,255,255,0.85); transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(255,255,255,0.4);
}
.ba__line { position: absolute; inset: 0; width: 2px; }
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-content: center;
  box-shadow: 0 8px 24px -6px rgba(216,31,45,0.8), inset 0 0 0 2px rgba(255,255,255,0.25);
}
.ba__handle:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 4px; }
.ba__note { color: var(--muted-2); font-size: 0.84rem; margin-top: 14px; text-align: center; }

/* ----------------------- SERVICES (horizontal pan) ----------------------- */
.services { position: relative; padding-top: var(--section-y); padding-bottom: clamp(40px, 6vw, 96px); overflow-x: clip; }
.services__intro { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.services__pin { margin-top: clamp(36px, 5vw, 64px); }
.services__track {
  display: flex; gap: 26px; padding: 0 var(--gutter);
  width: max-content;
}
@media (min-width: 761px) {
  .services__pin { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; margin-top: 0; }
}
/* Mobile: pure-CSS horizontal scroll-snap fallback (no GSAP pin) */
@media (max-width: 760px) {
  .services__pin {
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x proximity; scroll-padding-left: var(--gutter);
    -webkit-overflow-scrolling: touch;
  }
  .services__track { padding-bottom: 6px; }
  .svc { scroll-snap-align: start; }
}
/* Reduced-motion / no-GSAP: horizontal scroll strip at any width (JS adds this class) */
.services__pin--scroll {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
}
.services__pin--scroll .svc { scroll-snap-align: start; }
@media (min-width: 761px) {
  .services__pin--scroll { min-height: 0; display: block; align-items: initial; }
}
.svc {
  position: relative; flex: none;
  width: clamp(280px, 78vw, 400px);
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.svc::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 100% 0%, rgba(216,31,45,0.14), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
@media (hover: hover) {
  .svc:hover { border-color: rgba(216,31,45,0.5); transform: translateY(-4px); }
  .svc:hover::before { opacity: 1; }
}
.svc__no {
  font-family: var(--f-display); font-weight: 600;
  font-size: 0.9rem; color: var(--red); letter-spacing: 0.1em;
}
.svc__icon { margin: 24px 0 22px; color: var(--ink); }
.svc__icon svg { width: 52px; height: 52px; }
.svc h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 12px;
}
.svc p { color: var(--muted); font-size: 0.98rem; margin-top: auto; }

/* ----------------------- DGD CALLOUT ----------------------- */
.dgd { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) var(--section-y); }
.dgd__inner {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  background: linear-gradient(120deg, rgba(216, 31, 45, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 44px);
}
.dgd__badge { flex: none; }
.dgd__logo { width: clamp(128px, 17vw, 190px); height: auto; display: block; }
.dgd__text { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.24rem); line-height: 1.55; max-width: 74ch; }
.dgd__text strong { color: var(--ink); font-weight: 600; }
@media (max-width: 620px) { .dgd__inner { flex-direction: column; text-align: center; } }

/* ----------------------- COAT / BEADING ----------------------- */
.coat {
  position: relative; overflow: hidden;
  padding: var(--section-y) 0;
  background: #08090A url("../assets/img/beading.webp") center / cover no-repeat;
}
.coat__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.coat__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(8,9,10,0.96) 0%, rgba(8,9,10,0.7) 45%, rgba(8,9,10,0.25) 100%);
}
.coat__content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  max-width: min(var(--maxw), 56ch + var(--gutter) * 2);
}
.coat__content .section-lead { color: #c9ccd1; }
.coat__list { list-style: none; margin: 32px 0; display: grid; gap: 2px; max-width: 460px; }
.coat__list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid var(--line);
  color: var(--ink); font-weight: 500;
}
.coat__list li span {
  font-family: var(--f-display); color: var(--red);
  font-size: 0.82rem; letter-spacing: 0.08em; flex: none;
}

/* ----------------------- PROCESS ----------------------- */
.process { max-width: var(--maxw); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.process__head { max-width: 50ch; margin-bottom: clamp(32px, 5vw, 64px); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.step {
  background: var(--bg);
  padding: clamp(26px, 2.6vw, 38px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background 0.4s var(--ease-out);
}
@media (hover: hover) { .step:hover { background: var(--surface); } }
.step__no {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: transparent; -webkit-text-stroke: 1px var(--muted-2);
  line-height: 1;
}
.step:hover .step__no { -webkit-text-stroke: 1px var(--red); }
.step h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.18rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ----------------------- METRICS ----------------------- */
.metrics {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter) var(--section-y);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px);
}
.metric { text-align: center; padding: clamp(24px, 3vw, 40px) 0; border-top: 1px solid var(--line); }
.metric__num {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 30%, #9097a0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric__label { color: var(--muted); font-size: 0.86rem; margin-top: 12px; letter-spacing: 0.02em; }

/* ----------------------- REVIEWS ----------------------- */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) var(--section-y); }
.reviews__head { max-width: 56ch; margin-bottom: clamp(32px, 5vw, 56px); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  grid-auto-rows: 1fr;
}
.review {
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(24px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
@media (hover: hover) { .review:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-3px); } }
.review__stars { color: var(--red); letter-spacing: 2px; font-size: 0.95rem; }
.review blockquote { color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
.review figcaption { display: flex; flex-direction: column; margin-top: auto; }
.review__name { font-weight: 600; }
.review__meta { color: var(--muted-2); font-size: 0.82rem; margin-top: 2px; }
.reviews__all {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px; color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: gap 0.3s var(--ease-out), border-color 0.3s;
}
@media (hover: hover) { .reviews__all:hover { gap: 14px; border-color: var(--red); } }

/* ----------------------- AUDIENCE ----------------------- */
.audience { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) var(--section-y); }
.audience__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.audience__item {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 2.4vw, 38px) clamp(32px, 4vw, 56px) 0;
  border-right: 1px solid var(--line);
}
.audience__item:last-child { border-right: none; padding-right: 0; }
.audience__k {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.02em;
  display: block; margin-bottom: 14px;
}
.audience__item p { color: var(--muted); max-width: 34ch; }

/* ----------------------- CONTACT ----------------------- */
.contact { max-width: var(--maxw); margin: 0 auto; padding: var(--section-y) var(--gutter); }
.contact__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.contact__list { list-style: none; margin: 36px 0; display: grid; gap: 4px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact__list li:last-child { border-bottom: none; }
.contact__ic { color: var(--red); flex: none; margin-top: 2px; }
.contact__list a { transition: color 0.25s; }
@media (hover: hover) { .contact__list a:hover { color: var(--red); } }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* contact form (replaces the map) — matches the service / review cards, in portrait */
.contact-form {
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 15px;
  box-shadow: 0 30px 70px -50px rgba(0,0,0,0.9);
}
.contact-form__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; line-height: 1.05; }
.contact-form__lead { color: var(--muted); font-size: 0.96rem; margin-top: -8px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field__label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.field__opt { color: var(--muted-2); text-transform: none; letter-spacing: 0; font-weight: 400; }
/* multi-select dropdown (Leistung) */
.msel { position: relative; }
.msel__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font: inherit; text-align: left; color: var(--ink);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; cursor: pointer;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
@media (hover: hover) { .msel__trigger:hover { border-color: rgba(255, 255, 255, 0.2); } }
.msel__trigger[aria-expanded="true"], .msel__trigger:focus-visible {
  outline: none; border-color: var(--red); background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(216, 31, 45, 0.18);
}
.msel__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msel__value--empty { color: var(--muted-2); }
.msel__caret { color: var(--muted); flex: none; transition: transform 0.3s var(--ease-out); }
.msel__trigger[aria-expanded="true"] .msel__caret { transform: rotate(180deg); }

.msel__panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 6px; display: flex; flex-direction: column; gap: 2px;
  max-height: 300px; overflow-y: auto;
  box-shadow: 0 26px 55px -22px rgba(0, 0, 0, 0.95);
  animation: mselIn 0.18s var(--ease-out);
}
.msel__panel[hidden] { display: none; }
@keyframes mselIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.msel__opt {
  font: inherit; text-align: left; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer; background: transparent;
  transition: background 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.msel__opt::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 5px;
  box-shadow: inset 0 0 0 1px var(--line);
  background: transparent center / 12px no-repeat;
  transition: background-color 0.18s, box-shadow 0.18s;
}
@media (hover: hover) { .msel__opt:hover { background: rgba(255, 255, 255, 0.05); color: var(--ink); } }
.msel__opt[aria-selected="true"] { color: var(--ink); }
.msel__opt[aria-selected="true"]::before {
  background-color: var(--red); box-shadow: inset 0 0 0 1px var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
.msel__opt:focus-visible { outline: 2px solid var(--red-bright); outline-offset: -2px; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
@media (hover: hover) { .field input:hover, .field textarea:hover { border-color: rgba(255, 255, 255, 0.2); } }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(216, 31, 45, 0.18);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #e0566a; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #e0566a; box-shadow: 0 0 0 3px rgba(224, 86, 106, 0.22); }
.contact-form__submit { align-self: flex-start; margin-top: 6px; }
.contact-form__note { font-size: 0.9rem; color: var(--muted); min-height: 1.1em; margin-top: 2px; }
.contact-form__note.is-error { color: #ff8a92; }
.contact-form__note.is-ok { color: #74d68d; }

/* ----------------------- FOOTER ----------------------- */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) var(--gutter) 32px; background: var(--bg-2); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: flex-end; gap: 22px; flex-wrap: wrap; }
.footer__tag { color: var(--muted); font-size: 0.9rem; padding-bottom: 6px; }
.footer__cols {
  max-width: var(--maxw); margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
@media (max-width: 620px) { .footer__cols { grid-template-columns: 1fr 1fr; gap: 26px 22px; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; font-weight: 600; }
.footer__col a, .footer__col span { color: var(--muted); font-size: 0.94rem; transition: color 0.25s; }
@media (hover: hover) { .footer__col a:hover { color: var(--ink); } }
.footer__bottom {
  max-width: var(--maxw); margin: 24px auto 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 0.84rem;
}

/* ----------------------- REVEAL ----------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ----------------------- RESPONSIVE ----------------------- */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hero { justify-content: flex-end; padding-top: 92px; }
  .hero__rating { position: static; text-align: left; margin-top: 28px; }
  .hero__scrollline { display: none; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .audience__row { grid-template-columns: 1fr; }
  .audience__item { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .audience__item:last-child { border-bottom: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; }
}

@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; gap: 0; }
  /* Phone hero: tighter, calmer, more room to breathe under the logo */
  .hero__title { font-size: clamp(1.9rem, 10vw, 2.7rem); }
  .hero__eyebrow { margin-bottom: 15px; }
  .hero__sub { font-size: 0.9rem; line-height: 1.5; margin-top: 18px; max-width: 42ch; }
  .hero__actions { margin-top: 24px; flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__rating { margin-top: 44px; }
  .hero__rating .stars { font-size: 0.82rem; letter-spacing: 1.5px; }
  .hero__rating-text { font-size: 0.72rem; }
  .hero__rating-meta { font-size: 0.66rem; margin-top: 2px; }
}

/* ----------------------- LEGAL PAGES ----------------------- */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(120px, 16vh, 180px) var(--gutter) var(--section-y); }
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.9rem; margin-bottom: 28px;
  transition: gap 0.3s var(--ease-out), color 0.25s;
}
@media (hover: hover) { .legal__back:hover { color: var(--ink); gap: 14px; } }
.legal h1 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 0.6em;
}
.legal h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem); letter-spacing: -0.01em;
  margin: 2.2em 0 0.6em;
}
.legal p, .legal address { color: var(--muted); margin-bottom: 1em; font-style: normal; }
.legal ul { color: var(--muted); margin: 0 0 1.1em 1.3em; padding: 0; }
.legal li { margin-bottom: 0.4em; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--red); }
.legal .todo {
  display: inline-block; background: rgba(216,31,45,0.12);
  color: #ff8a92; padding: 1px 8px; border-radius: 5px;
  font-size: 0.86em; border: 1px dashed rgba(216,31,45,0.4);
}
.legal__divider { height: 1px; background: var(--line); margin: 2.4em 0; border: 0; }

/* ----------------------- REDUCED MOTION ----------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee__track { animation: none; }
  [data-reveal], [data-reveal-word] { opacity: 1 !important; transform: none !important; }
  .hero__img { transform: none; }
}
