/* ==========================================================================
   KADRA — Foto & Film
   Design system: warme Dunkelbasis + Papier-Kontrastflächen, Kupfer-Akzent.
   Kein Web-Font-CDN (DSGVO: kein IP-Transfer an Dritte) — kuratierte
   System-Font-Stacks für Editorial-Serife, Sans und Mono (EXIF-Stil).
   ========================================================================== */

:root {
  /* Farbe */
  --void: #15130f;
  --ash: #201d18;
  --ash-2: #2a2620;
  --ash-line: rgba(243, 236, 223, 0.12);
  --bone: #eee8dc;
  --bone-2: #e4dbc8;
  --bone-line: rgba(27, 23, 18, 0.12);
  --ink: #1b1712;
  --graphite: #5a5245;
  --cream: #f3ecdf;
  --cream-dim: #cfc6b4;
  --copper: #b8703c;
  --copper-deep: #8c4f27;
  --copper-light: #dda669;

  /* Typografie */
  --font-display: ui-serif, "New York", "Iowan Old Style", Charter, "Source Serif Pro", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;

  /* Skala */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
  --container: 1240px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--void);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
}
.on-bone .eyebrow { color: var(--copper-deep); }
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: currentColor;
}

.section {
  padding: var(--space-6) 0;
}
.on-bone { background: var(--bone); color: var(--ink); }
.on-void { background: var(--void); color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--copper);
  color: var(--void);
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--ash-line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--copper-light); color: var(--copper-light); }
.on-bone .btn-ghost { border-color: var(--bone-line); color: var(--ink); }
.on-bone .btn-ghost:hover { border-color: var(--copper-deep); color: var(--copper-deep); }

/* ---------- Fokus-Rahmen: Sucher-Motiv fuer Medienflaechen ---------- */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--copper-light);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.frame::before { top: 10px; left: 10px; border-right: none; border-bottom: none; transform: translate(-4px, -4px); }
.frame::after { bottom: 10px; right: 10px; border-left: none; border-top: none; transform: translate(4px, 4px); }
.frame:hover::before, .frame:hover::after,
.frame:focus-within::before, .frame:focus-within::after { opacity: 1; transform: translate(0, 0); }

.media-tag {
  position: absolute;
  left: var(--space-2);
  bottom: var(--space-2);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: rgba(21, 19, 15, 0.55);
  padding: 0.35em 0.6em;
  border: 1px solid rgba(243, 236, 223, 0.25);
  backdrop-filter: blur(2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: var(--space-2) 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(21, 19, 15, 0.86);
  backdrop-filter: blur(10px);
  border-color: var(--ash-line);
  padding: 0.7rem 0;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.logo span { color: var(--copper-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  padding: 0.3em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--cream); border-color: var(--copper-light); }

.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--cream);
  padding: 0.4rem;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  color: var(--cream);
}
.mobile-menu a.btn { align-self: flex-start; margin-top: var(--space-2); font-size: 0.95rem; }

@media (min-width: 1040px) {
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
}
@media (max-width: 1039px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 5.5rem;
  overflow: hidden;
  color: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-media .frame-shot {
  position: absolute;
  inset: -6% -6%;
  background-size: cover;
  opacity: 0;
  animation: shot-cycle 18s infinite;
  filter: saturate(0.9);
}
.hero-media .frame-shot.s1 {
  background: radial-gradient(120% 90% at 20% 10%, #3a3228 0%, #1c1712 45%, #0e0c09 100%);
  animation-delay: 0s;
}
.hero-media .frame-shot.s2 {
  background: radial-gradient(110% 90% at 80% 20%, #4a3524 0%, #241a12 50%, #100c08 100%);
  animation-delay: 6s;
}
.hero-media .frame-shot.s3 {
  background: radial-gradient(120% 100% at 50% 90%, #55402a 0%, #221a12 55%, #0e0b08 100%);
  animation-delay: 12s;
}
@keyframes shot-cycle {
  0%, 2% { opacity: 0; transform: scale(1); }
  6%, 30% { opacity: 1; transform: scale(1.06); }
  34% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media .frame-shot { animation: none; opacity: 0; }
  .hero-media .frame-shot.s1 { opacity: 1; }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21,19,15,0.55) 0%, rgba(21,19,15,0.15) 30%, rgba(21,19,15,0.35) 65%, rgba(21,19,15,0.92) 100%);
}
.hero-rec {
  position: absolute;
  top: calc(var(--space-4) + 3.2rem);
  right: var(--space-3);
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}
@media (min-width: 700px) {
  .hero-rec { display: flex; }
}
.hero-rec .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper-light);
  animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: var(--space-6);
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 900px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--cream);
}
.hero h1 em {
  font-style: normal;
  color: var(--copper-light);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.hero-meta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  flex-wrap: wrap;
}
.hero-meta strong { color: var(--copper-light); font-weight: 500; }

.scroll-cue {
  position: absolute;
  bottom: var(--space-3);
  left: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}
.scroll-cue .line { width: 1px; height: 28px; background: linear-gradient(var(--copper-light), transparent); animation: cue 2s infinite; }
@keyframes cue { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

/* ==========================================================================
   Leistungen
   ========================================================================== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 60ch;
  margin-bottom: var(--space-5);
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--graphite); font-size: 1.05rem; margin: 0; }
.on-void .section-head p { color: var(--cream-dim); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.service-card { display: flex; flex-direction: column; }
.service-media {
  aspect-ratio: 4 / 5;
  background: var(--ash);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--bone-line);
  margin-bottom: var(--space-2);
}
.service-media.unternehmen { background: linear-gradient(155deg, #3c4249 0%, #23262b 55%, #15130f 100%); }
.service-media.events { background: linear-gradient(155deg, #7a5a42 0%, #402c1e 55%, #17130e 100%); }
.service-media.musik { background: linear-gradient(155deg, #6a4a58 0%, #33222c 55%, #15130f 100%); }
.service-media img.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
.service-card p { color: var(--graphite); margin: 0 0 var(--space-2); }
.service-card .link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--copper-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-bottom: 1px solid transparent;
}
.service-card .link:hover { border-color: currentColor; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: auto;
  padding-top: var(--space-2);
}
.service-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--graphite);
  background: var(--bone-2);
  border: 1px solid var(--bone-line);
  padding: 0.35em 0.7em;
  border-radius: 999px;
}
a.service-tag {
  color: var(--copper-deep);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
a.service-tag:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--void);
}

/* ==========================================================================
   Portfolio
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--ash-line);
  color: var(--cream-dim);
  padding: 0.55em 1.2em;
  font-size: 0.85rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { border-color: var(--copper-light); color: var(--cream); }
.filter-btn[aria-pressed="true"] {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--void);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}
.portfolio-item { display: none; }
.portfolio-item.is-visible { display: block; }
.portfolio-media {
  aspect-ratio: 3 / 4;
  position: relative;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--ash-line);
  transition: transform 0.5s ease;
}
.portfolio-media video,
.portfolio-media img.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.portfolio-item:hover .portfolio-media { transform: translateY(-4px); }
.portfolio-caption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: 0.7em;
}
.portfolio-caption .title { font-size: 0.95rem; color: var(--cream); }
.portfolio-caption .meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--cream-dim); text-align: right; white-space: nowrap; }

.pm-1 { background: linear-gradient(160deg, #454b52 0%, #21242a 60%, #121014 100%); }
.pm-2 { background: linear-gradient(200deg, #565049 0%, #2a2620 60%, #121014 100%); }
.pm-3 { background: linear-gradient(140deg, #7a5a38 0%, #3c2c1b 60%, #14100c 100%); }
.pm-4 { background: linear-gradient(170deg, #8f6a45 0%, #4a3623 60%, #17120d 100%); }
.pm-5 { background: linear-gradient(190deg, #9c7c5e 0%, #55402d 60%, #1a1510 100%); }
.pm-6 { background: linear-gradient(150deg, #a98a68 0%, #5c4530 60%, #1c160f 100%); }
.pm-7 { background: linear-gradient(210deg, #3a4048 0%, #1e2024 60%, #100f11 100%); }
.pm-8 { background: linear-gradient(130deg, #6e5636 0%, #382a1a 60%, #14100b 100%); }
.pm-9 { background: linear-gradient(165deg, #8c6f52 0%, #4a3a2a 60%, #16120d 100%); }
.pm-10 { background: linear-gradient(175deg, #5a4a52 0%, #2c2228 60%, #120e11 100%); }
.pm-11 { background: linear-gradient(200deg, #6b4a4a 0%, #33201f 60%, #130d0c 100%); }
.pm-12 { background: linear-gradient(160deg, #7a6a52 0%, #3c321f 60%, #141009 100%); }
.pm-13 { background: linear-gradient(190deg, #8a7458 0%, #453824 60%, #17130c 100%); }
.pm-14 { background: linear-gradient(150deg, #5c5648 0%, #2c2820 60%, #120f0b 100%); }
.pm-15 { background: linear-gradient(210deg, #6e6350 0%, #362f22 60%, #14110c 100%); }

.play-badge {
  position: absolute; top: var(--space-2); right: var(--space-2); z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(21,19,15,0.55); border: 1px solid rgba(243,236,223,0.3);
  display: flex; align-items: center; justify-content: center;
}
.play-badge svg { width: 11px; height: 11px; fill: var(--cream); }

/* ==========================================================================
   Ueber
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
.about-media {
  aspect-ratio: 4 / 5;
  max-width: 420px;
  background: linear-gradient(150deg, #b89a7a 0%, #6e5236 55%, #241b12 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--bone-line);
}
.about-media img.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy p { margin: 0 0 1.1em; color: var(--ink); font-size: 1.05rem; max-width: 58ch; }
.about-copy p:last-child { margin-bottom: 0; }
.about-kit {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em 1.4em;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--copper-deep);
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 380px 1fr; }
}

.text-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--copper-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-bottom: 1px solid transparent;
  margin-top: var(--space-3);
}
.text-link:hover { border-color: currentColor; }
.on-void .text-link { color: var(--copper-light); }

/* ==========================================================================
   Ablauf
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ash-line);
}
.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--ash-line);
}
.step-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--copper-light);
  padding-top: 0.2em;
}
.step h3 { grid-column: 2; grid-row: 1; font-size: 1.25rem; margin-bottom: 0.3em; }
.step p { grid-column: 2; grid-row: 2; margin: 0; color: var(--cream-dim); max-width: 56ch; }
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(4, 1fr); border-top: none; }
  .step { grid-template-columns: 1fr; border-bottom: none; border-left: 1px solid var(--ash-line); padding: 0 var(--space-3); }
  .step:first-child { border-left: none; padding-left: 0; }
  .step-num, .step h3, .step p { grid-column: auto; grid-row: auto; }
}

/* ==========================================================================
   Referenzen
   ========================================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}
.testimonial {
  padding: var(--space-3);
  background: var(--bone-2);
  border: 1px solid var(--bone-line);
}
.testimonial blockquote {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.85rem;
}
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  color: var(--bone); flex-shrink: 0;
}
.t1 .avatar { background: #4a4038; }
.t2 .avatar { background: #6b4a2c; }
.t3 .avatar { background: #8a6a52; }
.testimonial cite { font-style: normal; color: var(--graphite); }
.testimonial cite strong { display: block; color: var(--ink); font-weight: 600; }
.testimonial .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--copper-deep);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
  display: block;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: var(--space-2); }
.contact-info > p { color: var(--cream-dim); max-width: 42ch; margin-bottom: var(--space-4); }
.contact-channels { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.contact-channel { display: flex; align-items: center; gap: 0.8em; font-size: 0.98rem; }
.contact-channel svg { width: 18px; height: 18px; color: var(--copper-light); flex-shrink: 0; }
.contact-channel a:hover { color: var(--copper-light); }
.contact-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cream-dim);
  border-left: 2px solid var(--copper);
  padding-left: var(--space-2);
  max-width: 40ch;
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 620px) { .form-row-2 { grid-template-columns: 1fr 1fr; display: grid; gap: var(--space-2); } }
.field { display: flex; flex-direction: column; gap: 0.5em; }
.field label { font-size: 0.82rem; color: var(--cream-dim); }
.field input, .field select, .field textarea {
  background: var(--ash);
  border: 1px solid var(--ash-line);
  color: var(--cream);
  padding: 0.85em 1em;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--copper-light);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.field-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--cream-dim);
}
.field-checkbox input {
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.15em;
  accent-color: var(--copper);
  flex-shrink: 0;
}
.field-checkbox a { color: var(--copper-light); border-bottom: 1px solid transparent; }
.field-checkbox a:hover { border-color: currentColor; }
.form-status {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-top: var(--space-2);
  min-height: 1.4em;
}
.form-status.ok { color: var(--copper-light); }
.form-status.err { color: #d98c6f; }

@media (min-width: 940px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--ash-line);
  padding: var(--space-4) 0 var(--space-3);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--ash-line);
  margin-bottom: var(--space-3);
}
.footer-brand .logo { display: block; margin-bottom: 0.6em; }
.footer-brand p { color: var(--cream-dim); font-size: 0.9rem; max-width: 34ch; margin: 0; }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid var(--ash-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
  color: var(--cream-dim);
}
.footer-social a:hover { border-color: var(--copper-light); color: var(--copper-light); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: var(--cream-dim);
}
.footer-legal { display: flex; gap: var(--space-3); }
.footer-legal a:hover { color: var(--copper-light); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Equipment
   ========================================================================== */
.page-hero {
  padding: calc(var(--space-6) + 3.5rem) 0 var(--space-5);
}
.page-hero .eyebrow { margin-bottom: var(--space-2); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 18ch; }
.page-hero .lead {
  margin-top: var(--space-3);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--cream-dim);
  max-width: 56ch;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-3);
}
.equipment-card {
  background: var(--ash);
  border: 1px solid var(--ash-line);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
}
.equipment-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ash-line);
  border-radius: 50%;
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}
.equipment-icon svg { width: 19px; height: 19px; color: var(--copper-light); }
.equipment-card h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.equipment-card .why { color: var(--cream-dim); font-size: 0.92rem; margin: 0 0 var(--space-2); }
.equipment-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding-top: var(--space-2);
  border-top: 1px solid var(--ash-line);
  margin-top: auto;
}
.equipment-card li {
  font-size: 0.88rem;
  color: var(--cream);
  padding-left: 1em;
  position: relative;
}
.equipment-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--copper-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}
.trust-card { display: flex; flex-direction: column; }
.trust-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bone-line);
  border-radius: 50%;
  margin-bottom: var(--space-2);
}
.trust-icon svg { width: 19px; height: 19px; color: var(--copper-deep); }
.trust-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.trust-card p { margin: 0; color: var(--graphite); max-width: 40ch; }

.cta-band {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.cta-band p { color: var(--cream-dim); max-width: 44ch; margin: 0 0 var(--space-1); }

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */
.legal-page { padding-top: calc(var(--space-6) + 2rem); }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--space-3); }
.legal-page h2 { font-size: 1.2rem; margin: var(--space-4) 0 0.6em; }
.legal-page p, .legal-page li { color: var(--cream-dim); max-width: 68ch; }
.legal-page li { margin-bottom: 0.4em; }
.legal-page a { color: var(--copper-light); }
.placeholder { color: var(--copper-light); font-family: var(--font-mono); font-size: 0.9em; }
