/* ============================================================
   VISUAL CREATION — Christmas World
   Premium Editorial Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette */
  --night:        #0F172A;
  --night-deep:   #0A1020;
  --fir:          #163020;
  --fir-deep:     #0E2016;
  --gold:         #D4AF37;
  --gold-soft:    #E4C779;
  --gold-glow:    rgba(212, 175, 55, 0.35);
  --cream:        #F8F5EE;
  --sand:         #E8DCCB;
  --ink:          #11151C;

  /* Semantic */
  --bg:           var(--night);
  --bg-alt:       #0C1424;
  --surface:      rgba(255, 255, 255, 0.04);
  --surface-2:    rgba(255, 255, 255, 0.06);
  --line:         rgba(232, 220, 203, 0.14);
  --line-strong:  rgba(212, 175, 55, 0.45);
  --text:         #ECE7DC;
  --text-soft:    rgba(236, 231, 220, 0.66);
  --text-faint:   rgba(236, 231, 220, 0.42);

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-serif:   "Playfair Display", Georgia, serif;
  --font-body:    "Inter", "Manrope", system-ui, -apple-system, sans-serif;

  /* Spacing / rhythm */
  --container:    1280px;
  --container-wide: 1560px;
  --gut:          clamp(20px, 5vw, 64px);
  --section-y:    clamp(80px, 11vw, 180px);
  --radius:       2px;
  --radius-lg:    4px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:    cubic-bezier(0.65, 0.05, 0.36, 1);
  --dur:          0.8s;

  --header-h:     86px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--night); }

/* Ambient base glow */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(212,175,55,0.10), transparent 55%),
    radial-gradient(100% 70% at 0% 110%, rgba(22,48,32,0.55), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ---------- Snow (depth: background + foreground bokeh) ---------- */
#snow {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.7;
  mix-blend-mode: screen;
}
#snow-fg {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 90; opacity: 0.9;
  mix-blend-mode: screen; filter: blur(2.5px);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: rgba(232,220,203,0.08); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 14px var(--gold-glow);
}

/* ---------- Cinematic intro veil ---------- */
.intro-veil {
  position: fixed; inset: 0; z-index: 300; background: var(--night-deep);
  display: grid; place-items: center;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}
.intro-veil__mark {
  font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.3em; color: var(--cream); text-transform: uppercase;
  opacity: 0; animation: veilIn 1.4s var(--ease) 0.2s forwards;
}
.intro-veil__mark b { color: var(--gold); font-weight: 600; }
.intro-veil__line { display: block; width: 0; height: 1px; margin: 1.2rem auto 0; background: var(--gold); animation: veilLine 1.6s var(--ease) 0.5s forwards; }
@keyframes veilIn { to { opacity: 1; } }
@keyframes veilLine { to { width: 120px; } }
.intro-veil.is-gone { opacity: 0; visibility: hidden; }

/* ---------- Ken Burns (slow cinematic zoom) ---------- */
@keyframes kenburns { 0% { transform: scale(1.02); } 100% { transform: scale(1.14); } }
.hero__media video, .hero__media img, .phero__media img {
  animation: kenburns 26s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { .hero__media video, .hero__media img, .phero__media img { animation: none; } }

/* ---------- Film grain overlay ---------- */
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  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.06'/%3E%3C/svg%3E");
}

/* ---------- Atmospheric layers (volumetric light, fog, bloom) ---------- */
.atmo-beams {
  position: absolute; inset: -20% -10%; z-index: 1; pointer-events: none; opacity: 0.5;
  background:
    linear-gradient(102deg, transparent 38%, rgba(228,199,121,0.10) 46%, transparent 54%),
    linear-gradient(98deg, transparent 60%, rgba(248,245,238,0.07) 67%, transparent 74%),
    linear-gradient(110deg, transparent 12%, rgba(228,199,121,0.06) 20%, transparent 28%);
  mix-blend-mode: screen; filter: blur(6px);
  animation: beamDrift 16s ease-in-out infinite alternate;
}
@keyframes beamDrift { 0% { transform: translateX(-3%) skewX(-2deg); } 100% { transform: translateX(3%) skewX(2deg); } }
.atmo-fog {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.6;
  background:
    radial-gradient(60% 50% at 18% 90%, rgba(22,48,32,0.5), transparent 70%),
    radial-gradient(50% 40% at 85% 12%, rgba(212,175,55,0.10), transparent 70%);
  animation: fogDrift 22s ease-in-out infinite alternate;
}
@keyframes fogDrift { 0% { transform: translate3d(-2%, 1%, 0) scale(1.05); } 100% { transform: translate3d(2%, -1%, 0) scale(1.12); } }
.atmo-bloom {
  position: absolute; z-index: 1; pointer-events: none;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; left: 60%; top: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(228,199,121,0.18), transparent 62%);
  filter: blur(30px); mix-blend-mode: screen;
  animation: bloomPulse 9s ease-in-out infinite alternate;
}
@keyframes bloomPulse { 0% { opacity: 0.45; transform: translate(-50%,-50%) scale(0.92); } 100% { opacity: 0.85; transform: translate(-50%,-50%) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .atmo-beams, .atmo-fog, .atmo-bloom { animation: none; } }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.container--wide { max-width: var(--container-wide); }
.section { position: relative; padding-block: var(--section-y); z-index: 1; }
.section--tight { padding-block: clamp(56px, 7vw, 110px); }
main { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.h-xl { font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.02; }
.h-lg { font-size: clamp(2rem, 4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-soft); line-height: 1.75; font-weight: 300; }
.serif-em { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75em;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(270deg, var(--gold), transparent);
}
.text-gold { color: var(--gold-soft); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 1em 2.1em;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.5s var(--ease);
  overflow: hidden; isolation: isolate;
}
.btn .arrow { transition: transform 0.5s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--gold { background: var(--gold); color: var(--night); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-soft); transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn--gold:hover::after { transform: translateY(0); }
.btn--gold:hover { box-shadow: 0 18px 50px -18px var(--gold-glow); }
.btn--ghost {
  color: var(--text); border: 1px solid var(--line-strong); background: transparent;
}
.btn--ghost::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.btn--ghost:hover { color: var(--night); border-color: var(--gold); }
.btn--ghost:hover::after { transform: scaleX(1); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.link-arrow:hover { border-color: var(--gold); gap: 1em; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
              border-color 0.5s var(--ease), height 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Soft cinematic scrim in the transparent (top) state so the nav always
   sits on a defined surface — fades out once the solid header takes over,
   removing the perceived gap on the first viewport. */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(9,14,27,0.62) 0%, rgba(9,14,27,0.26) 55%, rgba(9,14,27,0) 100%);
  opacity: 1; transition: opacity 0.5s var(--ease);
}
.header.is-scrolled::before { opacity: 0; }
.header.is-scrolled {
  height: 72px;
  background: rgba(10, 16, 32, 0.78);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom-color: var(--line);
}
.header__inner {
  width: 100%; max-width: var(--container-wide); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; z-index: 2; }
.brand__mark {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--cream);
}
.brand__mark b { color: var(--gold); font-weight: 600; }
.brand__sub {
  font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--text-faint); margin-top: 5px; font-weight: 600;
}

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.45em;
  padding: 0.7rem 1rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.35s var(--ease);
}
.nav__link:hover, .nav__item:hover .nav__link, .nav__link.is-active { color: var(--cream); }
.nav__link .caret { width: 8px; height: 8px; transition: transform 0.4s var(--ease); opacity: 0.7; }
.nav__item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: rgba(12, 20, 36, 0.92);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.dropdown::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown__link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0.7rem 0.9rem; border-radius: var(--radius);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.dropdown__link:hover { background: var(--surface-2); padding-left: 1.2rem; }
.dropdown__title { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--cream); }
.dropdown__desc { font-size: 0.72rem; color: var(--text-faint); }

.header__cta { display: flex; align-items: center; gap: 1rem; }
.header__cta .btn { padding: 0.78em 1.5em; }

/* Burger */
.burger {
  display: none; width: 44px; height: 44px; position: relative; z-index: 120;
}
.burger span {
  position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--cream);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), top 0.45s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 110;
  background: var(--night-deep);
  padding: calc(var(--header-h) + 20px) var(--gut) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__group { border-bottom: 1px solid var(--line); }
.mobile-nav__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0; font-family: var(--font-serif); font-size: 1.5rem; color: var(--cream);
}
.mobile-nav__head .caret { width: 12px; transition: transform 0.4s var(--ease); }
.mobile-nav__group.is-open .mobile-nav__head .caret { transform: rotate(180deg); }
.mobile-nav__sub { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.mobile-nav__group.is-open .mobile-nav__sub { max-height: 600px; }
.mobile-nav__sub a {
  display: block; padding: 0.7rem 0 0.7rem 1rem; color: var(--text-soft);
  font-size: 0.95rem; border-left: 1px solid var(--line); margin-bottom: 2px;
}
.mobile-nav__sub a:hover { color: var(--gold-soft); }
.mobile-nav__simple {
  display: block; padding: 1.15rem 0; font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--cream); border-bottom: 1px solid var(--line);
}
.mobile-nav__foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.4rem; color: var(--text-soft); font-size: 0.9rem; }
.mobile-nav__foot a { color: var(--gold-soft); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(60px, 9vh, 130px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,16,32,0.55) 0%, rgba(10,16,32,0.1) 30%, rgba(10,16,32,0.55) 70%, rgba(10,16,32,0.96) 100%),
    radial-gradient(120% 90% at 50% 120%, rgba(212,175,55,0.14), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 9rem);
  line-height: 0.92; font-weight: 500; letter-spacing: -0.02em;
  max-width: 16ch;
}
.hero__title .serif-em { display: inline; }
.hero__sub { margin-top: 1.8rem; max-width: 52ch; font-weight: 300; }
.hero__actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-faint);
}
.hero__scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll .line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--cream); animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* Page hero (subpages) */
.phero {
  position: relative; min-height: 72svh; display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 0 clamp(50px, 7vw, 100px); overflow: hidden;
}
.phero__media { position: absolute; inset: -12% 0; z-index: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,32,0.65), rgba(10,16,32,0.35) 45%, rgba(10,16,32,0.97));
}
.phero__inner { position: relative; z-index: 2; }
.phero::before, .cinema::before {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; right: -6vw; top: -10vw;
  background: radial-gradient(circle, rgba(228,199,121,0.16), transparent 62%);
  filter: blur(34px); mix-blend-mode: screen;
  animation: bloomPulse 11s ease-in-out infinite alternate;
}
.cinema::before { left: -6vw; right: auto; top: auto; bottom: -12vw; }
@media (prefers-reduced-motion: reduce) { .phero::before, .cinema::before { animation: none; } }
.phero__title { font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 6.5rem); font-weight: 500; line-height: 0.95; }
.phero__sub { margin-top: 1.2rem; max-width: 56ch; }
.breadcrumb { display: flex; gap: 0.6em; align-items: center; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb .sep { color: var(--gold); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 1.4rem; }
.sec-head h2 { margin-bottom: 1.2rem; }

/* ============================================================
   INTRO / STATEMENT
   ============================================================ */
.statement { text-align: center; }
.statement p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.25; font-weight: 400; color: var(--cream);
  max-width: 22ch; margin-inline: auto; letter-spacing: -0.01em;
}
.statement p .serif-em { font-style: italic; }

/* ============================================================
   PORTFOLIO GRID (editorial)
   ============================================================ */
.portfolio { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 26px); }
.pcard {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); min-height: 360px;
  display: flex; align-items: flex-end;
  isolation: isolate; background: var(--bg-alt);
}
.pcard--tall { min-height: 540px; }
.pcard__img {
  position: absolute; inset: 0; z-index: -2;
}
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,16,32,0) 30%, rgba(10,16,32,0.45) 60%, rgba(10,16,32,0.95));
  transition: background 0.6s var(--ease);
}
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard:hover::after { background: linear-gradient(180deg, rgba(15,23,42,0.1) 10%, rgba(22,48,32,0.5) 55%, rgba(10,16,32,0.97)); }
.pcard__body { position: relative; z-index: 1; padding: clamp(22px, 2.4vw, 40px); width: 100%; }
.pcard__num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold-soft); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.pcard__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--cream); margin-bottom: 0.5rem; }
.pcard__desc { color: var(--text-soft); font-size: 0.95rem; max-width: 38ch; margin-bottom: 1.2rem; }
.pcard__link {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft);
  opacity: 0; transform: translateY(8px); transition: all 0.5s var(--ease);
}
.pcard:hover .pcard__link { opacity: 1; transform: translateY(0); }
/* spans */
.span-7 { grid-column: span 7; } .span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; } .span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; } .span-12 { grid-column: span 12; }

/* ============================================================
   EDITORIAL SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 90px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.split__media--wide img { aspect-ratio: 5/4; }
.split__media .tag {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(10,16,32,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--line); padding: 0.5em 1em; border-radius: 100px;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft);
}
.split__body h2 { margin-bottom: 1.4rem; }
.split__body p + p { margin-top: 1.1rem; }
.split__body .btn, .split__body .link-arrow { margin-top: 2rem; }

/* feature list */
.flist { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.2rem; }
.flist li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.95rem 0; border-top: 1px solid var(--line); color: var(--text-soft);
}
.flist li:last-child { border-bottom: 1px solid var(--line); }
.flist .ic { color: var(--gold); flex: none; margin-top: 3px; }
.flist b { color: var(--cream); font-weight: 600; font-family: var(--font-body); }

/* ============================================================
   FULL-BLEED CINEMATIC BAND
   ============================================================ */
.cinema {
  position: relative; min-height: 88svh; display: flex; align-items: center;
  overflow: hidden; z-index: 1;
}
/* Overscan: Medien größer als der Abschnitt, damit Parallax nie eine Kante zeigt */
.cinema__media { position: absolute; inset: -15% 0; z-index: -2; }
.cinema__media img, .cinema__media video { width: 100%; height: 100%; object-fit: cover; }
.cinema::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(10,16,32,0.92) 0%, rgba(10,16,32,0.55) 45%, rgba(10,16,32,0.2) 100%);
}
.cinema__inner { max-width: 620px; }
.cinema__inner h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.4rem; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 44px); }
.step { position: relative; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display); font-size: 3rem; color: var(--gold-soft);
  line-height: 1; margin-bottom: 1rem; opacity: 0.85;
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--cream); }
.step p { color: var(--text-soft); font-size: 0.96rem; }

/* ============================================================
   GALLERY / MASONRY
   ============================================================ */
.gallery { columns: 3; column-gap: clamp(12px, 1.4vw, 22px); }
.gallery figure { break-inside: avoid; margin-bottom: clamp(12px, 1.4vw, 22px); position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.gallery img { width: 100%; transition: transform 1s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,16,32,0.5));
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.gallery figure:hover::after { opacity: 1; }

/* tiles row */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.tile { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 3/4; border: 1px solid var(--line); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem;
  background: linear-gradient(transparent, rgba(10,16,32,0.9));
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--cream);
}

/* ============================================================
   STAT / NUMBERS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,50px); }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.2rem); color: var(--gold-soft); line-height: 1; }
.stat__label { margin-top: 0.6rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }

/* ============================================================
   CATALOG CARDS
   ============================================================ */
.catalogs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 34px); }
.catalog {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface); transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}
.catalog:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.catalog__img { aspect-ratio: 3/4; overflow: hidden; }
.catalog__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.catalog:hover .catalog__img img { transform: scale(1.06); }
.catalog__body { padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.catalog__title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); }
.catalog__icon { color: var(--gold); flex: none; }

/* ============================================================
   TEAM
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 34px); }
.member { }
.member__img {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); margin-bottom: 1.1rem; background: var(--bg-alt);
}
.member__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.02); transition: transform 1s var(--ease), filter 0.6s var(--ease); }
.member:hover .member__img img { transform: scale(1.04); filter: grayscale(0) contrast(1.05); }
.member__name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--cream); }
.member__role { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin: 0.4rem 0 0.9rem; }
.member__contact { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.86rem; color: var(--text-soft); }
.member__contact a:hover { color: var(--gold-soft); }

/* ============================================================
   JOBS (Karriere)
   ============================================================ */
.jobs { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.job {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
  padding: clamp(1.6rem, 3vw, 2.6rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease);
}
.job:hover { padding-left: 1.2rem; }
.job__title { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--cream); margin-bottom: 0.5rem; }
.job__meta { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.job__desc { color: var(--text-soft); margin-top: 0.9rem; max-width: 70ch; font-size: 0.96rem; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,28px); }
.benefit { padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.benefit .ic { color: var(--gold); margin-bottom: 1rem; }
.benefit h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.benefit p { font-size: 0.88rem; color: var(--text-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 84px); }
.field { margin-bottom: 1.5rem; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.6rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--cream); font-family: var(--font-body); font-size: 0.96rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.req { color: var(--gold); }
.contact-aside { display: flex; flex-direction: column; gap: 2.2rem; }
.contact-block h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.9rem; }
.contact-block p, .contact-block a { color: var(--text); font-size: 1.05rem; line-height: 1.7; }
.contact-block a:hover { color: var(--gold-soft); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative; text-align: center; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 4.6rem); margin-bottom: 1.4rem; }
.cta .glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  filter: blur(40px); z-index: 0; opacity: 0.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; background: var(--night-deep); border-top: 1px solid var(--line); padding-top: clamp(60px, 7vw, 100px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,3vw,48px); padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer__brand .brand__mark { font-size: 1.8rem; }
.footer__brand p { color: var(--text-soft); margin-top: 1.2rem; max-width: 32ch; font-size: 0.95rem; }
.footer__col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.3rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a, .footer__col li { color: var(--text-soft); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--text-soft);
  transition: all 0.4s var(--ease);
}
.socials a:hover { color: var(--night); background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 28px 0; font-size: 0.8rem; color: var(--text-faint);
}
.footer__bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   LEGAL / PROSE
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--cream); margin: 2.4rem 0 0.9rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-soft); margin-bottom: 0.7rem; line-height: 1.8; }
.prose strong { color: var(--cream); font-weight: 600; }
.prose a { color: var(--gold-soft); }
.prose a:hover { text-decoration: underline; }
.prose .dl { display: grid; grid-template-columns: 200px 1fr; gap: 0.4rem 1.6rem; margin: 1rem 0; }
.prose .dl dt { color: var(--gold-soft); font-size: 0.85rem; letter-spacing: 0.04em; }
.prose .dl dd { color: var(--text); }
.prose .note { padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-left: 2px solid var(--gold); border-radius: var(--radius); background: var(--surface); margin: 1.6rem 0; }
@media (max-width: 560px) { .prose .dl { grid-template-columns: 1fr; gap: 0 0; } .prose .dl dd { margin-bottom: 0.6rem; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.reveal-line.is-in > span { transform: none; }

/* parallax */
[data-parallax] { will-change: transform; }

/* ============================================================
   PINNED STICKY SCENES (scroll storytelling)
   ============================================================ */
.pin { position: relative; z-index: 1; }
.pin__stage {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; align-items: center; perspective: 1600px;
}
.pin__layers { position: absolute; inset: 0; z-index: 0; }
.pin__layer {
  position: absolute; inset: 0; opacity: 0; will-change: opacity, transform, clip-path, filter;
  transition: opacity 1.25s var(--ease), transform 1.6s var(--ease), filter 1.25s var(--ease), clip-path 1.5s var(--ease-soft);
}
.pin__layer img, .pin__layer video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.pin__layer::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,34,0.6) 0%, rgba(11,18,34,0.26) 40%, transparent 76%),
    linear-gradient(180deg, rgba(11,18,34,0.55) 0%, transparent 26%),
    linear-gradient(0deg, rgba(11,18,34,0.6), transparent 42%),
    radial-gradient(90% 70% at 80% 22%, rgba(228,199,121,0.10), transparent 60%);
}
/* --- transition characters --- */
.pin__layer { transform: scale(1.12); filter: blur(14px) brightness(0.55); }   /* default = zoom morph */
.pin__layer.is-active { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
.pin__layer.t-curtain { transform: scale(1.06); filter: brightness(0.5); clip-path: inset(50% 0 50% 0); }
.pin__layer.t-curtain.is-active { transform: scale(1); filter: none; clip-path: inset(0 0 0 0); }
.pin__layer.t-wipe { transform: scale(1.05); filter: brightness(0.6); clip-path: inset(0 0 0 100%); }
.pin__layer.t-wipe.is-active { transform: scale(1); filter: none; clip-path: inset(0 0 0 0); }
.pin__layer.t-wipe-down { transform: scale(1.05); filter: brightness(0.6); clip-path: inset(0 0 100% 0); }
.pin__layer.t-wipe-down.is-active { transform: scale(1); filter: none; clip-path: inset(0 0 0 0); }
.pin__layer.t-light { transform: scale(1.18); filter: blur(20px) brightness(2.4); }
.pin__layer.t-light.is-active { transform: scale(1); filter: blur(0) brightness(1); }

/* moving light sweep + foreground depth elements inside a stage */
.pin__beams { position: absolute; inset: -15%; z-index: 1; pointer-events: none; opacity: 0.55; mix-blend-mode: screen;
  background: linear-gradient(100deg, transparent 40%, rgba(228,199,121,0.12) 48%, transparent 56%); filter: blur(8px);
  animation: beamDrift 14s ease-in-out infinite alternate; }
.pin__atmo { position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: transform;
  background: radial-gradient(45% 45% at 30% 80%, rgba(22,48,32,0.45), transparent 70%); }
.pin__fg { position: absolute; z-index: 2; pointer-events: none; will-change: transform;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; right: -6vw; bottom: -10vw;
  background: radial-gradient(circle, rgba(228,199,121,0.16), transparent 60%); filter: blur(28px); mix-blend-mode: screen; }
@media (prefers-reduced-motion: reduce) { .pin__beams { animation: none; } }
.pin__caps { position: relative; z-index: 4; width: 100%; }
.pin__caps-inner { position: relative; min-height: 46vh; }
.pin__cap {
  position: absolute; top: 0; left: 0; right: 0; max-width: 640px;
  opacity: 0; transform: translateY(48px); pointer-events: none;
  transition: opacity 1s var(--ease);
}
.pin__cap.is-active {
  opacity: 1; transform: translateY(var(--cy, 0px)); pointer-events: auto;
  transition: opacity 1s var(--ease), transform 0.3s linear;
}
.pin__index { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); line-height: 1; color: var(--gold-soft); opacity: 0.9; margin-bottom: 0.4rem; }
.pin__cap h3 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 4.6rem); line-height: 1; color: var(--cream); margin-bottom: 1.1rem; font-weight: 500; }
.pin__cap p { color: var(--text-soft); font-size: clamp(1rem, 1.5vw, 1.25rem); max-width: 44ch; margin-bottom: 1.6rem; font-weight: 300; }
.pin__counter { position: absolute; right: var(--gut); bottom: 6vh; z-index: 3; display: flex; align-items: center; gap: 1rem; }
.pin__dots { display: flex; flex-direction: column; gap: 10px; }
.pin__dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--line-strong); transition: all 0.5s var(--ease); }
.pin__dot.is-active { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px var(--gold-glow); transform: scale(1.3); }
.pin__progress-label { font-family: var(--font-display); color: var(--text-faint); font-size: 0.9rem; letter-spacing: 0.1em; writing-mode: vertical-rl; }

/* ============================================================
   CATALOG CINEMATIC SHOWCASE
   ============================================================ */
.showcase .pin__layer img { object-fit: cover; }
.showcase .pin__layer::after { background:
    linear-gradient(90deg, rgba(10,16,32,0.78) 0%, rgba(10,16,32,0.38) 48%, transparent 82%),
    linear-gradient(180deg, rgba(10,16,32,0.5) 0%, transparent 26%),
    linear-gradient(0deg, rgba(10,16,32,0.75), transparent 52%); }
/* spotlight pool behind the floating cover */
.showcase__spot {
  position: absolute; right: clamp(10px, 5vw, 90px); top: 50%; transform: translate(15%, -50%);
  width: clamp(320px, 34vw, 560px); height: clamp(320px, 34vw, 560px); z-index: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(228,199,121,0.22), rgba(228,199,121,0.06) 45%, transparent 70%);
  filter: blur(20px); mix-blend-mode: screen;
}
.showcase__cover {
  position: absolute; right: clamp(20px, 6vw, 120px); top: 50%; transform: translateY(-50%);
  width: clamp(200px, 23vw, 360px); aspect-ratio: 3/4; z-index: 3;
  transform-style: preserve-3d; will-change: transform;
}
.showcase__cover .pin__layer {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: 0 60px 100px -35px rgba(0,0,0,0.85), 0 0 0 1px rgba(228,199,121,0.12);
  background: var(--bg-alt);
  filter: none; transform: translateY(36px) rotateY(14deg) scale(0.98);
  transition: opacity 0.9s var(--ease), transform 1s var(--ease);
}
.showcase__cover .pin__layer.is-active { transform: translateY(0) rotateY(0) scale(1); }
.showcase__cover .pin__layer img { transform: scale(1.02); }
.showcase__cover .pin__layer::after {
  background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 40%);
  mix-blend-mode: screen;
}
@media (max-width: 820px) { .showcase__cover, .showcase__spot { display: none; } }

/* ============================================================
   TEXT CLIP REVEAL (editorial headlines)
   ============================================================ */
.clip { display: block; overflow: hidden; padding-bottom: 0.04em; }
.clip > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.clip:nth-child(2) > span { transition-delay: 0.08s; }
.clip:nth-child(3) > span { transition-delay: 0.16s; }
[data-reveal].is-in .clip > span, .reveal-line.is-in > span, .clip.is-in > span { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .header__cta { display: none; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .benefits { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .steps, .catalogs, .tiles { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .portfolio { gap: 14px; }
  .span-7, .span-5, .span-6, .span-4, .span-8 { grid-column: span 12; }
  .pcard { min-height: 300px; }
  .pcard--tall { min-height: 340px; }
  .cinema__inner { max-width: 100%; }
  .cinema::after { background: linear-gradient(180deg, rgba(10,16,32,0.5), rgba(10,16,32,0.85)); }
  .job { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --gut: 22px; }
  .team { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .stats, .benefits { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 1; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CINEMATIC READABILITY — focus zones, volumetric light, type
   No flat panels: feathered luminance + atmospheric diffusion
   ============================================================ */

/* --- Typography: warm-white, soft luminous separation --- */
.display, .hero__title, .phero__title, .pin__cap h3, .cinema__inner h2,
.cta h2, .statement p, .h-xl, .h-lg {
  text-shadow: 0 1px 28px rgba(8,13,26,0.42), 0 0 60px rgba(228,199,121,0.10);
}
/* body / sub copy over imagery: warmer white + soft diffusion (never pure white) */
.hero__sub, .phero__sub, .pin__cap p, .cinema__inner p {
  color: #F1EBDD;
  text-shadow: 0 1px 18px rgba(8,13,26,0.55), 0 0 2px rgba(8,13,26,0.25);
}
.lead { letter-spacing: 0.012em; line-height: 1.8; }
.pin__cap p { font-weight: 400; }
.pcard__title, .tile__cap, .catalog__title { text-shadow: 0 2px 20px rgba(8,13,26,0.55); }
.pcard__desc { text-shadow: 0 1px 14px rgba(8,13,26,0.5); }
.breadcrumb { text-shadow: 0 1px 14px rgba(8,13,26,0.5); }

/* --- HERO focus zone: feathered luminance + depth diffusion --- */
.hero__inner::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -30%; right: -15%; top: -45%; bottom: -50%;
  background: radial-gradient(120% 118% at 18% 64%, rgba(9,14,27,0.55) 0%, rgba(9,14,27,0.2) 44%, transparent 72%);
}
/* warm volumetric glow behind hero headline */
.hero__title { position: relative; }
.hero__title::before {
  content: ""; position: absolute; z-index: -1;
  left: -6%; top: -20%; width: 70%; height: 160%;
  background: radial-gradient(circle at 30% 50%, rgba(228,199,121,0.16), transparent 60%);
  filter: blur(30px); mix-blend-mode: screen; pointer-events: none;
}

/* --- PIN caption focus zone: natural light falloff + soft depth blur --- */
.pin__caps-inner { position: relative; z-index: 0; }
.pin__caps-inner::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -30%; right: 0; top: -45%; bottom: -50%;
  background: radial-gradient(100% 115% at 22% 50%, rgba(9,14,27,0.5) 0%, rgba(9,14,27,0.16) 46%, transparent 72%);
}
.pin__cap h3 { position: relative; }
.pin__cap h3::before {
  content: ""; position: absolute; z-index: -1;
  left: -8%; top: -25%; width: 80%; height: 150%;
  background: radial-gradient(circle at 30% 50%, rgba(228,199,121,0.14), transparent 60%);
  filter: blur(26px); mix-blend-mode: screen; pointer-events: none;
}

/* --- PHERO focus zone (subpage heroes) --- */
.phero__inner { position: relative; z-index: 2; }
.phero__inner::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -30%; right: -12%; top: -45%; bottom: -60%;
  background: radial-gradient(120% 120% at 18% 72%, rgba(9,14,27,0.48) 0%, rgba(9,14,27,0.14) 46%, transparent 72%);
}

/* --- CINEMA band focus zone --- */
.cinema__inner { position: relative; }
.cinema__inner::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -30%; right: -15%; top: -45%; bottom: -45%;
  background: radial-gradient(105% 120% at 18% 50%, rgba(9,14,27,0.44) 0%, transparent 70%);
}

/* Reveal focus: calm motion while text animates in (subtle attenuation) */
[data-reveal]:not(.is-in) .pin__cap { filter: none; }

@media (prefers-reduced-motion: reduce) {
  .hero__title::before, .pin__cap h3::before { animation: none; }
}

/* ---------- Pin scenes responsive ---------- */
@media (max-width: 820px) {
  .pin__stage { align-items: flex-end; padding-bottom: 12vh; }
  .pin__layer::after { background: linear-gradient(0deg, rgba(10,16,32,0.95) 8%, rgba(10,16,32,0.35) 60%, rgba(10,16,32,0.5)); }
  .pin__cap { max-width: 100%; }
  .pin__caps-inner { min-height: 40vh; }
  .pin__counter { bottom: 4vh; right: var(--gut); }
  .pin__progress-label { display: none; }
}

/* ============================================================
   TEAM (Ansprechpartner) — clean readable cards
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 28px); }
.member {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-alt);
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.member:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 40px 72px -36px rgba(0,0,0,0.7); }
.member__img { aspect-ratio: 4/5; position: relative; overflow: hidden; margin: 0; border: 0; border-radius: 0; background: var(--bg-alt); }
.member__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(0.35) contrast(1.02); transition: transform 1s var(--ease), filter 0.6s var(--ease); }
.member:hover .member__img img { transform: scale(1.05); filter: grayscale(0) contrast(1.04); }
.member__body { padding: 1.3rem 1.4rem 1.5rem; }
.member__name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--cream); line-height: 1.15; }
.member__role { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin: 0.55rem 0 1.1rem; min-height: 2.4em; }
.member__contact { display: flex; flex-direction: column; gap: 0.55rem; }
.member__contact a { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; color: var(--text-soft); transition: color 0.3s var(--ease); word-break: break-word; }
.member__contact a:hover { color: var(--gold-soft); }
.member__contact svg { color: var(--gold); flex: none; opacity: 0.85; }
@media (max-width: 1080px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .team { grid-template-columns: 1fr; } .member__role { min-height: 0; } }

/* ============================================================
   BENEFITS — icon cards (Karriere)
   ============================================================ */
.benefit { transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease); }
.benefit:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--surface-2); }
.benefit .ic {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--gold); margin-bottom: 1.3rem;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.benefit:hover .ic { background: var(--gold); color: var(--night); box-shadow: 0 0 30px -6px var(--gold-glow); }

/* ============================================================
   JOBS — elegant accordion (Karriere)
   ============================================================ */
.jobs-acc { border-top: 1px solid var(--line); }
details.jobx { border-bottom: 1px solid var(--line); }
details.jobx > summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 2.5vw, 2rem); align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0; transition: padding-left 0.5s var(--ease);
}
details.jobx > summary::-webkit-details-marker { display: none; }
details.jobx > summary:hover { padding-left: clamp(0.5rem, 1.5vw, 1.2rem); }
.jobx__no { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--gold-soft); line-height: 1; }
.jobx__t { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 1.95rem); color: var(--cream); line-height: 1.1; }
.jobx__chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.7rem; }
.chip { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); border: 1px solid var(--line); border-radius: 100px; padding: 0.45em 0.9em; }
.jobx__toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--gold-soft); flex: none;
  transition: transform 0.5s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease);
}
details.jobx[open] .jobx__toggle { transform: rotate(45deg); background: var(--gold); color: var(--night); border-color: var(--gold); }
.jobx__panel { max-width: 76ch; padding: 0 0 clamp(1.6rem, 3vw, 2.4rem); animation: jobFade 0.6s var(--ease); }
.jobx__panel p { color: var(--text-soft); }
.jobx__panel .btn { margin-top: 1.5rem; }
@keyframes jobFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@media (max-width: 620px) {
  details.jobx > summary { grid-template-columns: auto 1fr; }
  .jobx__toggle { grid-column: 1; grid-row: 1; }
}

/* ============================================================
   KONTAKT — premium form card, info cards, map band
   ============================================================ */
.contact-form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 48px);
}
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.cinfo {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.3rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.cinfo:hover { transform: translateY(-3px); border-color: var(--line-strong); background: var(--surface-2); }
.cinfo__ic {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--gold); flex: none;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.cinfo:hover .cinfo__ic { background: var(--gold); color: var(--night); }
.cinfo__label { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.35rem; }
.cinfo__val { color: var(--text); font-size: 1rem; line-height: 1.55; }
.cinfo__val a { color: var(--text); }
.cinfo__val a:hover { color: var(--gold-soft); }

.map-band { position: relative; z-index: 1; border-top: 1px solid var(--line); }
.map-band iframe {
  width: 100%; height: clamp(380px, 52vh, 580px); border: 0; display: block;
  filter: grayscale(0.45) invert(0.92) hue-rotate(180deg) contrast(0.92) brightness(0.95);
}
.map-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,16,32,0.75) 0%, rgba(10,16,32,0.2) 40%, transparent 70%);
}
.map-chip {
  position: absolute; z-index: 2; left: clamp(20px, 5vw, 64px); bottom: clamp(22px, 5vw, 54px);
  max-width: 360px; padding: clamp(20px, 2.4vw, 32px);
  background: rgba(12,20,36,0.82); -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
}
.map-chip h4 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); margin-bottom: 0.7rem; }
.map-chip p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.2rem; }
