/* Entwurf 1 „Magazin“ – editorial, Papier, Fraunces + Instrument Sans */
:root {
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --pad: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--hi-paper); color: var(--hi-ink);
  font: 18px/1.6 var(--sans); -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; color: var(--hi-blue); }
.kicker { font: 600 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--hi-blue); margin: 0 0 18px; }
.kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--hi-red); vertical-align: middle; margin-right: 12px; }
.btn { display: inline-block; background: var(--hi-blue); color: #fff; padding: 16px 28px; font-weight: 600; border-radius: 999px; transition: background .3s; }
.btn:hover { background: var(--hi-blue-deep); }
.btn-line { border: 1px solid var(--hi-ink); padding: 8px 18px; border-radius: 999px; }
.link-arrow { font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link-arrow::after { content: " →"; transition: margin .3s; }
.link-arrow:hover::after { margin-left: 6px; }
.hide-sm { }

/* Masthead */
.masthead {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 18px var(--pad); border-bottom: 1px solid var(--hi-ink);
  position: sticky; top: 0; z-index: 20; background: rgba(247, 245, 241, .92); backdrop-filter: blur(10px);
}
.masthead__meta { display: flex; flex-direction: column; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #6b6b66; }
.masthead__logo img { height: 64px; width: auto; }
.masthead__nav { display: flex; justify-content: flex-end; gap: 28px; font-size: 15px; font-weight: 500; align-items: center; }

/* Cover */
.cover {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--pad);
  padding: clamp(40px, 7vw, 110px) var(--pad) clamp(40px, 6vw, 90px); align-items: end;
}
.cover h1 {
  font: 350 clamp(56px, 9.2vw, 168px)/.92 var(--serif); letter-spacing: -.035em; margin: 0 0 36px;
  font-variation-settings: "opsz" 144;
}
.lede { font: 400 clamp(19px, 1.6vw, 23px)/1.55 var(--serif); max-width: 34ch; color: #3a3a37; margin: 0 0 36px; }
.cover__cta { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.cover__feature figure { margin: 0; position: relative; }
.cover__feature img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.2s var(--ease); }
.cover__feature { overflow: hidden; display: block; }
.cover__feature:hover img { transform: scale(1.03); }
.cover__feature figcaption {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; padding-top: 14px; font-size: 14px;
  border-top: 1px solid var(--hi-ink); margin-top: 14px;
}
.cover__feature .no { font: italic 400 15px var(--serif); color: var(--hi-red-muted); grid-row: span 2; }
.cover__feature .cap { font-weight: 600; }
.cover__feature .where { color: #6b6b66; }

/* Ticker */
.ticker { border-block: 1px solid var(--hi-ink); overflow: hidden; background: var(--hi-white); }
.ticker__track { display: flex; gap: 56px; width: max-content; padding: 16px 0; animation: ticker 70s linear infinite; font: italic 400 22px var(--serif); }
.ticker__track i { color: var(--hi-red); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: clamp(64px, 9vw, 140px) var(--pad); }
.section__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: clamp(40px, 5vw, 72px); }
.section__head .kicker { grid-column: 1 / -1; }
.section__head h2 { font: 350 clamp(40px, 5.5vw, 88px)/1 var(--serif); letter-spacing: -.03em; margin: 0; }
.section__head sup { font: 500 .3em var(--sans); color: var(--hi-blue); vertical-align: super; margin-left: .2em; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button {
  font: 500 14px var(--sans); background: none; border: 1px solid #c9c6bf; border-radius: 999px; padding: 9px 16px; cursor: pointer; color: var(--hi-ink);
  transition: all .25s;
}
.filters button:hover { border-color: var(--hi-ink); }
.filters button.is-active { background: var(--hi-ink); color: var(--hi-paper); border-color: var(--hi-ink); }
.notice { color: var(--hi-red-muted); }

/* Objekt-Spread: asymmetrisches 12er-Raster */
.spread { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(40px, 5vw, 80px) clamp(16px, 2.5vw, 40px); align-items: start; }
.story { grid-column: span 4; display: block; transition: opacity .4s; }
.story--xl { grid-column: span 8; }
.story--m { grid-column: span 4; margin-top: clamp(0px, 8vw, 120px); }
.story--s { grid-column: span 4; }
.story--xl + .story--s { margin-top: clamp(0px, 14vw, 220px); }
.story.is-hidden { display: none; }
.story__img { margin: 0 0 18px; position: relative; overflow: hidden; background: #e8e4dc; }
.story__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.story--s .story__img img { aspect-ratio: 4 / 5; }
.story--xl .story__img img { aspect-ratio: 16 / 10; }
.story:hover .story__img img { transform: scale(1.04); }
.badge { position: absolute; top: 16px; left: 16px; background: var(--hi-red); color: #fff; font: 600 11px var(--sans); letter-spacing: .14em; text-transform: uppercase; padding: 7px 12px; }
.story .no { font: italic 400 15px var(--serif); color: var(--hi-red-muted); }
.story h3 { font: 400 clamp(22px, 2vw, 30px)/1.15 var(--serif); letter-spacing: -.01em; margin: 6px 0 12px; }
.story--xl h3 { font-size: clamp(28px, 3vw, 44px); max-width: 22ch; }
.story:hover h3 { color: var(--hi-blue); }
.facts { display: flex; flex-wrap: wrap; gap: 6px 20px; margin: 0 0 10px; font-size: 15px; color: #4a4a46; }
.facts small { color: #8a8a84; font-size: 13px; }
.price { font: 600 17px var(--sans); margin: 0; font-variant-numeric: tabular-nums; }

/* Zitat */
.quote { display: grid; grid-template-columns: 1fr 1fr; background: var(--hi-blue); color: #fff; }
.quote__img { margin: 0; min-height: 520px; }
.quote__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.quote blockquote { margin: 0; padding: clamp(40px, 7vw, 110px) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.quote blockquote p { font: 350 clamp(44px, 6vw, 104px)/.95 var(--serif); letter-spacing: -.03em; margin: 0 0 28px; }
.quote em { color: #fff; }
.quote footer { font: italic 400 20px/1.5 var(--serif); opacity: .85; max-width: 36ch; }
.quote__people { display: flex; gap: 48px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.35); }
.quote__people strong { display: block; font: 500 20px var(--serif); }
.quote__people span { font-size: 14px; opacity: .75; }

/* Inhaltsverzeichnis Leistungen */
.index__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hi-ink); }
.index__list li {
  display: grid; grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1.2fr); gap: 24px; align-items: baseline;
  padding: 32px 0; border-bottom: 1px solid var(--hi-ink); position: relative; cursor: default;
}
.index__no { font: italic 400 20px var(--serif); color: var(--hi-red-muted); }
.index__list h3 { font: 350 clamp(34px, 4.4vw, 68px)/1 var(--serif); margin: 0; letter-spacing: -.02em; transition: color .3s, transform .5s var(--ease); }
.index__list li:hover h3 { color: var(--hi-blue); transform: translateX(12px); }
.index__list p { margin: 0; max-width: 44ch; color: #4a4a46; }
.index__peek {
  position: absolute; right: 4%; top: 50%; width: 240px; aspect-ratio: 4/5; object-fit: cover; pointer-events: none;
  opacity: 0; transform: translateY(-50%) rotate(3deg) scale(.9); transition: all .5s var(--ease); z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,.2);
}
.index__list li:hover .index__peek { opacity: 1; transform: translateY(-50%) rotate(-2deg) scale(1); }

/* Award */
.award { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad); padding: 0 var(--pad) clamp(64px, 9vw, 140px); align-items: center; }
.award h2 { font: 350 clamp(36px, 4.4vw, 68px)/1.02 var(--serif); letter-spacing: -.02em; margin: 0 0 24px; }
.award p { max-width: 46ch; color: #4a4a46; }
.award__ivd { width: 120px; margin-top: 24px; mix-blend-mode: multiply; }
.award__img { margin: 0; }
.award__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Kolophon */
.colophon { background: var(--hi-ink); color: var(--hi-paper); padding: clamp(64px, 9vw, 140px) var(--pad) 32px; }
.colophon .kicker { color: var(--hi-grey); }
.colophon h2 { font: 350 clamp(48px, 7.5vw, 132px)/.95 var(--serif); letter-spacing: -.035em; margin: 0 0 40px; }
.colophon em { color: #7fb3e6; }
.colophon__tel, .colophon__mail { display: block; font: 400 clamp(24px, 3vw, 44px)/1.3 var(--serif); width: fit-content; border-bottom: 1px solid transparent; }
.colophon__tel:hover, .colophon__mail:hover { border-color: currentColor; }
.colophon__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 80px; padding-top: 24px; border-top: 1px solid #444; font-size: 15px; color: #c9c6bf; }
.colophon__cols a:hover { color: #fff; }
.colophon__fine { font-size: 12px; color: #77756f; margin-top: 48px; }

/* ---------- Exposé ---------- */
.ex-hero { position: relative; height: 92vh; min-height: 560px; overflow: hidden; }
.ex-hero img { width: 100%; height: 100%; object-fit: cover; animation: slowzoom 18s ease-out forwards; }
@keyframes slowzoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.ex-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55)); }
.ex-hero__cap { position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(24px, 5vw, 64px); z-index: 2; color: #fff; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.ex-hero__cap .no { font: italic 400 18px var(--serif); }
.ex-hero__cap .scroll { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.ex-title { padding: clamp(48px, 7vw, 110px) var(--pad) 0; display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: var(--pad); align-items: end; }
.ex-title h1 { font: 350 clamp(40px, 6vw, 104px)/1 var(--serif); letter-spacing: -.035em; margin: 0; }
.ex-title .price-big { font: 400 clamp(28px, 3vw, 44px) var(--serif); margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.ex-title .price-big small { display: block; font: 600 12px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: #6b6b66; }
.ex-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: var(--pad); padding: clamp(40px, 6vw, 90px) var(--pad); }
.steckbrief { position: sticky; top: 120px; align-self: start; border-top: 2px solid var(--hi-ink); }
.steckbrief h2 { font: 600 12px var(--sans); letter-spacing: .18em; text-transform: uppercase; margin: 14px 0; color: var(--hi-blue); }
.steckbrief dl { margin: 0; }
.steckbrief div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid #d8d4cc; font-size: 16px; }
.steckbrief dt { color: #6b6b66; }
.steckbrief dd { margin: 0; font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.steckbrief .btn { width: 100%; text-align: center; margin-top: 28px; }
.chapter { margin-bottom: clamp(48px, 6vw, 88px); }
.chapter h2 { font: 350 clamp(30px, 3.4vw, 52px)/1.05 var(--serif); letter-spacing: -.02em; margin: 0 0 24px; }
.chapter h2 span { font: italic 400 .5em var(--serif); color: var(--hi-red-muted); display: block; margin-bottom: 8px; }
.chapter p { font: 400 20px/1.7 var(--serif); color: #2e2e2b; max-width: 62ch; margin: 0 0 1em; }
.chapter.dropcap > p:first-of-type::first-letter { float: left; font: 400 5.4em/.8 var(--serif); margin: .08em .1em 0 0; color: var(--hi-blue); }
.chapter ul { columns: 2; column-gap: 40px; padding: 0; list-style: none; font-size: 17px; }
.chapter li { padding: 8px 0 8px 22px; border-bottom: 1px solid #e0dcd4; break-inside: avoid; position: relative; }
.chapter li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 1px; background: var(--hi-red); }
.plate { margin: clamp(40px, 6vw, 80px) 0; display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.plate img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; cursor: zoom-in; }
.plate.solo { grid-template-columns: 1fr; }
.plate.solo img { aspect-ratio: 16/9; }
.gallery { padding: 0 var(--pad) clamp(64px, 8vw, 120px); }
.gallery__grid { columns: 3 280px; column-gap: 16px; }
.gallery__grid img { width: 100%; margin-bottom: 16px; cursor: zoom-in; transition: opacity .3s; break-inside: avoid; }
.gallery__grid img:hover { opacity: .85; }
.energy { display: flex; gap: 4px; margin: 16px 0 8px; }
.energy span { flex: 1; text-align: center; font: 600 13px var(--sans); padding: 8px 0; color: #fff; opacity: .35; }
.energy span.on { opacity: 1; transform: scaleY(1.25); box-shadow: 0 0 0 2px var(--hi-ink); }
.agent { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--hi-white); margin: 0 var(--pad) clamp(64px, 8vw, 120px); }
.agent img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.agent div { padding: clamp(32px, 5vw, 72px); }
.agent h2 { font: 350 clamp(32px, 3.6vw, 56px)/1.05 var(--serif); margin: 0 0 16px; letter-spacing: -.02em; }
.back { display: inline-block; margin: 24px var(--pad) 0; font-weight: 600; }

/* Lightbox */
.lb { position: fixed; inset: 0; background: rgba(20, 20, 18, .96); z-index: 100; display: none; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 86vh; object-fit: contain; }
.lb button { position: absolute; background: none; border: 0; color: #fff; font: 300 44px var(--serif); cursor: pointer; padding: 16px 24px; }
.lb .lb-x { top: 8px; right: 8px; font-size: 36px; }
.lb .lb-p { left: 8px; } .lb .lb-n { right: 8px; }
.lb .lb-c { position: absolute; bottom: 20px; color: #bbb; font: italic 16px var(--serif); }

/* Responsiv */
@media (max-width: 900px) {
  .masthead { grid-template-columns: auto 1fr; }
  .masthead__meta, .hide-sm { display: none; }
  .masthead__logo img { height: 48px; }
  .masthead__nav a:not(.btn-line) { display: none; }
  .cover, .quote, .award, .ex-title, .ex-body, .agent { grid-template-columns: 1fr; }
  .section__head { grid-template-columns: 1fr; }
  .spread { grid-template-columns: 1fr; }
  .story, .story--xl, .story--m, .story--s { grid-column: 1 / -1; margin-top: 0 !important; }
  .index__list li { grid-template-columns: 48px 1fr; }
  .index__list p { grid-column: 2; }
  .index__peek { display: none; }
  .colophon__cols { grid-template-columns: 1fr; }
  .steckbrief { position: static; }
  .chapter ul { columns: 1; }
  .ex-title .price-big { text-align: left; }
  .plate { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
