/* ============================================================
   S&W Bedachungen — Design System
   Premium / architektonisch · Schiefer + Kupfer · Cormorant + Hanken Grotesk
   ============================================================ */

:root {
  /* Neutrals — warm slate */
  --ink:        oklch(0.24 0.012 255);   /* deep slate anchor */
  --ink-soft:   oklch(0.34 0.012 255);
  --muted:      oklch(0.52 0.010 255);   /* secondary text */
  --line:       oklch(0.88 0.006 80);    /* hairlines */
  --line-dark:  oklch(0.40 0.012 255);
  --stone:      oklch(0.945 0.006 75);   /* light warm surface */
  --stone-2:    oklch(0.915 0.008 72);
  --bg:         oklch(0.985 0.004 80);   /* warm off-white */
  --bg-pure:    oklch(0.995 0.003 80);

  /* Accent — brand orange (aus Logo) */
  --copper:        oklch(0.635 0.176 42);   /* brand orange */
  --copper-deep:   oklch(0.555 0.165 40);
  --copper-soft:   oklch(0.905 0.055 55);
  --copper-tint:   oklch(0.965 0.026 58);

  /* Secondary — brand blue (aus Logo) */
  --blue:          oklch(0.555 0.16 256);
  --blue-deep:     oklch(0.475 0.15 256);
  --blue-soft:     oklch(0.92 0.05 252);
  --blue-tint:     oklch(0.965 0.022 252);

  /* Fonts (tweakable) */
  --font-display: "Zilla Slab", Rockwell, Georgia, serif;
  --font-sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --maxw: 1240px;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px oklch(0.24 0.012 255 / 0.06), 0 2px 8px oklch(0.24 0.012 255 / 0.05);
  --shadow-md: 0 8px 30px oklch(0.24 0.012 255 / 0.10);
  --shadow-lg: 0 24px 60px oklch(0.24 0.012 255 / 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--copper);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--copper);
  display: inline-block;
}
.eyebrow.center::before { content: none; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
  text-wrap: pretty;
}
p { text-wrap: pretty; }
.muted { color: var(--muted); }
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--copper); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: var(--sp-6); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg-pure);
}
.btn-primary:hover { background: var(--copper-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg-pure); }
.btn-light { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--copper); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
  transition: padding 0.35s var(--ease);
}
.site-header.scrolled {
  background: oklch(0.985 0.004 80 / 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.site-header.scrolled .bar { padding: 14px 32px; }

/* hero pages start dark-on-transparent; theme via class on header */
.site-header.on-light .logo, .site-header.on-light .nav a { color: var(--ink); }

.logo {
  display: flex; align-items: center; gap: 11px;
  color: var(--ink);
}
.logo .house { width: 42px; height: auto; flex-shrink: 0; color: var(--blue); display: block; }
.logo .wm { display: flex; flex-direction: column; line-height: 1; }
.logo .sw { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; letter-spacing: 0.01em; color: var(--copper); line-height: 0.92; }
.logo small { display: block; font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper-deep); line-height: 1; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; letter-spacing: 0.01em; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--copper); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; z-index: 120;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--ink); transition: all 0.3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--bg); padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.drawer a.active { color: var(--copper); }
.drawer .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy .display { margin: 18px 0 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-meta { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-meta .stat .num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--ink); }
.hero-meta .stat .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.hero-visual { position: relative; }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, oklch(0.90 0.008 75) 0 2px, transparent 2px 11px),
    var(--stone-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--muted);
}
.ph::before {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-pure);
  padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line);
  z-index: 1;
}
.ph.tall { aspect-ratio: 4/5; }
.ph.wide { aspect-ratio: 16/10; }
.ph.square { aspect-ratio: 1; }
.ph.hero-img { aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }

/* image-filled placeholder */
.ph.has-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ph.has-img::before { display: none; }
.ph.has-img.tone { background-blend-mode: multiply; background-color: oklch(0.5 0.01 255); }

.hero-badge {
  position: absolute; bottom: 28px; left: -28px;
  background: var(--bg-pure); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-md); max-width: 230px;
  display: flex; gap: 14px; align-items: center;
}
.hero-badge .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--copper-soft); display: grid; place-items: center; flex-shrink: 0; color: var(--copper-deep); }
.hero-badge .t { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.hero-badge .s { font-size: 0.8rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-pure); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 28px 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.trust-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }

/* ---------- Section header ---------- */
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 16px 0 18px; }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--bg-pure); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--copper-soft); }
.service-card .ph { border-radius: 0; border: none; border-bottom: 1px solid var(--line); aspect-ratio: 3/2; }
.service-card .body { padding: 32px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.service-card .idx { font-family: var(--font-display); font-size: 1rem; color: var(--copper); margin-bottom: 14px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 24px; flex: 1; }
.service-card .ft { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
.service-card .price { font-size: 0.85rem; color: var(--muted); }
.service-card .price b { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); font-weight: 500; }

/* ---------- Feature / why list ---------- */
.feat { display: flex; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.feat:last-child { border-bottom: 1px solid var(--line); }
.feat .n { font-family: var(--font-display); font-size: 1.3rem; color: var(--copper); flex-shrink: 0; width: 40px; }
.feat h3 { font-size: 1.25rem; margin-bottom: 6px; }
.feat p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 36px 0; border-top: 1px solid var(--line-dark);
  align-items: start;
}
.step .num {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--copper);
  line-height: 1;
}
.step h3 { color: inherit; margin-bottom: 8px; }

/* ---------- Dark band ---------- */
.dark {
  background: var(--ink); color: oklch(0.92 0.006 80);
}
.dark h1, .dark h2, .dark h3 { color: oklch(0.97 0.004 80); }
.dark .eyebrow { color: var(--copper-soft); }
.dark .eyebrow::before, .dark .eyebrow.center::after { background: var(--copper-soft); }
.dark .lead, .dark p { color: oklch(0.80 0.008 80); }
.dark .muted { color: oklch(0.68 0.01 80); }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--bg-pure); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 34px; display: flex; flex-direction: column; gap: 22px;
}
.quote-card .stars { color: var(--copper); letter-spacing: 3px; font-size: 0.9rem; }
.quote-card blockquote {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.35; color: var(--ink);
  font-weight: 500;
}
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card .av { width: 46px; height: 46px; border-radius: 50%; background: var(--stone-2); border: 1px solid var(--line); }
.quote-card .who .nm { font-weight: 700; font-size: 0.95rem; }
.quote-card .who .rl { font-size: 0.82rem; color: var(--muted); }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg);
  overflow: hidden; user-select: none; border: 1px solid var(--line); cursor: ew-resize;
}
.ba .layer { position: absolute; inset: 0; display: grid; place-items: center; }
.ba .before { background:
    repeating-linear-gradient(135deg, oklch(0.62 0.02 150) 0 2px, transparent 2px 12px),
    oklch(0.70 0.02 150); }
.ba .after { background:
    repeating-linear-gradient(135deg, oklch(0.80 0.03 70) 0 2px, transparent 2px 12px),
    oklch(0.88 0.025 70);
    clip-path: inset(0 0 0 50%); }
.ba .tag { position: absolute; top: 16px; font-family: ui-monospace, monospace; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--ink); color: #fff; padding: 5px 11px; border-radius: 100px; }
.ba .before .tag { left: 16px; }
.ba .after .tag { right: 16px; background: var(--blue); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; box-shadow: 0 0 0 1px oklch(0.24 0.012 255 / 0.2); z-index: 3; }
.ba .knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; z-index: 4; color: var(--ink);
}

/* photo-backed before/after */
.ba.photo .layer { background: none; }
.ba.photo .layer::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--img); background-size: cover; background-position: center;
}
.ba.photo .before::before { filter: grayscale(0.55) brightness(0.72) saturate(0.65) sepia(0.28) contrast(0.95); }
.ba.photo .after::before { filter: saturate(1.1) brightness(1.05) contrast(1.02); }
.ba.photo .tag { z-index: 2; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .ph { position: absolute; inset: 0; border-radius: 0; border: none; opacity: 0.18; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: oklch(0.78 0.008 80); padding: 80px 0 32px; }
.site-footer h2, .site-footer h3 { color: oklch(0.97 0.004 80); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.site-footer .logo { color: #fff; }
.site-footer .logo .house { color: var(--blue-soft); }
.site-footer .logo small { color: var(--copper-soft); }
.site-footer .ftcol h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: oklch(0.62 0.01 80); margin-bottom: 18px; font-weight: 600; }
.site-footer .ftcol a, .site-footer .ftcol p { display: block; color: oklch(0.80 0.008 80); font-size: 0.95rem; padding: 6px 0; transition: color 0.25s; }
.site-footer .ftcol a:hover { color: var(--copper-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.85rem; color: oklch(0.6 0.01 80); flex-wrap: wrap; gap: 12px; }
.footer-desc { font-size: 0.96rem; line-height: 1.6; color: oklch(0.78 0.008 80); max-width: 32ch; margin-top: 18px; }

/* ---------- Forms ---------- */
.form-card { background: var(--bg-pure); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); letter-spacing: 0.01em; }
.field label .req { color: var(--copper); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px var(--copper-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: oklch(0.55 0.18 25); }
.field .err { color: oklch(0.52 0.18 25); font-size: 0.82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--copper-soft); color: var(--copper-deep); display: grid; place-items: center; margin: 0 auto 20px; }

/* chips / pills */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 0.85rem; padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-pure); color: var(--ink-soft); font-weight: 500; }
.chip.copper { background: var(--copper-tint); border-color: var(--copper-soft); color: var(--copper-deep); }

/* price tag */
.price-tag { font-size: 0.9rem; color: var(--muted); }
.price-tag b { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); font-weight: 500; }

/* case cards (referenzen) */
.case-card { background: var(--bg-pure); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card .ph { border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.case-card .case-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.case-card .case-body h3 { font-size: 1.4rem; }
.case-card .case-body p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.case-card .chip { align-self: flex-start; }
.case-meta { display: flex; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.case-meta span { display: inline-flex; align-items: center; gap: 6px; }
.case-meta span + span::before { content: "·"; margin-right: 14px; color: var(--copper); }

/* contact info (kontakt) */
.contact-info { display: flex; flex-direction: column; }
.info-row { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:first-child { border-top: 1px solid var(--line); }
.info-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--stone); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.15rem; color: var(--ink); }
a.info-row { transition: background 0.25s; }
a.info-row:hover .info-val { color: var(--copper); }
.info-lbl { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.info-val { display: block; font-size: 1.05rem; color: var(--ink); font-weight: 500; transition: color 0.25s; }
.contact-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 28px; padding: 20px 22px; background: var(--copper-tint); border: 1px solid var(--copper-soft); border-radius: var(--radius-lg); }
.contact-note p { font-size: 0.92rem; color: var(--ink-soft); }
.checkline { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; font-weight: 400; letter-spacing: 0; }
.checkline input { margin-top: 3px; flex-shrink: 0; accent-color: var(--copper); }

/* values (über uns) */
.value-card { padding: 34px 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-pure); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .vn { font-family: var(--font-display); font-size: 1.6rem; color: var(--copper); }
.value-card h3 { font-size: 1.3rem; margin: 12px 0 10px; }
.value-card p { color: var(--muted); font-size: 0.96rem; }

/* stat band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.statband .s { text-align: center; }
.statband .s .n { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--copper-soft); }
.statband .s .l { font-size: 0.9rem; color: oklch(0.78 0.008 80); margin-top: 10px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { display: flex; flex-direction: column; }
.team-av { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: var(--stone-2); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 18px; overflow: hidden; position: relative; }
.team-av .mono { font-family: var(--font-display); font-size: 2.6rem; color: var(--copper); }
.team-card .nm { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.team-card .rl { font-size: 0.88rem; color: var(--muted); margin-top: 4px; }

/* legal pages */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.7rem; margin: 44px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .note { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 26px; margin: 24px 0; font-size: 0.92rem; color: var(--muted); }

/* feature list (no top border on first when inside list intro) */
.feat-list .feat .n { font-size: 1.6rem; line-height: 1; }

/* page hero (subpages) */
.page-hero { padding: 170px 0 64px; background: var(--stone); border-bottom: 1px solid var(--line); }
.page-hero .crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.page-hero .crumb a:hover { color: var(--copper); }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 20px; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid .ph { cursor: pointer; transition: transform 0.4s var(--ease); }
.gallery-grid .ph:hover { transform: scale(1.015); }
.gallery-grid .g-tall { grid-row: span 2; aspect-ratio: auto; }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; }
.acc-head h3 { font-size: 1.3rem; transition: color 0.3s; }
.acc:hover .acc-head h3 { color: var(--copper); }
.acc-head .pm { width: 32px; height: 32px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; position: relative; transition: all 0.3s var(--ease); }
.acc-head .pm::before, .acc-head .pm::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--ink); transition: all 0.3s var(--ease); }
.acc-head .pm::before { width: 12px; height: 1.5px; }
.acc-head .pm::after { width: 1.5px; height: 12px; }
.acc.open .acc-head .pm { background: var(--copper); border-color: var(--copper); }
.acc.open .acc-head .pm::before, .acc.open .acc-head .pm::after { background: #fff; }
.acc.open .acc-head .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc-body .inner { padding: 0 0 28px; color: var(--muted); max-width: 64ch; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding: 0 22px; }
  .nav-links, .nav .btn { display: none; }
  .menu-toggle { display: flex; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-tall { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .trust-row { justify-content: flex-start; gap: 22px; }
}
