/* Bai Nike — Stylesheet (portiert aus dem v3-Prototyp · luxury rotunda / cream & gilt)
   Liegt im Build unter assets/main.css — Bild-URLs daher relativ mit ../ */

:root {
  --ink:        #f2ecdd;        /* warm cream (page)  */
  --ink-2:      #eae1cc;        /* slightly warmer band */
  --paper:      #221a12;        /* deep sepia (text)  */
  --paper-soft: #6a5844;        /* muted warm brown   */
  --rule:       rgba(34,26,18,0.14);
  --rule-soft:  rgba(34,26,18,0.07);
  --gold:       #b28a4c;        /* leaf accent */
  --gold-soft:  #d9bd85;
  --violet:     #7e6fa8;
  --ochre:      #c79454;
  --serif:      "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --display:    "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans:       "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:       "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ─── Top chrome ─────────────────────────────────────── */
.v2-chrome {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 36px;
  pointer-events: none;
}
.v2-chrome > * { pointer-events: auto; }
.v2-mark {
  font-family: var(--display); font-style: italic; font-size: 22px;
  letter-spacing: 0.005em; color: var(--paper);
}
.v2-mark sup {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.55; vertical-align: super; margin-left: 8px;
  font-style: normal;
}
.v2-folio {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; opacity: 0.7; text-align: center;
  white-space: nowrap;
}
.v2-folio span { opacity: 0.4; margin: 0 10px; }
.v2-utility {
  display: flex; gap: 18px; justify-content: flex-end; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.v2-utility button { opacity: 0.6; transition: opacity 0.3s; }
.v2-utility button:hover, .v2-utility button.is-active { opacity: 1; }
.v2-utility .div { width: 1px; height: 12px; background: currentColor; opacity: 0.3; }

/* ─── Sound toggle (corner) ──────────────────────────── */
.v2-sound {
  position: fixed; right: 28px; bottom: 28px; z-index: 70;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border: 1px solid rgba(34,26,18,0.22);
  border-radius: 999px;
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper); background: rgba(242,236,221,0.72); backdrop-filter: blur(8px);
  transition: all 0.4s;
}
.v2-sound:hover { border-color: var(--gold); color: var(--gold); }
.v2-sound .ring {
  position: absolute; inset: 6px; border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.v2-sound.is-on .ring { border-color: var(--gold); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.08); opacity: 0.3; }
}

/* ─── Side rail (scroll progress + chapter index) ─────── */
.v2-rail {
  position: fixed; left: 28px; top: 50%; transform: translateY(-50%); z-index: 50;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
}
.v2-rail-dot {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.4; transition: opacity 0.4s;
}
.v2-rail-dot.is-active { opacity: 1; }
.v2-rail-dot .tick { width: 18px; height: 1px; background: currentColor; transition: width 0.4s; }
.v2-rail-dot.is-active .tick { width: 38px; background: var(--gold); }
.v2-rail-dot .label { opacity: 0; transition: opacity 0.3s; white-space: nowrap; }
.v2-rail-dot.is-active .label, .v2-rail:hover .label { opacity: 1; }

/* ─── Chapter scaffold ──────────────────────────────── */
.v2-chapter {
  position: relative;
  min-height: 100vh;
  padding: 140px 8vw 140px;
  display: grid; align-items: center;
}
.v2-chapter[data-pad="airy"]  { padding: 200px 10vw 200px; }
.v2-chapter[data-bleed="1"] { padding: 0; min-height: 0; display: block; }
.v2-chapter[data-tone="warm"] { background: var(--ink-2); }

/* Chapter slug (left margin marginalia) */
.v2-slug {
  position: absolute; left: 8vw; top: 100px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.55;
  display: flex; gap: 16px;
}
.v2-slug .num { color: var(--gold); }

/* ─── Cover ─────────────────────────────────────────── */
.v2-cover {
  min-height: 100vh;
  display: grid; place-items: center;
  position: relative;
  text-align: center;
  padding: 0 6vw;
}
.v2-cover-mantra {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--paper-soft); opacity: 0.7;
  margin-bottom: 48px;
}
.v2-cover h1 {
  font-family: var(--display); font-style: italic;
  font-size: clamp(48px, 8.4vw, 132px);
  font-weight: 300; line-height: 0.98; letter-spacing: -0.01em;
  text-wrap: balance;
}
.v2-cover h1 .line { display: block; }
.v2-cover h1 .silence {
  display: inline-block;
  position: relative;
}
.v2-cover h1 .silence::after {
  content: ""; position: absolute; left: -8%; right: -8%; bottom: 0.32em;
  height: 1px; background: var(--gold); opacity: 0.6;
  transform-origin: left;
  animation: rule-in 1.6s 0.6s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.v2-cover-author {
  margin-top: 56px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-soft);
}
.v2-cover-author .row { margin: 4px 0; opacity: 0.7; }
.v2-cover-author .gold { color: var(--gold); opacity: 1; }

.v2-cover-scroll {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.6;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.v2-cover-scroll .down {
  width: 1px; height: 56px; background: currentColor;
  position: relative; overflow: hidden;
}
.v2-cover-scroll .down::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ─── Refrain bands (the repeated mantra) ───────────── */
.v2-refrain {
  padding: 78px 6vw;
  background: #ebd3bd;
  color: #0d0a06;
  border-top: none; border-bottom: none;
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.3;
  text-align: center;
  color: var(--paper-soft);
  background: var(--ink);
}
.v2-refrain { font-family: "Cormorant", "Cormorant Garamond", Georgia, serif; font-weight: 400; font-style: normal; font-size: clamp(24px, 2.4vw, 40px); line-height: 1.15; text-align: center; letter-spacing: 0; }
.v2-refrain .strong { color: #0d0a06; font-style: normal; font-family: "Cormorant", Georgia, serif; font-weight: 400; font-size: 1em; letter-spacing: 0; text-transform: none; display: block; margin-bottom: 8px; opacity: 0.75; }
.v2-refrain.tight { padding: 28px 6vw; font-size: clamp(14px, 1.4vw, 20px); }

/* ─── Statement chapter ─────────────────────────────── */
.v2-statement {
  display: grid;
  grid-template-columns: 1fr minmax(0, 640px) 1fr;
  align-items: start;
}
.v2-statement-body {
  grid-column: 2;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.55;
  color: var(--paper);
}
.v2-statement-body p { margin-bottom: 1.4em; text-wrap: pretty; }
.v2-statement-body p:last-child { margin-bottom: 0; color: var(--gold); }
.v2-statement-cite {
  margin-top: 56px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.6;
}

/* ─── Series intro chapter ──────────────────────────── */
.v2-series-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 8vw; align-items: center;
}
.v2-series-intro .meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.7;
  display: flex; flex-direction: column; gap: 14px;
}
.v2-series-intro .meta .gold { color: var(--gold); opacity: 1; }
.v2-series-intro h2 {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95; letter-spacing: -0.01em;
  margin: 24px 0;
}
.v2-series-intro h2 .num {
  font-style: normal; font-family: var(--mono); font-size: 0.18em;
  letter-spacing: 0.3em; vertical-align: super; opacity: 0.5;
  margin-right: 14px;
}
.v2-series-intro p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.45;
  color: var(--paper-soft); max-width: 36ch;
}
.v2-series-intro .palette {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.7;
  margin-top: 36px;
}
.v2-series-intro .swatch { width: 18px; height: 18px; border-radius: 50%; }

/* ─── Plate chapter (one painting full-bleed) ───────── */
.v2-plate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
  gap: 7vw;
  align-items: center;
  min-height: 100vh;
  padding: 140px 8vw;
}
.v2-plate-img {
  position: relative;
  background: var(--ink-2);
  overflow: hidden;
  cursor: crosshair;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.v2-plate-img:hover { transform: translateY(-4px); }
.v2-plate-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) contrast(1.04) saturate(0.96);
  transition: filter 0.6s, transform 0.9s cubic-bezier(.2,.7,.3,1);
}
.v2-plate-img:hover img { filter: brightness(1) contrast(1.05); transform: scale(1.015); }
.v2-plate-img.placeholder {
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--paper-soft); opacity: 0.4;
}

/* tone badge inside plate */
.v2-plate-tone {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #f4ecda;
  background: rgba(34,26,18,0.62); backdrop-filter: blur(6px);
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 8px;
}
.v2-plate-tone .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s infinite; }

/* status sigil bottom-right */
.v2-plate-status {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(34,26,18,0.62); backdrop-filter: blur(6px);
  color: #f4ecda;
  border: 1px solid rgba(255,255,255,0.08);
}
.v2-plate-status[data-s="sold"] { color: var(--paper-soft); opacity: 0.6; }
.v2-plate-status[data-s="nfs"]  { color: var(--gold); border-color: rgba(184,153,104,0.4); }
.v2-plate-status[data-s="available"] { color: var(--paper); }

.v2-plate-meta { display: flex; flex-direction: column; gap: 28px; }
.v2-plate-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); opacity: 0.85;
}
.v2-plate-title {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(38px, 5vw, 64px); line-height: 1.0;
  letter-spacing: -0.005em;
}
.v2-plate-title .original {
  display: block;
  font-family: var(--mono); font-style: normal;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.55;
  margin-top: 14px;
}
.v2-plate-spec {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.7;
}
.v2-plate-spec dt { opacity: 0.5; margin-bottom: 5px; }
.v2-plate-spec dd { color: var(--paper); opacity: 1; }
.v2-plate-desc {
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55;
  color: var(--paper); max-width: 38ch;
}
.v2-plate-tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.55;
  border-top: 1px solid var(--rule); padding-top: 18px;
}
.v2-plate-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--paper); transition: color 0.3s, border-color 0.3s;
  align-self: flex-start;
}
.v2-plate-cta::after {
  content: ""; width: 36px; height: 1px; background: currentColor;
  transition: width 0.3s;
}
.v2-plate-cta:hover { color: var(--gold); border-color: var(--gold); }
.v2-plate-cta:hover::after { width: 56px; }

/* mirrored plate alternates left/right */
.v2-plate.flip { grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr); }
.v2-plate.flip .v2-plate-img { order: 2; }
.v2-plate.flip .v2-plate-meta { order: 1; }

/* ─── Quiet pause chapter ───────────────────────────── */
.v2-pause {
  display: grid; place-items: center;
  text-align: center;
  min-height: 60vh;
  padding: 120px 6vw;
}
.v2-pause-glyph {
  font-family: var(--display); font-style: italic;
  font-size: 80px; color: var(--gold); margin-bottom: 36px; opacity: 0.85;
}
.v2-pause-text {
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.45;
  color: var(--paper); max-width: 28ch;
  text-wrap: balance;
}

/* ─── Credentials chapter ───────────────────────────── */
.v2-credentials {
  display: grid; grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 8vw; align-items: start;
}
.v2-credentials .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); opacity: 0.85;
}
.v2-credentials h3 {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.0;
  margin-top: 18px;
}
.v2-cv-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.v2-cv-row {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: 28px; padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.v2-cv-year {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold);
}
.v2-cv-title {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px); color: var(--paper);
}
.v2-cv-place {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.7;
}

/* ─── Inquire chapter ───────────────────────────────── */
.v2-inquire {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8vw; align-items: start;
}
.v2-inquire-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
}
.v2-inquire h3 {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px); line-height: 1.0;
  margin: 22px 0 28px;
  text-wrap: balance;
}
.v2-inquire p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5;
  color: var(--paper-soft); max-width: 38ch;
  margin-bottom: 32px;
}
.v2-inquire .direct {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--paper); opacity: 0.85;
  border-top: 1px solid var(--rule); padding-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.v2-inquire .direct .gold { color: var(--gold); }

.v2-form { display: flex; flex-direction: column; gap: 22px; }
.v2-field { display: flex; flex-direction: column; gap: 8px; }
.v2-field label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.6;
}
.v2-field input, .v2-field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  color: var(--paper); font-family: var(--display); font-style: italic;
  font-size: 20px; padding: 8px 0;
  outline: none; transition: border-color 0.3s;
}
.v2-field input:focus, .v2-field textarea:focus { border-bottom-color: var(--gold); }
.v2-field textarea { resize: vertical; min-height: 96px; }
.v2-form button {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 18px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  color: var(--paper); transition: color 0.3s, border-color 0.3s;
  margin-top: 12px;
}
.v2-form button::after { content: ""; width: 36px; height: 1px; background: currentColor; transition: width 0.3s; }
.v2-form button:hover { color: var(--gold); border-color: var(--gold); }
.v2-form button:hover::after { width: 56px; }
.v2-form .sent { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--gold); }

/* ─── Colophon (footer) ─────────────────────────────── */
.v2-colophon {
  padding: 120px 8vw 80px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6vw;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper-soft);
}
.v2-colophon h4 {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.32em;
  color: var(--gold); margin-bottom: 18px; opacity: 0.85;
}
.v2-colophon p { margin-bottom: 10px; opacity: 0.75; line-height: 1.7; }
.v2-colophon .signature {
  font-family: var(--display); font-style: italic; font-size: 22px;
  text-transform: none; letter-spacing: -0.005em; color: var(--paper);
  margin-bottom: 20px;
}
.v2-colophon .row { display: flex; flex-direction: column; gap: 8px; }
.v2-colophon a:hover { color: var(--gold); }

.v2-edition {
  text-align: center; padding: 36px 6vw 60px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.5;
}

/* ─── Reveal animations ─────────────────────────────── */
.v2-reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1); }
.v2-reveal.is-in { opacity: 1; transform: translateY(0); }
.v2-reveal.delay-1 { transition-delay: 0.12s; }
.v2-reveal.delay-2 { transition-delay: 0.24s; }
.v2-reveal.delay-3 { transition-delay: 0.36s; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .v2-rail { display: none; }
  .v2-chrome { padding: 16px 20px; grid-template-columns: 1fr auto; }
  .v2-folio { display: none; }
  .v2-chapter { padding: 110px 6vw 110px; }
  .v2-chapter[data-bleed="1"] { padding: 0; }
  .v2-slug { left: 6vw; top: 76px; }
  .v2-plate, .v2-plate.flip { grid-template-columns: 1fr; gap: 36px; padding: 100px 6vw; }
  .v2-plate.flip .v2-plate-img { order: 0; }
  .v2-plate.flip .v2-plate-meta { order: 1; }
  .v2-statement { grid-template-columns: 1fr; }
  .v2-statement-body { grid-column: 1; }
  .v2-series-intro, .v2-credentials, .v2-inquire { grid-template-columns: 1fr; gap: 36px; }
  .v2-colophon { grid-template-columns: 1fr; gap: 36px; }
  .v2-sound { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

/* ═══════════════════════════════════════════════════════════════
   V3 — LUXURY ROTUNDA COVER (scroll dollies into center frame)
   ═══════════════════════════════════════════════════════════════ */

/* the tall pinned region — its scroll length drives the dolly */
.g-scroll { position: relative; height: 420vh; background: #17110a; }
.g-scroll[data-mobile="1"] { height: 280vh; }

.g-stage {
  position: sticky; top: 0;
  height: 100vh; width: 100%;
  overflow: hidden;
  background: #0f0a05;
}

/* the rotunda photograph — a real <img> so it survives transforms and
   remains sharp. Sized to always cover viewport while keeping its AR. */
.g-room {
  position: absolute;
  left: 50%; top: 50%;
  height: max(100vh, calc(100vw * 948 / 1659));
  width: max(100vw, calc(100vh * 1659 / 948));
  transform: translate(-50%, -50%) scale(calc(1 + var(--dolly, 0) * 1.7));
  transform-origin: 50% 63%;        /* the center frame lives roughly here */
  will-change: transform;
}
.g-room > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: fill;                 /* container already matches image AR */
  display: block;
}

/* subtle parallax layer for depth (mouse-driven) */
.g-room-parallax {
  position: absolute; inset: 0;
  transform: translate3d(calc(var(--px, 0) * -14px), calc(var(--py, 0) * -10px), 0);
  will-change: transform;
}

/* the artwork dropped into the center frame — positioned in the image's
   coordinate space (percentages against the room's rendered box) */
.g-artwork {
  position: absolute;
  /* aligned to the empty gold center frame in images/rotunda.png (1659×948) */
  left: 50%; top: 42.5%;
  transform: translate(-50%, -50%);
  width: 12%; height: 22.5%;
  overflow: hidden;
  box-shadow:
    0 22px 44px -20px rgba(30,18,6,0.55),
    inset 0 0 30px rgba(0,0,0,0.35);
}
.g-artwork img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.94) contrast(1.05) saturate(0.98);
  display: block;
}
/* faint gold edge to blend the painting into the room's gilded frame */
.g-artwork::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(178,138,76,0.55);
  pointer-events: none;
}

/* dim veil that deepens the room + focuses attention on the title as we approach */
.g-veil {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(60% 42% at 50% 62%, transparent 0%, rgba(15,10,5,0.0) 40%, rgba(15,10,5,0.55) 100%);
  opacity: calc(0.35 + var(--dolly, 0) * 0.35);
  transition: opacity 0.4s ease;
}

/* light beam accent from the skylight */
.g-beam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(28% 62% at 50% 8%, rgba(255,232,178,0.14), transparent 70%);
  mix-blend-mode: screen;
  opacity: calc(0.9 - var(--dolly, 0) * 0.4);
}

/* film grain */
.g-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 4; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── The BAI NIKE title — huge display sans over the frames ─── */
.g-title {
  position: absolute; inset: 0; z-index: 6;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 4vw;
  pointer-events: none;
  color: #fbf6ea;
  text-shadow: 0 4px 40px rgba(20,12,4,0.35);
}
.g-title-eyebrow {
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(251,246,234,0.82);
  margin-bottom: clamp(22px, 3vh, 40px);
  opacity: calc(1 - var(--dolly, 0) * 0.4);
  transform: translateY(calc(var(--dolly, 0) * -6px));
}
.g-title-eyebrow .dot { display: inline-block; width: 4px; height: 4px; background: var(--gold-soft); border-radius: 50%; vertical-align: middle; margin: 0 14px; }
.g-title h1 {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(72px, 15vw, 240px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
  color: #fdf7e6;
}
.g-title h1 .wordmark {
  display: inline-block;
  transform: scale(calc(1 + var(--dolly, 0) * 0.14));
  transform-origin: 50% 50%;
  transition: transform 0.05s linear;
}
.g-title-under {
  margin-top: clamp(20px, 3vh, 40px);
  display: flex; align-items: center; gap: 22px;
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(251,246,234,0.78);
  opacity: calc(1 - var(--dolly, 0) * 0.5);
}
.g-title-under .rule { width: 46px; height: 1px; background: rgba(217,189,133,0.7); }

/* signature block that resolves in as we scroll deeper */
.g-signature {
  position: absolute; left: 0; right: 0;
  bottom: clamp(30px, 6vh, 68px);
  z-index: 7;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; color: #fdf7e6;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  opacity: var(--reveal, 0);
  transform: translateY(calc((1 - var(--reveal, 0)) * 14px));
  pointer-events: none;
  text-shadow: 0 2px 30px rgba(20,12,4,0.45);
}
.g-signature .name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.01em; text-transform: none;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.g-signature .row { opacity: 0.85; }

/* Scroll hint at bottom, fades on first scroll */
.g-hint {
  position: absolute; left: 0; right: 0; bottom: 22px;
  z-index: 5; text-align: center; pointer-events: none;
  color: rgba(251,246,234,0.7);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  opacity: var(--hint, 1);
  transition: opacity 0.4s ease;
}
.g-hint .bar {
  display: block; width: 1px; height: 40px; margin: 12px auto 0;
  background: currentColor; opacity: 0.55; position: relative; overflow: hidden;
}
.g-hint .bar::after {
  content: ""; position: absolute; inset: 0; background: var(--gold-soft);
  animation: drip 2.4s ease-in-out infinite;
}

/* chapter chrome hidden while the camera is inside the cover */
.v2-folio, .v2-rail { transition: opacity 0.7s ease; }
.v2-folio[data-hidden="1"], .v2-rail[data-hidden="1"] { opacity: 0; pointer-events: none; }

/* ─── Mobile ────────────────────────────────────────── */
@media (max-width: 760px) {
  .g-room { background-position: center 60%; }
  .g-artwork { width: 20%; height: 26%; }
  .g-title h1 { font-size: clamp(56px, 20vw, 120px); }
}


/* ═══════════════════════════════════════════════════════════════
   V3 — SECTION STYLES (below the cover)
   Refined per Figma outline: cream refrain bands, hands foreword,
   collection heroes with full-bleed background, horizontal
   carousels of plates, credentials.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Refrain band override (cream tone with dark serif type) ─ */
.v3-refrain {
  padding: 90px 6vw;
  background: #ebd3bd;
  color: #0d0a06;
  text-align: center;
  font-family: "Cormorant", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(26px, 2.6vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}
.v3-refrain .eyebrow {
  display: block;
  font-family: "Cormorant", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.6em;
  letter-spacing: 0.02em;
  color: #4a3823;
  opacity: 0.75;
  margin-bottom: 8px;
}
.v3-refrain.tight { padding: 68px 6vw; font-size: clamp(22px, 2vw, 36px); }
.v3-refrain .line { display: block; }

/* ─── Foreword (hands over parquet) ────────────────────────── */
.v3-foreword {
  position: relative;
  min-height: 100vh;
  padding: 14vh 8vw;
  overflow: hidden;
  background: #f2ecdd;
  color: #17110a;
  display: flex; align-items: center;
}
.v3-foreword-photo {
  position: absolute; inset: 0;
  background-image: url("../images/hands-over-parquet.png");
  background-size: cover;
  background-position: center 55%;
  z-index: 0;
}
.v3-foreword-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(242,236,221,0.95) 0%,
    rgba(242,236,221,0.72) 32%,
    rgba(242,236,221,0.22) 62%,
    rgba(242,236,221,0.02) 100%);
}
.v3-foreword-body {
  position: relative; z-index: 1;
  max-width: 640px;
  font-family: "Cormorant", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(20px, 1.85vw, 27px);
  line-height: 1.5;
  color: #17110a;
}
.v3-foreword-body .lead {
  display: block;
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1.25;
  margin-bottom: 1.4em;
  color: #221a12;
}
.v3-foreword-body p { margin: 0 0 1.2em; text-wrap: pretty; }
.v3-foreword-body p:last-of-type { color: #7a5a2c; font-style: italic; }
.v3-foreword-sig {
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6a5844;
}

/* ─── Collection hero (full-bleed image with huge title) ───── */
.v3-collection-hero {
  position: relative;
  min-height: 82vh;
  padding: 12vh 6vw 10vh;
  overflow: hidden;
  color: #fdf7e6;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.v3-collection-hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.v3-collection-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 65% at 50% 55%, rgba(0,0,0,0) 0%, rgba(10,6,2,0.35) 70%, rgba(10,6,2,0.6) 100%);
}
/* Hintergrundbilder der Kapitel-Heros kommen inline aus content/series/ */
.v3-collection-hero[data-key="nature"] .bg::after {
  /* stronger dark wash on the lower third so the tagline stays readable */
  background:
    radial-gradient(65% 60% at 50% 40%, rgba(0,0,0,0) 0%, rgba(10,6,2,0.25) 55%, rgba(10,6,2,0.55) 100%),
    linear-gradient(180deg, rgba(10,6,2,0) 40%, rgba(10,6,2,0.35) 100%);
}
.v3-collection-hero--nature .sub {
  /* nudge the descriptive line down so it clears the huge NATUR title */
  margin-top: clamp(48px, 9vh, 120px);
}
.v3-collection-hero .inner { position: relative; z-index: 1; max-width: 1100px; }
.v3-collection-hero .eyebrow {
  font-family: var(--mono);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(253,247,230,0.82);
  margin-bottom: clamp(22px, 3vh, 40px);
}
.v3-collection-hero h2 {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-weight: 300;
  font-size: clamp(72px, 12vw, 176px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.35em;
  text-transform: uppercase;
  color: #fdf7e6;
  text-shadow: 0 4px 40px rgba(20,12,4,0.35);
}
.v3-collection-hero .sub {
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.5;
  color: rgba(253,247,230,0.98);
  max-width: 34ch;
  /* nudge lower so subtext sits well below the huge title — improves readability */
  margin: clamp(40px, 7vh, 96px) auto 0;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(10,6,2,0.5);
}

/* ─── Triptych preview strip (Natur I · II · III quick-links) ─── */
.v3-triptych {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  padding: 0;
  background: #0a0602;
}
.v3-triptych-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fdf7e6;
  background: #0a0602;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.v3-triptych-cell .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1), filter 0.6s;
  filter: brightness(0.88) saturate(0.98);
}
.v3-triptych-cell[data-key="i"] .img   { background-position: center 55%; transform: scale(1.35); }
.v3-triptych-cell[data-key="ii"] .img  { background-position: center 60%; }
.v3-triptych-cell[data-key="iii"] .img { background-position: center 45%; }
.v3-triptych-cell::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,6,2,0) 40%, rgba(10,6,2,0.7) 100%);
  transition: opacity 0.4s;
}
.v3-triptych-cell:hover .img { transform: scale(1.06); filter: brightness(0.98) saturate(1.05); }
.v3-triptych-cell[data-key="i"]:hover .img { transform: scale(1.42); }
.v3-triptych-cell .tag {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(20px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.v3-triptych-cell .roman {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fdf7e6;
  text-shadow: 0 2px 16px rgba(10,6,2,0.6);
}
.v3-triptych-cell .sub {
  font-family: var(--mono);
  font-size: clamp(9px, 0.75vw, 11px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(253,247,230,0.82);
}
.v3-triptych-cell::after {
  content: "→";
  position: absolute; top: clamp(20px, 3vw, 36px); right: clamp(20px, 3vw, 36px);
  z-index: 2;
  font-family: var(--mono); font-size: 18px;
  color: rgba(253,247,230,0.85);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s;
}
.v3-triptych-cell:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 760px) {
  .v3-triptych { grid-template-columns: 1fr; }
  .v3-triptych-cell { aspect-ratio: 16 / 9; }
}

/* ─── Sub-cycle section (Natur I / II / III) ───
   Two-layer stage inside a green tint frame:
     • mood layer sits underneath (slide 0)
     • works layer curtains in from the right as one sheet; inside, works
       are laid out as a Bewegung-style horizontal scroll-snap carousel */
.v3-subcycle {
  position: relative;
  padding: clamp(24px, 3.5vh, 44px) clamp(24px, 3vw, 60px);
  background: var(--cycle-frame, #8a9a75);
  transition: background 0.6s ease;
}
.v3-subcycle[data-cycle="i"]   { --cycle-frame: #8a9a75; }
.v3-subcycle[data-cycle="ii"]  { --cycle-frame: #7a8a5f; }
.v3-subcycle[data-cycle="iii"] { --cycle-frame: #5f6f48; }

.v3-subcycle-stage {
  position: relative;
  width: 100%;
  height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  background: #f2ecdd;
}

/* Mood layer — sits at the base */
.v3-subcycle-mood {
  position: absolute; inset: 0;
  z-index: 0;
}
.v3-subcycle-mood .mood-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease-out;
}
.v3-subcycle:not([data-open="1"]) .v3-subcycle-mood .mood-img { transform: scale(1.02); }
.v3-subcycle-mood .mood-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,6,2,0) 45%, rgba(10,6,2,0.6) 100%);
}
.v3-subcycle-mood .mood-overlay {
  position: absolute;
  left: clamp(28px, 4vw, 72px);
  bottom: clamp(48px, 8vh, 96px);
  color: #fdf7e6;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 28ch;
  z-index: 2;
  text-shadow: 0 2px 24px rgba(10,6,2,0.55);
}
.v3-subcycle-mood .mood-overlay .roman {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 5.4vw, 84px);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fdf7e6;
}
.v3-subcycle-mood .mood-overlay .tone {
  font-family: var(--mono);
  font-size: clamp(11px, 0.95vw, 13px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(253,247,230,0.92);
}

/* Simple mood-only arrow (top-right) */
.v3-subcycle-mood-next {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(24px, 3vw, 56px);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: #fdf7e6;
  font-family: var(--mono); font-size: 22px;
  background: transparent; border: 0; cursor: pointer;
  text-shadow: 0 2px 12px rgba(10,6,2,0.5);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 30;
}
.v3-subcycle-mood-next:hover { opacity: 0.75; transform: translateX(4px); }
.v3-subcycle[data-open="1"] .v3-subcycle-mood-next { opacity: 0; pointer-events: none; }

/* Works layer — curtain over the mood, hosts the shared WorkCarousel */
.v3-subcycle-works {
  position: absolute; inset: 0;
  z-index: 10;
  background: #f2ecdd;
  transform: translate3d(100%, 0, 0);
  transition: transform 1.1s cubic-bezier(.72,0,.16,1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v3-subcycle[data-open="1"] .v3-subcycle-works { transform: translate3d(0, 0, 0); }

@media (max-width: 900px) {
  .v3-subcycle { padding: clamp(20px, 3vh, 32px) clamp(16px, 4vw, 32px); }
  .v3-subcycle-stage { height: clamp(680px, 100vh, 900px); }
  .v3-subcycle-mood .mood-overlay { left: 24px; bottom: 72px; }
  .v3-subcycle-mood-next { top: 12px; right: 12px; }
}

/* ─── Shared work carousel (Bewegung + Natur sub-cycles) ───
   Consistent card positioning: card centered by scroll-snap; padding on the
   track keeps a single-work carousel visually identical to a multi-work one.
   A subtle sneak-peek of the next painting is revealed via the gap. */
.v3-works {
  position: relative;
  width: 100%;
  padding: clamp(48px, 8vh, 96px) 0;
  background: #f2ecdd;
  color: var(--paper);
  --card-w: min(78vw, 900px);
  --card-gap: 40vw;
  --dot-color: rgba(34,26,18,0.22);
  --dot-on: var(--gold);
}
.v3-subcycle-works .v3-works { padding: 0; background: transparent; height: 100%; display: flex; flex-direction: column; justify-content: center; }

.v3-works-track {
  display: flex;
  gap: var(--card-gap);
  padding-inline: calc((100% - var(--card-w)) / 2);
  scroll-padding-inline: calc((100% - var(--card-w)) / 2);
  padding-block: clamp(64px, 8vh, 108px) clamp(72px, 10vh, 116px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.v3-works-track::-webkit-scrollbar { display: none; }

.v3-work-card {
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 60px);
  align-items: center;
}

/* Painting thumbnail — button so it's keyboard-actionable + opens lightbox */
.work-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f6f0dd;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  display: grid; place-items: center;
}
.work-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.7,.3,1);
}
.work-card-img:hover img { transform: scale(1.03); }
.work-card-img .placeholder {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.36em;
  text-transform: uppercase; color: rgba(34,26,18,0.4);
}
.work-card-img .zoom {
  position: absolute; bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(30,20,10,0.6);
  backdrop-filter: blur(6px);
  color: #f2ecdd;
  font-size: 15px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.work-card-img:hover .zoom { opacity: 1; transform: translateY(0); }

.work-card-body {
  max-width: 520px;
  padding: 8px 0;
}
.work-card-num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.v3-work-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 3.6vw, 60px);
  line-height: 1;
  margin: 0 0 18px;
  color: #17110a;
}
.v3-work-card h3 .original {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: 0.22em;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6a5844;
  margin-top: 12px;
}
.v3-work-card .desc {
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  color: #221a12;
  margin: 0 0 24px;
  max-width: 44ch;
  text-wrap: pretty;
}
.work-card-spec {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #6a5844;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(34,26,18,0.14);
}
.work-card-spec dt { opacity: 0.65; margin-bottom: 4px; }
.work-card-spec dd { color: #221a12; opacity: 1; }
.work-card-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: #221a12;
  background: transparent;
  border: 1px solid #221a12;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.25s;
}
.work-card-cta::after {
  content: ""; width: 26px; height: 1px; background: currentColor; transition: width 0.25s;
}
.work-card-cta:hover { background: #221a12; color: #f2ecdd; }
.work-card-cta:hover::after { width: 42px; background: currentColor; }

/* Arrows top-right (Bewegung-style rounded outline) */
.v3-works-nav {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(24px, 4vw, 72px);
  display: flex; gap: 10px;
  z-index: 30;
}
.v3-works-nav button {
  width: 46px; height: 46px;
  border: 1px solid rgba(34,26,18,0.22);
  background: transparent;
  border-radius: 999px;
  font-family: var(--mono); font-size: 14px;
  color: #221a12;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.v3-works-nav button:hover {
  background: #221a12; color: #f2ecdd; border-color: #221a12;
}
.v3-works-nav button:disabled { opacity: 0.3; cursor: default; }
.v3-works-nav button:disabled:hover {
  background: transparent; color: #221a12; border-color: rgba(34,26,18,0.22);
}

/* Dots bottom-center */
.v3-works-dots {
  position: absolute;
  bottom: clamp(20px, 3vh, 36px);
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px;
  z-index: 30;
}
.v3-works-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dot-color);
  border: 0; padding: 0; cursor: pointer;
  transition: opacity 0.25s, transform 0.25s, background 0.25s;
}
.v3-works-dots .dot:hover { opacity: 0.7; }
.v3-works-dots .dot.on { background: var(--dot-on); transform: scale(1.4); }

@media (max-width: 900px) {
  .v3-works {
    --card-w: min(90vw, 640px);
    --card-gap: 24vw;
  }
  .v3-work-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-card-img { justify-self: center; max-width: 340px; }
  .v3-works-nav { top: 12px; right: 12px; gap: 8px; }
  .v3-works-dots { bottom: 16px; }
}

/* ─── Lightbox ─────────────────────────────────────────────── */
.v3-lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(10,6,2,0.94);
  display: grid; place-items: center;
  padding: clamp(24px, 4vh, 64px) clamp(24px, 4vw, 80px);
  cursor: zoom-out;
  animation: v3-lb-in 0.35s ease;
}
@keyframes v3-lb-in { from { opacity: 0; } to { opacity: 1; } }

.v3-lightbox-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  max-width: min(1200px, 100%);
  max-height: 100%;
  margin: 0;
  cursor: default;
  animation: v3-lb-rise 0.5s cubic-bezier(.2,.7,.2,1);
}
@keyframes v3-lb-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.v3-lightbox-inner img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
}
.v3-lightbox-caption { text-align: center; color: #fdf7e6; }
.v3-lightbox-caption .title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 34px);
  color: #fdf7e6;
  line-height: 1.2;
}
.v3-lightbox-caption .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(253,247,230,0.6);
  margin-top: 10px;
}
.v3-lightbox-close {
  position: fixed;
  top: clamp(16px, 3vh, 32px);
  right: clamp(16px, 3vw, 40px);
  width: 44px; height: 44px;
  border: 1px solid rgba(253,247,230,0.35);
  border-radius: 999px;
  background: transparent;
  color: #fdf7e6;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2001;
}
.v3-lightbox-close:hover {
  background: rgba(253,247,230,0.08);
  border-color: rgba(253,247,230,0.75);
}

/* ─── Credentials refined ──────────────────────────────────── */
.v3-credentials {
  padding: 14vh 8vw;
  background: #f2ecdd;
  color: #17110a;
  display: grid; grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 6vw; align-items: start;
}
.v3-credentials-left { display: flex; flex-direction: column; gap: 22px; }
.v3-credentials-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a120a;
  box-shadow:
    0 30px 60px -30px rgba(30,18,6,0.4),
    inset 0 0 0 1px rgba(178,138,76,0.18);
}
.v3-credentials-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: contrast(1.02) saturate(0.95);
}
.v3-credentials-caption {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: #6a5844; opacity: 0.85;
}
.v3-credentials .eyebrow {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: #6a5844;
  margin-bottom: 4px;
}
.v3-credentials h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: #17110a;
  text-wrap: balance;
}
.v3-credentials .rows { display: flex; flex-direction: column; }
.v3-credentials .row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(34,26,18,0.12);
  align-items: baseline;
}
.v3-credentials .row:first-of-type { border-top: 1px solid rgba(34,26,18,0.12); }
.v3-credentials .year {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}
.v3-credentials .title {
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(20px, 1.7vw, 24px);
  color: #17110a;
}
.v3-credentials .title .sub {
  display: block;
  margin-top: 6px;
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-size: 0.78em;
  line-height: 1.35;
  color: #4a3823;
  opacity: 0.9;
  max-width: 46ch;
  text-wrap: pretty;
}
.v3-credentials .place {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6a5844;
}

@media (max-width: 860px) {
  .v3-credentials { grid-template-columns: 1fr; gap: 40px; }
  .v3-credentials-portrait { max-width: 420px; }
  .v3-credentials .row { grid-template-columns: 80px 1fr; gap: 16px; }
  .v3-credentials .row .place { grid-column: 1 / -1; padding-top: 4px; }
  .v3-foreword { padding: 12vh 6vw; }
  .v3-foreword-body { max-width: none; }
  .v3-collection-hero h2 { font-size: clamp(56px, 16vw, 96px); }
}

/* ═══════════════════════════════════════════════════════════════
   V3 — Signature placeholder, GDPR consent, legal line
   ═══════════════════════════════════════════════════════════════ */

/* Vorwort — transparent placeholder where the real handwritten
   signature will be inserted later. Reads as an empty ivory panel
   with a hairline gilt border and a mono caption. */
.v3-signature-slot {
  margin-top: 44px;
  width: min(360px, 68%);
  height: 92px;
  position: relative;
  background: transparent;
  border: 1px dashed rgba(178,138,76,0.45);
  display: grid; place-items: center;
}
.v3-signature-slot::before,
.v3-signature-slot::after {
  content: ""; position: absolute; width: 10px; height: 10px;
  border: 1px solid rgba(178,138,76,0.7);
}
.v3-signature-slot::before { left: -5px; top: -5px; border-right: 0; border-bottom: 0; }
.v3-signature-slot::after  { right: -5px; bottom: -5px; border-left: 0; border-top: 0; }
.v3-signature-caption {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(122,90,44,0.7);
}

/* GDPR consent row */
.v2-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
  padding: 4px 0 10px;
  border-top: 1px solid var(--rule);
  margin-top: 6px;
  padding-top: 20px;
}
.v2-consent input {
  position: absolute; opacity: 0; pointer-events: none;
}
.v2-consent .box {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  border: 1px solid var(--paper-soft);
  background: transparent;
  color: transparent;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  margin-top: 2px;
}
.v2-consent .box svg { display: block; }
.v2-consent input:checked + .box {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}
.v2-consent input:focus-visible + .box {
  outline: 2px solid var(--gold-soft); outline-offset: 2px;
}
.v2-consent .text {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  line-height: 1.75;
  color: var(--paper-soft);
}
.v2-consent .text a {
  color: var(--gold);
  border-bottom: 1px solid rgba(178,138,76,0.5);
  padding-bottom: 1px;
}
.v2-consent .text a:hover { color: var(--paper); border-color: var(--paper); }

.v2-form button[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.v2-form button[disabled]:hover { color: var(--paper); border-color: var(--rule); }
.v2-form button[disabled]:hover::after { width: 36px; }

/* Footer legal line — Impressum · Datenschutz · © line */
.v2-legal {
  padding: 8px 8vw 60px;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.65;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px;
}
.v2-legal a {
  color: var(--paper-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.v2-legal a:hover { color: var(--gold); border-bottom-color: rgba(178,138,76,0.5); }
.v2-legal .sep { opacity: 0.5; }

/* Default and hover link colors — used on Impressum / Datenschutz pages too */
a { color: inherit; }
a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .v3-signature-slot { width: 90%; height: 80px; }
  .v2-legal { gap: 8px; padding: 0 6vw 40px; letter-spacing: 0.24em; }
  .v2-legal .sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUKTION — Ergänzungen (Formular-Zustände, Honeypot, Legal-Seiten,
   Barrierefreiheit, reduzierte Bewegung)
   ═══════════════════════════════════════════════════════════════ */

/* hidden-Attribut muss sich gegen display:flex/grid durchsetzen */
[hidden] { display: none !important; }

/* Honeypot-Feld — für Menschen unsichtbar, für simple Bots ein Köder */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Fehlerzeile unter dem Formular */
.v2-form-error {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  line-height: 1.75;
  color: #a4452f;
}

/* Turnstile-Platz: unsichtbar, solange leer (unsichtbares Widget) */
.cf-turnstile-slot:empty { display: none; }
.cf-turnstile-slot iframe { max-width: 100%; }

/* Sichtbarer Fokusring für Tastaturnutzung (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Legal-Seiten (Impressum / Datenschutz) ─────────────────── */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(80px, 14vh, 140px) clamp(24px, 6vw, 64px) 60px;
}
.legal-topbar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-soft);
  padding: 22px 6vw;
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  background: linear-gradient(to bottom, rgba(242,236,221,0.94), rgba(242,236,221,0));
}
.legal-topbar .mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-size: 22px; letter-spacing: 0.005em;
  color: var(--paper); text-transform: none;
}
.legal-topbar a { color: var(--paper-soft); }
.legal-topbar a:hover { color: var(--gold); }
.legal-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.legal-wrap h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02; letter-spacing: -0.005em;
  color: var(--paper); margin-bottom: 40px;
  text-wrap: balance;
}
.legal-wrap h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--paper);
  margin: 44px 0 14px;
}
.legal-wrap h3 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin: 30px 0 8px;
  font-weight: 500;
}
.legal-wrap p, .legal-wrap li, .legal-wrap dd {
  font-family: "Cormorant", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  color: var(--paper); opacity: 0.92;
  margin-bottom: 12px;
  max-width: 62ch;
}
.legal-wrap ul { list-style: none; padding: 0; margin: 8px 0 18px; }
.legal-wrap ul li { padding-left: 20px; position: relative; }
.legal-wrap ul li::before {
  content: ""; position: absolute; left: 0; top: 0.78em;
  width: 10px; height: 1px; background: var(--gold); opacity: 0.7;
}
.legal-wrap p a { color: var(--gold); border-bottom: 1px solid rgba(178,138,76,0.5); padding-bottom: 1px; }
.legal-wrap p a:hover { color: var(--paper); border-color: var(--paper); }
.legal-wrap dl { display: grid; grid-template-columns: 160px 1fr; gap: 6px 22px; margin: 12px 0 22px; }
.legal-wrap dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--paper-soft); padding-top: 3px; }
.legal-wrap dd { margin-bottom: 6px; }
.legal-wrap .divider { height: 1px; background: var(--rule); margin: 60px 0 40px; }
.legal-footer {
  padding: 24px 6vw 60px;
  text-align: center;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--paper-soft); opacity: 0.65;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.legal-footer .sep { opacity: 0.5; }
@media (max-width: 640px) {
  .legal-wrap dl { grid-template-columns: 1fr; gap: 2px; }
  .legal-topbar { padding: 14px 20px; }
  .legal-topbar .mark { font-size: 18px; }
}

/* ─── Reduzierte Bewegung (prefers-reduced-motion) ───────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .v2-reveal { opacity: 1; transform: none; }
  .v3-works-track { scroll-behavior: auto; }
  .g-hint .bar::after, .v2-sound.is-on .ring { animation: none !important; }
}
