/* =========================================================
   HLW Visuals – Premium Dark Theme
   ========================================================= */

/* -----------  Fonts  ----------- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap");

/* -----------  Reset  ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

/* -----------  Variables  ----------- */
:root {
  --bg-0: #060606;
  --bg-1: #0b0b0c;
  --bg-2: #121214;
  --bg-3: #1a1a1d;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);

  --text: #f4f1ea;
  --text-dim: #b8b3aa;
  --text-mute: #6d6962;

  --gold: #c9a96a;
  --gold-soft: #d8bf8a;
  --gold-deep: #8a7547;

  --radius: 4px;
  --radius-lg: 14px;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --easing: cubic-bezier(.22,.61,.36,1);
  --easing-out: cubic-bezier(.16,1,.3,1);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

/* -----------  Base  ----------- */
html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
html { overscroll-behavior-x: none; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,169,106,0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(201,169,106,0.04), transparent 60%),
    linear-gradient(180deg, #060606 0%, #08080a 100%);
  background-attachment: fixed;
}

/* Subtle film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

::selection { background: var(--gold); color: #000; }

/* -----------  Container & spacing helpers  ----------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 110px) 0; }

/* -----------  Typography  ----------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: .8;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(44px, 8.5vw, 132px); }
h2 { font-size: clamp(34px, 5.5vw, 76px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.3; }
.italic { font-style: italic; color: var(--gold-soft); }

p { color: var(--text-dim); font-size: clamp(15px, 1.05vw, 17px); max-width: 62ch; }
p.lead { font-size: clamp(17px, 1.4vw, 22px); color: var(--text); font-weight: 300; max-width: 68ch; line-height: 1.55; }

.section-title { display: flex; flex-direction: column; gap: 22px; margin-bottom: clamp(40px, 6vw, 80px); }
.section-title h2 { max-width: 18ch; }
.section-title.center { align-items: center; text-align: center; }

/* -----------  Buttons  ----------- */
.btn {
  --pad-y: 18px;
  --pad-x: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid var(--gold);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--easing), border-color .5s var(--easing), transform .4s var(--easing);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .55s var(--easing-out);
  z-index: -1;
}
.btn:hover { color: #0b0b0b; }
.btn:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform .4s var(--easing); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--solid { background: var(--gold); color: #0b0b0b; }
.btn--solid::before { background: var(--text); }
.btn--solid:hover { color: #0b0b0b; }

.btn--ghost { border-color: var(--line-strong); }
.btn--ghost::before { background: var(--text); }
.btn--ghost:hover { color: #0b0b0b; border-color: var(--text); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  transition: gap .4s var(--easing), color .3s var(--easing);
}
.text-link:hover { gap: 18px; color: var(--gold-soft); }

/* -----------  Loader  ----------- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-0);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity .8s var(--easing), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__logo {
  width: 96px; height: 96px;
  opacity: .9;
  animation: pulse 1.6s var(--easing) infinite;
}
.loader__bar {
  position: absolute;
  bottom: 14%;
  left: 50%; transform: translateX(-50%);
  width: min(280px, 50vw);
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.loader__bar::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform-origin: left;
  animation: load 1.6s var(--easing-out) infinite;
}
@keyframes pulse { 0%,100%{opacity:.4;transform:scale(.98)} 50%{opacity:1;transform:scale(1.02)} }
@keyframes load { 0%{transform:scaleX(0)} 60%{transform:scaleX(1)} 100%{transform:scaleX(1) translateX(100%)} }

/* -----------  Custom Cursor (desktop)  ----------- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; mix-blend-mode: difference; display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body, a, button { cursor: none; }
}
.cursor__dot {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .3s var(--easing), height .3s var(--easing), background .3s, border-color .3s;
}
.cursor.is-hover .cursor__ring { width: 70px; height: 70px; background: rgba(255,255,255,0.1); border-color: transparent; }
.cursor.is-hover .cursor__dot { opacity: 0; }

/* -----------  Navigation  ----------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .5s var(--easing), padding .5s var(--easing), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(6,6,6,0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo img { width: 42px; height: 42px; }
.nav__logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav__logo-text .brand {
  font-family: var(--font-serif);
  font-size: 22px; letter-spacing: 0.08em;
}
.nav__logo-text .tag {
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--text-mute); margin-top: 6px;
}

.nav__menu { display: flex; gap: 38px; align-items: center; }
.nav__menu a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color .3s;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--easing);
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--text); }
.nav__menu a:hover::after, .nav__menu a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: inline-flex; align-items: center; }
.nav__cta .btn { --pad-y: 12px; --pad-x: 22px; font-size: 11px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.nav__burger span {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1px; background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--easing), opacity .3s;
}
.nav__burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav__burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
.nav__burger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg-0);
  z-index: 90;
  padding: 120px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform .8s var(--easing-out);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(34px, 8vw, 56px);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: color .3s, padding .4s var(--easing);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 14px; }
.mobile-menu__foot { color: var(--text-mute); font-size: 13px; }
.mobile-menu__foot a { display: block; color: var(--text-dim); padding: 4px 0; font-size: 14px; }

/* -----------  HERO  ----------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(60px, 10vw, 120px);
  padding-top: 140px;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.25) 30%, rgba(6,6,6,0.85) 100%),
    linear-gradient(90deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0) 60%);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.6s var(--easing), transform 8s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1.0); }

.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-weight: 300;
  margin-bottom: 28px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--easing-out); }
.hero.is-ready h1 .line span { transform: translateY(0); }
.hero h1 .line:nth-child(2) span { transition-delay: .12s; }
.hero h1 .line:nth-child(3) span { transition-delay: .24s; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  max-width: 720px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta .k { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-mute); }
.hero__meta .v { font-family: var(--font-serif); font-size: 22px; color: var(--text); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--text-dim);
}
.hero__scroll .line-anim {
  width: 1px; height: 60px; background: var(--line-strong); position: relative; overflow: hidden;
}
.hero__scroll .line-anim::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  animation: scrollLine 2.2s var(--easing) infinite;
}
@keyframes scrollLine { 0%{transform:translateY(-100%)} 100%{transform:translateY(100%)} }

/* Hero counter strip */
.hero__strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(6,6,6,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
}

/* -----------  Marquee  ----------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: var(--bg-1);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 54px);
  color: var(--text);
  font-style: italic;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -----------  Reveal animations  ----------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--easing-out), transform 1.2s var(--easing-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-img {
  position: relative;
  overflow: hidden;
}
.reveal-img > img,
.reveal-img > .img {
  transform: scale(1.15);
  transition: transform 1.6s var(--easing-out);
}
.reveal-img::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-0);
  transform-origin: right;
  transition: transform 1.2s var(--easing-out);
}
.reveal-img.is-in::after { transform: scaleX(0); }
.reveal-img.is-in > img,
.reveal-img.is-in > .img { transform: scale(1); }

/* -----------  Split content  ----------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }

/* -----------  Featured work / grid  ----------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--easing-out), filter .8s;
  filter: saturate(.9);
}
.work-card:hover img { transform: scale(1.06); filter: saturate(1.05); }
.work-card .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: var(--text);
}
.work-card .label .t { font-family: var(--font-serif); font-size: 22px; }
.work-card .label .k { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-dim); }

.work-card.is-tall { aspect-ratio: 3 / 5; }
.work-card.is-wide { aspect-ratio: 16 / 10; }

/* col spans on desktop */
.col-12 { grid-column: span 12; }
.col-8  { grid-column: span 8; }
.col-7  { grid-column: span 7; }
.col-6  { grid-column: span 6; }
.col-5  { grid-column: span 5; }
.col-4  { grid-column: span 4; }
.col-3  { grid-column: span 3; }

/* -----------  Services list  ----------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  padding: 44px 36px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--easing);
}
.service:nth-child(even) { border-right: 0; }
.service::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .6s var(--easing);
}
.service:hover { background: var(--bg-1); }
.service:hover::before { transform: scaleY(1); transform-origin: top; }
.service .num { font-size: 12px; letter-spacing: 0.3em; color: var(--gold); }
.service h3 { font-size: 28px; }
.service p { font-size: 15px; }
.service ul { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.service ul li {
  font-size: 14px; color: var(--text-dim);
  padding-left: 22px; position: relative;
}
.service ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1px; background: var(--gold-deep);
}

/* -----------  Process  ----------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  border-top: 1px solid var(--gold);
  padding-top: 24px;
}
.step .step-num { font-family: var(--font-serif); font-size: 50px; color: var(--text); display: block; margin-bottom: 14px; }
.step h4 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14px; }

/* -----------  Stats / counters  ----------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg-1);
  padding: 50px 30px;
  text-align: center;
  display: flex; flex-direction: column; gap: 12px;
}
.stat .num { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 68px); color: var(--gold); }
.stat .lab { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); }

/* -----------  Pricing  ----------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .5s var(--easing), border-color .5s, background .5s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); background: var(--bg-2); }
.price-card.is-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,169,106,0.06), transparent 60%), var(--bg-2);
}
.price-card.is-featured::before {
  content: "Beliebteste Wahl";
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #0b0b0b;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
}
.price-card .tier { font-size: 11px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.price-card .title { font-family: var(--font-serif); font-size: 32px; line-height: 1.1; }
.price-card .sub { font-size: 13px; color: var(--text-mute); }
.price-card .price { font-family: var(--font-serif); font-size: 56px; display: flex; align-items: baseline; gap: 8px; }
.price-card .price .pre { font-size: 14px; color: var(--text-mute); letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-sans); }
.price-card .price .cur { font-size: 28px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.price-card ul li {
  font-size: 14px; color: var(--text-dim);
  padding-left: 26px; position: relative;
}
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 9px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; align-self: flex-start; }

.addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.addon {
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-1);
}
.addon .ic { font-size: 22px; color: var(--gold); }
.addon h4 { font-family: var(--font-serif); font-size: 22px; }
.addon p { font-size: 14px; }
.addon .p { color: var(--gold-soft); margin-top: 6px; font-size: 14px; letter-spacing: .04em; }

/* -----------  Before / After  ----------- */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
  background: #000;
  cursor: ew-resize;
  border: 1px solid var(--line);
}
.compare__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.compare__img.after { clip-path: inset(0 0 0 50%); }
.compare__handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
}
.compare__handle::before {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,169,106,0.18);
}
.compare__handle::after {
  content: "‹  ›";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  color: #0b0b0b; font-weight: 700; font-size: 18px; letter-spacing: 2px;
}
.compare__label {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: var(--text);
}
.compare__label.l { left: 18px; }
.compare__label.r { right: 18px; }

/* -----------  Testimonials  ----------- */
.quote {
  position: relative;
  padding: 60px 0;
  text-align: center;
}
.quote q {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.35;
  color: var(--text);
  display: block;
  max-width: 22ch;
  margin: 0 auto;
  quotes: "“" "”";
}
.quote cite { display: block; margin-top: 30px; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* -----------  CTA Section  ----------- */
.cta {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 50% 30%, rgba(201,169,106,0.16), transparent 60%);
}
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(40px, 7vw, 100px); max-width: 14ch; margin: 0 auto 26px; line-height: 1.02; }
.cta .btn { margin-top: 18px; }

/* -----------  Page Header  ----------- */
.page-head {
  padding: 200px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 { font-size: clamp(50px, 9vw, 130px); max-width: 16ch; }
.page-head p { margin-top: 22px; }

/* -----------  Portfolio Gallery  ----------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery .g-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-2);
}
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--easing-out); }
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery .g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0; transition: opacity .4s;
}
.gallery .g-item:hover::after { opacity: 1; }

.gallery .span-4 { grid-column: span 4; }
.gallery .span-5 { grid-column: span 5; }
.gallery .span-6 { grid-column: span 6; }
.gallery .span-7 { grid-column: span 7; }
.gallery .span-8 { grid-column: span 8; }

.gallery .ratio-4-3 { aspect-ratio: 4 / 3; }
.gallery .ratio-3-4 { aspect-ratio: 3 / 4; }
.gallery .ratio-16-10 { aspect-ratio: 16 / 10; }
.gallery .ratio-1-1 { aspect-ratio: 1 / 1; }

/* Filter chips */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.filters button {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim);
  transition: all .3s;
}
.filters button:hover { color: var(--text); border-color: var(--text); }
.filters button.is-active { background: var(--gold); color: #0b0b0b; border-color: var(--gold); }

/* -----------  Lightbox  ----------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(4,4,4,0.96);
  z-index: 9000;
  display: none;
  align-items: center; justify-content: center;
  padding: 60px;
}
.lightbox.is-open { display: flex; animation: fadeIn .3s ease; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.4);
  color: var(--text);
  display: grid; place-items: center;
  font-size: 22px;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); color: #0b0b0b; }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.3em; color: var(--text-dim);
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* -----------  Contact / Form  ----------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 100px); }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-block { border-top: 1px solid var(--line); padding-top: 24px; }
.contact-block .k { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; }
.contact-block .v { font-family: var(--font-serif); font-size: 26px; color: var(--text); }
.contact-block .v a { color: var(--text); transition: color .3s; }
.contact-block .v a:hover { color: var(--gold); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 22px; }
.form .full { grid-column: span 2; }
.field {
  position: relative;
  display: flex; flex-direction: column;
}
.field label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field select option { background: var(--bg-1); color: var(--text); }
.form .actions { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.form .check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text-mute); }
.form .check a { color: var(--gold); }
.form .check input { accent-color: var(--gold); }

.form__success {
  display: none;
  padding: 26px;
  border: 1px solid var(--gold);
  background: rgba(201,169,106,0.08);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 22px;
  text-align: center;
  margin-top: 20px;
}
.form__success.is-on { display: block; animation: fadeIn .4s ease; }

/* -----------  FAQ  ----------- */
.faq { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text);
  gap: 24px;
  transition: color .3s;
}
.faq__q:hover { color: var(--gold); }
.faq__q .ic {
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .4s var(--easing);
}
.faq__q .ic::before, .faq__q .ic::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1px; background: var(--text);
  transform: translate(-50%,-50%);
  transition: transform .4s var(--easing);
}
.faq__q .ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__q .ic { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.faq__item.is-open .faq__q .ic::before { background: #0b0b0b; }
.faq__item.is-open .faq__q .ic::after { transform: translate(-50%,-50%) rotate(0); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--easing);
}
.faq__a p { padding: 0 0 30px; font-size: 16px; max-width: 70ch; }

/* -----------  Footer  ----------- */
.footer { padding: 100px 0 40px; border-top: 1px solid var(--line); background: var(--bg-1); position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer h4 { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 22px; font-weight: 500; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 15px; color: var(--text-dim); transition: color .3s; }
.footer ul a:hover { color: var(--gold); }
.footer__brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
.footer__brand .logo { display: flex; align-items: center; gap: 12px; }
.footer__brand .logo img { width: 50px; }
.footer__brand p { font-size: 14px; color: var(--text-dim); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 18px; font-size: 12px; color: var(--text-mute); }
.footer__bottom a { color: var(--text-mute); }
.footer__bottom a:hover { color: var(--gold); }

/* -----------  Floating contact pill  ----------- */
.float-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 80;
  display: flex; gap: 10px;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .6s var(--easing), transform .6s var(--easing);
}
.float-cta.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta a {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: #0b0b0b;
  font-size: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  transition: transform .4s var(--easing), background .3s;
}
.float-cta a.tel { background: var(--bg-2); color: var(--gold); border: 1px solid var(--gold-deep); }
.float-cta a:hover { transform: translateY(-4px); }

/* -----------  Utility / legal page  ----------- */
.legal { padding-top: 180px; padding-bottom: 100px; max-width: 920px; }
.legal h1 { font-size: clamp(38px, 5vw, 64px); margin-bottom: 30px; }
.legal h2 { font-size: 26px; margin: 40px 0 14px; font-family: var(--font-serif); color: var(--gold-soft); }
.legal p, .legal li { color: var(--text-dim); font-size: 15px; max-width: none; margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 10px 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: block; }

  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }

  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .col-8, .col-7, .col-6, .col-5, .col-4 { grid-column: span 6; }
  .col-3 { grid-column: span 3; }

  .services { grid-template-columns: 1fr; }
  .service { border-right: 0; }

  .process { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gallery .span-4, .gallery .span-5, .gallery .span-6, .gallery .span-7, .gallery .span-8 { grid-column: span 6; }

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

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  h1 { font-size: clamp(38px, 10.5vw, 56px); }
  h2 { font-size: clamp(30px, 8vw, 44px); }
  .lead { font-size: 16px; line-height: 1.6; }
  p { font-size: 15px; }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    gap: 10px;
    flex-wrap: wrap;
  }
  .eyebrow::before { width: 22px; }

  .section { padding: 70px 0; }
  .section--tight { padding: 50px 0; }
  .section-title { gap: 16px; margin-bottom: 32px; }

  .btn {
    --pad-y: 14px;
    --pad-x: 20px;
    font-size: 11px;
    letter-spacing: 0.14em;
    gap: 8px;
    white-space: nowrap;
    max-width: 100%;
  }

  /* Nav */
  .nav { padding: 14px 0; }
  .nav__logo img { width: 36px; height: 36px; }
  .nav__logo-text .brand { font-size: 18px; }
  .nav__logo-text .tag { font-size: 8px; letter-spacing: 0.32em; }
  .nav__burger { width: 40px; height: 40px; }
  .mobile-menu { padding: 110px 20px 40px; }
  .mobile-menu a { font-size: clamp(28px, 7vw, 40px); padding: 8px 0; }
  .mobile-menu__foot a { font-size: 13px; }

  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
    align-items: center;
    min-height: 90vh;
    min-height: 90svh;
  }
  .hero__scroll { display: none; }
  .hero h1 { margin-bottom: 22px; }
  .hero .lead { margin-bottom: 0; }
  .hero__eyebrow { margin-bottom: 22px; }
  .hero__meta { gap: 18px 26px; padding-top: 20px; margin-top: 28px; }
  .hero__meta > div { flex: 1 0 45%; }
  .hero__meta .k { font-size: 9px; letter-spacing: 0.26em; }
  .hero__meta .v { font-size: 15px; }
  .hero__cta {
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .hero__cta .btn { width: 100%; }

  /* Marquee – kleiner und langsamer auf Mobile */
  .marquee { padding: 18px 0; }
  .marquee__track { font-size: 22px; gap: 36px; animation-duration: 28s; }
  .marquee__track span { gap: 36px; }

  /* Work grid */
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .col-8, .col-7, .col-6, .col-5, .col-4, .col-3 { grid-column: span 1; }
  .work-card { aspect-ratio: 4 / 5 !important; }
  .work-card .label { padding: 16px 18px; }
  .work-card .label .t { font-size: 18px; }

  /* Services / Process / Stats */
  .service { padding: 32px 22px; }
  .service h3 { font-size: 22px; }
  .stats { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .stat { padding: 28px 14px; min-width: 0; }
  .stat .num { font-size: 34px; }
  .stat .lab { font-size: 9px; letter-spacing: 0.16em; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
  .process { grid-template-columns: 1fr; gap: 18px; }
  .step .step-num { font-size: 40px; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery [class*="span-"] { grid-column: span 1; }
  .gallery [class*="ratio-"] { aspect-ratio: 4 / 3; }
  .filters { gap: 8px; margin-bottom: 26px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { padding: 9px 16px; font-size: 10px; letter-spacing: 0.22em; flex: 0 0 auto; white-space: nowrap; }

  /* Pricing */
  .price-card { padding: 32px 24px; gap: 18px; }
  .price-card .title { font-size: 26px; }
  .price-card .price { font-size: 44px; }
  .price-card .price .cur { font-size: 22px; }
  .addons { gap: 14px; }
  .addon { padding: 22px; }
  .pricing-cta { grid-template-columns: 1fr !important; padding: 28px 22px !important; gap: 22px !important; }
  .pricing-cta h3 { font-size: 26px !important; }
  .pricing-cta__btn { justify-content: stretch !important; }
  .pricing-cta__btn .btn { width: 100%; }

  /* FAQ */
  .faq__q { font-size: 18px; padding: 22px 0; gap: 16px; }
  .faq__a p { font-size: 15px; }

  /* Forms */
  .form { grid-template-columns: 1fr; gap: 18px; }
  .form .full, .form .actions { grid-column: span 1; }
  .form .actions { flex-direction: column; align-items: stretch; }
  .form .actions .btn { width: 100%; }
  .field input, .field textarea, .field select { font-size: 16px; }

  /* Contact info */
  .contact-block .v { font-size: 20px; }

  /* Compare */
  .compare { aspect-ratio: 4 / 3; }
  .compare__handle::before { width: 44px; height: 44px; }
  .compare__label { font-size: 9px; letter-spacing: 0.22em; padding: 5px 10px; top: 12px; }
  .compare__label.l { left: 12px; }
  .compare__label.r { right: 12px; }

  /* CTA */
  .cta { padding: 70px 0; }
  .cta h2 { font-size: clamp(34px, 9vw, 52px); }

  /* Footer */
  .footer { padding: 70px 0 30px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer__brand { max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 11px; text-align: left; }

  /* Floating CTA */
  .float-cta { bottom: 16px; right: 16px; }
  .float-cta a { width: 50px; height: 50px; }

  /* Quote */
  .quote { padding: 40px 0; }
  .quote q { max-width: 100%; }

  /* Page head */
  .page-head { padding: 150px 0 50px; }
  .page-head p { margin-top: 16px; }

  /* Legal */
  .legal { padding-top: 130px; padding-bottom: 60px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
}
