:root {
  --cream: #FAF6EE;
  --warm-white: #FFFCF6;
  --beige: #F1EADD;
  --sage: #8FA37E;
  --sage-deep: #6E8463;
  --gold: #A5813F;
  --light-gold: #DEB05C;
  --charcoal: #2A2622;
  --ink-soft: #5b534b;
  --muted: #7A716690;
  --line: #E3D9C8;
  --shadow: 0 1px 2px rgba(42, 38, 34, .04), 0 8px 30px rgba(42, 38, 34, .06);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--cream)
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

h1,
h2,
h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em
}

h1 em,
h2 em,
h3 em {
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  /* color: var(--sage-deep); */
  display: inline-flex;
  align-items: center;
}

/* ————— Buttons: sliding-fill hover ————— */
.btn {
  position: relative;
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream);
  padding: 15px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  overflow: hidden;
  z-index: 0;
  transition: color .35s var(--ease-out);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: var(--sage-deep); */
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
  z-index: -1;
}

.btn:hover::after {
  transform: translateY(0)
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-ghost::after {
  background: var(--charcoal)
}

.btn-ghost:hover {
  color: var(--cream)
}

.btn-light {
  background: var(--cream);
  color: var(--charcoal);
}

.btn-light::after {
  background: var(--gold)
}

.btn-light:hover {
  color: var(--cream)
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 238, .55);
}

.btn-outline-light::after {
  background: var(--cream)
}

.btn-outline-light:hover {
  color: var(--charcoal)
}

/* ————— Nav ————— */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform .45s var(--ease-out), background .35s, border-color .35s, color .35s;
  border-bottom: 1px solid transparent;
  color: var(--cream);
}

nav.solid {
  background: rgba(250, 246, 238, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--charcoal);
}

nav.hidden {
  transform: translateY(-100%)
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.brand {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.02em
}

/* ————— Logo: großes Logo im Hero, kleines Logo in der Nav ————— */
/* Nav-Logo ist nur sichtbar, sobald die Nav einen festen Hintergrund
       hat (Klasse .solid, siehe script.js) – bis dahin steht das große
       Logo mittig im Header. */
.nav-logo {
  display: block;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility 0s linear .35s;
}

nav.solid .nav-logo {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s var(--ease-out), visibility 0s;
}

.nav-logo img {
  display: block;
  height: 60px;
  width: auto;
}

.hero-logo {
  display: block;
  line-height: 0;
  margin-bottom: 22px;
}

.hero-logo img {
  display: block;
  width: min(250px, 46vw);
  height: auto;
  filter: drop-shadow(0 2px 16px rgba(42, 38, 34, .3));
}

@media(max-width:760px) {
  .hero-logo img {
    width: min(260px, 72vw);
  }

  .nav-logo img {
    height: 48px;
  }
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 500
}

.nav-links a {
  position: relative;
  opacity: .8;
  transition: opacity .2s
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}

.nav-links a:hover {
  opacity: 1
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-size: 14px;
  padding: 11px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility 0s linear .35s;
}

nav.solid .nav-cta {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s var(--ease-out), visibility 0s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-social {
  display: flex;
  opacity: 0;
  visibility: hidden;
  color: currentColor;
  transition: opacity .35s var(--ease-out), visibility 0s linear .35s, color .2s;
}

nav.solid .nav-social {
  opacity: .8;
  visibility: visible;
  transition: opacity .35s var(--ease-out), visibility 0s, color .2s;
}

.nav-social:hover {
  opacity: 1;
}

@media(max-width:760px) {
  .nav-links {
    display: none
  }
}

/* ————— Hero ————— */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('photos/hero.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(42, 38, 34, .52) 0%, rgba(42, 38, 34, .18) 55%, transparent 78%),
    linear-gradient(to top, rgba(42, 38, 34, .88) 0%, rgba(42, 38, 34, .52) 40%, rgba(42, 38, 34, .22) 72%, rgba(42, 38, 34, .14) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 60px;
  text-shadow: 0 1px 3px rgba(42, 38, 34, .45), 0 4px 28px rgba(42, 38, 34, .35);
}

.hero .eyebrow {
  color: var(--cream);
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 86px);
  margin: 16px 0 20px;
  text-wrap: balance;
  font-weight: 100;
}

.hero h1 em {
  color: var(--light-gold);
}

.hero p.lead {
  font-size: 19px;
  max-width: 34ch;
  color: var(--warm-white);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions .btn {
  text-shadow: none;
}

.rating-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--warm-white);
}

.stars {
  color: var(--light-gold);
  letter-spacing: 2px;
  font-size: 16px
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 76px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, .75);
  writing-mode: vertical-rl;
}

.scroll-cue .cue-line {
  width: 1px;
  height: 64px;
  background: rgba(250, 246, 238, .35);
  position: relative;
  overflow: hidden;
}

.scroll-cue .cue-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--cream);
}

@media(max-width:860px) {
  .scroll-cue {
    display: none
  }
}

/* ————— Sections ————— */
section {
  padding: 96px 0
}

.sec-head {
  max-width: 60ch;
  margin-bottom: 56px
}

.sec-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 16px;
  text-wrap: balance;
}

.sec-head h2 em {
  color: var(--gold)
}

.sec-head p {
  margin-top: 14px;
  color: var(--ink-soft)
}

/* ————— Leistungen: editorial rows ————— */
.services {
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 44px 0;
}

.svc-row+.svc-row {
  border-top: 1px solid var(--line)
}

.svc-row:nth-child(even) .svc-media {
  order: 2
}

.svc-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.svc-row:hover .svc-media img {
  transform: scale(1.04)
}

.svc-body .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  /* color: var(--sage-deep); */
}

.svc-body h3 {
  font-size: clamp(30px, 3vw, 40px);
  margin: 12px 0 14px
}

.svc-body p {
  color: var(--ink-soft);
  max-width: 44ch
}

.svc-body .incl {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 16px;
}

@media(max-width:860px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .svc-row:nth-child(even) .svc-media {
    order: 0
  }
}

/* ————— Filmstrip marquee ————— */
.filmstrip {
  padding: 0;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 26px 0;
}

.strip-track img {
  height: 190px;
  width: auto;
  border-radius: 3px;
  filter: saturate(.92);
  transition: filter .4s;
}

.strip-track img:hover {
  filter: saturate(1.05)
}

@media(max-width:760px) {
  .strip-track img {
    height: 130px
  }

  .strip-track {
    padding: 18px 0
  }
}

/* ————— Portfolio ————— */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 14px
}

.g-item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}

.g-item:hover img {
  transform: scale(1.05)
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 38, 34, .35), transparent 45%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.g-item:hover::after {
  opacity: 1
}

.focus-top {
  object-position: center top;
}

.focus-half-top {
  object-position: center 25%;
}

.g-item.tall {
  grid-row: span 2
}

.g-item.wide {
  grid-column: span 2
}

@media(max-width:760px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px
  }

  .g-item.wide {
    grid-column: span 2
  }
}

/* ————— Pakete: Stunden-Timeline (in Leistungen integriert) ————— */
.tiers {
  padding-top: 10px;
}

.tiers h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  margin-bottom: 30px;
}

.tiers h3 em {
  color: var(--gold);
}

.price-line {
  position: relative;
  margin-bottom: 34px;
  height: 1px;
  background: var(--line);
}

.price-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-out) .2s;
}

.price-line.in::after {
  transform: scaleX(1)
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.price {
  position: relative;
  padding: 30px 18px 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}

.price::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.price:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.price .h {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -.02em;
  font-size: 30px
}

.price .lbl {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px
}

.price-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7
}

@media(max-width:860px) {
  .price-line {
    display: none
  }

  .price-grid {
    grid-template-columns: 1fr
  }

  .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 20px 22px;
  }

  .price::before {
    display: none
  }

  .price .lbl {
    margin: 0
  }
}

/* ————— Stimmen ————— */
#stimmen {
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
  flex-wrap: wrap
}

.rev-score {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -.03em;
  font-size: 56px;
  line-height: 1
}

.rev-meta .stars {
  color: var(--light-gold);
  font-size: 20px
}

.rev-meta small {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 4px
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.rev {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.rev:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rev .stars {
  color: var(--light-gold);
  font-size: 14px
}

.rev p {
  margin: 14px 0 18px;
  font-size: 15px;
  color: #3f3a34;
  font-style: italic
}

.rev .who {
  display: flex;
  align-items: center;
  gap: 12px
}

.rev .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px
}

.rev .who b {
  font-size: 14px;
  font-weight: 600
}

.rev .who small {
  color: var(--muted);
  font-size: 12.5px;
  display: block
}

@media(max-width:760px) {
  .rev-grid {
    grid-template-columns: 1fr
  }
}

/* ————— CTA ————— */
.cta {
  background: var(--cream);
  padding: 130px 0;
}

.cta-box {
  text-align: center;
  max-width: 720px;
  margin: 0 auto
}

.cta-box p {
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .eyebrow {
  justify-content: center
}

.cta-box h2 {
  font-size: clamp(40px, 5.6vw, 72px);
  margin-top: 16px;
}

.cta-box h2 em {
  color: var(--gold)
}

.cta-box p {
  margin: 18px auto 32px;
  color: var(--ink-soft)
}

/* ————— Anfrage-Formular ————— */
.form {
  max-width: 680px;
  margin: 44px auto 0;
  text-align: left;
}

.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.f-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.f-field.full {
  grid-column: 1 / -1;
}

.f-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  /* color: var(--sage-deep); */
}

.f-field label small {
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--muted);
}

.f-field input,
.f-field select,
.f-field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color .25s, background .25s;
  width: 100%;
}

.f-field input:hover,
.f-field select:hover,
.f-field textarea:hover {
  border-color: #cfc3ad;
}

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  outline: none;
  /* border-color: var(--sage-deep); */
  background: var(--warm-white);
}

.f-field textarea {
  min-height: 140px;
  resize: vertical;
}

.f-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236E8463' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Honigtopf: für Menschen unsichtbar, Bots füllen ihn aus */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.f-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.f-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: none;
  /* accent-color: var(--sage-deep); */
  cursor: pointer;
}

.f-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.f-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.f-actions .btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.f-actions .btn[disabled] {
  opacity: .6;
  cursor: wait;
}

.form .f-status {
  grid-column: 1 / -1;
  display: none;
  max-width: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 14.5px;
  line-height: 1.55;
}

.f-status.ok {
  display: block;
  background: #eef2e9;
  border: 1px solid var(--sage);
  /* color: var(--sage-deep); */
}

.f-status.err {
  display: block;
  background: #fdf0eb;
  border: 1px solid var(--gold);
  color: #a34d33;
}

@media(max-width:640px) {
  .f-grid {
    grid-template-columns: 1fr;
  }
}

/* ————— Footer ————— */
footer {
  background: var(--charcoal);
  color: #cdbfa6;
  padding: 58px 0 40px;
  font-size: 14px
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px
}

.foot-grid a {
  color: #cdbfa6;
  opacity: .85;
  transition: opacity .2s, color .2s;
}

.foot-grid a:hover {
  opacity: 1;
  color: var(--cream)
}

.foot-brand {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -.02em;
  font-size: 20px;
  color: var(--cream)
}

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap
}

.foot-legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #423b34;
  font-size: 12.5px;
  opacity: .7
}

.foot-legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foot-legal a:hover {
  color: var(--cream);
}

@media(max-width:425px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  h1 {
    text-align: center;
  }
}

@media(max-width:760px) {
  .hero-inner {
    padding-bottom: 60px
  }

  /* Kleine Screens: Text liegt höher im Bild, Abdunklung weiter hochziehen.
         Zusätzlicher Verlauf von oben, damit Logo + Eyebrow gut lesbar bleiben. */
  .hero-veil {
    background:
      linear-gradient(to bottom, rgba(42, 38, 34, .68) 0%, rgba(42, 38, 34, .38) 22%, transparent 42%),
      linear-gradient(to top, rgba(42, 38, 34, .9) 0%, rgba(42, 38, 34, .62) 45%, rgba(42, 38, 34, .34) 78%, rgba(42, 38, 34, .18) 100%);
  }

  .hero p.lead {
    font-size: 17px
  }

  section {
    padding: 60px 0
  }

  .cta {
    padding: 84px 0
  }

  .sec-head {
    margin-bottom: 34px
  }

  .svc-row {
    padding: 30px 0
  }

  footer {
    padding: 40px 0 28px
  }
}

/* ═════════ Animationen ═════════ */
@media(prefers-reduced-motion:no-preference) {

  /* Hero: Titelsequenz */
  .hero-bg {
    animation: heroFocus 2.4s var(--ease-out) both;
  }

  @keyframes heroFocus {
    from {
      transform: scale(1.08);
      filter: blur(10px);
    }

    to {
      transform: scale(1);
      filter: blur(0);
    }
  }

  .hline {
    display: block;
    overflow: hidden;
  }

  .hline>span {
    display: block;
    transform: translateY(112%);
    animation: lineUp 1s var(--ease-out) forwards;
  }

  .hline:nth-child(1)>span {
    animation-delay: .45s
  }

  .hline:nth-child(2)>span {
    animation-delay: .58s
  }

  .hline:nth-child(3)>span {
    animation-delay: .71s
  }

  @keyframes lineUp {
    to {
      transform: translateY(0)
    }
  }

  .hero-fade {
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) forwards;
  }

  .hero .eyebrow.hero-fade {
    animation-delay: .35s
  }

  .hero p.lead.hero-fade {
    animation-delay: 1.05s
  }

  .hero-actions.hero-fade {
    animation-delay: 1.2s
  }

  .rating-inline.hero-fade {
    animation-delay: 1.35s
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .scroll-cue {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.7s forwards;
  }

  .scroll-cue .cue-line::after {
    animation: cueDrop 2.2s ease-in-out 2s infinite;
  }

  @keyframes cueDrop {
    0% {
      top: -100%
    }

    55%,
    100% {
      top: 100%
    }
  }

  /* Scroll-Reveals: Text steigt auf */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  }

  .reveal.in {
    opacity: 1;
    transform: none
  }

  /* Scroll-Reveals: Fotos ziehen Fokus (Signatur) */
  .foto-reveal {
    opacity: 0;
    transform: scale(1.06);
    filter: blur(14px);
    transition: opacity .9s var(--ease-out), transform 1.2s var(--ease-out), filter 1.2s var(--ease-out);
  }

  .foto-reveal.in {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }

  /* Gestaffelte Verzögerung per Attribut */
  [data-delay="1"] {
    transition-delay: .08s
  }

  [data-delay="2"] {
    transition-delay: .16s
  }

  [data-delay="3"] {
    transition-delay: .24s
  }

  [data-delay="4"] {
    transition-delay: .32s
  }

  /* Filmstreifen */
  .strip-track {
    animation: strip 55s linear infinite;
  }

  .filmstrip:hover .strip-track {
    animation-play-state: paused;
  }

  @keyframes strip {
    to {
      transform: translateX(-50%)
    }
  }
}

/* Ohne Animation: Filmstreifen zeigt statische Reihe */
@media(prefers-reduced-motion:reduce) {
  .strip-track {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .strip-copy {
    display: none
  }
}

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

/* ————— Kleine Utility-Klassen (statt Inline-Styles) ————— */
.rev-more {
  margin-top: 30px;
}

.f-hint {
  font-size: 12.5px;
  color: #9b9081;
}

.foot-logo {
  display: block;
  line-height: 0;
}

.foot-logo img {
  display: block;
  height: 60px;
  width: auto;
}

.foot-tag {
  margin-top: 12px;
  max-width: 32ch;
}

/* ————— Rechtstexte (datenschutz.html) ————— */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px 28px 90px;
}

.legal h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 14px 0 10px;
}

.legal .stand {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 42px;
}

.legal h2 {
  font-size: 24px;
  margin: 40px 0 12px;
}

.legal p,
.legal ul {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
}

.legal ul {
  padding-left: 22px;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal .hinweis {
  font-size: 13px;
  color: var(--gold);
  background: #fdf0eb;
  border: 1px dashed var(--gold);
  padding: 12px 16px;
  border-radius: 3px;
  margin-top: 40px;
}