/* =====================================================================
   Olaf Eichner Dachservice GmbH — Website Stylesheet
   Brand: gold-on-dark, heritage roofing (gegründet 1900)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #15140F;   /* near-black, warm */
  --ink-2:      #1F1D16;
  --ink-3:      #2A271E;
  --gold:       #C8A24A;   /* primary accent */
  --gold-2:     #B68C32;
  --gold-light: #E6CD86;
  --green:      #1D4A39;   /* heritage banner green */
  --green-2:    #16382B;
  --cream:      #F6F1E6;
  --paper:      #FBFAF5;
  --paper-2:    #F1ECE0;
  --line:       #E4DCC9;
  --text:       #26241D;
  --text-soft:  #5A5547;
  --text-on-dark: #EDE7D6;
  --text-on-dark-soft: #B6AE98;
  --white:      #ffffff;

  --shadow-sm: 0 2px 8px rgba(20,18,12,.08);
  --shadow-md: 0 12px 30px rgba(20,18,12,.12);
  --shadow-lg: 0 26px 60px rgba(20,18,12,.22);

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --header-h: 84px;

  --serif: "Cinzel", "Trajan Pro", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: .01em; }
section { scroll-margin-top: calc(var(--header-h) + 10px); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-light); }

h2.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--text-soft); }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(200,162,74,.32); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(200,162,74,.42); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.4); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(21,20,15,.0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.site-header.scrolled { background: rgba(21,20,15,.96); box-shadow: 0 8px 30px rgba(0,0,0,.28); height: 72px; backdrop-filter: blur(8px); }

/* Logo lockup */
.brand { display: flex; align-items: center; gap: 14px; }
.brand .mark { width: 46px; height: 46px; flex: none; transition: width .35s var(--ease), height .35s var(--ease); }
.brand .mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif); font-weight: 700; color: var(--gold-light);
  font-size: 1.18rem; letter-spacing: .12em;
}
.brand-sub {
  font-family: var(--sans); font-weight: 600; color: var(--text-on-dark-soft);
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; margin-top: 5px;
}

/* Primary nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; color: var(--text-on-dark); font-weight: 600; font-size: .94rem;
  padding: 10px 12px; border-radius: 8px; transition: color .2s; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--gold-light); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.brand { flex: none; }
.nav-cta { display: none; }
.header-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; color: var(--cream); font-weight: 700; font-size: .98rem; white-space: nowrap; flex: none; }
.header-phone svg { width: 18px; height: 18px; color: var(--gold); }
.header-phone span small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-on-dark-soft); }

/* Hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 12px; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--white); padding-top: var(--header-h); isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(15,14,10,.94) 0%, rgba(15,14,10,.72) 42%, rgba(15,14,10,.30) 75%, rgba(15,14,10,.55) 100%),
    linear-gradient(to top, rgba(15,14,10,.85), rgba(15,14,10,0) 40%);
}
.hero-inner { padding-block: clamp(48px, 8vh, 90px); max-width: 720px; }
.hero .heritage-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(230,205,134,.4); color: var(--gold-light);
  padding: 8px 16px 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 26px;
  background: rgba(29,74,57,.35); backdrop-filter: blur(4px);
}
.hero-h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.05; color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,.4); margin-bottom: 22px;
}
.hero-h1 .accent { color: var(--gold-light); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-light); line-height: 1; }
.hero-trust .t span { font-size: .82rem; color: rgba(255,255,255,.78); margin-top: 6px; letter-spacing: .02em; }
.hero-badge {
  position: absolute; z-index: 1; right: clamp(8px, 3vw, 48px); bottom: clamp(18px, 4vh, 56px);
  width: clamp(120px, 13vw, 210px); height: auto; pointer-events: none; user-select: none;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.55)) drop-shadow(0 4px 10px rgba(0,0,0,.4));
}
.hero-badge-inline-wrap { display: none; }

/* =====================================================================
   Google rating badge
   ===================================================================== */
.gbadge { display: inline-flex; align-items: center; gap: 14px; background: var(--white); color: var(--ink); border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-md); }
.gbadge .glogo { width: 30px; height: 30px; flex: none; }
.gbadge .grate { display: flex; flex-direction: column; line-height: 1.1; }
.gbadge .grow { display: flex; align-items: center; gap: 8px; }
.gbadge .gnum { font-weight: 800; font-size: 1.15rem; color: #202124; }
.gstars { --pct: 82%; position: relative; display: inline-block; width: 96px; height: 18px; }
.gstars i { position: absolute; inset: 0; background-size: 19.2px 18px; background-repeat: repeat-x; }
.gstars .bg { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='18' viewBox='0 0 20 18'><path d='M10 .8l2.47 5.27 5.78.62-4.32 3.89 1.2 5.7L10 13.9 4.87 16.27l1.2-5.7L1.75 6.69l5.78-.62z' fill='%23dadce0'/></svg>"); }
.gstars .fg { width: var(--pct); overflow: hidden; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='18' viewBox='0 0 20 18'><path d='M10 .8l2.47 5.27 5.78.62-4.32 3.89 1.2 5.7L10 13.9 4.87 16.27l1.2-5.7L1.75 6.69l5.78-.62z' fill='%23fbbc04'/></svg>"); }
.gbadge .gmeta { font-size: .8rem; color: #5f6368; }
.gbadge .gmeta a { color: #1a73e8; font-weight: 600; }
.gbadge.small { padding: 9px 14px; gap: 11px; border-radius: 12px; }
.gbadge.small .gnum { font-size: 1rem; }
.gbadge.small .glogo { width: 24px; height: 24px; }

/* Compact single-row badge (hero) */
.gbadge.compact { padding: 7px 15px; gap: 10px; border-radius: 999px; align-items: center; }
.gbadge.compact .glogo { width: 20px; height: 20px; }
.gbadge.compact .gnum { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; color: #202124; line-height: 1; }
.gbadge.compact .gstars { width: 84px; height: 16px; }
.gbadge.compact .gstars i { background-size: 16.8px 16px; }
.gbadge.compact .gcount { font-size: .82rem; color: #5f6368; white-space: nowrap; }

/* =====================================================================
   Welcome / stats band
   ===================================================================== */
.welcome { background: var(--paper); position: relative; }
.welcome-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.welcome p + p { margin-top: 18px; }
.welcome .sig { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.welcome .sig .line { width: 46px; height: 2px; background: var(--gold); }
.welcome .sig b { font-family: var(--serif); color: var(--ink); font-size: 1.05rem; }
.welcome .sig span { display: block; font-size: .82rem; color: var(--text-soft); font-family: var(--sans); font-weight: 500; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 26px 22px; position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--gold); }
.stat b { font-family: var(--serif); font-size: 2.1rem; color: var(--gold-light); display: block; line-height: 1; }
.stat span { font-size: .86rem; color: var(--text-on-dark-soft); margin-top: 10px; display: block; }

/* =====================================================================
   Services
   ===================================================================== */
.services { background: var(--ink); color: var(--text-on-dark); position: relative; }
.services .section-title { color: var(--white); }
.services .lead { color: var(--text-on-dark-soft); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(200,162,74,.16); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.svc:hover { transform: translateY(-5px); border-color: rgba(200,162,74,.5); box-shadow: var(--shadow-lg); }
.svc .ico { width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; background: rgba(200,162,74,.12); color: var(--gold-light); margin-bottom: 22px; }
.svc .ico svg { width: 28px; height: 28px; }
.svc h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.svc p { color: var(--text-on-dark-soft); font-size: .96rem; }

/* =====================================================================
   Dacharten (roof types)
   ===================================================================== */
.roofs { background: var(--paper-2); }
.roof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.roof {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.roof:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.roof-media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--ink); }
.roof-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.roof:hover .roof-media img { transform: scale(1.06); }
.roof-media .tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: rgba(21,20,15,.82); color: var(--gold-light); font-weight: 700;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.roof-media .illus { width: 100%; height: 100%; }
.roof-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.roof-body h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.roof-body p { color: var(--text-soft); font-size: .95rem; }

/* =====================================================================
   About
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media .frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-media .est {
  position: absolute; right: -18px; bottom: -22px; width: 132px; height: 132px;
  background: var(--green); color: var(--gold-light); border-radius: 50%;
  display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.about-media .est b { font-family: var(--serif); font-size: 2rem; line-height: 1; display: block; }
.about-media .est span { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; margin-top: 6px; display: block; color: var(--cream); }
.values { display: grid; gap: 16px; margin-top: 30px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value .vico { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--paper-2); color: var(--gold-2); display: grid; place-items: center; }
.value .vico svg { width: 22px; height: 22px; }
.value h4 { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: 3px; }
.value p { font-size: .92rem; color: var(--text-soft); }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fact { display: inline-flex; align-items: center; gap: 8px; background: var(--paper-2); border-radius: 999px; padding: 9px 16px; font-size: .86rem; font-weight: 600; color: var(--text); }
.fact svg { width: 16px; height: 16px; color: var(--gold-2); }

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery { background: var(--ink); color: var(--text-on-dark); }
.gallery .section-title { color: var(--white); }
.gallery .lead { color: var(--text-on-dark-soft); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gal-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; background: var(--ink-2); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 55%); opacity: 0; transition: opacity .3s; }
.gal-item:hover::after { opacity: 1; }
.gal-item .zoom { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(200,162,74,.92); color: var(--ink); display: grid; place-items: center; transform: translateY(8px); opacity: 0; transition: .3s; z-index: 2; }
.gal-item:hover .zoom { transform: translateY(0); opacity: 1; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,9,6,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.1); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--gold); color: var(--ink); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-nav.prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-size: .9rem; }

/* =====================================================================
   Reviews / Partner
   ===================================================================== */
.reviews { background: var(--paper); }
.reviews-card {
  display: grid; grid-template-columns: auto auto 1fr auto; gap: clamp(24px,4vw,56px); align-items: center;
  background: linear-gradient(135deg, var(--white), var(--paper-2));
  border: 1px solid var(--line); border-radius: 20px; padding: clamp(28px,4vw,48px); box-shadow: var(--shadow-md);
}
.reviews-card .big { text-align: center; }
.reviews-card .big .score { font-family: var(--serif); font-size: 4rem; color: var(--ink); line-height: 1; }
.reviews-card .big .of { color: var(--text-soft); font-size: .9rem; margin-top: 4px; }
.reviews-card .mid .gstars2 { display: flex; gap: 4px; margin-bottom: 10px; }
.reviews-card .mid .gstars2 svg { width: 26px; height: 26px; }
.reviews-card .mid h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; }
.reviews-card .mid p { color: var(--text-soft); font-size: .98rem; }
.reviews-card .mid .gline { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; font-size: .92rem; color: var(--text-soft); }
.reviews-card .mid .gline img { width: 18px; height: 18px; }
.divider-soft { border: none; border-top: 1px solid var(--line); margin: 0; }

.partners { background: var(--paper); padding-bottom: clamp(64px, 9vw, 120px); }
.partner-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-chip {
  border: 1px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 12px 22px; font-weight: 700; color: var(--text-soft); font-size: .92rem;
  letter-spacing: .04em; transition: .25s; font-family: var(--serif);
}
.partner-chip:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* =====================================================================
   Contact
   ===================================================================== */
.contact { background: var(--ink); color: var(--text-on-dark); }
.contact .section-title { color: var(--white); }
.contact .lead { color: var(--text-on-dark-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.cinfo { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cinfo:last-of-type { border-bottom: none; }
.cinfo .cico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: rgba(200,162,74,.14); color: var(--gold-light); display: grid; place-items: center; }
.cinfo .cico svg { width: 22px; height: 22px; }
.cinfo .ctxt h4 { font-family: var(--sans); font-weight: 700; color: var(--white); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 5px; }
.cinfo .ctxt a, .cinfo .ctxt p { color: var(--text-on-dark); font-size: 1.05rem; }
.cinfo .ctxt a:hover { color: var(--gold-light); }
.cinfo .ctxt small { color: var(--text-on-dark-soft); display: block; font-size: .86rem; }
.notdienst { margin-top: 22px; background: linear-gradient(135deg, var(--green), var(--green-2)); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 16px; align-items: center; }
.notdienst svg { width: 34px; height: 34px; color: var(--gold-light); flex: none; }
.notdienst b { color: var(--white); display: block; }
.notdienst span { color: rgba(255,255,255,.82); font-size: .92rem; }

/* Form */
.contact-form { background: var(--ink-2); border: 1px solid rgba(200,162,74,.16); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); }
.contact-form h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.contact-form .fnote { color: var(--text-on-dark-soft); font-size: .9rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-on-dark); margin-bottom: 7px; letter-spacing: .04em; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--ink); border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 13px 15px; color: var(--cream); font-family: inherit; font-size: .98rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #6f6a5b; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--text-on-dark-soft); margin-bottom: 20px; }
.form-check input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--gold); }
.form-check a { color: var(--gold-light); text-decoration: underline; }
.contact-form .btn { width: 100%; }
.form-hint { font-size: .8rem; color: var(--text-on-dark-soft); margin-top: 14px; text-align: center; }

.map-wrap { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: #100F0B; color: var(--text-on-dark-soft); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer-grid .brand { margin-bottom: 20px; }
.foot-about p { font-size: .94rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--sans); color: var(--gold-light); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-light); }

/* Back to top */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(14px); transition: .3s var(--ease); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--gold-light); }

/* =====================================================================
   Legal pages
   ===================================================================== */
.legal-page .site-header { background: rgba(21,20,15,.97); backdrop-filter: blur(8px); box-shadow: 0 8px 30px rgba(0,0,0,.28); }
.legal-hero { background: var(--ink); color: var(--white); padding-top: calc(var(--header-h) + 60px); padding-bottom: 60px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }
.legal-hero .crumb { color: var(--text-on-dark-soft); font-size: .9rem; margin-top: 12px; }
.legal-hero .crumb a:hover { color: var(--gold-light); }
.legal-body { padding-block: clamp(48px, 7vw, 90px); background: var(--paper); }
.legal-body .wrap { max-width: 860px; }
.legal-body h2 { font-size: 1.5rem; color: var(--ink); margin: 40px 0 14px; }
.legal-body h3 { font-size: 1.15rem; color: var(--ink); margin: 26px 0 10px; font-family: var(--sans); font-weight: 700; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text-soft); margin-bottom: 14px; font-size: 1rem; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--gold-2); text-decoration: underline; word-break: break-word; }
.legal-body strong { color: var(--text); }
.legal-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 28px; }
.legal-card p { margin-bottom: 4px; }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1320px) {
  .header-phone { display: none; }
}
@media (max-width: 1080px) {
  .svc-grid, .roof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .header-cta { display: none; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(18,17,12,.99); padding: 16px var(--gut) 28px; gap: 2px; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform .4s var(--ease); max-height: calc(100svh - var(--header-h)); overflow-y: auto;
  }
  .nav-open .nav { transform: translateY(0); }
  .nav a { padding: 14px 10px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 14px; }
  .welcome-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
  .reviews-card { grid-template-columns: 1fr; text-align: center; }
  .reviews-card .mid .gstars2 { justify-content: center; }
  .reviews-card .divider-soft { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid, .roof-grid, .stats { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px 24px; }
  .hero-trust .t b { font-size: 1.4rem; }
  .brand-sub { display: none; }
  .about-media .est { width: 104px; height: 104px; right: 8px; }
  .gbadge .gmeta { max-width: 150px; }
  .hero-badge { display: none; }
  .hero-badge-inline-wrap { display: block; order: 3; flex-basis: 100%; width: 100%; text-align: center; margin: 6px 0 2px; }
  .hero-badge-inline {
    width: 96px; height: auto; margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.5)) drop-shadow(0 3px 8px rgba(0,0,0,.4));
  }
  .hero-trust .gbadge { order: 4; }
}
