/* ============================================================
   Nordberg – Die Eventküche · Design System
   ============================================================ */

:root {
  /* Color – warm, food/editorial */
  --bg:        #ece7df;
  --bg-alt:    #e1d9c8;
  --bg-paper:  #f4efe6;
  --bg-dark:   #1a1714;
  --bg-darker: #100e0c;

  --ink:       #2a2622;
  --ink-soft:  #5c5147;
  --ink-mute:  #8a7c6b;
  --line:      #cfc6b6;
  --line-soft: #ddd5c4;

  --accent:    #7a5c3e;
  --accent-h:  #634a31;
  --tan:       #a8896a;
  --warm:      #d4a574;
  --cream:     #f0e9da;

  /* Type */
  --f-display: "EB Garamond", "Georgia", serif;
  --f-sans:    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Scale */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --container: 1320px;
  --gutter: 28px;

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

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--f-sans);
  font-size: 16.5px;
  line-height: 1.5;
  font-feature-settings: "ss01","cv11";
  overflow-x: hidden;
}

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

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: 1520px; }
.row { display: flex; gap: 24px; }
.col { flex: 1; min-width: 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: .6;
}
.eyebrow--plain::before { display: none; }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -0.015em;
  font-feature-settings: "ss01";
}
.h-xl { font-family: var(--f-display); font-weight: 400; font-size: clamp(56px, 9.4vw, 168px); line-height: .96; letter-spacing: -0.02em; }
.h-lg { font-family: var(--f-display); font-weight: 400; font-size: clamp(44px, 6vw, 96px); line-height: 1.0; letter-spacing: -0.015em; }
.h-md { font-family: var(--f-display); font-weight: 400; font-size: clamp(32px, 4vw, 60px); line-height: 1.02; letter-spacing: -0.012em; }
.h-sm { font-family: var(--f-display); font-weight: 400; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.1; letter-spacing: -0.008em; }

.italic-soft { font-style: italic; color: var(--ink-soft); }

.lead {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .005em;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--line); }
.btn--cream:hover { background: var(--bg-paper); }
.btn--link {
  padding: 0;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  gap: 8px;
}

.btn .arrow {
  width: 14px;
  height: 14px;
  flex: none;
  transition: transform .4s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Site header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 102;
  padding: 18px 0;
  transition: transform .45s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(236, 231, 223, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding: 12px 0;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.005em;
}
.logo__mark {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: var(--warm);
  font-size: 40px;
  line-height: 1;
}
.logo__word {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.015em;
}
.logo__word small { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .15em; color: var(--ink-soft); text-transform: uppercase; display: block; margin-top: -2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.4);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
  padding: 4px;
}
.nav a {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.nav a:hover { background: rgba(255,255,255,.7); }
.nav a.is-active { background: var(--ink); color: var(--bg); }

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

.lang {
  display: inline-flex;
  background: rgba(255,255,255,.4);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
  padding: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
}
.lang button {
  padding: 6px 9px;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang button.is-active { background: var(--ink); color: var(--bg); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { width: 16px; height: 1.5px; background: var(--ink); display: block; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease); }
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 101;
  padding: 90px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-family: var(--f-display);
  font-size: clamp(26px, 6vw, 34px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a .num { font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute); }

/* ---------- Page sections ---------- */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 140px) 0; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
.section--dark {
  background: #e8d9bc;
  color: var(--ink);
}
.section--dark .eyebrow { color: var(--ink-soft); opacity: 1; }
.section--dark .lead { color: var(--ink-soft); }
.section--dark .divider { background: var(--line); }
.section--dark .pill { background: rgba(0,0,0,.06); }
.section--dark .h-md,
.section--dark .h-lg,
.section--dark .h-xl { color: var(--ink); }
.section--paper { background: var(--bg-paper); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.section-head .meta { padding-top: 8px; }
.section-head .title { text-wrap: balance; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { transform: none !important; }
[data-reveal="fade"] { transform: none; }
[data-reveal="mask"] {
  clip-path: inset(0 0 100% 0);
  transform: none;
  transition: clip-path 1.1s var(--ease-out);
}
[data-reveal="mask"].is-in { clip-path: inset(0 0 0 0) !important; }
[data-reveal="rise-slow"] { transform: translateY(40px); transition-duration: 1.2s; }

[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
[data-split] .word i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 35ms);
}
[data-split].is-in .word i { transform: translateY(0) !important; }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background: var(--bg-alt);
  background-image:
    repeating-linear-gradient(135deg, rgba(122,92,62,.08) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #e0d7c4, #d8cdb6);
  border-radius: var(--r-md);
  overflow: hidden;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph--dark { background: linear-gradient(135deg, #2a2522, #1a1714); color: rgba(236,231,223,.7); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, transparent 8px 16px); }
.ph--dark::after { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--cream); }
.ph--warm { background: linear-gradient(135deg, #b89568, #8d6b44); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 8px, transparent 8px 16px); color: var(--cream); }
.ph--warm::after { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: white; }

/* aspect helpers */
.ph[data-ratio="1/1"] { aspect-ratio: 1/1; }
.ph[data-ratio="4/5"] { aspect-ratio: 4/5; }
.ph[data-ratio="3/4"] { aspect-ratio: 3/4; }
.ph[data-ratio="16/9"] { aspect-ratio: 16/9; }
.ph[data-ratio="3/2"] { aspect-ratio: 3/2; }
.ph[data-ratio="2/3"] { aspect-ratio: 2/3; }

/* Real images — same API as .ph */
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  display: block;
}
.image-wrap[data-ratio="1/1"] { aspect-ratio: 1/1; }
.image-wrap[data-ratio="4/5"] { aspect-ratio: 4/5; }
.image-wrap[data-ratio="3/4"] { aspect-ratio: 3/4; }
.image-wrap[data-ratio="16/9"] { aspect-ratio: 16/9; }
.image-wrap[data-ratio="3/2"] { aspect-ratio: 3/2; }
.image-wrap[data-ratio="2/3"] { aspect-ratio: 2/3; }
.image-wrap[data-ratio="5/6"] { aspect-ratio: 5/6; }
.image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease-out);
}
.image-wrap--zoom:hover > img { transform: scale(1.04); }
.image-caption {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ---------- Magnetic cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9998;
  transform: translate(14px, 14px) scale(.7);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.cursor.is-large {
  width: 12px; height: 12px;
  mix-blend-mode: difference;
  background: var(--bg);
}
.cursor-label.is-visible { opacity: 1; transform: translate(14px, 14px) scale(1); }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-label { display: none; } }

/* ---------- Marquee ---------- */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
  --speed: 36s;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 64px;
  flex: none;
  animation: marquee var(--speed) linear infinite;
  padding-right: 64px;
}
@keyframes marquee {
  to { transform: translateX(-100%); }
}
.marquee__item {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.marquee__item::after {
  content: "✶";
  font-size: .55em;
  color: var(--tan);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
.site-footer .eyebrow { color: rgba(236,231,223,.6); }
.site-footer a:hover { color: var(--warm); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(236,231,223,.12);
}
.footer-top h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(236,231,223,.6); margin-bottom: 18px; font-weight: 500; }
.footer-top ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-mega {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: .88;
  letter-spacing: -0.03em;
  padding: 60px 0 0;
  white-space: nowrap;
  color: var(--cream);
  position: relative;
}
.footer-mega .star { color: var(--warm); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(236,231,223,.55);
  font-family: var(--f-mono);
  letter-spacing: .04em;
}
.footer-bottom .links { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .5s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card:hover { border-color: var(--accent); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--bg-paper);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Pill list ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,.04);
  font-size: 13px;
  border: 1px solid transparent;
}
.section--dark .pill { background: rgba(255,255,255,.06); }

/* ---------- Counter ---------- */
.counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counter {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.counter:last-child { border-right: 0; }
.counter__num {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -0.02em;
}
.counter__label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}
@media (max-width: 800px) {
  .counter-row { grid-template-columns: 1fr 1fr; }
  .counter { border-right: 0; border-bottom: 1px solid var(--line); }
  .counter:nth-child(even) { border-right: 0; }
  .counter:nth-child(odd) { border-right: 1px solid var(--line); }
  .counter:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Hover tilt ---------- */
.tilt { transition: transform .5s var(--ease-out); transform-style: preserve-3d; will-change: transform; }

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 18px;
  font-family: var(--f-sans);
  outline: 0;
  transition: border-color .25s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.field--filled input,
.field--filled textarea,
.field--filled select {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.field--filled input:focus, .field--filled textarea:focus, .field--filled select:focus {
  border-color: var(--ink);
}

/* Option grid (form) */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.option {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  background: var(--bg-paper);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.option:hover { border-color: var(--accent); transform: translateY(-2px); }
.option.is-selected { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.option.is-selected .option__icon { background: rgba(255,255,255,.1); color: var(--bg); }
.option__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.option__icon svg { width: 18px; height: 18px; }
.option__title { font-family: var(--f-display); font-size: 24px; line-height: 1.1; }
.option__desc { font-size: 13px; color: inherit; opacity: .7; }
.option__check {
  position: absolute;
  top: 16px; right: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .3;
  transition: opacity .25s var(--ease);
}
.option.is-selected .option__check { opacity: 1; background: var(--bg); }
.option.is-selected .option__check::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink); font-size: 12px; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); width: 100%; }
.section--dark .divider { background: rgba(255,255,255,.1); }

.spinner-ring {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
}

/* page transition overlay */
.page-transition {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 999;
  transform: translateY(100%);
  pointer-events: none;
}
.page-transition.is-leaving { transform: translateY(0); transition: transform .55s var(--ease); }

/* Scroll-progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 101;
  transition: width .15s linear;
}

/* ---------- Spec list (used across angebote / location) ---------- */
.speclist { list-style: none; display: grid; gap: 10px; border-top: 1px solid var(--line); padding-top: 16px; }
.speclist li { display: grid; grid-template-columns: 110px 1fr; gap: 22px; align-items: baseline; }
.speclist .mono { font-size: 11px; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; }
.speclist strong { font-weight: 500; font-size: 15px; }
.section--dark .speclist { border-top-color: rgba(255,255,255,.15); }
.speclist--dark li { color: rgba(236,231,223,.9); }
.speclist--dark .mono { color: rgba(236,231,223,.5); }
.speclist--dark strong { color: var(--cream); }
@media (max-width: 600px) {
  .speclist li { grid-template-columns: 90px 1fr; gap: 14px; }
}

/* ---------- Use cases on warm bg ---------- */
.usecase { border-color: rgba(42,38,34,.12) !important; background: rgba(255,255,255,.6) !important; color: var(--ink) !important; }
.usecase:hover { border-color: var(--accent) !important; background: rgba(255,255,255,.9) !important; }
.usecase__num { color: var(--ink-mute) !important; }
.usecase__body p { color: var(--ink-soft) !important; }
.usecase__link { color: var(--accent) !important; }

/* hover swap underline */
.under {
  position: relative;
  display: inline-block;
}
.under::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(.0); transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
.under:hover::after { transform: scaleX(1); }

/* ---------- Detail clusters / scattered photos ---------- */
.detail-cluster {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin: clamp(40px, 6vw, 80px) 0;
  align-items: center;
}
.detail-cluster__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-alt);
  transition: transform .6s var(--ease-out);
}
.detail-cluster__item > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.6s var(--ease-out);
}
.detail-cluster__item:hover > img { transform: scale(1.05); }
.detail-cluster__item--a { grid-column: 1 / span 4; aspect-ratio: 4/5; transform: translateY(-30px) rotate(-1.5deg); }
.detail-cluster__item--b { grid-column: 5 / span 5; aspect-ratio: 5/4; transform: translateY(20px); }
.detail-cluster__item--c { grid-column: 10 / span 3; aspect-ratio: 3/4; transform: translateY(-10px) rotate(1.2deg); }

.detail-cluster__caption {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.detail-cluster__quote {
  grid-column: 1 / -1;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-align: center;
  max-width: 30ch;
  margin: 24px auto 0;
  text-wrap: balance;
}
.detail-cluster__quote em { color: var(--ink); font-style: italic; }

@media (max-width: 800px) {
  .detail-cluster { gap: 12px; }
  .detail-cluster__item--a { grid-column: 1 / span 7; transform: none; }
  .detail-cluster__item--b { grid-column: 1 / -1; aspect-ratio: 16/10; transform: none; }
  .detail-cluster__item--c { grid-column: 6 / span 7; transform: none; margin-top: -50px; }
}

/* ---------- Full-bleed ribbon ---------- */
.photo-ribbon {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(280px, 38vw, 520px);
  overflow: hidden;
}
.photo-ribbon > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 6s linear;
}
.photo-ribbon__label {
  position: absolute;
  inset: auto auto 30px 30px;
  background: rgba(236,231,223,.92);
  backdrop-filter: blur(8px);
  padding: 16px 22px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 360px;
}
.photo-ribbon__label .mono { font-size: 11px; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; }
.photo-ribbon__label strong { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; letter-spacing: -0.005em; line-height: 1.15; text-wrap: balance; }

/* ---------- Floating polaroid (corner accent) ---------- */
.floating-photo {
  position: absolute;
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  z-index: 1;
  transform: rotate(var(--rot, -3deg));
  transition: transform .8s var(--ease-out);
}
.floating-photo:hover { transform: rotate(0) scale(1.04); }
.floating-photo > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.floating-photo__tape {
  position: absolute;
  top: -8px; left: 50%;
  width: 60px; height: 18px;
  background: rgba(212, 165, 116, .35);
  transform: translateX(-50%) rotate(-2deg);
  border: 1px dashed rgba(255,255,255,.4);
}
.floating-photo--tr { top: -40px; right: -20px; --rot: 3deg; }
.floating-photo--bl { bottom: -30px; left: -20px; --rot: -4deg; }

@media (max-width: 900px) {
  .floating-photo { display: none; }
}
