/* ───────────────────────────────────────────
   Fabio Photography — Prototyp
   ─────────────────────────────────────────── */

/* Schriften lokal (Fontshare, ITF Free Font License) — keine Drittanbieter-Anfrage */
@font-face { font-family: "Switzer"; src: url("fonts/switzer-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("fonts/switzer-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("fonts/switzer-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Zodiak"; src: url("fonts/zodiak-300.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Zodiak"; src: url("fonts/zodiak-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --ink:      #121212;
  --paper:    #FFFFFF;
  --mute:     #BCBCBC;
  --acid:     #D6FF00;

  --line:     #2A2A2A;
  --line-2:   #1D1D1D;
  --raise:    #181818;

  --sans: "Switzer", ui-sans-serif, "Helvetica Neue", Arial, sans-serif;
  --serif: "Zodiak", "Iowan Old Style", Georgia, "Times New Roman", serif;

  --gut: clamp(20px, 4.5vw, 72px);
  --pad: clamp(18px, 2vw, 34px);
  --max: 1680px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head, 76px) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(15px, .55vw + 13px, 17px);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
picture { display: contents; }
h1, h2, h3, p, dl, dd, figure, fieldset { margin: 0; padding: 0; }
fieldset { border: 0; min-width: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  padding: 10px 16px; background: var(--acid); color: var(--ink);
  font-size: 13px; font-weight: 500;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

/* ── shared bits ───────────────────────── */

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-feature-settings: "tnum";
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  *:not([data-slider-progress]) { animation-duration: .01ms !important; }
  * { transition-duration: .01ms !important; }
}

/* ── header ────────────────────────────── */

.head {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gut);
  background: var(--acid);
  color: var(--ink);
  --mute: rgba(18, 18, 18, .62);
  transition: transform .45s var(--ease);
}
/* runterscrollen blendet aus, hochscrollen holt zurück */
.head.is-hidden { transform: translateY(-100%); }
.head :focus-visible { outline-color: var(--ink); }

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo__word {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 25px;
  letter-spacing: .13em;
}
.logo__mark { width: .74em; height: .74em; transition: transform .8s var(--ease); }
.logo:hover .logo__mark { transform: rotate(120deg) scale(.9); }
.logo__sub {
  margin-top: 5px;
  font-size: 10px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  margin-right: -.34em;
  color: var(--mute);
}

.nav { display: flex; gap: clamp(18px, 2.2vw, 40px); }
.nav a {
  position: relative;
  font-size: 16px; font-weight: 500;
  color: var(--mute);
  padding-block: 4px;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav a:hover, .nav a.is-current, .nav a[aria-current] { color: var(--ink); }
.nav a:hover::after, .nav a.is-current::after, .nav a[aria-current]::after { transform: scaleX(1); }

.burger { display: none; width: 28px; padding: 8px 0; }
.burger span {
  display: block; height: 1px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s;
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px;
  padding: 0 var(--gut);
  background: rgba(18, 18, 18, .86);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transform-origin: top right;
  animation: materialize .45s var(--ease);
}
.menu.is-closing { animation: materialize .3s var(--ease) reverse forwards; }
@keyframes materialize {
  from { opacity: 0; transform: scale(.97); backdrop-filter: blur(0); }
}
.menu[hidden] { display: none; }
.menu a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 11vw, 56px);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.menu a:hover { color: var(--acid); }
.menu__foot {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 6px;
}
.menu__foot a { font-family: var(--sans); font-size: 14px; color: var(--mute); }

/* ── hero — Bilder slide, ganze Seite ─── */

.hero {
  display: grid;
  height: calc(100svh - var(--head, 76px));
  min-height: 520px;
}
.hero__stage { position: relative; }





/* slider */
.slider__frame {
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--raise);
}
.slider__frame:active { cursor: grabbing; }
.slide::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top,    rgba(18,18,18,.74) 0%, rgba(18,18,18,0) 38%),
    linear-gradient(to bottom, rgba(18,18,18,.46) 0%, rgba(18,18,18,0) 24%);
}
.slide {
  position: absolute; inset: 0;
  overflow: hidden;
  transition: transform var(--slide-dur, .7s) cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}
.slide img { pointer-events: none; -webkit-user-drag: none; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.07);
  transition: transform 8s linear;
}
.slide.is-active img { transform: scale(1); }
.slide figcaption {
  position: absolute; z-index: 2;
  bottom: var(--pad);
  left: var(--pad);
  max-width: min(46ch, 46vw);
  display: flex; align-items: baseline; gap: 11px;
  font-size: clamp(13px, .3vw + 12px, 15px);
}
.slide figcaption .label { color: var(--acid); }

.slider__bar {
  position: absolute; z-index: 3;
  bottom: var(--pad);
  right: calc(var(--gut) + var(--pad));
  display: flex; align-items: center; gap: 18px;
}
.slider__count { font-size: 12px; letter-spacing: .1em; color: var(--mute); font-feature-settings: "tnum"; }
.slider__count b { color: var(--paper); font-weight: 500; }

.slider__rule {
  position: absolute; z-index: 3;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, .16);
}
.slider__rule i {
  display: block; height: 100%;
  background: var(--acid);
  transform-origin: left;
  animation: slide-fill 2.5s linear forwards;
}
.slider__rule.is-paused i { animation-play-state: paused; }
@keyframes slide-fill { from { transform: scaleX(var(--from)); } to { transform: scaleX(var(--to)); } }
.slider__nav { display: flex; gap: 2px; }
.slider__nav button {
  width: 42px; height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: 14px; color: var(--paper);
  backdrop-filter: blur(6px);
  transition: color .25s, border-color .25s, background .25s;
}
.slider__nav button:hover, .slider__nav button[aria-pressed="true"] { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.slider__nav [data-slider-pause] { font-size: 10px; letter-spacing: -.1em; }

/* ── bands ─────────────────────────────── */

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vh, 120px) var(--gut);
  border-top: 1px solid var(--line-2);
}

.band__head {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: clamp(20px, 4vw, 96px);
  align-items: start;
  margin-bottom: clamp(36px, 6vh, 76px);
}
.band__head h2 { padding-top: 4px; color: var(--acid); font-size: 14px; }
.band__head p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.1vw + 14px, 28px);
  line-height: 1.34;
  letter-spacing: -.01em;
  max-width: 34ch;
}

/* ── service cards ─────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}
.card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 40px);
  background: var(--ink);
  transition: background .5s var(--ease);
}
.card:hover { background: var(--raise); }
.card__num { position: absolute; top: clamp(22px, 2.4vw, 40px); right: clamp(22px, 2.4vw, 40px); }
.card__img { overflow: hidden; aspect-ratio: 4 / 3; background: var(--raise); }
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .7s var(--ease), transform 1.1s var(--ease);
}
.card:hover .card__img img { filter: none; transform: scale(1.04); }
.card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-top: 6px;
}
.card p { color: var(--mute); max-width: 42ch; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tags li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute);
}
.card__link {
  margin-top: auto; padding-top: 18px;
  font-size: 14px; font-weight: 500;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  transition: color .3s;
}
.card__link::after { content: "→"; transition: transform .45s var(--ease); }
.card__link:hover { color: var(--acid); }
.card__link:hover::after { transform: translateX(6px); }
.more {
  margin-top: clamp(32px, 5vh, 64px);
  padding: clamp(22px, 3vh, 36px) 0;
  border: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw + 12px, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.more::after { font-family: var(--sans); color: var(--acid); }

/* ── portfolio grid ────────────────────── */

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2.2vw, 40px) clamp(14px, 1.6vw, 28px);
}
/* Reihen füllen immer 6 Spalten: 4+2 / 2+4 / 3+3.
   Die Seitenverhältnisse sind so gewählt, dass die Bilder einer Reihe
   gleich hoch werden (span 4 = doppelte Breite von span 2 → doppeltes Ratio). */
.work { grid-column: span 2; display: block; align-self: start; }
.work--wide { grid-column: span 4; }
.work--half { grid-column: span 3; }

.work__img { overflow: hidden; background: var(--raise); aspect-ratio: 4 / 5; }
.work--wide .work__img { aspect-ratio: 8 / 5; }
.work--half .work__img { aspect-ratio: 3 / 2; }
.work__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.work:hover .work__img img { transform: scale(1.045); }

/* Portfolio-Seite: großes Bild über zwei Reihen, daneben zwei gestapelt;
   dann 2er- und 3er-Reihe. .is-right spiegelt das große Bild nach rechts. */
.grid--mix { grid-auto-flow: dense; }
.work--big { grid-column: span 4; grid-row: span 2; align-self: stretch; display: flex; flex-direction: column; }
.work--big.is-right { grid-column: 3 / -1; }
.work--big .work__img { position: relative; flex: 1; aspect-ratio: auto; min-height: 0; }
.work--big .work__img img { position: absolute; inset: 0; }
.work--side .work__img { aspect-ratio: 3 / 2; }

.work__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  margin-top: 0;
  border-top: 1px solid var(--line-2);
}
.work__meta h3 { font-size: 15px; font-weight: 500; letter-spacing: -.005em; transition: color .3s; }
.work:hover .work__meta h3 { color: var(--acid); }
.work__cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }

/* ── about ─────────────────────────────── */

.band--grey {
  max-width: none;
  padding-inline: max(var(--gut), (100% - var(--max)) / 2 + var(--gut));
  background: #BCBCBC;
  color: var(--ink);
  --mute: rgba(18, 18, 18, .7);
  --line: rgba(18, 18, 18, .22);
  border-top: 0;
}
.band--grey .band__head h2 { color: var(--ink); }
.band--grey ::selection { background: var(--ink); color: var(--acid); }
.band--grey :focus-visible { outline-color: var(--ink); }
.band--grey + .band--grey, .band--grey + .band { border-top: 0; }
/* Formular auf Grau: Gelb ist dort kaum lesbar → Schwarz als Akzent */
.band--grey .field input, .band--grey .field textarea { color: var(--ink); }
.band--grey .field input::placeholder, .band--grey .field textarea::placeholder { color: rgba(18, 18, 18, .45); }
.band--grey .field input:focus, .band--grey .field textarea:focus { border-color: var(--ink); }
.band--grey .field input[type="date"]::-webkit-calendar-picker-indicator { filter: opacity(.6); }
.band--grey .picker__opts label:hover span { color: var(--ink); border-color: var(--ink); }
.band--grey .picker__opts input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--acid); }
.band--grey .picker__opts input:focus-visible + span { outline-color: var(--ink); }
.band--grey .btn { background: var(--ink); border-color: var(--ink); color: var(--acid); }
.band--grey .btn:hover { background: transparent; color: var(--ink); }
.band--grey .form__err, .band--grey .form__ok { color: var(--ink); font-weight: 500; }
.band--grey .form__foot small a:hover { color: var(--ink); }

.about__body {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
}
/* Bild wird vom Grid auf die Höhe der Textspalte gezogen — kein festes Ratio,
   damit es nie über den Text hinausläuft. */
.about__img {
  position: relative;
  overflow: hidden;
  background: var(--raise);
  min-height: 380px;
}
.about__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}
.about__text { display: flex; flex-direction: column; gap: 20px; }
.about__text .lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(21px, 1.4vw + 14px, 34px);
  line-height: 1.26;
  letter-spacing: -.015em;
  margin-bottom: 8px;
}
.about__text p:not(.lead) { color: var(--mute); max-width: 62ch; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  margin-top: clamp(16px, 3vh, 34px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.facts > div { display: flex; flex-direction: column; gap: 6px; }
.facts dd { font-size: 15px; }

/* ── form ──────────────────────────────── */

.form {
  display: flex; flex-direction: column; gap: 26px;
  max-width: 640px;
}

.picker legend { margin-bottom: 12px; }
.picker__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.picker__opts label { position: relative; }
.picker__opts input {
  position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%;
  margin: 0; cursor: pointer;
}
.picker__opts span {
  display: block;
  padding: 11px 22px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--mute);
  transition: color .3s, border-color .3s, background .3s;
}
.picker__opts label:hover span { color: var(--paper); border-color: var(--mute); }
.picker__opts input:checked + span { background: var(--acid); border-color: var(--acid); color: var(--ink); font-weight: 500; }
.picker__opts input:focus-visible + span { outline: 2px solid var(--acid); outline-offset: 3px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 0;
  background: none;
  border: 0; border-bottom: 1px solid var(--line);
  color: var(--paper);
  font: inherit;
  transition: border-color .3s;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #5A5A5A; }
.field input:hover, .field textarea:hover { border-color: var(--mute); }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--acid); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.5); cursor: pointer; }

.form__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 26px;
  margin-top: 6px;
}
.form__foot small { font-size: 12px; color: var(--mute); max-width: 36ch; line-height: 1.5; }

.btn {
  padding: 15px 34px;
  border: 1px solid var(--acid);
  background: var(--acid); color: var(--ink);
  font-size: 14px; font-weight: 600;
  letter-spacing: .02em;
  transition: background .3s, color .3s;
}
.btn:hover { background: transparent; color: var(--acid); }

.form__err { font-size: 13px; color: var(--acid); }
.form__ok { font-size: 15px; color: var(--acid); }
.btn:disabled { opacity: .6; cursor: default; }

/* ── faq ───────────────────────────────── */

.faq { max-width: 900px; border-bottom: 1px solid var(--line); }
.faq__item { border-top: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: clamp(18px, 2.4vh, 26px) 0;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(19px, .8vw + 15px, 26px);
  line-height: 1.25; letter-spacing: -.01em;
  cursor: pointer; list-style: none;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: none;
  font-family: var(--sans); font-size: 22px; color: var(--acid);
  transition: transform .45s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--acid); }
.faq__item p { color: var(--mute); max-width: 62ch; padding-bottom: 24px; }
.faq { interpolate-size: allow-keywords; }
.faq__item::details-content {
  height: 0; overflow: clip;
  transition: height .45s var(--ease), content-visibility .45s allow-discrete;
}
.faq__item[open]::details-content { height: auto; }
.faq__item summary:active { opacity: .6; transition: opacity .1s; }

/* ── 404 ───────────────────────────────── */

.notfound { min-height: 60vh; display: flex; flex-direction: column; gap: 18px; }
.notfound h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4vw + 12px, 80px);
  line-height: 1.05; letter-spacing: -.025em;
}
.notfound p:not(.label) { color: var(--mute); max-width: 48ch; }
.notfound .more { margin-top: 0; max-width: 700px; }

/* ── impressum / datenschutz ───────────── */

.legal__body { max-width: 68ch; display: flex; flex-direction: column; gap: 14px; }
.legal__body h2 {
  margin-top: 26px;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, .8vw + 16px, 26px);
  line-height: 1.25; letter-spacing: -.01em;
}
.legal__body p { color: var(--mute); }
.legal__body a, .form__foot small a { text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover, .form__foot small a:hover { color: var(--acid); }

/* ── footer ────────────────────────────── */

.foot {
  padding: clamp(48px, 8vh, 96px) max(var(--gut), (100% - var(--max)) / 2 + var(--gut)) 28px;
  background: var(--acid);
  color: var(--ink);
  --mute: rgba(18, 18, 18, .62);
  --line-2: rgba(18, 18, 18, .18);
}
.foot ::selection { background: var(--ink); color: var(--acid); }
.foot :focus-visible { outline-color: var(--ink); }
.foot__top {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: clamp(32px, 6vh, 64px);
  margin-bottom: 22px;
}
.foot__big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 54px);
  line-height: 1.28;
  letter-spacing: -.02em;
  width: fit-content;
  transition: color .3s;
}
.foot__big:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .12em; }
.foot__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  font-size: 12px; color: var(--mute);
}
.foot__bottom nav { display: flex; gap: 20px; }
.foot__bottom a:hover { color: var(--ink); text-decoration: underline; }

/* ── press feedback — sofort beim Drücken ─ */

.btn, .slider__nav button, .picker__opts span, .card__link, .work, .foot__big, .burger, .logo {
  transition: transform .35s var(--ease), color .3s, background .3s, border-color .3s;
}
.btn:active, .slider__nav button:active, .picker__opts label:active span, .burger:active, .logo:active {
  transform: scale(.96);
  transition: transform .1s ease-out;
}
.card__link:active, .foot__big:active, .work:active { transform: scale(.985); transition: transform .1s ease-out; }

@media (prefers-reduced-transparency: reduce) {
  .menu { background: var(--ink); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (prefers-contrast: more) {
  :root { --mute: #E0E0E0; --line: #6A6A6A; --line-2: #4A4A4A; }
  .head { --mute: var(--ink); border-bottom: 1px solid var(--ink); }
}

/* Touch: kein „klebender“ Hover-Zoom nach dem Tippen */
@media (hover: none) {
  .card:hover .card__img img { filter: grayscale(1) contrast(1.05); transform: none; }
  .work:hover .work__img img { transform: none; }
  .card__link:hover::after { transform: none; }
  .logo:hover .logo__mark { transform: none; }
}

/* ── responsive ────────────────────────── */

@media (max-width: 1080px) {
  .about__body { grid-template-columns: 1fr; }
  .about__img { min-height: 0; aspect-ratio: 4 / 5; max-width: 440px; }
  .band__head { grid-template-columns: 1fr; gap: 16px; }
  .grid { grid-template-columns: repeat(4, 1fr); }
  .work, .work--wide, .work--half, .work--side { grid-column: span 2; }
  .work--wide .work__img, .work--half .work__img, .work--side .work__img { aspect-ratio: 4 / 5; }
  .work--big, .work--big.is-right { grid-column: span 4; grid-row: auto; }
  .work--big .work__img { flex: none; aspect-ratio: 8 / 5; }
}

@media (max-width: 760px) {
  .head { padding: 14px var(--gut); }
  .nav { display: none; }
  .burger { display: block; }
  .about__img { max-width: none; }
  .grid { grid-template-columns: 1fr; gap: 30px; }
  .work, .work--wide, .work--half, .work--side, .work--big, .work--big.is-right { grid-column: span 1; }
  .work--big .work__img { aspect-ratio: 4 / 5; }
  .form__row { grid-template-columns: 1fr; gap: 22px; }
  .foot__top { padding-bottom: 32px; }

  .hero { height: calc(100svh - var(--head, 62px)); }
  .slide figcaption { bottom: calc(var(--pad) + 46px); right: var(--pad); max-width: none; }
  .slider__bar {
    left: calc(var(--gut) + var(--pad));
    justify-content: space-between;
  }
}
