/* ───────────────────────────────────────────────
   schwarz. — editorial dark portfolio
   ─────────────────────────────────────────────── */

:root {
  /* Palette — warm-shifted neutrals (dark mode default) */
  --bg:         oklch(0.13 0.005 60);
  --bg-elev:    oklch(0.17 0.006 60);
  --bg-rise:    oklch(0.21 0.007 60);
  --line:       oklch(0.28 0.008 60);
  --line-soft:  oklch(0.22 0.007 60);
  --ink:        oklch(0.96 0.008 80);
  --ink-2:      oklch(0.78 0.008 70);
  --ink-3:      oklch(0.55 0.008 70);
  --ink-4:      oklch(0.40 0.008 70);

  /* Accent — single hue, used sparingly */
  --accent:     oklch(0.72 0.18 50);
  --accent-2:   oklch(0.55 0.20 350);

  /* Type */
  --f-display:  "Instrument Serif", "Times New Roman", serif;
  --f-sans:     "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --grain: 0.5;
  --gap: 32px;
  --theme-transition: background .25s, color .25s, border-color .25s;
}

/* ── Light mode ── */
[data-theme="light"] .brand img { filter: none; }

[data-theme="light"] {
  --bg:         oklch(0.97 0.004 70);
  --bg-elev:    oklch(0.93 0.005 70);
  --bg-rise:    oklch(0.88 0.006 70);
  --line:       oklch(0.78 0.006 70);
  --line-soft:  oklch(0.85 0.005 70);
  --ink:        oklch(0.14 0.005 60);
  --ink-2:      oklch(0.32 0.007 60);
  --ink-3:      oklch(0.52 0.007 60);
  --ink-4:      oklch(0.68 0.007 60);
}

html { transition: var(--theme-transition); }

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ───── Grain overlay ───── */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: var(--grain);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* ───── Typography ───── */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.display.italic { font-style: italic; }

.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.sans-display {
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ───── App shell ───── */
.app {
  position: relative;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  :root { --gap: 20px; }
  .container { padding: 0 20px; }
}

/* ───── Header ───── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 22px;
  filter: invert(1);
}
.brand .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.6); }
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav button {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: color 120ms ease, background 120ms ease;
  position: relative;
}
.nav button:hover { color: var(--ink); background: var(--bg-elev); }
.nav button.active {
  color: var(--ink);
  background: var(--bg-rise);
}
.nav button.active::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 50%;
  width: 3px; height: 3px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  padding: 6px 10px;
  color: var(--ink-3);
}
.lang-toggle button.active {
  background: var(--ink);
  color: var(--bg);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-3);
  transition: color .2s, border-color .2s, transform .3s;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink); transform: rotate(20deg); }

.cta-btn {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: transform 140ms ease, background 140ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn:hover { transform: translateY(-1px); background: var(--accent); color: var(--bg); }
.cta-btn .arrow { font-family: var(--f-mono); font-size: 11px; }

/* ───── Page transitions ───── */
.page {
  padding-top: 86px;
  min-height: 100vh;
  animation: fadeIn 380ms ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ───── Image placeholder w/ gradient map ───── */
.img-placeholder {
  position: relative;
  background: var(--bg-elev);
  overflow: hidden;
  isolation: isolate;
}
.img-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.18 0.005 60) 0 2px,
      oklch(0.22 0.006 60) 2px 5px);
  z-index: 0;
}
.img-placeholder.gmap-orange::before {
  background: linear-gradient(135deg,
    oklch(0.30 0.04 30) 0%,
    oklch(0.45 0.10 40) 35%,
    oklch(0.68 0.16 55) 70%,
    oklch(0.88 0.10 80) 100%);
}
.img-placeholder.gmap-magenta::before {
  background: linear-gradient(140deg,
    oklch(0.28 0.06 320) 0%,
    oklch(0.42 0.14 340) 35%,
    oklch(0.62 0.20 350) 70%,
    oklch(0.82 0.14 30) 100%);
}
.img-placeholder.gmap-blue::before {
  background: linear-gradient(160deg,
    oklch(0.28 0.04 240) 0%,
    oklch(0.42 0.10 250) 35%,
    oklch(0.58 0.12 230) 70%,
    oklch(0.78 0.08 200) 100%);
}
.img-placeholder.gmap-green::before {
  background: linear-gradient(150deg,
    oklch(0.28 0.04 150) 0%,
    oklch(0.42 0.08 160) 40%,
    oklch(0.58 0.12 145) 75%,
    oklch(0.82 0.10 110) 100%);
}
.img-placeholder.gmap-mono::before {
  background: linear-gradient(150deg,
    oklch(0.28 0 0) 0%,
    oklch(0.46 0 0) 40%,
    oklch(0.66 0 0) 75%,
    oklch(0.88 0 0) 100%);
}
.img-placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
  opacity: 0.7;
  z-index: 1;
}
.img-placeholder > .label {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.7);
}

/* Image-slot inside placeholder — let the gradient & grain show through */
.img-placeholder image-slot {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.img-placeholder image-slot::part(frame) {
  background: transparent;
}
.img-placeholder image-slot::part(empty) {
  color: oklch(1 0 0 / 0.85);
  text-shadow: 0 1px 2px oklch(0 0 0 / 0.5);
}

/* Replace affordance on filled image-slots */
.img-placeholder {
  position: relative;
}
.slot-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.slot-replace {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: oklch(0 0 0 / 0.65);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease, background 140ms ease;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.slot-wrap:hover .slot-replace {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.slot-replace:hover {
  background: var(--accent);
  color: var(--bg);
}
.slot-replace .ico {
  width: 10px;
  height: 10px;
  display: inline-block;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat;
}

/* ───── Marquee ───── */
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  border-block: 1px solid var(--line-soft);
  padding: 18px 0;
  gap: 64px;
  margin-top: 48px;
}
.marquee-track {
  display: flex;
  gap: 64px;
  flex-shrink: 0;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(calc(-100% - 64px)); }
}
.marquee span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-2);
}
.marquee span::before {
  content: "✦";
  font-style: normal;
  margin-right: 64px;
  color: var(--accent);
  font-size: 14px;
  vertical-align: middle;
}

/* ───── Section header ───── */
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 64px 0 32px;
  border-top: 1px solid var(--line-soft);
}
.section-head .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.section-head h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.section-head .meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

/* ───── Hero ───── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 48px;
  padding-bottom: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding-top: 40px;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(76px, 13vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.03em;
}
.hero h1 .it { font-style: italic; }
.hero h1 .stroke {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

/* Hero content always white — slideshow is always a dark photo */
.hero-content { color: #fff; }
.hero h1 { color: #fff; }
.hero-meta .lead { color: rgba(255,255,255,0.75); }
.hero .pill { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.75); }
.hero .pill:hover { border-color: var(--accent); color: #fff; }
.hero .pill.active { background: #fff; color: #000; border-color: #fff; }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 12px;
}
.hero-meta .lead {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 460px;
}
.hero-meta .pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.pill.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Slideshow — fills entire .hero section */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* 0.72s dissolve — long enough to see the blend clearly */
  transition: opacity 0.72s ease-in-out;
  will-change: opacity, transform;
}
/* KB runs on ALL slides always (motion is mid-cycle when slide becomes visible).
   linear: constant velocity → never decelerates, never looks frozen.
   Same 9s on all variants → identical zoom speed during cross-dissolve.
   animationDelay staggered per slide in JSX to spread phases across the cycle. */
.hero-slide-img.kb-tl  { animation: kb-tl 9s linear infinite alternate; }
.hero-slide-img.kb-tr  { animation: kb-tr 9s linear infinite alternate; }
.hero-slide-img.kb-bl  { animation: kb-bl 9s linear infinite alternate; }
.hero-slide-img.kb-br  { animation: kb-br 9s linear infinite alternate; }
.hero-slide-img.kb-zc  { animation: kb-zc 9s linear infinite alternate; }
.hero-slide-img.active   { opacity: 1; }
.hero-slide-img.prev-out { opacity: 0; }

@keyframes kb-tl { from{transform:scale(1.00) translate(0,0)}     to{transform:scale(1.22) translate(-5%,-4%)} }
@keyframes kb-tr { from{transform:scale(1.00) translate(0,0)}     to{transform:scale(1.22) translate( 5%,-4%)} }
@keyframes kb-bl { from{transform:scale(1.00) translate(0,0)}     to{transform:scale(1.22) translate(-5%, 4%)} }
@keyframes kb-br { from{transform:scale(1.00) translate(0,0)}     to{transform:scale(1.22) translate( 5%, 4%)} }
@keyframes kb-zc { from{transform:scale(1.00)}                    to{transform:scale(1.24)} }

.hero-slide-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, oklch(0 0 0 / 0.90) 0%, oklch(0 0 0 / 0.35) 52%, oklch(0 0 0 / 0.50) 100%),
    linear-gradient(to top,   oklch(0 0 0 / 0.80) 0%, oklch(0 0 0 / 0.00) 42%);
  z-index: 2;
}

/* ── Light-leak variants ── */
.hero-light-leak {
  position: absolute;
  inset: -30% -40%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

/* 0 — warm amber sweep L→R */
.hero-light-leak.lk-0 {
  background: radial-gradient(ellipse 35% 90% at 50% 50%,
    oklch(0.88 0.22 58 / 0.80) 0%, oklch(0.72 0.28 38 / 0.45) 40%, transparent 72%);
  animation: lk-sweep-lr 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* 1 — electric cyan sweep R→L */
.hero-light-leak.lk-1 {
  background: radial-gradient(ellipse 30% 80% at 50% 50%,
    oklch(0.90 0.20 205 / 0.75) 0%, oklch(0.70 0.22 220 / 0.40) 40%, transparent 70%);
  animation: lk-sweep-rl 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* 2 — hot magenta burst from bottom-left */
.hero-light-leak.lk-2 {
  background: radial-gradient(ellipse 55% 55% at 50% 50%,
    oklch(0.85 0.30 330 / 0.85) 0%, oklch(0.65 0.28 355 / 0.40) 45%, transparent 72%);
  animation: lk-burst-bl 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* 3 — double streak: amber top + cyan bottom */
.hero-light-leak.lk-3 {
  background:
    radial-gradient(ellipse 25% 60% at 50% 20%,
      oklch(0.90 0.24 62 / 0.75) 0%, transparent 65%),
    radial-gradient(ellipse 25% 60% at 50% 80%,
      oklch(0.85 0.20 200 / 0.65) 0%, transparent 65%);
  animation: lk-sweep-lr 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* 4 — white flash → gold burn */
.hero-light-leak.lk-4 {
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    oklch(0.98 0.05 90 / 0.90) 0%, oklch(0.82 0.22 62 / 0.50) 35%, transparent 70%);
  animation: lk-flash 1.0s ease-out forwards;
}

@keyframes lk-sweep-lr {
  0%   { opacity:0;   transform:translateX(-130%) rotate(-14deg) scaleY(2.4); }
  12%  { opacity:1;   transform:translateX(-10%)  rotate(-14deg) scaleY(2.4); }
  45%  { opacity:0.8; transform:translateX(20%)   rotate(-14deg) scaleY(2.4); }
  100% { opacity:0;   transform:translateX(145%)  rotate(-14deg) scaleY(2.4); }
}
@keyframes lk-sweep-rl {
  0%   { opacity:0;   transform:translateX(130%)  rotate(14deg) scaleY(2.4); }
  12%  { opacity:1;   transform:translateX(10%)   rotate(14deg) scaleY(2.4); }
  45%  { opacity:0.8; transform:translateX(-20%)  rotate(14deg) scaleY(2.4); }
  100% { opacity:0;   transform:translateX(-145%) rotate(14deg) scaleY(2.4); }
}
@keyframes lk-burst-bl {
  0%   { opacity:0;   transform:translate(-55%, 55%) scale(0.4); }
  15%  { opacity:1;   transform:translate(-15%, 15%) scale(1.2); }
  50%  { opacity:0.7; transform:translate(5%,  -5%)  scale(1.3); }
  100% { opacity:0;   transform:translate(35%, -35%) scale(1.6); }
}
@keyframes lk-flash {
  0%   { opacity:0;   transform:scale(0.75); }
  8%   { opacity:1;   transform:scale(1.0);  }
  35%  { opacity:0.8; transform:scale(1.15); }
  100% { opacity:0;   transform:scale(1.5);  }
}

/* White flash overlay — mounts at transition peak, auto-animates out */
.hero-white-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  pointer-events: none;
  z-index: 5;
  animation: hero-white-flash 280ms ease-in-out forwards;
}
@keyframes hero-white-flash {
  0%   { opacity: 0;    }
  30%  { opacity: 0.48; }
  100% { opacity: 0;    }
}

.reel-meta {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  text-align: right;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: oklch(1 0 0 / 0.7);
  text-transform: uppercase;
  line-height: 1.6;
}

/* ── Home intro block ── */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: start;
  padding: 80px 0 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 64px;
}
.home-intro-label {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: -16px;
}
.home-intro-pull {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.home-intro-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
  padding-top: 6px;
}
@media (max-width: 700px) {
  .home-intro { grid-template-columns: 1fr; padding-top: 56px; }
}

.hero-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-strip .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-strip .thumb {
  aspect-ratio: 4/3;
  border-radius: 2px;
}
.hero-strip .caption {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ───── Stats row ───── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat .num {
  font-family: var(--f-display);
  font-size: 78px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat .num .it { font-style: italic; color: var(--accent); }
.stat .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ───── Portfolio grid ───── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  padding-bottom: 96px;
}

/* Home page — calm uniform 3-column grid */
.work-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}
@media (max-width: 900px) {
  .work-grid-mini { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .work-grid-mini { grid-template-columns: 1fr; gap: 16px; }
}

.work-grid-filtered {
  grid-template-columns: repeat(3, 1fr);
}
.work-grid-filtered .work-card {
  grid-column: span 1 !important;
}
@media (max-width: 900px) {
  .work-grid-filtered { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .work-grid-filtered { grid-template-columns: 1fr; }
}

/* ─── Portfolio photo strip ─── */
.portfolio-photo-strip {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.portfolio-photo-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.portfolio-photo-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.portfolio-photo-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}
.portfolio-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-photo-thumb:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .portfolio-photo-preview { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .portfolio-photo-preview { grid-template-columns: repeat(2, 1fr); } }

.work-card {
  position: relative;
  cursor: pointer;
  display: block;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.work-card:hover { transform: translateY(-4px); }
.work-card .frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.work-card .frame .img-placeholder { width: 100%; height: 100%; }
.work-card .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 200ms ease;
}
.work-card:hover .frame::after { border-color: var(--accent); }
.work-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  gap: 12px;
}
.work-card .meta .t {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.2;
}
.work-card .meta .r {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  white-space: nowrap;
}
.work-card .num-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: oklch(1 0 0 / 0.85);
  z-index: 3;
  mix-blend-mode: difference;
}

.work-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}
.work-filter button {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  transition: all 140ms ease;
}
.work-filter button:hover { border-color: var(--ink-3); color: var(--ink); }
.work-filter button.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* span classes for grid */
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-3 { grid-column: span 3; }
.span-12 { grid-column: span 12; }

.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-5  { aspect-ratio: 4/5; }
.ratio-3-4  { aspect-ratio: 3/4; }
.ratio-1-1  { aspect-ratio: 1/1; }
.ratio-3-2  { aspect-ratio: 3/2; }
.ratio-21-9 { aspect-ratio: 21/9; }

/* ───── About ───── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 56px 0 24px;
  align-items: start;
}
.about-portrait { position: relative; position: sticky; top: 100px; }
.about-portrait .img-placeholder {
  aspect-ratio: 4/5;
}
.about-portrait .badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 10px;
  background: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}
.about-text h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-text h3 .it { font-style: italic; color: var(--accent); }
.about-text p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 520px;
}
.about-text .pull {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  border-left: 1px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  max-width: 540px;
}

.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline .row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.timeline .row:last-child { border-bottom: 1px solid var(--line-soft); }
.timeline .yr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.timeline .ti {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
}
.timeline .pl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ───── Services ───── */
.svc-list {
  border-top: 1px solid var(--line-soft);
  padding-bottom: 96px;
}
.svc {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr 140px;
  gap: 32px;
  align-items: baseline;
  padding: 28px 16px 28px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 140ms ease, padding 200ms ease;
  cursor: pointer;
  position: relative;
}
.svc:hover { background: color-mix(in oklch, var(--bg-elev) 60%, transparent); padding-left: 16px; padding-right: 24px; }
.svc .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.svc .title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.svc .title .it { font-style: italic; }
.svc .desc {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 520px;
}
.svc .price {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc .price b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  margin-top: 2px;
}

/* ───── Equipment / Shop ───── */
/* ───── Rental list ───── */
.rental-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.rental-cat { margin-bottom: 8px; }
.rental-cat-head {
  padding: 20px 0 10px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 2px;
}
.rental-cat-head .mono {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-3);
}
.rental-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background .15s;
}
.rental-row:hover { background: var(--bg-elev); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.rental-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.rental-desc {
  font-size: 13px;
  color: var(--ink-3);
}
.rental-price {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}
.rental-price small {
  font-size: 11px;
  color: var(--ink-3);
  margin-left: 2px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 64px;
}
.cat-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--ink-3);
  transform: translateY(-2px);
}
.cat-card .img-placeholder { width: 100%; aspect-ratio: 4/3; }
.cat-card .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cat-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cat-card .name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
}
.cat-card .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cat-card .desc {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.5;
}
.cat-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.cat-card .price {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
}
.cat-card .price small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-style: normal;
  margin-left: 4px;
}
.cat-card .add {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ───── Rental: Selection + Panel ───── */
.rental-layout {
  display: flex;
  align-items: flex-start;
  transition: gap 400ms ease;
}
.rental-grid-wrap {
  flex: 1;
  min-width: 0;
  transition: flex 400ms ease;
}
.rental-card {
  position: relative;
  transition: border-color 200ms, box-shadow 200ms;
}
.rental-selected {
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 1px var(--ink);
}
.rental-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  cursor: pointer;
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, border-color 150ms;
  z-index: 3;
  padding: 0;
}
.rental-check.checked {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.rental-add-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0;
  transition: opacity 150ms;
}
.rental-add-btn:hover { opacity: 0.6; }

/* ═══════════════════════════════════════
   DateRangePicker — Desktop Calendar
   ═══════════════════════════════════════ */
.drp-desktop {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-elev);
  user-select: none;
}

/* Von/Bis bar */
.drp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.drp-val {
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 150ms;
  flex: 1;
}
.drp-val:hover, .drp-val.active { background: var(--bg); }
.drp-lbl { font-size: 9px; letter-spacing: 0.14em; color: var(--ink-3); }
.drp-date { font-size: 13px; color: var(--ink); font-family: var(--f-sans); }
.drp-arrow { font-size: 16px; color: var(--ink-3); flex-shrink: 0; }
.drp-x {
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  font-size: 11px; color: var(--ink-3);
  padding: 4px 6px; border-radius: 3px;
  transition: color 150ms;
}
.drp-x:hover { color: var(--ink); }

/* Month navigation */
.drp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.drp-nav-btn {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--ink-2);
  padding: 4px 10px; border-radius: 4px;
  transition: background 150ms, color 150ms;
  line-height: 1;
}
.drp-nav-btn:hover { background: var(--bg); color: var(--ink); }
.drp-nav-label {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* Calendar grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px 12px 4px;
}
.cal-dow {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 120ms, color 120ms;
  color: var(--ink);
  position: relative;
}
.cal-day:hover:not(.past) { background: var(--bg); }
.cal-day.today { font-weight: 600; }
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.cal-day.from, .cal-day.to {
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
}
.cal-day.in-range {
  background: oklch(from var(--ink) l c h / 0.12);
  border-radius: 0;
}
.cal-day.from  { border-radius: 50% 0 0 50%; }
.cal-day.to    { border-radius: 0 50% 50% 0; }
.cal-day.from.to { border-radius: 50%; }
.cal-day.past  { color: var(--ink-3); cursor: default; opacity: 0.4; }

/* Hint */
.drp-hint {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding: 8px 16px 10px;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}

/* ═══════════════════════════════════════
   DateRangePicker — Mobile Scroll Wheels
   ═══════════════════════════════════════ */
.drp-mobile {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-elev);
}
.drp-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}
.drp-tab {
  flex: 1; padding: 12px 8px;
  background: none; border: none; cursor: pointer;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-3);
  transition: color 150ms, background 150ms;
  border-bottom: 2px solid transparent;
}
.drp-tab.active { color: var(--ink); border-bottom-color: var(--ink); background: var(--bg); }
.drp-wheel-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 16px 0;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-align: center;
}
.wheel-date {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  height: 132px; /* 3 × 44px */
  overflow: hidden;
  position: relative;
}

/* Scroll wheel */
.sw-outer {
  position: relative;
  overflow: hidden;
  height: 132px;
}
.sw-scroll {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sw-scroll::-webkit-scrollbar { display: none; }
.sw-pad {
  height: 44px;
  scroll-snap-align: center;
  flex-shrink: 0;
}
.sw-item {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--ink-2);
  cursor: pointer;
  scroll-snap-align: center;
  transition: color 120ms, font-weight 120ms;
  flex-shrink: 0;
}
.sw-item.sel {
  color: var(--ink);
  font-weight: 600;
  font-size: 19px;
}
.sw-sel-top, .sw-sel-bottom {
  position: absolute;
  left: 8%; width: 84%;
  height: 1px;
  background: var(--line);
  pointer-events: none;
  z-index: 2;
}
.sw-sel-top  { top: calc(50% - 22px); }
.sw-sel-bottom { top: calc(50% + 22px); }
.sw-fade-top, .sw-fade-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 44px;
  pointer-events: none;
  z-index: 2;
}
.sw-fade-top    { top: 0;    background: linear-gradient(to bottom, var(--bg-elev), transparent); }
.sw-fade-bottom { bottom: 0; background: linear-gradient(to top,   var(--bg-elev), transparent); }

.drp-clear-btn {
  display: block; width: 100%;
  background: none; border: none; border-top: 1px solid var(--line);
  cursor: pointer; padding: 10px;
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--ink-3);
  transition: color 150ms;
}
.drp-clear-btn:hover { color: var(--ink); }

/* ── Slide panel ── */
.rental-panel {
  width: 0;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
  transition: width 380ms cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
}
.rental-panel.open {
  width: 320px;
}
.rental-panel-inner {
  width: 320px;
  padding: 28px 24px;
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.rental-panel-head {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rental-panel-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  padding: 0;
  font-family: var(--f-mono);
  transition: color 150ms;
}
.rental-panel-clear:hover { color: var(--ink); }
.rental-sel-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.rental-sel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 12px;
}
.rental-sel-name {
  font-size: 12px;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.rental-sel-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.rental-sel-right .mono { font-size: 10px; white-space: nowrap; }
.rental-sel-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 10px;
  padding: 2px 4px;
  transition: color 150ms;
}
.rental-sel-remove:hover { color: var(--ink); }
.rental-inquiry-btn {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 14px 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: opacity 150ms;
}
.rental-inquiry-btn:hover { opacity: 0.8; }
.rental-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  padding: 0;
  font-family: var(--f-mono);
  transition: color 150ms;
}
.rental-back-btn:hover { color: var(--ink); }
.rental-form-items {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 14px;
}
.rental-form-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 5px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 8px;
}
.rental-form-item-row:last-child { border-bottom: none; }
.rental-form { display: flex; flex-direction: column; gap: 14px; }
.rental-form .field { display: flex; flex-direction: column; gap: 6px; }
.rental-form .field label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em; color: var(--ink-2); text-transform: uppercase; }
.rental-form .field input,
.rental-form .field textarea {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ink);
  font-family: var(--f-sans);
  width: 100%;
  box-sizing: border-box;
  resize: none;
}
.rental-form .field input:focus,
.rental-form .field textarea:focus { outline: none; border-color: var(--ink); }
.rental-form .submit {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 14px 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: opacity 150ms;
}
.rental-form .submit:hover { opacity: 0.8; }
.rental-sent {
  text-align: center;
  padding: 40px 0;
  color: var(--ink);
}

/* ───── Contact ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: 56px 0 96px;
}
.contact-left h3 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.contact-left h3 .it { font-style: italic; color: var(--accent); }
.contact-left .lead {
  margin-top: 24px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.5;
  max-width: 460px;
}
.contact-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.contact-info .block .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.contact-info .block .val {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
}
.contact-info .block .val.sans {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 16px;
}

.form {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 2px;
  transition: border-color 140ms ease;
  font-family: var(--f-sans);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--f-sans); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 120ms ease;
}
.chip:hover { border-color: var(--ink-3); }
.chip.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.submit {
  margin-top: 6px;
  padding: 16px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: background 200ms ease, color 200ms ease;
}
.submit:hover { background: var(--accent); }
.submit .arr { font-family: var(--f-mono); font-size: 11px; }

/* ───── Booking ───── */
.booking {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
}
.booking .hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.booking .hd h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
}
.booking .month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.booking .dow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--ink-3);
  padding-bottom: 8px;
}
.booking .day {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  border-radius: 2px;
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 120ms ease;
}
.booking .day.empty { background: transparent; cursor: default; }
.booking .day.booked {
  background: transparent;
  color: var(--ink-4);
  text-decoration: line-through;
  cursor: not-allowed;
}
.booking .day.available:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.booking .day.selected {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.booking .slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
}
.booking .slot {
  padding: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all 120ms ease;
}
.booking .slot:hover { border-color: var(--ink-3); }
.booking .slot.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ───── Project detail ───── */
.proj-hero {
  position: relative;
  height: 78vh;
  min-height: 600px;
  margin-top: -20px;
  overflow: hidden;
}
.proj-hero .img-placeholder { width: 100%; height: 100%; }

/* Gradient overlay — bottom fade so title text stays readable */
.proj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, oklch(0 0 0 / 0.82) 0%, oklch(0 0 0 / 0.30) 38%, oklch(0 0 0 / 0.00) 65%);
  z-index: 3;
  pointer-events: none;
}
.proj-yt-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

/* ── Coming Soon: blurred thumbnail + waveform overlay ── */
.proj-coming-soon-wrap {
  overflow: hidden;
}
.proj-coming-soon-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(22px) brightness(0.3) saturate(0.4);
  transform: scale(1.1);
}
.proj-coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}

/* waveform bars */
.proj-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
}
.proj-waveform-bar {
  width: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.75);
  animation: waveform-pulse 1.6s ease-in-out infinite alternate;
  animation-play-state: paused;
  height: 6px;
  min-height: 4px;
}
.proj-waveform-bar.playing {
  animation-play-state: running;
}
@keyframes waveform-pulse {
  0%   { height: 4px;  opacity: 0.25; }
  40%  { height: 64px; opacity: 1; }
  70%  { height: 28px; opacity: 0.7; }
  100% { height: 6px;  opacity: 0.3; }
}

.proj-coming-soon-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: oklch(1 0 0 / 0.9);
  text-transform: uppercase;
  border: 1px solid oklch(1 0 0 / 0.35);
  padding: 10px 24px;
  pointer-events: none;
}
.proj-coming-soon-sub {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: oklch(1 0 0 / 0.4);
  text-transform: uppercase;
  margin-top: -16px;
}

/* ── Card: Coming Soon blur + badge ── */
.frame--coming-soon {
  position: relative;
  overflow: hidden;
}
.frame--coming-soon img,
.frame--coming-soon .img-placeholder img {
  filter: blur(10px) brightness(0.45) saturate(0.5);
  transform: scale(1.06);
}
.card-coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  font-size: 9px;
  letter-spacing: 0.26em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
}

/* ── Audio Player ── */
.proj-audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(520px, 88vw);
}
.proj-audio-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  background: rgba(8,8,8,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 18px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.proj-audio-play {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, border-color 150ms;
}
.proj-audio-play:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }
.proj-audio-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.proj-audio-track {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proj-audio-bar {
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.proj-audio-bar:hover { height: 4px; margin-block: -1px; }
.proj-audio-bar-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.1s linear;
  pointer-events: none;
}
.proj-audio-time {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.proj-spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #fff;
  background: rgba(29,185,84,0.2);
  border: 1px solid rgba(29,185,84,0.55);
  padding: 12px 26px;
  text-decoration: none;
  transition: background 150ms, border-color 150ms;
  border-radius: 3px;
}
.proj-spotify-btn:hover { background: rgba(29,185,84,0.4); border-color: rgba(29,185,84,0.8); }
.proj-hero-meta-corner {
  position: absolute;
  top: 28px; right: 32px;
  z-index: 5;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.85);
  text-align: right;
  line-height: 1.7;
}
.proj-hero .info {
  position: absolute;
  bottom: 28px; left: 32px;
  z-index: 5;
  max-width: 70%;
}
.proj-hero .info h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 9vw, 156px);
  font-style: italic;
  font-weight: 100;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
}
.proj-link-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid oklch(1 0 0 / 0.4);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.proj-link-btn:hover {
  border-color: var(--accent);
  background: oklch(1 0 0 / 0.05);
}

/* ─── Watch / Stream Strip ─── */
.proj-watch-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin: 32px 0 0;
  gap: 24px;
  flex-wrap: wrap;
}
.proj-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.proj-watch-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.proj-meta-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-soft);
}
.proj-meta-bar .col .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.proj-meta-bar .col .val {
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
}

.proj-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 48px 0;
}
.proj-body .side .mono {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.proj-body .side p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.proj-body .main h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 740px;
}
.proj-body .main p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
}

.proj-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-bottom: 96px;
}
.proj-bts-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.proj-bts-img.ratio-16-9 {
  aspect-ratio: 16 / 9;
}
.proj-bts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj-gallery .cap {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
}

/* ───── Footer ───── */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 80px 0 32px;
  margin-top: 64px;
}

/* Crew carousel */
.crew {
  padding: 12px 0 56px;
}
.crew-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 24px;
}
.crew-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  scroll-snap-type: x mandatory;
}
.crew-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.crew-card:hover { transform: translateY(-4px); }

.crew-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.crew-frame .img-placeholder { width: 100%; height: 100%; }

/* gmap background colours for logo crew cards — match img-placeholder gradients */
.gmap-bg-orange  { background: linear-gradient(135deg, oklch(0.30 0.04 30) 0%, oklch(0.45 0.10 40) 35%, oklch(0.68 0.16 55) 70%, oklch(0.88 0.10 80) 100%); }
.gmap-bg-magenta { background: linear-gradient(140deg, oklch(0.28 0.06 320) 0%, oklch(0.42 0.14 340) 35%, oklch(0.62 0.20 350) 70%, oklch(0.82 0.14 30) 100%); }
.gmap-bg-blue    { background: linear-gradient(160deg, oklch(0.28 0.04 240) 0%, oklch(0.42 0.10 250) 35%, oklch(0.58 0.12 230) 70%, oklch(0.78 0.08 200) 100%); }
.gmap-bg-green   { background: linear-gradient(150deg, oklch(0.28 0.04 150) 0%, oklch(0.42 0.08 160) 40%, oklch(0.58 0.12 145) 75%, oklch(0.82 0.10 110) 100%); }
.gmap-bg-mono    { background: linear-gradient(150deg, oklch(0.28 0 0) 0%, oklch(0.46 0 0) 40%, oklch(0.66 0 0) 75%, oklch(0.88 0 0) 100%); }

.crew-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
}
.crew-logo-placeholder {
  font-family: var(--f-display);
  font-size: 48px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crew-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: oklch(1 0 0 / 0.85);
  mix-blend-mode: difference;
  z-index: 4;
}

.crew-over {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  background: oklch(0.13 0.01 60 / 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 240ms ease;
}
.crew-card:hover .crew-over { opacity: 1; }

.crew-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  transform: translateY(8px);
}
.crew-card:hover .crew-btn { transform: translateY(0); }
.crew-btn:hover { background: var(--accent); }
.crew-btn .arr { font-family: var(--f-mono); font-size: 12px; }

.crew-meta { padding-top: 2px; }
.crew-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.crew-role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 6px;
}

@media (max-width: 1100px) {
  .crew-row {
    grid-template-columns: repeat(5, 70%);
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
}
@media (max-width: 720px) {
  .crew-row {
    grid-template-columns: repeat(5, 80%);
    gap: 12px;
  }
  .crew-card { gap: 10px; }
}

.footer-big {
  font-family: var(--f-display);
  font-size: clamp(76px, 14vw, 232px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  padding: 12px 0 56px;
  font-style: italic;
}
.footer-big .stroke {
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
  font-style: normal;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-top: 1px solid var(--line-soft);
  padding-top: 40px;
}
.footer-cols .col h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.footer-cols .col a, .footer-cols .col p {
  display: block;
  font-size: 14px;
  color: var(--ink);
  padding: 2px 0;
  line-height: 1.5;
}
.footer-cols .col a:hover { color: var(--accent); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ───── Bestätigungs-Overlay (Kontaktformular) ───── */
@keyframes overlayIn   { from { opacity: 0; }                to { opacity: 1; } }
@keyframes cardIn      { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes circleIn    { from { stroke-dashoffset: 160; }    to { stroke-dashoffset: 0; } }
@keyframes tickIn      { from { stroke-dashoffset: 50; }     to { stroke-dashoffset: 0; } }

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: oklch(0 0 0 / 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayIn 0.35s ease both;
}
.confirm-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px;
  width: min(540px, calc(100vw - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: cardIn 0.45s cubic-bezier(.2,.7,.2,1) 0.1s both;
}
.confirm-check {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}
.confirm-check svg { width: 100%; height: 100%; }
.confirm-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: circleIn 0.6s cubic-bezier(.4,0,.2,1) 0.3s both;
}
.confirm-tick {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: tickIn 0.4s cubic-bezier(.4,0,.2,1) 0.85s both;
}
.confirm-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 42px);
  font-style: italic;
  font-weight: 100;
  color: var(--ink);
  margin-bottom: 10px;
}
.confirm-sub {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 28px;
}
.confirm-summary {
  width: 100%;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.confirm-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.confirm-summary > div span:first-child {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.confirm-summary > div span:last-child {
  color: var(--ink);
  text-align: right;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.confirm-btn-primary {
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.confirm-btn-primary:hover { opacity: 0.85; }
.confirm-btn-secondary {
  padding: 12px 28px;
  background: none;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.confirm-btn-secondary:hover { border-color: var(--ink-2); color: var(--ink); }

/* ── Print-Ansicht ── */
#print-inquiry { display: none; }

@media print {
  @page { margin: 0; size: A4; }
  body * { visibility: hidden !important; }
  #print-inquiry, #print-inquiry * { visibility: visible !important; }

  #print-inquiry {
    display: block !important;
    position: fixed;
    inset: 0;
    background: #fff;
    color: #111;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
  }

  /* ── Header bar ── */
  .pi-header {
    background: #0d0d0d;
    padding: 32px 52px 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .pi-logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
  }
  .pi-logo-sub {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-top: 6px;
  }
  .pi-doc-label {
    text-align: right;
    color: #555;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.8;
  }
  .pi-doc-label strong {
    display: block;
    color: #E27D43;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* ── Accent bar ── */
  .pi-accent-bar {
    height: 3px;
    background: #E27D43;
  }

  /* ── Body ── */
  .pi-body {
    padding: 40px 52px 32px;
  }
  .pi-section-title {
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 12px;
    margin-top: 28px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e8e8e8;
  }
  .pi-section-title:first-child { margin-top: 0; }

  .pi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .pi-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
  }
  .pi-row.full { grid-column: 1 / -1; }
  .pi-row span:first-child {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #bbb;
    margin-bottom: 3px;
  }
  .pi-row span:last-child {
    font-size: 13px;
    color: #111;
    font-weight: 500;
  }

  /* ── Message box ── */
  .pi-msg-box {
    margin-top: 28px;
    background: #f7f7f7;
    border-left: 3px solid #E27D43;
    padding: 16px 20px;
  }
  .pi-msg-label {
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
  }
  .pi-msg-text {
    font-size: 12px;
    line-height: 1.7;
    color: #333;
    white-space: pre-wrap;
  }

  /* ── Footer ── */
  .pi-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 52px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ccc;
  }
  .pi-footer-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #E27D43;
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
  }
}

/* ───── Cookie banner ───── */
.cookie {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 200;
  max-width: 380px;
  padding: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  animation: cookieIn 600ms ease 600ms both;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie .ti {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 6px;
}
.cookie p {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.5;
}
.cookie .row {
  display: flex;
  gap: 8px;
}
.cookie button {
  flex: 1;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
}
.cookie button.accept { background: var(--ink); color: var(--bg); }
.cookie button.decline { border: 1px solid var(--line); color: var(--ink-2); }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .span-6 { grid-column: span 6; }
  .span-4, .span-5, .span-7, .span-8 { grid-column: span 6; }
  .span-3 { grid-column: span 3; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .svc { grid-template-columns: 60px 1fr; gap: 16px; }
  .svc .desc, .svc .price { grid-column: 2; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .proj-body { grid-template-columns: 1fr; gap: 24px; }
  .proj-meta-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .header { padding: 14px 20px; }
  .work-grid { grid-template-columns: 1fr; }
  .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-12 { grid-column: span 1; }
  .cat-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .stat .num { font-size: 56px; }
  .proj-meta-bar { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 8px; }
  .section-head .meta { text-align: left; }
}

/* Mobile menu toggle */
.menu-btn {
  display: none;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
@media (max-width: 720px) {
  .menu-btn { display: inline-flex; }
  .nav.open {
    display: flex;
    position: fixed;
    inset: 64px 16px auto 16px;
    flex-direction: column;
    padding: 16px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 8px;
    z-index: 200;
    align-items: stretch;
  }
  .nav.open button { text-align: left; }
}

/* Utility */
.divider { height: 1px; background: var(--line-soft); }
.spacer-32 { height: 32px; } .spacer-64 { height: 64px; } .spacer-96 { height: 96px; }

/* ─── Client Banner ─── */
.client-banner {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 48px var(--gap);
  margin-top: 0;
  overflow: hidden;
}
.client-banner-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.client-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 24px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0.55;
  transition: opacity 0.25s;
  cursor: default;
}
.client-item:hover { opacity: 1; }
/* Light mode: logos need to be clearly readable */
[data-theme="light"] .client-item { opacity: 0.82; }
[data-theme="light"] .client-item:hover { opacity: 1; }
.client-item:nth-child(4n) { border-right: none; }
.client-logo-img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Light mode: multiply removes white logo backgrounds cleanly */
[data-theme="light"] .client-logo-img {
  mix-blend-mode: multiply;
}

/* Dark mode: white silhouettes for flat logos */
:root:not([data-theme="light"]) .client-logo-img {
  filter: brightness(0) invert(1);
}
/* Keep original colours for logos that have their own backgrounds */
:root:not([data-theme="light"]) .client-logo-img[src*="cjd"],
:root:not([data-theme="light"]) .client-logo-img[src*="morgen-in-farbe"],
:root:not([data-theme="light"]) .client-logo-img[src*="zdf"] {
  filter: none;
}
/* Cancer Survivor SVG: text-based logo, keep readable size */
.client-logo-img[src*="cancer-survivor"] {
  height: 40px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
[data-theme="light"] .client-logo-img[src*="cancer-survivor"] {
  filter: brightness(0);
}

/* Dynamo logo — white on black, not cropped */
/* Logo/Branding-Hero: contain statt cover, zentriert */
.proj-hero.hero-contain {
  background: #000;
}
.proj-hero.hero-contain .img-placeholder {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-hero.hero-contain .img-placeholder img {
  object-fit: contain !important;
  width: 60% !important;
  height: 60% !important;
  padding: 0;
  margin: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Thumbnail in Work-Grid: kleines contain mit Padding */
.img-placeholder img[src*="dynamo"] {
  background-color: #000;
  object-fit: contain;
  padding: 15%;
}

.client-name {
  font-family: "Instrument Serif";
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.client-sub {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  text-transform: uppercase;
}
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(3, 1fr); } .client-item:nth-child(4n) { border-right: 1px solid var(--line-soft); } .client-item:nth-child(3n) { border-right: none; } }
@media (max-width: 620px) { .client-grid { grid-template-columns: repeat(2, 1fr); } .client-item:nth-child(3n) { border-right: 1px solid var(--line-soft); } .client-item:nth-child(2n) { border-right: none; } }
@media (max-width: 440px) { .client-grid { grid-template-columns: repeat(2, 1fr); } .client-item:nth-child(2n) { border-right: none; } }

/* ─── YouTube Click-to-Play ─── */
.yt-thumb-wrap {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.yt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.yt-thumb-wrap:hover .yt-play-overlay { background: rgba(0,0,0,0.25); }
.yt-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 12px;
  padding: 20px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.yt-play-btn:hover { background: rgba(0,0,0,0.9); transform: scale(1.04); }
.yt-play-icon {
  font-size: 28px;
  display: block;
}
.yt-play-btn span:last-child {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─── BTS layout with phone ─── */
.bts-with-phone {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .bts-with-phone { grid-template-columns: 1fr; }
  .bts-phone-col { display: flex; flex-direction: column; align-items: center; }
}

/* ─── Phone Story Mockup ─── */
.phone-mockup-wrap {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-frame {
  width: 300px;
  background: #0a0a0a;
  border-radius: 40px;
  padding: 14px 10px 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 0 6px #1a1a1a,
    0 0 0 7px rgba(255,255,255,0.06),
    0 30px 60px rgba(0,0,0,0.6);
  position: relative;
}
.phone-inner {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16;
  background: #111;
}
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 10;
}
.story-bars {
  position: absolute;
  top: 50px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 3px;
  z-index: 9;
}
.story-bar-bg {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.story-bar-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  transition: none;
}
.story-bar-fill.full { width: 100%; }
.story-bar-fill.active {
  animation: storyProgress linear forwards;
  width: 0%;
}
@keyframes storyProgress {
  from { width: 0%; }
  to { width: 100%; }
}
.story-user {
  position: absolute;
  top: 58px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 9;
}
.story-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.story-user span {
  font-family: var(--f-mono);
  font-size: 8px;
  color: rgba(255,255,255,0.9);
  flex: 1;
}
.story-close {
  font-size: 10px !important;
  color: rgba(255,255,255,0.6) !important;
  cursor: pointer;
  flex: 0 !important;
}
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.story-tap-left {
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  z-index: 8;
  cursor: pointer;
}
.story-tap-right {
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  z-index: 8;
  cursor: pointer;
}
.story-pause-btn {
  position: absolute;
  bottom: 14px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.story-counter {
  position: absolute;
  bottom: 14px;
  left: 12px;
  font-size: 8px;
  color: rgba(255,255,255,0.6);
  z-index: 10;
}
.phone-home-bar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 8px auto 2px;
}
.phone-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-align: center;
}

/* ─── Photo subfilters in Portfolio ─── */
.photo-subfilters {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 0 20px;
  flex-wrap: wrap;
}

/* ─── BTS Masonry ─── */
.proj-bts-section {
  padding: 64px 0 96px;
  border-top: 1px solid var(--line-soft);
  margin-top: 64px;
}
.proj-bts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin-bottom: 32px;
  padding: 0 var(--gap);
}
.proj-bts-masonry {
  column-count: 3;
  column-gap: 12px;
  padding: 0 var(--gap);
}
.proj-bts-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
}
.proj-bts-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.proj-bts-item:hover img { transform: scale(1.03); }
.proj-bts-num {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  mix-blend-mode: difference;
}
@media (max-width: 900px) { .proj-bts-masonry { column-count: 2; } }
@media (max-width: 520px) { .proj-bts-masonry { column-count: 1; } }

/* ─── Photo Page ─── */
.photo-page {
  min-height: 100vh;
  padding-bottom: 96px;
}
.photo-hero {
  padding: 96px var(--gap) 48px;
  border-bottom: 1px solid var(--line-soft);
}
.photo-hero h1 {
  font-family: "Instrument Serif";
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 100;
  line-height: 1;
  margin: 0 0 16px;
}
.photo-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px var(--gap);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 32px;
}
.photo-filter-btn {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s;
}
.photo-filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.photo-filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.photo-count {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  padding: 0 var(--gap) 16px;
}
/* ─── Photo column slider ─── */
.photo-cols-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  flex-shrink: 0;
}
.cols-range {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: var(--line-soft);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.cols-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  transition: background 0.2s;
}
.cols-range:hover::-webkit-slider-thumb { background: var(--accent); }

.photo-masonry {
  column-count: 3;
  column-gap: 10px;
  padding: 0 var(--gap);
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.photo-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.photo-item:hover img { transform: scale(1.02); }
.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.photo-item:hover .photo-item-overlay { opacity: 1; }
.photo-item-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 900px) { .photo-masonry { column-count: 2; } }
@media (max-width: 520px) { .photo-masonry { column-count: 1; } }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in 0.2s ease;
}
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.15); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.15); }
.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 520px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ══════════════════════════════════════════
   MOBILE OPTIMIERUNGEN — 520px & 400px
   ══════════════════════════════════════════ */

/* Page padding passt zur kleineren Mobile-Header-Höhe */
@media (max-width: 720px) {
  .page { padding-top: 62px; }

  /* Hero h1: clamp-Minimum nach oben korrigieren damit es lesbar bleibt */
  .hero h1 { font-size: clamp(52px, 13vw, 220px); }

  /* Hero content etwas enger */
  .hero-content { padding: 0 20px 32px; }

  /* Reel-Meta auf kleinen Screens ausblenden */
  .reel-meta { display: none; }

  /* Projekt-Body Heading verkleinern */
  .proj-body .main h3 { font-size: clamp(28px, 7vw, 44px); }

  /* Project-Hero Info-Overlay Abstände */
  .proj-hero .info { bottom: 20px; left: 20px; max-width: 85%; }
  .proj-hero-meta-corner { top: 20px; right: 20px; font-size: 10px; }

  /* Section-Head Nummer wieder links sichtbar */
  .section-head { grid-template-columns: auto 1fr; gap: 8px; }

  /* About-Page: Sticky deaktivieren auf Mobile */
  .about-portrait { position: relative; top: auto; }

  /* Services: Beschreibung und Preis besser stapeln */
  .svc { grid-template-columns: 48px 1fr; gap: 12px; padding: 20px 0; }
  .svc .desc, .svc .price { grid-column: 2; }
  .svc .price { margin-top: 4px; }

  /* Contact-Form Padding reduzieren */
  .form { padding: 24px 16px; }
}

@media (max-width: 520px) {
  /* Stats: 1 Spalte statt 2 */
  .stats { grid-template-columns: 1fr 1fr; }

  /* Hero-Strip: 1 Spalte */
  .hero-strip { grid-template-columns: 1fr; }

  /* Projekt-Meta: 1 Spalte */
  .proj-meta-bar { grid-template-columns: 1fr 1fr; }

  /* Pill-Buttons: Touch-freundlicher */
  .pill { padding: 8px 14px; font-size: 10px; }

  /* Work-Filter Buttons: größere Touch-Targets */
  .work-filter button { padding: 10px 14px; }

  /* Footer SCHWARZ-Schriftzug kleiner */
  .footer-big { font-size: clamp(52px, 16vw, 120px); }

  /* Crew-Cards etwas schmaler damit man mehr sieht */
  .crew-row { grid-template-columns: repeat(5, 72%); }
}

@media (max-width: 400px) {
  /* Cookie Banner: volle Breite mit Abstand */
  .cookie {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }

  /* Hero h1 Minimum weiter verkleinern */
  .hero h1 { font-size: clamp(42px, 13vw, 220px); }

  /* Stats: wirklich 1 Spalte auf sehr kleinen Screens */
  .stats { grid-template-columns: 1fr; }

  /* Projekt-Meta: 1 Spalte */
  .proj-meta-bar { grid-template-columns: 1fr; }
}
