:root {
  --nx-bg: #080808;
  --nx-panel: #101010;
  --nx-text: #f2f2f2;
  --nx-muted: rgba(242, 242, 242, .62);
  --nx-soft: rgba(242, 242, 242, .12);
  --nx-accent: #ff6b00;
  --nx-max: 1180px;
  --nx-wide: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--nx-bg);
  color: var(--nx-text);
  font-family: Geomanist, Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--nx-bg);
  color: var(--nx-text);
}

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

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

.pb-shell {
  min-height: 100vh;
  background: var(--nx-bg);
  position: relative;
  overflow: hidden;
}

.pb-free-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pb-free-layer {
  position: absolute;
  z-index: var(--layer-z, 0);
  left: var(--layer-x, 50%);
  top: var(--layer-y, 40%);
  width: var(--layer-w, 260px);
  opacity: var(--layer-o, 1);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.pb-module {
  position: relative;
  z-index: 2;
}

.pb-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--nx-text);
  background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.pb-topbar a {
  pointer-events: auto;
}

.pb-logo {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.pb-nav {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pb-nav a:hover {
  color: var(--nx-accent);
}

.pb-status {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  color: var(--nx-muted);
  text-align: center;
}

.pb-list-hero {
  min-height: 72vh;
  display: flex;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 84px) 64px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .35), var(--nx-bg)),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, .18), transparent 36%);
}

.pb-list-hero-inner {
  max-width: 980px;
}

.pb-kicker {
  margin: 0 0 18px;
  color: var(--nx-accent);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.pb-list-title {
  margin: 0;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pb-list-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--nx-muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.pb-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(16px, 3vw, 34px);
  background: #080808;
}

.pb-project-card {
  position: relative;
  min-height: clamp(320px, 38vw, 560px);
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
}

.pb-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.82);
  transform: scale(1.02);
  transition: transform .7s ease, filter .7s ease;
}

.pb-project-card:hover img {
  filter: saturate(1.05) brightness(1);
  transform: scale(1.075);
}

.pb-project-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 4vw, 44px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
}

.pb-project-card-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pb-project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .64);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pb-module {
  color: var(--module-text, var(--nx-text));
  background: var(--module-bg, var(--nx-bg, #080808));
}

/* ── Per-module font overrides via CSS custom props ─────────────── */
.pb-module h1, .pb-module h2, .pb-module h3,
.pb-module .pb-hero-title, .pb-module .pb-list-title {
  font-family: var(--module-h-font, inherit);
}
.pb-module p, .pb-module .pb-hero-subtitle,
.pb-module .pb-text > *, .pb-module .pb-col-text > * {
  font-family: var(--module-b-font, inherit);
}

/* ══ Text Templates ════════════════════════════════════════════════ */

/* text-02: Editorial — oversized headline, body right-aligned indent */
.pb-text-tpl-02 .pb-text h2 {
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: .9;
  margin-bottom: .6em;
}
.pb-text-tpl-02 .pb-text p,
.pb-text-tpl-02 .pb-text ul {
  max-width: 540px;
  margin-left: auto;
  padding-left: 2rem;
  border-left: 2px solid var(--module-text, currentColor);
  opacity: .8;
}

/* text-03: Centered */
.pb-text-tpl-03 .pb-text,
.pb-text-align-center .pb-text {
  text-align: center;
}
.pb-text-tpl-03 .pb-text h2 {
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -.03em;
}
.pb-text-tpl-03 .pb-text p,
.pb-text-tpl-03 .pb-text ul {
  max-width: 600px;
  margin-inline: auto;
}

/* text-04: Display — giant headline only */
.pb-text-tpl-04 .pb-text h2 {
  font-size: clamp(4rem, 10vw, 14rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: .86;
  text-transform: uppercase;
}
.pb-text-tpl-04 .pb-kicker {
  font-size: .6rem;
  letter-spacing: .4em;
  margin-bottom: 1rem;
}

/* text-05: Split — headline left, body right */
.pb-text-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.pb-text-split-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 4.5rem);
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: .9;
}
@media (max-width: 680px) {
  .pb-text-split { grid-template-columns: 1fr; }
}

/* ══ Image Templates ════════════════════════════════════════════════ */

/* image-03: Framed */
.pb-img-tpl-03 .pb-image-full {
  outline: 6px solid currentColor;
  outline-offset: -12px;
}

/* image-04: B&W filter */
.pb-img-tpl-04 .pb-image-full img,
.pb-img-tpl-04 .pb-image-cinematic img {
  filter: grayscale(1) contrast(1.05);
}
.pb-img-tpl-04 .pb-image-full:hover img,
.pb-img-tpl-04 .pb-image-cinematic:hover img {
  filter: grayscale(0) contrast(1);
  transition: filter .6s ease;
}

/* ══ Spacer decorator ══════════════════════════════════════════════ */
.pb-spacer-dots {
  display: flex; gap: 8px; align-items: center;
}
.pb-spacer-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: .35;
}

.pb-width-content {
  max-width: var(--nx-max);
  margin-inline: auto;
}

.pb-width-narrow {
  max-width: 780px;
  margin-inline: auto;
}

.pb-width-wide {
  max-width: var(--nx-wide);
  margin-inline: auto;
}

.pb-width-fullWidth,
.pb-width-fullFrame {
  width: 100%;
}

.pb-pad-none {
  padding-top: 0;
  padding-bottom: 0;
}

.pb-pad-small {
  padding-top: 36px;
  padding-bottom: 36px;
}

.pb-pad-medium {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.pb-pad-large {
  padding-top: clamp(84px, 12vw, 160px);
  padding-bottom: clamp(84px, 12vw, 160px);
}

.pb-pad-xlarge {
  padding-top: clamp(112px, 16vw, 220px);
  padding-bottom: clamp(112px, 16vw, 220px);
}

/* Asymmetrisches Padding (oben ≠ unten) — inline style override */
.pb-pad-custom {}

.pb-inner-pad {
  /* matches .pf-side footer navigation padding exactly */
  padding-left:  var(--pad-left,  clamp(28px, 5vw, 70px));
  padding-right: var(--pad-right, clamp(28px, 5vw, 70px));
}

.pb-hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.pb-hero-fullScreen,
.pb-hero-fullFrame {
  min-height: 100vh;
}

.pb-hero-media {
  position: absolute;
  inset: 0;
}

.pb-hero-media img,
.pb-hero-media video,
.pb-hero-picture,
.pb-hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-hero-picture {
  display: block;
}

.pb-hero-media.is-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pbHeroFade calc(var(--slide-count) * 5s) infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

.pb-hero-media.pb-hero-anim-wipe-left img {
  animation-name: pbHeroWipeLeft;
}

.pb-hero-media.pb-hero-anim-wipe-right img {
  animation-name: pbHeroWipeRight;
}

.pb-hero-media.pb-hero-anim-rectangles img,
.pb-hero-media.pb-hero-anim-brush img {
  animation-name: pbHeroFade;
}

@keyframes pbHeroFade {
  0%, 100% { opacity: 0; }
  6%, 30% { opacity: 1; }
  38% { opacity: 0; }
}

@keyframes pbHeroWipeLeft {
  0%, 100% { opacity: 0; clip-path: inset(0 100% 0 0); }
  6%, 30% { opacity: 1; clip-path: inset(0); }
  38% { opacity: 0; clip-path: inset(0); }
}

@keyframes pbHeroWipeRight {
  0%, 100% { opacity: 0; clip-path: inset(0 0 0 100%); }
  6%, 30% { opacity: 1; clip-path: inset(0); }
  38% { opacity: 0; clip-path: inset(0); }
}

.pb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .24) 42%, rgba(0, 0, 0, .86));
  pointer-events: none;
}

.pb-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  padding: 0 clamp(22px, 6vw, 92px) clamp(48px, 8vw, 96px);
  overflow: hidden;
}

.pb-hero-title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -2px;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1200px) {
  .pb-hero-title { font-size: clamp(2.4rem, 6vw, 6rem); }
}

@media (max-width: 820px) {
  .pb-hero-title { font-size: clamp(1.8rem, 5.5vw, 4rem); }
}

.pb-hero-subtitle {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

/* ── Hero Templates ────────────────────────────────────────────── */

/* hero-02 · Zentriert — content centered, gradient centered */
.pb-hero-template-hero-02 {
  align-items: center;
}
.pb-hero-template-hero-02 .pb-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  padding-bottom: clamp(48px, 8vw, 96px);
}
.pb-hero-template-hero-02 .pb-hero-title {
  text-align: center;
}
.pb-hero-template-hero-02 .pb-hero-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.pb-hero-template-hero-02::after {
  background: radial-gradient(ellipse at 50% 70%, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 70%);
}

/* hero-03 · Minimal — light overlay, title top, smaller type */
.pb-hero-template-hero-03 {
  align-items: flex-start;
}
.pb-hero-template-hero-03::after {
  background: linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.04) 100%);
}
.pb-hero-template-hero-03 .pb-hero-content {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 0;
}
.pb-hero-template-hero-03 .pb-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 4.5rem);
  letter-spacing: -1px;
  line-height: .9;
}
.pb-hero-template-hero-03 .pb-kicker {
  opacity: .7;
}

/* hero-04 · Split — image right half, text on left colored panel */
.pb-hero-template-hero-04::after {
  display: none;
}
.pb-hero-template-hero-04 .pb-hero-media {
  clip-path: inset(0 0 0 50%);
}
.pb-hero-template-hero-04 {
  align-items: center;
  min-height: 88vh;
}
.pb-hero-template-hero-04 .pb-hero-content {
  max-width: 50%;
  padding-right: clamp(22px, 4vw, 60px);
}
.pb-hero-template-hero-04 .pb-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 7.5rem);
}

/* hero-05 · Cinematic — letterbox proportions, giant centered title */
.pb-hero-template-hero-05 {
  min-height: 56vh;
  max-height: 62vh;
  align-items: flex-end;
}
.pb-hero-template-hero-05 .pb-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  padding-bottom: clamp(28px, 5vw, 56px);
}
.pb-hero-template-hero-05 .pb-hero-title {
  font-size: clamp(5rem, 15vw, 20rem);
  letter-spacing: -8px;
  line-height: .76;
  text-align: center;
}
.pb-hero-template-hero-05::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.9) 100%);
}

/* hero-06 · Rahmen — inner border frame */
.pb-hero-template-hero-06::before {
  content: '';
  position: absolute;
  inset: clamp(12px, 2.5vw, 28px);
  border: 1px solid rgba(255,255,255,.4);
  z-index: 3;
  pointer-events: none;
}
.pb-hero-template-hero-06 .pb-hero-content {
  padding: 0 clamp(34px, 7vw, 108px) clamp(56px, 9vw, 110px);
}

/* hero-07 · Magazine — oversized title bleeds toward bottom */
.pb-hero-template-hero-07::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(0,0,0,.96) 85%);
}
.pb-hero-template-hero-07 .pb-hero-title {
  font-size: clamp(7rem, 20vw, 26rem);
  line-height: .74;
  letter-spacing: -8px;
  margin-bottom: -0.08em;
}
.pb-hero-template-hero-07 .pb-kicker {
  border-left: 3px solid var(--nx-accent, #ff6b00);
  padding-left: 10px;
  font-size: clamp(.65rem, 1vw, .85rem);
  letter-spacing: .24em;
  text-transform: uppercase;
}
.pb-hero-template-hero-07 .pb-hero-subtitle {
  font-size: clamp(.85rem, 1.3vw, 1.1rem);
}

/* hero-08 · Outline — title rendered as stroke text, no fill */
.pb-hero-template-hero-08 .pb-hero-title {
  -webkit-text-stroke: 2px currentColor;
  color: transparent !important;
}
.pb-hero-template-hero-08::after {
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.5));
}
.pb-hero-template-hero-08 .pb-hero-subtitle {
  color: rgba(255,255,255,.55);
}

/* hero-09 · Dark — heavy overlay, accent-colored title */
.pb-hero-template-hero-09::after {
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.88) 100%);
}
.pb-hero-template-hero-09 .pb-hero-title {
  color: var(--nx-accent, #ff6b00);
}
.pb-hero-template-hero-09 .pb-kicker {
  color: rgba(255,255,255,.5);
  letter-spacing: .22em;
  font-size: clamp(.6rem, .9vw, .8rem);
  text-transform: uppercase;
}

/* hero-10 · Typografisch — image hidden, pure typography on bg color */
.pb-hero-template-hero-10 .pb-hero-media {
  opacity: 0;
}
.pb-hero-template-hero-10::after {
  display: none;
}
.pb-hero-template-hero-10 {
  align-items: center;
  min-height: 64vh;
}
.pb-hero-template-hero-10 .pb-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
}
.pb-hero-template-hero-10 .pb-hero-title {
  font-size: clamp(5rem, 17vw, 22rem);
  line-height: .76;
  letter-spacing: -10px;
  text-align: center;
}
.pb-hero-template-hero-10 .pb-hero-subtitle {
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pb-text {
  display: grid;
  gap: 24px;
}

.pb-text h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 7rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pb-text p {
  max-width: 780px;
  margin: 0;
  color: var(--nx-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}

.pb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 107, 0, .5);
  color: var(--nx-accent);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pb-cta:hover {
  background: var(--nx-accent);
  color: #080808;
}

/* Default: width 100%, height auto */
.pb-image-full img {
  width: 100%;
  height: auto;
  display: block;
}

/* Portrait image — centered, tall so it scrolls past the fold */
.pb-image-full.pb-image-portrait {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pb-image-full.pb-image-portrait img {
  width: auto;
  max-width: 100%;
  height: 150vh;
  object-fit: contain;
}

/* Landscape image — full width, no height limit */
.pb-image-full.pb-image-landscape img {
  width: 100%;
  height: auto;
}

.pb-image-cinematic img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pb-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, .42);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pb-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 2), minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 22px);
}

.pb-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pb-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}

.pb-meta-item {
  min-height: 132px;
  padding: 24px;
  background: var(--nx-bg);
}

.pb-meta-label {
  color: var(--nx-accent);
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.pb-meta-value {
  margin-top: 18px;
  color: var(--nx-text);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.25;
}

.pb-quote {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2rem, 5vw, 5.8rem);
  line-height: 1;
}

.pb-quote-author {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 5vw;
  color: var(--nx-accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.pb-project-nav {
  display: flex;
  min-height: 42vh;
  overflow: hidden;
  position: relative;
}

/* Canvas-blend footer */
.pb-footer-canvas {
  position: relative;
  height: 58vh;
  overflow: hidden;
}
.pb-footer-canvas .pf-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.pb-footer-canvas .pf-side {
  position: relative;
  z-index: 2;
  flex: 1 1 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(28px, 5vw, 70px);
  color: #fff;
  text-decoration: none;
  transition: flex .55s cubic-bezier(.16,1,.3,1);
  min-width: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}
.pb-footer-canvas .pf-side--right {
  text-align: right;
}

/* Non-blend fallback (pb-project-nav without blend) */
.pb-project-nav:not(.pb-footer-canvas) a,
.pb-project-nav:not(.pb-footer-canvas) span {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 14px;
  padding: clamp(28px, 5vw, 70px);
  background: #101010;
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  transition: flex .6s cubic-bezier(.16,1,.3,1);
}

.pb-project-footer {
  min-height: 58vh;
}

.pb-project-footer:not(.pb-footer-canvas) a,
.pb-project-footer:not(.pb-footer-canvas) span {
  min-height: 58vh;
}

.pb-project-nav small {
  display: block;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-project-nav strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Semi-transparent white label box */
.pb-footer-canvas .pf-side small,
.pb-footer-canvas .pf-side strong {
  color: rgba(255,255,255,.55);
}
.pb-footer-canvas .pf-side small {
  color: rgba(255,255,255,.38);
}

/* Label layout */
.pb-footer-canvas .pf-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
  overflow: visible;
}
.pb-footer-canvas .pf-side--right .pf-label {
  align-self: flex-end;
  text-align: right;
}

/* Big 2-line heading: PREVIOUS / NEXT PROJECT */
.pb-footer-canvas .pf-nav-word {
  font-size: clamp(2.2rem, 4.5vw, 6rem);
  font-weight: 950;
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #fff;
  padding-top: .04em;
}

/* Small title below — colored, truncated */
.pb-footer-canvas .pf-nav-title {
  font-size: clamp(.65rem, 1vw, .9rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  opacity: .85;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER TEMPLATES  02 – 10  (all canvas-based, same structure as 01)
   Text overlay positions vary per template
══════════════════════════════════════════════════════════════════ */

/* footer-04 Welle: text centered */
.pb-footer-template-footer-04 .pf-side {
  justify-content: center;
}
/* footer-06 Shutter: text at top */
.pb-footer-template-footer-06 .pf-side {
  justify-content: flex-start;
  padding-top: clamp(28px, 5vw, 64px);
}
/* footer-09 Radial: text centered */
.pb-footer-template-footer-09 .pf-side {
  justify-content: center;
  text-align: center;
}
.pb-footer-template-footer-09 .pf-side--right {
  text-align: center;
}

/* ── Columns / Audio / Teaser — Live-Renderer ─────────────────── */
.pb-live-columns {
  display: grid;
  gap: clamp(10px, 1.6vw, 22px);   /* matches pb-grid so image/image ↔ image/text look consistent */
  align-items: start;
}

.pb-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0; /* prevent grid blowout */
}

/* Column child — image */
.pb-col-image {
  width: 100%;
}
.pb-col-image img {
  width: 100%;
  height: auto;
  display: block;
}
.pb-col-image.pb-image-portrait img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.pb-col-image.pb-col-fullbleed {
  margin-left: calc(-1 * clamp(20px, 5vw, 72px));
  margin-right: calc(-1 * clamp(20px, 5vw, 72px));
}

/* Column child — text */
.pb-col-text {
  width: 100%;
}
.pb-col-text h2 { margin: 0 0 .6em; }
.pb-col-text p  { margin: 0 0 .7em; }

/* Column child — video */
.pb-col-video { width: 100%; }

.pb-live-audio {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 22px 28px;
  border-radius: 14px;
}

.pb-wave {
  display: flex;
  gap: 3px;
  align-items: center;
  flex: 1;
  height: 52px;
}

.pb-wave span {
  width: 4px;
  border-radius: 999px;
  background: var(--nx-accent, #ff6b00);
  opacity: .7;
}

.pb-live-teaser {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 40px;
  display: grid;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s;
}

.pb-live-teaser:hover {
  border-color: var(--nx-accent, #ff6b00);
}

.pb-live-teaser h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.pb-live-teaser p {
  margin: 0;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   LORE TEASER TEMPLATES
══════════════════════════════════════════════════════════════════ */

/* Shared base */
.pb-lt-wrap { }
.pb-lt {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  gap: 0;
}
.pb-lt-img { overflow: hidden; }
.pb-lt-img img {
  width: 100%; display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.pb-lt:hover .pb-lt-img img { transform: scale(1.03); }
.pb-lt-body { display: flex; flex-direction: column; gap: 10px; padding: clamp(20px, 3vw, 36px) 0; }
.pb-lt-kicker { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; opacity: .5; margin: 0; }
.pb-lt-title { font-size: clamp(1.6rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -.03em; line-height: .95; margin: 0; }
.pb-lt-desc { font-size: clamp(.9rem, 1.4vw, 1.1rem); opacity: .65; line-height: 1.6; margin: 0; max-width: 680px; }
.pb-lt-cta { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; opacity: .5; transition: opacity .2s; }
.pb-lt:hover .pb-lt-cta { opacity: 1; }

/* ── tpl-01 · Standard — image top, text below ── */
.pb-lt-tpl-01 .pb-lt-img { aspect-ratio: 16/9; }

/* ── tpl-02 · Horizontal — image left 42%, text right ── */
.pb-lt-tpl-02 .pb-lt { flex-direction: row; align-items: center; gap: clamp(24px, 4vw, 56px); }
.pb-lt-tpl-02 .pb-lt-img { flex: 0 0 42%; aspect-ratio: 4/5; }
.pb-lt-tpl-02 .pb-lt-body { flex: 1; padding: 0; }

/* ── tpl-03 · Minimal — no image, text only ── */
.pb-lt-tpl-03 .pb-lt-title { font-size: clamp(2rem, 5vw, 5rem); }
.pb-lt-tpl-03 .pb-lt-body { padding: clamp(24px, 4vw, 48px) 0; border-top: 1px solid rgba(128,128,128,.2); }

/* ── tpl-04 · Large — fullbleed image, text overlay ── */
.pb-lt-tpl-04 { padding: 0 !important; }
.pb-lt-tpl-04 .pb-lt { position: relative; min-height: 65vh; justify-content: flex-end; }
.pb-lt-tpl-04 .pb-lt-img {
  position: absolute; inset: 0;
}
.pb-lt-tpl-04 .pb-lt-img img { width: 100%; height: 100%; }
.pb-lt-tpl-04 .pb-lt::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 55%);
}
.pb-lt-tpl-04 .pb-lt-body {
  position: relative; z-index: 2;
  padding: clamp(28px, 5vw, 64px);
  color: #fff;
}
.pb-lt-tpl-04 .pb-lt-desc { max-width: 560px; color: rgba(255,255,255,.65); }
.pb-lt-tpl-04 .pb-lt-cta { color: #fff; }

/* ── tpl-05 · Invertiert — dark overlay, accent kicker ── */
.pb-lt-tpl-05 { padding: 0 !important; }
.pb-lt-tpl-05 .pb-lt { position: relative; min-height: 65vh; justify-content: flex-end; }
.pb-lt-tpl-05 .pb-lt-img { position: absolute; inset: 0; }
.pb-lt-tpl-05 .pb-lt-img img { width: 100%; height: 100%; filter: brightness(.45) saturate(.6); }
.pb-lt-tpl-05 .pb-lt::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 100%);
}
.pb-lt-tpl-05 .pb-lt-body {
  position: relative; z-index: 2;
  padding: clamp(28px, 5vw, 64px);
  color: #fff;
}
.pb-lt-tpl-05 .pb-lt-kicker { color: var(--nx-accent, #ff6b00); opacity: 1; }
.pb-lt-tpl-05 .pb-lt-desc { color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════════════════════
   SHOP TEASER TEMPLATES
══════════════════════════════════════════════════════════════════ */

/* ── spotlight · Large image left, text panel right ── */
.pb-shop-tpl-spotlight .pb-shop-teaser {
  flex-direction: row;
  align-items: stretch;
  min-height: 72vh;
}
.pb-shop-tpl-spotlight .pb-shop-teaser-media {
  flex: 1.2;
  position: relative;
}
.pb-shop-tpl-spotlight .pb-shop-teaser-overlay {
  background: none;
}
.pb-shop-tpl-spotlight .pb-shop-teaser-body {
  flex: 0 0 clamp(280px, 32%, 440px);
  position: relative;
  justify-content: center;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px);
  padding: clamp(32px, 5vw, 64px);
}

/* ── strip · Horizontal row of thumbnails ── */
.pb-shop-tpl-strip .pb-shop-teaser {
  flex-direction: column;
  min-height: auto;
}
.pb-shop-tpl-strip .pb-shop-teaser-media {
  height: 52vh;
}
.pb-shop-tpl-strip .pb-shop-teaser-body {
  position: relative;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  padding: clamp(20px, 3vw, 40px);
  gap: 10px;
}
.pb-shop-tpl-strip .pb-shop-teaser-overlay { display: none; }
.pb-shop-tpl-strip .pb-shop-teaser-thumbs {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Shop Teaser (rich product feature block) ───────────────── */
.pb-shop-teaser-wrap {
  padding: 0 !important;
}

.pb-shop-teaser {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 55vw, 640px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #080808;
}

.pb-shop-teaser-media {
  position: absolute;
  inset: 0;
}

.pb-shop-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.05) 100%);
  z-index: 1;
}

.pb-shop-teaser-body {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 64px);
  width: 100%;
  display: grid;
  gap: 10px;
  align-items: start;
}

.pb-shop-teaser-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--nx-accent, #ff6b00);
  opacity: .9;
  margin: 0;
}

.pb-shop-teaser-title {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  line-height: .95;
  letter-spacing: -.02em;
}

.pb-shop-teaser-desc {
  font-size: clamp(.88rem, 1.5vw, 1.05rem);
  opacity: .65;
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.pb-shop-teaser-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.pb-shop-thumb {
  width: 54px;
  height: 54px;
  border-radius: 7px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.18);
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: border-color .2s, transform .2s;
  position: relative;
}

.pb-shop-thumb:hover {
  border-color: var(--nx-accent, #ff6b00);
  transform: scale(1.1);
}

.pb-shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-shop-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .55;
  transition: opacity .2s;
  margin-top: 4px;
}

.pb-shop-teaser:hover .pb-shop-teaser-cta {
  opacity: 1;
}

/* Live wallpaper pulse indicator */
.pb-shop-live-pulse,
.pb-shop-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nx-accent, #ff6b00);
  flex-shrink: 0;
}

.pb-shop-live-pulse {
  animation: pbLivePulse 1.8s ease-in-out infinite;
}

@keyframes pbLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .3; transform: scale(.65); }
}

@media (max-width: 820px) {
  .pb-nav {
    gap: 12px;
    font-size: .58rem;
  }

  .pb-project-nav,
  .pb-meta-grid {
    grid-template-columns: 1fr;
  }

  .pb-project-grid {
    grid-template-columns: 1fr;
  }

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

  .pb-list-title {
    font-size: clamp(2.5rem, 10vw, 6rem);
  }
}
