/* Felix Heim Fotografie — Website
   Design-System "Cinematic" (dunkel), abgeleitet aus dem Entwurf
   XX-Website/Design-Entwuerfe/variante-2-cinematic.html

   Aufbau:
     1. Schriftarten
     2. Tokens
     3. Basis & Reset
     4. Bausteine (Eyebrow, Buttons, Links)
     5. Header & Navigation
     6. Hero (Start + Unterseiten)
     7. Abschnitte (Trust, Statement, Panel, Strip, Quick-Check, Über, Kontakt)
     8. Inhaltsbausteine (Karten, Schritte, Preise, Stimmen, FAQ, Prosa)
     9. Formulare
    10. Footer
    11. Reveal-Animation
    12. Responsive
    13. Reduced Motion

   Alle Farben halten mindestens ΔE2000 15 Abstand zu Pantone 448 C (#4A412A);
   geprüft mit Design-Entwuerfe/colorfix.py, geringster Abstand 20,7.
*/

/* ============ 1. Schriftarten ============ */
/* Hind liegt lokal vor — keine Google-Fonts-Einbindung, sonst greift die CSP.
   Gewicht 300 (Light) trägt die großen Display-Überschriften. */
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Hind-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Hind-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Hind-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Hind-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Hind-Bold.woff2') format('woff2');
}

/* ============ 2. Tokens ============ */
:root {
  /* Flächen */
  --bg: #040C14;
  --bg-2: #0E141A;
  --bg-3: #171C22;
  --bg-footer: #010912;

  /* Schrift */
  --fg: #F3F6F0;
  --fg-soft: #B2BAAC;
  --fg-mute: #8C9486;

  /* Marke */
  --sage: #A1C2A3;
  --sage-dim: #7E9B80;
  --sage-hi: #B9D6BB;
  --accent: #F8763A;
  --accent-hi: #FF8B54;
  --btn-ink: #070D15;

  /* Linien */
  --line: rgba(161, 194, 163, .22);
  --line-soft: rgba(243, 246, 240, .10);

  /* Maße */
  --wrap: 1240px;
  --header-h: 82px;
  --ease: cubic-bezier(.16, .68, .24, 1);

  /* Native Bedienelemente (Auswahlliste, Checkbox, Scrollbalken) dunkel
     zeichnen. Ein Pfeil per data:-URI im CSS wäre an img-src 'self' gescheitert. */
  color-scheme: dark;
}

/* ============ 3. Basis & Reset ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Hind', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.025em; line-height: 1.08; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--sage); color: var(--bg);
  padding: 14px 22px; font-weight: 600; border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; }

/* Generischer Abschnitt für Unterseiten. --alt setzt die zweite Fläche,
   damit sich Abschnitte auf langen Seiten voneinander absetzen. */
.section { padding: clamp(80px, 13vh, 150px) 0; background: var(--bg); }
.section--alt { background: var(--bg-2); }
.section--tight { padding: clamp(56px, 9vh, 100px) 0; }

.section-head { max-width: 62ch; margin-bottom: clamp(36px, 6vh, 64px); }
.section-head h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 300; letter-spacing: -.03em; margin-top: 20px; }
.section-head h2 em { font-style: normal; font-weight: 600; color: var(--sage); }
.section-head h2 strong { font-weight: 600; }
.section-head p { margin-top: 22px; color: var(--fg-soft); line-height: 1.72; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ============ 4. Bausteine ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--sage); opacity: .8; flex: none; }
.eyebrow.is-accent { color: var(--accent); }
.eyebrow.is-accent::before { background: var(--accent); }

.scene-no {
  font-size: 12px; font-weight: 600; letter-spacing: .3em;
  color: rgba(243, 246, 240, .45);
  display: block; margin-bottom: 18px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 30px;
  font-size: 16px; font-weight: 600; letter-spacing: .01em;
  border-radius: 2px; border: 1px solid transparent;
  transition: background .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), transform .45s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--btn-ink); }
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-2px); }
.btn-sage { background: var(--sage); color: var(--bg); }
.btn-sage:hover { background: var(--sage-hi); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(243, 246, 240, .35); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  font-size: 16px; font-weight: 600; color: var(--sage);
}
.link-arrow .arw { transition: transform .5s var(--ease); display: inline-block; }
.link-arrow:hover .arw { transform: translateX(7px); }

/* Hakenliste, zweispaltig */
.ticks { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--fg); line-height: 1.45; }
.ticks svg { flex: none; margin-top: 4px; }
.ticks--single { grid-template-columns: 1fr; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chips li {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--sage);
}

.actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.actions--center { justify-content: center; }

/* ============ 5. Header & Navigation ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 24px;
  background: linear-gradient(to bottom, rgba(4, 12, 20, .82), rgba(4, 12, 20, 0));
  transition: background .6s var(--ease), backdrop-filter .6s var(--ease), padding .6s var(--ease);
}
.site-header.is-stuck {
  background: rgba(4, 12, 20, .94);
  backdrop-filter: saturate(140%) blur(14px);
  padding: 10px 24px;
  border-bottom: 1px solid var(--line-soft);
}
/* Unterseiten ohne Vollbild-Hero brauchen von Anfang an eine feste Fläche,
   sonst steht die Navigation auf dem Seiteninhalt. */
.site-header.is-solid {
  background: rgba(4, 12, 20, .94);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

/* Das Logo ist vollflächig Salbei #A1C2A3 — niemals einen CSS-Filter darauf,
   es erreicht auf dunklem Grund von sich aus rund 10:1 Kontrast. */
.brand { display: flex; align-items: center; min-height: 44px; }
.brand img { height: 30px; width: auto; opacity: 1; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
  font-size: 15px; font-weight: 500; color: rgba(243, 246, 240, .86);
  transition: color .35s var(--ease);
}
.main-nav a:hover { color: var(--sage); }
.main-nav a.active { color: var(--sage); }
.main-nav .nav-cta {
  margin-left: 10px; background: var(--accent); color: var(--btn-ink); font-weight: 600;
  padding: 10px 22px; border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.main-nav .nav-cta:hover { background: var(--accent-hi); color: var(--btn-ink); }
.main-nav .nav-cta.active { color: var(--btn-ink); }

/* flex-direction: column ist zwingend — ohne sie legt der Browser die drei
   Balken nebeneinander und der Knopf zeigt nur einen einzigen Strich. */
.nav-toggle {
  display: none; width: 46px; height: 46px; background: transparent;
  border: 1px solid rgba(243, 246, 240, .3); border-radius: 2px;
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; flex: none; width: 20px; height: 1.5px; background: var(--fg);
  margin: 3px 0; transition: transform .4s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* ============ 6. Hero ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--bg);
}
/* Unterseiten: kürzerer Hero, damit der Inhalt früher beginnt. */
.hero--sub { min-height: 68svh; }

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: kenburns 34s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.08) translate3d(-1.2%, 1%, 0); }
  to   { transform: scale(1.2) translate3d(1.5%, -1.5%, 0); }
}

.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(4, 12, 20, .98) 2%, rgba(4, 12, 20, .86) 26%, rgba(4, 12, 20, .42) 58%, rgba(4, 12, 20, .66) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(4, 12, 20, .85), rgba(4, 12, 20, 0) 62%);
}

/* padding-top hält den Inhalt unter der fixen Navigation, auch wenn der Text
   höher wird als der Hero (Unterseiten mit 68svh auf schmalen Schirmen). */
.hero-inner { position: relative; width: 100%; padding: calc(var(--header-h) + 16px) 0 clamp(64px, 10vh, 120px); }
.hero h1 {
  font-size: clamp(40px, 7.4vw, 92px);
  font-weight: 300; letter-spacing: -.035em;
  margin-top: 26px; max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .6);
}
.hero--sub h1 { font-size: clamp(34px, 5.6vw, 68px); max-width: 18ch; }
/* Motiv steht im linken Drittel: bei breitem Ausschnitt und auf dem Handy sonst
   ist das Gesicht abgeschnitten. */
.hero-media--drucker img { object-position: 25% 30%; }
/* Steht das Motiv links (Hero Unternehmensfotografie), sitzt der Text in der
   rechten Hälfte statt über dem Gesicht. Auf schmalen Schirmen bleibt alles
   wie bei den anderen Heroes. */
@media (min-width: 901px) {
  .hero--right .hero-col { margin-left: auto; width: min(100%, 600px); }
  .hero--right .hero-veil {
    background:
      linear-gradient(to top, rgba(4, 12, 20, .98) 2%, rgba(4, 12, 20, .7) 26%, rgba(4, 12, 20, .2) 56%, rgba(4, 12, 20, .5) 100%),
      linear-gradient(to left, rgba(4, 12, 20, .88) 0%, rgba(4, 12, 20, .74) 38%, rgba(4, 12, 20, 0) 70%);
  }
}
.hero h1 strong { font-weight: 600; display: block; }
.hero h1 .accent { color: var(--sage); font-weight: 600; }
.hero-text {
  margin-top: 28px; max-width: 52ch; font-size: clamp(16px, 1.35vw, 19px);
  color: var(--fg-soft); line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero-cue {
  position: absolute; right: 24px; bottom: clamp(64px, 10vh, 120px);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(243, 246, 240, .6);
  writing-mode: vertical-rl;
}
.hero-cue::after {
  content: ""; width: 1px; height: 58px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: cue 3.2s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: .2; transform: scaleY(.3); transform-origin: top; }
  50%  { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
  100% { opacity: .2; transform: scaleY(.3); transform-origin: top; }
}

/* Kopfbereich ohne Bild — für Rechtsseiten und Danke-Seite. */
.page-head { padding: calc(var(--header-h) + clamp(50px, 9vh, 96px)) 0 clamp(36px, 6vh, 64px); background: var(--bg); }
.page-head h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 300; letter-spacing: -.03em; margin-top: 18px; }
.page-head h1 strong { font-weight: 600; }
.page-head p { margin-top: 20px; color: var(--fg-soft); max-width: 58ch; line-height: 1.72; }

/* ============ 7. Abschnitte ============ */
/* --- Trust-Leiste --- */
/* Die Logos liegen als weiße Freisteller vor (Design-Entwuerfe/logos/),
   daher kein brightness/invert-Filter — der macht aus den Rechteck-Logos
   weiße Klötze. Höhen optisch ausgeglichen statt formal gleich. */
.trust { background: var(--bg); border-bottom: 1px solid var(--line-soft); padding: 30px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(22px, 5vw, 56px); }
.trust img { height: 34px; width: auto; opacity: .78; transition: opacity .5s var(--ease); }
.trust li:nth-child(1) img { height: 38px; } /* Google */
.trust li:nth-child(4) img { height: 50px; } /* BPP: rundes Siegel mit feiner Zeichnung, braucht mehr Höhe als eine Wortmarke */
.trust li:nth-child(5) img { height: 28px; } /* Catech */
.trust img:hover { opacity: 1; }

/* --- Statement --- */
.statement { padding: clamp(90px, 16vh, 170px) 0; background: var(--bg); text-align: center; }
.statement p {
  font-size: clamp(26px, 4.2vw, 52px); font-weight: 300; letter-spacing: -.03em;
  line-height: 1.22; max-width: 19ch; margin: 0 auto;
}
.statement p { text-wrap: balance; }
/* Die Hervorhebung bleibt eine Zeile, sonst reißt sie mitten durch („mit / einem Bild"). */
.statement .hl { color: var(--accent); font-weight: 600; white-space: nowrap; }

/* --- Szenen-Panels --- */
.scene { position: relative; }
.scene-head { padding: 0 0 clamp(40px, 7vh, 70px); }
.scene-head h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 300; letter-spacing: -.03em; margin-top: 20px; max-width: 18ch; }
.scene-head h2 em { font-style: normal; font-weight: 600; color: var(--sage); }

.panel { position: relative; min-height: 88svh; display: flex; align-items: center; overflow: hidden; }
.panel-media { position: absolute; inset: 0; overflow: hidden; }
.panel-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.16); transition: transform 3.2s var(--ease); will-change: transform;
}
.panel.is-in .panel-media img { transform: scale(1.02); }
.panel-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 12, 20, .97) 0%, rgba(4, 12, 20, .9) 34%, rgba(4, 12, 20, .5) 62%, rgba(4, 12, 20, .35) 100%),
    linear-gradient(to top, rgba(4, 12, 20, .9), rgba(4, 12, 20, 0) 45%);
}
.panel--right .panel-veil {
  background:
    linear-gradient(260deg, rgba(4, 12, 20, .97) 0%, rgba(4, 12, 20, .9) 34%, rgba(4, 12, 20, .5) 62%, rgba(4, 12, 20, .35) 100%),
    linear-gradient(to top, rgba(4, 12, 20, .9), rgba(4, 12, 20, 0) 45%);
}
.panel-inner { position: relative; width: 100%; padding: clamp(70px, 11vh, 120px) 0; }
.panel-body { max-width: 530px; }
.panel--right .panel-body { margin-left: auto; }
.panel-body h3 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 300; letter-spacing: -.03em; margin-top: 14px; }
.panel-body h3 strong { font-weight: 600; }
.panel-body p { margin-top: 22px; color: var(--fg-soft); font-size: 17px; line-height: 1.72; }
.panel-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* --- Filmstreifen --- */
.strip-sec { padding: clamp(80px, 13vh, 140px) 0 clamp(70px, 11vh, 120px); background: var(--bg); }
.strip-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.strip-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 300; letter-spacing: -.03em; margin-top: 16px; }
.strip-hint { color: var(--fg-soft); font-size: 14.5px; max-width: 30ch; }
.strip {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--sage-dim) transparent;
}
.strip::-webkit-scrollbar { height: 4px; }
.strip::-webkit-scrollbar-thumb { background: var(--sage-dim); border-radius: 99px; }
.strip figure { margin: 0; flex: 0 0 min(78vw, 440px); scroll-snap-align: start; position: relative; overflow: hidden; background: var(--bg-2); }
.strip img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  filter: brightness(.82) saturate(.95);
  transition: filter .8s var(--ease), transform .9s var(--ease);
}
.strip figure:hover img { filter: brightness(1) saturate(1); transform: scale(1.03); }
.strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(4, 12, 20, .92), rgba(4, 12, 20, 0));
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: rgba(243, 246, 240, .9);
}

/* --- Quick-Check --- */
.qc, .book { position: relative; padding: clamp(80px, 13vh, 150px) 0; background: var(--bg-2); overflow: hidden; }
.qc::before, .book::before {
  content: ""; position: absolute; inset: auto -10% -55% 40%; height: 70%;
  background: radial-gradient(closest-side, rgba(248, 118, 58, .24), rgba(248, 118, 58, 0) 72%);
  pointer-events: none;
}
.book { background: var(--bg); }
.book--alt { background: var(--bg-2); }
.book--alt .form-panel { background: var(--bg-3); }
.book h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 300; letter-spacing: -.03em; margin-top: 20px; }
.book h2 strong { font-weight: 600; }
.book .book-copy p:not(.eyebrow) { margin-top: 22px; color: var(--fg-soft); line-height: 1.72; max-width: 44ch; }
.book .split { position: relative; }
@media (min-width: 901px) { .book-copy { position: sticky; top: calc(var(--header-h) + 24px); } }
.qc-inner { position: relative; max-width: 760px; }
.qc h2 { font-size: clamp(28px, 4.2vw, 50px); font-weight: 300; letter-spacing: -.03em; margin-top: 20px; }
.qc h2 strong { font-weight: 600; color: var(--accent); }
.qc p { margin-top: 22px; color: var(--fg-soft); font-size: 17px; line-height: 1.72; max-width: 58ch; }

/* --- Über mich --- */
.about { padding: clamp(80px, 13vh, 150px) 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 72px); align-items: center; }
.about-fig { margin: 0; position: relative; overflow: hidden; }
.about-fig img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(.9); transform: scale(1.08); transition: transform 2.6s var(--ease); }
.about.is-in .about-fig img { transform: scale(1); }
.about h2 { font-size: clamp(26px, 3.6vw, 44px); font-weight: 300; letter-spacing: -.03em; margin-top: 18px; }
.about h2 strong { font-weight: 600; }
.about p { margin-top: 22px; color: var(--fg-soft); font-size: 17px; line-height: 1.75; max-width: 52ch; }
.about .link-arrow { margin-top: 22px; }

/* --- Kontakt-Abschluss --- */
.contact { position: relative; min-height: 80svh; display: flex; align-items: center; overflow: hidden; }
.contact-media { position: absolute; inset: 0; overflow: hidden; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); transition: transform 3.4s var(--ease); }
.contact.is-in .contact-media img { transform: scale(1.02); }
.contact-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(4, 12, 20, .97) 8%, rgba(4, 12, 20, .8) 45%, rgba(4, 12, 20, .72) 100%),
    radial-gradient(100% 70% at 50% 100%, rgba(4, 12, 20, .9), rgba(4, 12, 20, 0) 70%);
}
.contact-inner { position: relative; width: 100%; padding: clamp(80px, 13vh, 140px) 0; text-align: center; }
.contact .eyebrow { justify-content: center; }
.contact h2 { font-size: clamp(34px, 6vw, 76px); font-weight: 300; letter-spacing: -.035em; margin-top: 22px; }
.contact h2 strong { font-weight: 600; }
.contact p { margin: 24px auto 0; max-width: 46ch; color: var(--fg-soft); font-size: 17px; line-height: 1.7; }
.contact-meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px 34px; justify-content: center; font-size: 15.5px; color: var(--fg); }
.contact-meta a {
  display: inline-flex; align-items: center; min-height: 44px; gap: 10px;
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), color .4s var(--ease);
}
.contact-meta a:hover { color: var(--sage); border-color: var(--sage); }
.contact-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============ 8. Inhaltsbausteine ============ */
/* --- Kartenraster --- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.card {
  background: var(--bg-2); border: 1px solid var(--line-soft);
  padding: 30px 28px; border-radius: 2px;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-3px); }
.card h3 { font-size: 20px; font-weight: 600; margin-top: 14px; }
.card p { margin-top: 14px; color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }
.card-no { font-size: 12px; font-weight: 600; letter-spacing: .3em; color: var(--sage); }

/* --- Ablauf in Schritten --- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line); counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -13px; left: 0;
  background: var(--bg); padding-right: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .3em; color: var(--sage);
}
.section--alt .step::before { background: var(--bg-2); }
.step h3 { font-size: 19px; font-weight: 600; }
.step p { margin-top: 12px; color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; }

/* --- Preise / Pakete --- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; align-items: start; }
.price {
  background: var(--bg-2); border: 1px solid var(--line-soft);
  padding: 34px 30px; border-radius: 2px; display: flex; flex-direction: column; height: 100%;
}
.price--featured { border-color: var(--sage); background: var(--bg-3); }
.price h3 { font-size: 21px; font-weight: 600; }
.price .price-tag { margin-top: 16px; font-size: clamp(30px, 3.4vw, 40px); font-weight: 300; letter-spacing: -.03em; color: var(--sage); }
.price .price-note { margin-top: 6px; font-size: 13.5px; color: var(--fg-mute); }
.price ul { margin-top: 24px; display: grid; gap: 11px; }
.price ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--fg-soft); line-height: 1.5; }
.price ul svg { flex: none; margin-top: 4px; }
.price .btn { margin-top: auto; }
.price .actions { margin-top: 28px; }

/* --- Kundenstimmen --- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 18px; }
.quotes--three { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.quote { margin: 0; background: var(--bg-2); border-left: 2px solid var(--sage); padding: 30px 28px; }
.quote blockquote { margin: 0; font-size: 17px; line-height: 1.72; color: var(--fg); }
.quote figcaption { margin-top: 20px; font-size: 14px; color: var(--fg-mute); }
.quote figcaption strong { display: block; color: var(--sage); font-weight: 600; font-size: 15px; }

/* --- FAQ --- */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: transparent; border: 0; padding: 24px 0; text-align: left;
  font-size: 17px; font-weight: 600; color: var(--fg); min-height: 44px;
  transition: color .35s var(--ease);
}
.faq-q:hover { color: var(--sage); }
.faq-q .faq-icon { flex: none; width: 14px; height: 14px; position: relative; }
.faq-q .faq-icon::before,
.faq-q .faq-icon::after { content: ""; position: absolute; background: var(--sage); transition: transform .4s var(--ease); }
.faq-q .faq-icon::before { inset: 6px 0 auto 0; height: 1.5px; }
.faq-q .faq-icon::after { inset: 0 6px 0 auto; width: 1.5px; }
.faq-item.open .faq-q .faq-icon::after { transform: scaleY(0); }
.faq-a { display: none; padding: 0 0 24px; color: var(--fg-soft); line-height: 1.75; max-width: 66ch; }
.faq-item.open .faq-a { display: block; }

/* --- Fließtext für Rechtsseiten --- */
.prose { max-width: 74ch; color: var(--fg-soft); line-height: 1.78; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: var(--fg); margin: 48px 0 16px; letter-spacing: -.02em; }
.prose h3 { font-size: 19px; font-weight: 600; color: var(--fg); margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--sage); border-bottom: 1px solid rgba(161, 194, 163, .4); }
.prose a:hover { border-color: var(--sage); }
.prose strong { color: var(--fg); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line-soft); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { color: var(--fg); font-weight: 600; background: var(--bg-2); }

/* --- Seiten ohne Vollbild-Hero: Inhalt beginnt unter der festen Navigation --- */
.top-pad { padding-top: calc(var(--header-h) + clamp(40px, 8vh, 80px)); }
.page-h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 300; letter-spacing: -.03em; margin-top: 18px; }
.page-h1 strong { font-weight: 600; }
.page-lead { margin-top: 22px; max-width: 46ch; color: var(--fg-soft); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.center { text-align: center; }
.page-lead--center { margin-left: auto; margin-right: auto; }

/* Kontaktzeilen mit Symbol */
.contact-list { margin-top: 34px; display: grid; gap: 6px; }
.contact-list li { display: flex; align-items: center; gap: 14px; min-height: 44px; font-size: 16px; color: var(--fg); }
.contact-list svg { flex: none; }
.contact-list a { border-bottom: 1px solid transparent; transition: border-color .4s var(--ease), color .4s var(--ease); }
.contact-list a:hover { color: var(--sage); border-color: var(--sage); }

/* Karte mit Symbol oder Emoji, zentriert */
.card--center { text-align: center; }
.card-emoji { display: block; font-size: 30px; line-height: 1; }
.card--center p { margin-top: 16px; color: var(--fg); }

/* Abschlussband mit einer Handlungsaufforderung */
.cta-band { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: clamp(48px, 8vh, 84px) 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 300; letter-spacing: -.025em; }
.cta-band .btn { white-space: nowrap; }

/* Bestätigungssymbol (Danke-Seite) */
.done-mark { display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 999px; border: 1px solid var(--sage); background: rgba(161, 194, 163, .10); margin-bottom: 28px; }

/* --- Zweispalter: Text neben Bild oder Formular --- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--top { align-items: start; }
.split h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 300; letter-spacing: -.025em; line-height: 1.2; }
.split h3 strong { font-weight: 600; }
.split p { margin-top: 18px; color: var(--fg-soft); line-height: 1.75; }
.split .btn { margin-top: 28px; }
.frame { margin: 0; overflow: hidden; }
.frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(.92); }
.mt-block { margin-top: clamp(48px, 8vh, 88px); }
.lead { margin-top: 28px; max-width: 70ch; color: var(--fg-soft); line-height: 1.75; }

/* Sprungmarken als Pillen */
.pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pills a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 10px 20px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--sage);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.pills a:hover { border-color: var(--sage); background: rgba(161, 194, 163, .08); }

/* Typische Sätze der Zielgruppe */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.pain { margin: 0; background: var(--bg-3); border-left: 2px solid var(--accent); padding: 22px 24px; font-size: 17px; line-height: 1.55; font-style: italic; color: var(--fg); }

/* Bildergalerie. Die Ausschnitt-Korrekturen je Foto stehen hier statt als
   Inline-Style im Markup, weil die CSP Inline-Styles nicht mehr erlauben soll. */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery picture { display: block; overflow: hidden; background: var(--bg-2); }
.gallery img {
  width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(.86) saturate(.95);
  transition: filter .8s var(--ease), transform .9s var(--ease);
}
.gallery picture:hover img { filter: none; transform: scale(1.04); }
.gallery .pos-16 { object-position: 50% 18%; }
.gallery .pos-18 { object-position: 50% 15%; }

/* Auf abgesetzten Flächen liegen Karten eine Stufe höher, sonst verschwinden sie im Grund */
.section--alt .quote, .section--alt .card, .section--alt .price, .section--alt .fit, .section--b2c .price { background: var(--bg-3); }
.section--alt .price--featured, .section--b2c .price--featured { background: var(--bg); }

/* Passt / passt nicht: zwei Karten nebeneinander */
.fit { background: var(--bg-2); border: 1px solid var(--line-soft); padding: 28px; }
.fit h3 { font-size: 17px; font-weight: 600; color: var(--sage); margin-bottom: 18px; }
.fit .ticks { margin-top: 0; gap: 14px; }
.fit--no h3 { color: var(--fg-soft); }
.fit--no .ticks li { color: var(--fg-soft); }

/* Leistungen als Kacheln */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.tiles li { display: flex; gap: 12px; align-items: center; padding: 22px 20px; background: var(--bg-3); border: 1px solid var(--line-soft); font-size: 15.5px; line-height: 1.45; }
.tiles svg { flex: none; }

/* Bildersammlung in Spalten, jedes Foto in seinem eigenen Seitenverhältnis */
.masonry { column-count: 4; column-gap: 10px; }
.masonry picture { display: block; margin-bottom: 10px; overflow: hidden; break-inside: avoid; background: var(--bg-2); }
.masonry img { width: 100%; display: block; filter: brightness(.88) saturate(.95); transition: filter .8s var(--ease), transform .9s var(--ease); }
.masonry picture:hover img { filter: none; transform: scale(1.03); }

/* Preis-Erklärung ohne Preisliste */
.plain-box { max-width: 780px; background: var(--bg-2); border: 1px solid var(--line-soft); padding: clamp(24px, 3.5vw, 40px); }
.plain-box p { color: var(--fg); line-height: 1.72; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 26px; }
.facts li { border: 1px solid var(--line); padding: 14px 16px; text-align: center; font-size: 14px; font-weight: 600; color: var(--sage); line-height: 1.4; }

/* Hinweisband (Zufriedenheitsgarantie) */
.notice { display: flex; gap: 14px; align-items: center; margin-top: 28px; padding: 18px 24px; border: 1px solid var(--line); background: rgba(161, 194, 163, .08); }
.notice svg { flex: none; }
.notice p { margin: 0; font-size: 15px; font-weight: 600; color: var(--fg); line-height: 1.55; }

/* Privatkunden-Bereich: bewusst abgesetzt vom Firmengeschäft darüber */
.section--b2c { background: var(--bg-2); border-top: 3px solid var(--accent); }
.note-lead { max-width: 62ch; font-size: 15px; font-style: italic; color: var(--fg-soft); line-height: 1.65; }
.note-lead a { color: var(--sage); border-bottom: 1px solid rgba(161, 194, 163, .4); transition: border-color .35s var(--ease); }
.note-lead a:hover { border-color: var(--sage); }
.section-head--flush { margin-bottom: 0; }
.note-lead + .section-head { margin-top: 28px; }
.lead--small { margin-top: 16px; font-size: 15px; }
.faq-title { font-size: 22px; font-weight: 600; }
.faq-title + .faq { margin-top: 20px; }
.fine--form { margin-top: 0; }
.fine { margin-top: 16px; font-size: 13px; color: var(--fg-mute); line-height: 1.6; }
.fine a { color: var(--fg-soft); border-bottom: 1px solid var(--line); }
.fine a:hover { color: var(--sage); }
.price-badge { position: absolute; top: -13px; left: 30px; background: var(--accent); color: var(--btn-ink); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; padding: 4px 12px; border-radius: 999px; }
.price { position: relative; }
.price-desc { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--fg); }

/* Formularfläche */
.form-panel { background: var(--bg-2); border: 1px solid var(--line-soft); padding: clamp(24px, 3.5vw, 40px); }
.section--b2c .form-panel { background: var(--bg-3); }
.form-panel--narrow { max-width: 640px; }
.form-panel .panel-intro { margin: -8px 0 24px; color: var(--fg-soft); font-size: 15px; line-height: 1.65; }
.form-panel .summary { margin-bottom: 22px; color: var(--fg); line-height: 1.7; }
.form-panel .actions { margin-top: 0; }
.form-panel .actions + .form-status { margin-top: 18px; }
.widerruf-note { max-width: 640px; }
.form-panel h2, .form-panel h3 { font-size: 20px; font-weight: 600; margin-bottom: 22px; letter-spacing: -.01em; line-height: 1.25; }
.form-panel .form { max-width: none; }
.form .btn { justify-self: start; }
.form .btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* Rechtstexte */
.prose .page-h1 { margin: 18px 0 32px; color: var(--fg); }
.prose .prose-block { margin-bottom: 24px; }
.prose .legal-note { font-size: 13px; color: var(--fg-mute); }
.prose .legal-note--first { margin-top: 40px; }
/* Datenschutz und Widerrufsbelehrung der IT-Recht-Kanzlei.
   Das Skript itrk-legaltext.js holt den Text per fetch() und schreibt nur den
   <body>-Inhalt (h1, h2, p, ul, li, a) in dieses Element. Es ist KEIN iFrame,
   und das <style> der Kanzlei wird verworfen. Der Text erbt deshalb alles von
   dieser Seite und wird wie .prose gestaltet (Klasse im Markup).
   Die eigene <h1> des Textes blenden wir aus, weil die Seite oben schon
   dieselbe Überschrift zeigt.
   Der fetch geht an https://itrk.legal: die CSP braucht dort connect-src. */
.legal-embed { max-width: 74ch; }
.legal-embed h1 { display: none; }
.prose b { color: var(--fg); font-weight: 600; }
.legal-embed ul { list-style: square; }
.legal-embed h2 { font-size: clamp(20px, 2.2vw, 24px); }

/* ============ 9. Formulare ============ */
.form { max-width: 620px; display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--fg); }
.field .hint { font-size: 13px; color: var(--fg-mute); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%; min-height: 52px; padding: 13px 16px;
  background: var(--bg); color: var(--fg);
  border: 1px solid rgba(243, 246, 240, .42); border-radius: 2px;
  font-family: inherit; font-size: 16px; line-height: 1.5;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select option { background: var(--bg-2); color: var(--fg); }
.req { color: var(--accent); }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-mute); opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(243, 246, 240, .65); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--sage); outline-offset: 2px;
  border-color: var(--sage); background: var(--bg-3);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--accent); }

/* Einwilligungs-Checkbox (Kontakt und Quiz) */
.field-check { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.field-check input[type="checkbox"] {
  width: 22px; height: 22px; margin: 2px 0 0; flex: none;
  accent-color: var(--sage); cursor: pointer;
}
.field-check label { font-size: 14.5px; font-weight: 400; color: var(--fg-soft); line-height: 1.6; cursor: pointer; }
.field-check a { color: var(--sage); border-bottom: 1px solid rgba(161, 194, 163, .4); }

/* Honeypot: für Menschen unsichtbar, für Screenreader ausgeblendet */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Die Klassen ok, err und show setzt assets/js/main.js — dort nachsehen,
   bevor hier etwas umbenannt wird. Ohne .show bleibt die Meldung verborgen. */
.form-status { display: none; font-size: 15px; line-height: 1.6; padding: 12px 16px; border: 1px solid transparent; border-radius: 2px; }
.form-status.show { display: block; }
.form-status.ok { color: var(--sage); background: rgba(161, 194, 163, .10); border-color: var(--line); }
.form-status.err { color: var(--accent); background: rgba(248, 118, 58, .10); border-color: rgba(248, 118, 58, .4); }

/* ============ 10. Footer ============ */
.site-footer { background: var(--bg-footer); border-top: 1px solid var(--line-soft); padding: 54px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-top img { height: 26px; width: auto; opacity: .9; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 8px; }
.footer-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 6px 12px;
  font-size: 14.5px; color: var(--fg-soft); transition: color .35s var(--ease);
}
.footer-nav a:hover { color: var(--sage); }
.footer-nav a.active { color: var(--sage); }
/* Widerrufsbutton in der Link-Zeile des Footers: gefüllter Knopf statt Text-Link, damit er
   deutlich erkennbar ist. Salbei-Fläche mit dunkler Schrift (10:1), Höhe wie die Links (44 px). */
.footer-nav a.footer-widerruf-btn {
  margin-left: 10px; padding: 10px 24px; min-height: 48px;
  background: var(--sage); color: var(--bg); font-size: 15px; font-weight: 600; border-radius: 2px;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.footer-nav a.footer-widerruf-btn:hover,
.footer-nav a.footer-widerruf-btn.active { background: var(--sage-hi); color: var(--bg); }
.footer-nav a.footer-widerruf-btn:hover { transform: translateY(-1px); }
.footer-bottom {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(243, 246, 240, .5);
}

/* ============ 11. Reveal ============ */
.rv { opacity: 0; transform: translateY(34px); transition: opacity 1.25s var(--ease), transform 1.25s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .14s; }
.rv-d2 { transition-delay: .28s; }
.rv-d3 { transition-delay: .42s; }
.rv-d4 { transition-delay: .56s; }

/* ============ 12. Responsive ============ */
/* Navigation: vier Menüpunkte plus Button brauchen einzeilig rund 1140 px.
   Darunter greift das Burger-Menü, damit die Punkte nicht umbrechen. */
@media (max-width: 1160px) {
  /* Das Menü legt sich über die Seite. Das Logo muss darüber bleiben,
     sonst verschwindet es beim Öffnen. Deckende Fläche, damit die helle
     Hero-Überschrift nicht durchschimmert. */
  .brand { position: relative; z-index: 2; }
  .main-nav {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 86px 24px 30px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #010912; backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-102%); transition: transform .55s var(--ease);
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 19px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .main-nav .nav-cta { margin: 18px 0 0; justify-content: center; display: inline-flex; border-bottom: 0; }
  .nav-toggle { display: flex; position: relative; z-index: 2; }
  .site-header { background: rgba(4, 12, 20, .9); backdrop-filter: blur(10px); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .hero-cue { display: none; }
  /* Auf schmalen Schirmen reicht der Text bis in die helle obere Bildhälfte;
     dort braucht der Schleier mehr Deckkraft für lesbaren Fließtext. */
  .hero-veil {
    background: linear-gradient(to top, rgba(4, 12, 20, .98) 6%, rgba(4, 12, 20, .9) 48%, rgba(4, 12, 20, .72) 100%);
  }
  .panel { min-height: auto; }
  .panel-veil, .panel--right .panel-veil {
    background: linear-gradient(to top, rgba(4, 12, 20, .98) 30%, rgba(4, 12, 20, .86) 62%, rgba(4, 12, 20, .55) 100%);
  }
  .panel-media img { height: 100%; min-height: 520px; }
  .panel-inner { padding: 300px 0 70px; }
  .panel-body, .panel--right .panel-body { max-width: none; margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .ticks { grid-template-columns: 1fr; }
  .trust img { height: 30px; }
  .trust-inner { gap: 22px; }
  .footer-top { align-items: flex-start; }
  .contact-meta { flex-direction: column; align-items: center; gap: 2px; }
  .strip figure { flex: 0 0 84vw; }
  .masonry { column-count: 1; }
}

/* ============ 13. Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .hero-media img, .panel-media img, .contact-media img, .about-fig img { transform: scale(1) !important; }
  .rv { opacity: 1; transform: none; }
  .strip { scroll-snap-type: none; }
}
