/* =================================================================
   ITTERMANN DACHDECKERMEISTERBETRIEB · styles.css
   Aesthetik: "Werkstatt-Editorial" – die Monografie eines Meisters.
   Anthrazit + Kupfer + Off-White · Film-Grain · Serifen-Ziffern (Fraunces)
   · Vollbild-Video-Hero · editoriale Asymmetrie. Mobile-first.

   Schriften:  Bricolage Grotesque (Display) · Fraunces (Serifen-Akzent)
               · Hanken Grotesk (Text)
================================================================= */

/* ----------------------------------------------------------------
   1 · TOKENS
---------------------------------------------------------------- */
:root {
  --ink:        #15181E;
  --ink-2:      #0F1217;
  --anthra-2:   #1C222B;
  --anthra-3:   #252E39;

  --copper:       #B0612C;
  --copper-light: #C5743A;

  --bone:    #F4EFE6;
  --bone-2:  #ECE5D8;
  --white:   #FFFFFF;

  --text:        #1B1F26;
  --muted:       #6B6256;
  --on-dark:     #E7E1D6;
  --on-dark-dim: #A79E8F;

  --line-dark:  rgba(27, 31, 38, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-serif:   "Fraunces", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1200px;
  --radius: 4px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------------------------------------------
   2 · RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--copper); color: var(--white); }

/* Sprunglink */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bone); padding: 12px 18px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   3 · FILM-GRAIN (nimmt den flachen Digital-Look)
---------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------
   4 · LAYOUT-HELFER
---------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }

/* warme Papier-Tönung + Flächen-Rhythmus */
.leistungen { background: var(--bone); }
.ablauf     { background: var(--bone-2); }
.about      { background: var(--bone); }
.refs       { background: var(--bone-2); }
.contact    { background: var(--bone); }

.u-copper { color: var(--copper-light); }

/* ----------------------------------------------------------------
   5 · EDITORIALE SEKTIONS-KÖPFE (Serifen-Ziffer in der Marge)
---------------------------------------------------------------- */
.lede { display: grid; gap: 4px 28px; margin-bottom: clamp(40px, 5vw, 64px); }
.lede__no {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 0.9;
  color: var(--copper);
  letter-spacing: -0.01em;
}
.lede__no--light { color: var(--copper-light); }
.lede__label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.lede__label--light { color: var(--on-dark-dim); }
.lede__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--text);
}
.lede__intro {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
}

/* eigenständiger Titel (für Sektionen ohne Marge-Ziffer-Grid) */
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
}
.section__title--light { color: var(--bone); }

@media (min-width: 760px) {
  .lede { grid-template-columns: auto 1fr; align-items: start; }
  .lede__no {
    grid-row: 1 / 3;
  }
}

/* ----------------------------------------------------------------
   6 · BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn .ico { width: 18px; height: 18px; }
.btn--copper {
  background: var(--copper); color: var(--white);
  box-shadow: 0 10px 26px -14px rgba(176, 97, 44, 0.95);
}
.btn--copper:hover { background: #9c5526; }
.btn--ghost { background: transparent; border-color: rgba(27,31,38,0.28); color: var(--text); }
.btn--ghost:hover { border-color: var(--copper); color: var(--copper); }
.btn--ghost-light, .hero .btn--ghost {
  border-color: rgba(255,255,255,0.34); color: var(--bone);
}
.btn--ghost-light:hover, .hero .btn--ghost:hover {
  border-color: var(--copper-light); color: var(--copper-light);
}
.btn--block { width: 100%; }

/* ----------------------------------------------------------------
   7 · NAVIGATION (fix über dem Hero)
---------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.nav--scrolled {
  background: rgba(17, 20, 26, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(176, 97, 44, 0.28);
  box-shadow: 0 14px 40px -28px rgba(0,0,0,0.9);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: var(--nav-h); }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: clamp(40px, 5.5vw, 48px); width: auto; display: block; }

.nav__links { display: none; }
.nav__links a {
  position: relative; color: var(--on-dark); font-size: 0.95rem; font-weight: 500;
  padding-block: 6px; white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--copper-light); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: none; align-items: center; gap: 16px; margin-left: auto; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px; color: var(--on-dark);
  font-weight: 600; font-size: 0.95rem; white-space: nowrap; transition: color 0.2s var(--ease);
}
.nav__phone .ico { width: 17px; height: 17px; color: var(--copper-light); }
.nav__phone:hover { color: var(--bone); }
.nav__cta { padding: 11px 18px; font-size: 0.92rem; }

.nav__burger { margin-left: auto; width: 44px; height: 44px; display: inline-flex;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__burger span { width: 24px; height: 2px; background: var(--bone); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { background: var(--ink-2); border-top: 1px solid var(--line-light);
  padding: 14px clamp(20px,5vw,60px) 28px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  color: var(--on-dark); font-family: var(--font-display); font-weight: 600;
  font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--line-light);
}
.mobile-nav nav a:hover { color: var(--copper-light); }
.mobile-nav__cta { margin-top: 20px; width: 100%; }
.mobile-nav__phone { display: block; text-align: center; margin-top: 14px; color: var(--on-dark-dim); font-weight: 600; }

/* ----------------------------------------------------------------
   8 · HERO · Vollbild-Video
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  /* leichte Tonung Richtung Palette */
  filter: saturate(0.82) contrast(1.05) brightness(0.74);
}
/* Verlauf für Lesbarkeit: dunkel unten/links */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,18,24,0.55) 0%, rgba(15,18,24,0.18) 32%, rgba(15,18,24,0.6) 72%, rgba(15,18,24,0.92) 100%),
    linear-gradient(90deg, rgba(15,18,24,0.78) 0%, rgba(15,18,24,0.28) 46%, rgba(15,18,24,0) 78%);
}
/* feiner Kupfer-Schleier an den Rändern (Materialbezug) */
.hero__tint {
  position: absolute; inset: 0; mix-blend-mode: overlay; opacity: 0.5;
  background: radial-gradient(120% 90% at 18% 100%, rgba(176,97,44,0.55), transparent 55%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(20px, 5vh, 48px));
  padding-bottom: clamp(72px, 9vh, 104px);
}

/* Headline-Block unten */
.hero__main { margin-top: auto; }
.hero__kicker {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--copper-light); margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--bone);
  text-wrap: balance;
}
/* warmer Serifen-Akzent mitten in der Grotesk-Headline */
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__row {
  margin-top: clamp(24px, 4vw, 36px);
  display: flex; flex-direction: column; gap: 26px;
}
.hero__sub {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.55; color: var(--on-dark); max-width: 42ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Scroll-Hinweis */
.hero__scroll {
  position: absolute; z-index: 2; right: clamp(20px, 5vw, 60px); bottom: clamp(28px, 5vh, 48px);
  display: none; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-dim);
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 56px; background: linear-gradient(var(--copper-light), transparent); }
.hero__scroll:hover { color: var(--bone); }

@media (min-width: 760px) {
  .hero__row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .hero__cta { flex-direction: column; align-items: flex-end; }
  .hero__scroll { display: flex; }
}

/* Mobile (≤640px): kein Video laden – nur Poster als Hintergrund (spart Daten, kein Ruckeln) */
@media (max-width: 640px) {
  .hero__video { display: none; }
  .hero__media { background: url("assets/video/hero-roof.jpg?v=6") center/cover no-repeat; }
}

/* ----------------------------------------------------------------
   9 · VERTRAUENS-MARQUEE
---------------------------------------------------------------- */
.marquee {
  background: var(--ink-2);
  border-block: 1px solid rgba(176,97,44,0.22);
  overflow: hidden;
  padding-block: 18px;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.01em; color: var(--on-dark);
}
.marquee__chev {
  width: 22px; height: 11px; flex: none;
  border-top: 2px solid var(--copper); border-left: 2px solid var(--copper);
  transform: skewX(-12deg) translateY(2px);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------
   10 · LEISTUNGEN
---------------------------------------------------------------- */
.feat { display: grid; gap: 16px; grid-template-columns: 1fr; }
.feat__card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: flex; align-items: flex-end; isolation: isolate;
  min-height: 270px; cursor: pointer;
}
.feat__card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform 0.7s var(--ease);
}
.feat__card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(13,15,19,0.93) 0%, rgba(13,15,19,0.42) 44%, rgba(13,15,19,0.04) 80%);
}
.feat__card:hover img { transform: scale(1.05); }
.feat__card--lg { min-height: 360px; }

.feat__body { padding: clamp(20px, 3vw, 30px); color: var(--white); }
.feat__body h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  letter-spacing: -0.01em; position: relative; padding-top: 14px;
}
.feat__body h3::before {
  content: ""; position: absolute; top: 0; left: 0; width: 30px; height: 8px;
  border-top: 2px solid var(--copper-light); border-left: 2px solid var(--copper-light);
  transform: skewX(-12deg);
}
.feat__card--lg .feat__body h3 { font-size: 1.7rem; }
.feat__body p { margin-top: 10px; color: rgba(255,255,255,0.84); font-size: 0.98rem; max-width: 40ch; }

@media (min-width: 760px) {
  .feat { grid-template-columns: 1.12fr 1fr; grid-template-rows: 1fr 1fr; }
  .feat__card--lg { grid-row: 1 / span 2; min-height: 480px; }
}

/* weitere Gewerke – nummeriertes Verzeichnis */
.trades { margin-top: clamp(48px, 6vw, 76px); }
.trades__lead {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--text);
  padding-bottom: 18px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line-dark);
}
.trades__list { list-style: none; }
.trade {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 22px; align-items: baseline;
  padding-block: 22px; border-bottom: 1px solid var(--line-dark);
  transition: background-color 0.25s var(--ease);
}
.trade__no {
  grid-row: 1 / 3;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 1.5rem; color: var(--copper); line-height: 1;
  transition: transform 0.25s var(--ease);
}
.trade__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--text);
}
.trade__desc { color: var(--muted); font-size: 0.97rem; line-height: 1.5; }
.trade:hover { background: rgba(176,97,44,0.05); }
.trade:hover .trade__no { transform: translateX(4px); color: var(--copper-light); }

@media (min-width: 720px) {
  .trade { grid-template-columns: auto minmax(220px, 0.9fr) 1.3fr; align-items: baseline; }
  .trade__no { grid-row: 1; }
  .trade__desc { padding-left: 8px; }
}

/* ----------------------------------------------------------------
   11 · DACH-CHECK (dunkel) + Frame-Marken
---------------------------------------------------------------- */
.check { background: var(--ink); color: var(--on-dark); }
.check__grid { display: grid; gap: clamp(36px, 5vw, 64px); }

/* Registrier-Eckmarken wie auf einer technischen Zeichnung */
.framemark { position: relative; }
.framemark::before, .framemark::after {
  content: ""; position: absolute; width: 22px; height: 22px; pointer-events: none; z-index: 2;
}
.framemark::before { top: -7px; left: -7px; border-top: 2px solid var(--copper); border-left: 2px solid var(--copper); }
.framemark::after  { bottom: -7px; right: -7px; border-bottom: 2px solid var(--copper); border-right: 2px solid var(--copper); }

.check__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3.3; object-fit: cover; }
.check__copy { max-width: 620px; }
.check__copy .lede__no { display: inline-block; }
.check__copy .lede__label { margin-top: 10px; }

.pullquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 1.95rem); line-height: 1.3; color: var(--bone);
  margin-top: 24px; padding-left: 22px; border-left: 2px solid var(--copper);
  max-width: 30ch;
}
.check__text { margin-top: 22px; color: var(--on-dark); font-size: 1.06rem; }

.check__list { margin-top: 26px; list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px 26px; }
.check__list li { position: relative; padding-left: 30px; font-weight: 500; color: var(--bone); }
.check__list li::before {
  content: ""; position: absolute; left: 2px; top: 6px; width: 8px; height: 14px;
  border-right: 2px solid var(--copper-light); border-bottom: 2px solid var(--copper-light); transform: rotate(40deg);
}
.check__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

@media (min-width: 560px) { .check__list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .check__grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .check__media img { aspect-ratio: 4 / 5; }
}

/* ----------------------------------------------------------------
   12 · ABLAUF (editoriale Zeitleiste)
---------------------------------------------------------------- */
.flow { list-style: none; position: relative; display: grid; gap: 0; }
.flow__step { position: relative; padding: 26px 0 26px 64px; border-top: 1px solid var(--line-dark); }
.flow__step:last-child { border-bottom: 1px solid var(--line-dark); }
.flow__no {
  position: absolute; left: 0; top: 22px;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--copper); line-height: 1;
}
.flow__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--text); }
.flow__text { margin-top: 8px; color: var(--muted); font-size: 0.98rem; max-width: 46ch; }

@media (min-width: 820px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: 0 30px; }
  /* jede Spalte sauber gleich: Kupferlinie über der Ziffer, keine Verbinder/Punkte */
  .flow__step { padding: 0; border: 0; }
  .flow__step:last-child { border: 0; }   /* kein Reststrich beim 4. Schritt */
  .flow__no {
    position: static; top: auto; display: block;
    padding-top: 18px;
    border-top: 2px solid var(--copper);
  }
  .flow__title { margin-top: 18px; }
  .flow__text { max-width: none; }
}

/* ----------------------------------------------------------------
   13 · ÜBER UNS
---------------------------------------------------------------- */
.about__grid { display: grid; gap: clamp(36px, 5vw, 68px); }
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3.4; object-fit: cover; object-position: center 28%;
}
/* "Unterschrift" des Meisters über dem Bild */
.about__sig {
  position: absolute; left: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 22px);
  display: flex; flex-direction: column;
  background: rgba(15,18,24,0.5); backdrop-filter: blur(4px);
  padding: 12px 18px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.16);
}
.about__sig-name {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--bone); line-height: 1;
}
.about__sig-role { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-dim); margin-top: 8px; }

.about__copy .lede__no { display: inline-block; }
.about__copy .lede__label { margin-top: 10px; }
.about__copy .section__title { margin-bottom: 8px; }
.about__intro { margin-top: 16px; color: var(--text); font-size: 1.12rem; }
.about__copy p + p { margin-top: 16px; color: var(--muted); }

.about__facts { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.about__facts div { padding-block: 14px; border-top: 1px solid var(--line-dark); }
.about__facts dt { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px; }
.about__facts dd { font-weight: 600; color: var(--text); }

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 0.92fr 1.08fr; align-items: center; }
  .about__media img { aspect-ratio: 4 / 5; }
}

/* ----------------------------------------------------------------
   14 · REFERENZEN / GALERIE (Spalten-Collage)
---------------------------------------------------------------- */
.refs__note {
  margin-top: 20px; font-size: 0.95rem; color: var(--muted);
  background: rgba(176,97,44,0.08); border-left: 3px solid var(--copper);
  padding: 12px 16px; border-radius: 0 4px 4px 0; max-width: 56ch;
}
.refs__note strong { color: var(--copper); }

.gallery { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery__item img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 26px 14px 12px;
  font-size: 0.74rem; letter-spacing: 0.06em; color: var(--bone);
  background: linear-gradient(to top, rgba(13,15,19,0.82), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* Kundenstimme – Platzhalter */
.voice { margin-top: clamp(48px, 6vw, 76px); max-width: 760px; }
.voice blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.34; letter-spacing: -0.01em; color: var(--text);
  padding-left: 26px; border-left: 2px solid var(--copper);
}
.voice figcaption { margin-top: 18px; padding-left: 26px; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ----------------------------------------------------------------
   15 · KONTAKT
---------------------------------------------------------------- */
.contact__grid { display: grid; gap: clamp(36px, 5vw, 60px); }
.contact__info .lede__no { display: inline-block; }
.contact__info .lede__label { margin-top: 10px; }
.contact__intro { margin-top: 18px; color: var(--muted); max-width: 44ch; }

.contact__nap { list-style: none; margin-top: 28px; display: grid; gap: 18px; }
.contact__nap li { display: flex; align-items: flex-start; gap: 14px; }
.contact__ico {
  flex: none; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); border-radius: 8px; color: var(--copper); background: var(--white);
}
.contact__ico svg { width: 21px; height: 21px; }
.contact__nap a:hover { color: var(--copper); }

.contact__map { margin-top: 30px; }
.contact__map iframe {
  width: 100%; height: 290px; border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: #E3DDD0; display: block;
}
.contact__map-link { display: inline-block; margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: var(--copper); }
.contact__map-link:hover { color: var(--copper-light); }

.callback {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: 8px;
  padding: clamp(24px, 4vw, 40px); box-shadow: 0 30px 60px -45px rgba(21,24,30,0.5);
}
.callback__title { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--text); }
.callback__sub { margin-top: 6px; color: var(--muted); font-size: 0.95rem; }
.field { margin-top: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem; color: var(--text);
  background: #FBF9F4; border: 1px solid rgba(27,31,38,0.18); border-radius: 6px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A79E90; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(176,97,44,0.16);
}
.callback .btn--block { margin-top: 24px; }
.callback__hint { margin-top: 14px; font-size: 0.8rem; color: var(--muted); }
.callback__done {
  margin-top: 18px; padding: 16px 18px; background: rgba(176,97,44,0.1);
  border: 1px solid rgba(176,97,44,0.3); border-radius: 6px; color: var(--text); font-weight: 500;
}
.callback__done small { color: var(--muted); font-weight: 400; }

@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ----------------------------------------------------------------
   16 · FOOTER
---------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--on-dark-dim); padding-block: clamp(56px, 7vw, 92px) 0; overflow: hidden; }
.footer__logo {
  display: block; width: auto;
  height: clamp(76px, 11vw, 128px);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 44px; border-bottom: 1px solid var(--line-light); }
.footer__claim { max-width: 36ch; color: var(--on-dark); font-size: 1rem; margin-bottom: 22px; }
.footer__col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 14px; }
.footer__col address { font-style: normal; line-height: 1.8; }
.footer__col ul { list-style: none; display: grid; gap: 9px; }
.footer__col a:hover { color: var(--bone); }
.footer__bar { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; padding-block: 22px 30px; font-size: 0.85rem; }
.footer__credit strong { color: var(--copper-light); }

@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 0.9fr; gap: 40px; } }

/* ----------------------------------------------------------------
   17 · SCROLL-REVEAL + REDUCED MOTION
---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__video { display: none; }              /* statt Bewegung: Poster zeigen */
  .hero__media { background: url("assets/video/hero-roof.jpg?v=6") center/cover no-repeat; }
  * { transition-duration: 0.01ms !important; }
}

/* ----------------------------------------------------------------
   18 · DESKTOP-NAV einblenden
---------------------------------------------------------------- */
@media (min-width: 1000px) {
  .nav__links { display: flex; gap: 24px; margin-left: 34px; }
  .nav__actions { display: flex; }
  .nav__burger { display: none; }
}

/* =================================================================
   NACHTRAG 14.09.2026 · Go-live
   Karte mit Einwilligung, Spamschutz-Feld, Fehlermeldung Formular
================================================================= */

/* --- Karte erst auf Klick ---------------------------------- */
.contact__map[data-map] {
  min-height: 290px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  background:
    linear-gradient(rgba(244,239,230,0.92), rgba(244,239,230,0.92)),
    repeating-linear-gradient(0deg, rgba(27,31,38,0.07) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(27,31,38,0.07) 0 1px, transparent 1px 42px);
  background-color: #E3DDD0;
}
.map-consent { text-align: center; padding: 28px 24px; max-width: 46ch; }
.map-consent__pin { width: 34px; height: 34px; color: var(--copper); margin-bottom: 10px; }
.map-consent__text { font-size: 0.92rem; line-height: 1.55; color: var(--muted); margin-bottom: 16px; }
.map-consent__note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.map-consent__note a { color: var(--copper); font-weight: 600; }
.map-consent__note a:hover { color: var(--copper-light); }

/* --- Spamschutz: niemals sichtbar, aber nicht display:none --- */
.hp {
  position: absolute !important; left: -9999px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}

/* --- Rueckmeldungen des Formulars --------------------------- */
.callback__error {
  margin-top: 16px; padding: 13px 15px; border-radius: 6px;
  background: rgba(176,97,44,0.09); border-left: 3px solid var(--copper);
  font-size: 0.92rem; line-height: 1.55; color: var(--text);
}
.callback__error a { color: var(--copper); font-weight: 700; }

/* --- Rechtstexte: Impressum und Datenschutz ----------------- */
.legal-block { max-width: 68ch; margin-bottom: 30px; }
.legal-block h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--text); margin-bottom: 10px;
}
.legal-block h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  color: var(--text); margin: 18px 0 6px;
}
.legal-block p, .legal-block li { line-height: 1.65; color: var(--text); }
.legal-block ul { margin: 8px 0 8px 20px; list-style: disc; }
.legal-block a { color: var(--copper); font-weight: 600; }
.legal-draft {
  background: rgba(176,97,44,0.08); border-left: 3px solid var(--copper);
  padding: 14px 18px; border-radius: 0 4px 4px 0; max-width: 68ch;
  margin: 24px 0 40px; font-size: 0.9rem; color: var(--muted); line-height: 1.55;
}

/* Agentur-Credit im Footer, klickbar seit 16.09.2026 */
.footer__credit a { color: inherit; text-decoration: none; }
.footer__credit a strong { color: var(--copper-light); transition: color 0.2s var(--ease); }
.footer__credit a:hover strong,
.footer__credit a:focus-visible strong { color: var(--copper); text-decoration: underline; }
