/* =========================================================
   Fliesen Gsell (Michael Gsell, Pfullendorf), Demo
   Eigenständige Markenwelt: Premium-handwerklich, materialnah.
     Basis/Headlines: Anthrazit/Schiefer (#2B2F33)
     Naturstein/Travertin: Beige (#C9B79C), helle Fläche (#F3EEE7)
     Akzent: Terrakotta/Kupfer (#A8623C), sparsam für CTAs/Akzente
   Signatur: Fliesen-/Fugen-Rastermotiv (versetzte Kacheln, Fugenlinien)
   Fonts lokal (DSGVO): Syne (Display), Inter Tight (Body)
   ========================================================= */

/* ---------- Fonts (lokal gehostet) ---------- */
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/syne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/intertight-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Palette + Tokens ---------- */
:root {
  /* Basis: Anthrazit / Schiefer */
  --slate:      #2B2F33;   /* Headlines, dunkle Flächen */
  --slate-800:  #23272a;   /* tiefer Anker */
  --slate-900:  #1b1e21;   /* sehr dunkel (Verläufe) */
  --slate-700:  #3a3f44;   /* weicher Text */
  --ink-soft:   #41464b;   /* Fließtext */
  --muted:      #6d7378;   /* gedämpfter Text */

  /* Naturstein / Travertin */
  --sand:       #C9B79C;   /* warmes Beige (Akzentflächen, Fugen) */
  --sand-soft:  #ddd0bd;   /* helleres Beige */
  --cream:      #F3EEE7;   /* helle Travertin-Fläche */
  --cream-deep: #ebe3d7;   /* etwas tieferes Creme */

  /* Akzent: Terrakotta / Kupfer */
  --clay:       #A8623C;   /* Terrakotta (CTAs, Akzentlinien) */
  --clay-deep:  #8f4f2e;   /* tiefer für Hover */
  --clay-soft:  #f0e2d8;   /* helle warme Fläche */

  --white:      #ffffff;
  --surface:    #ffffff;
  --bg:         #F3EEE7;

  --hairline:   rgba(43, 47, 51, 0.14);
  --hairline-2: rgba(43, 47, 51, 0.08);
  --grout:      rgba(43, 47, 51, 0.12);   /* Fugenlinie */
  --grout-light:rgba(255, 255, 255, 0.10);

  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.66;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--slate);
  margin: 0;
  hyphens: manual;
}
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Fugen-/Kachelraster-Hintergrund (Marken-Signatur) ---------- */
/* dezentes, versetztes Fliesenraster als wiederkehrendes Motiv */
.tilegrid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grout) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grout) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(120% 90% at 85% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 90% at 85% 0%, #000 0%, transparent 70%);
  opacity: 0.7;
}
.tilegrid-bg.offset { background-position: 0 0, 46px 0; }

/* Variante auf dunklem Grund */
.tilegrid-bg.on-dark {
  background-image:
    linear-gradient(to right, var(--grout-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grout-light) 1px, transparent 1px);
}

/* ---------- Emblem (FG-Monogramm im Kachel-Look) ---------- */
.emblem { flex: none; }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--slate-900);
  color: #e9e3da;
  font-size: 0.74rem;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 0.55rem var(--pad);
  position: relative;
  z-index: 60;
}
.demo-bar strong { color: var(--sand); font-weight: 600; }
.demo-bar .sep { color: rgba(255,255,255,0.32); padding: 0 0.35rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 238, 231, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 0.74rem; }
.brand .emblem { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--slate);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--clay-deep);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: 9px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--slate); background: rgba(43,47,51,0.05); }
.nav-links a.active { color: var(--slate); }
.nav-cta {
  margin-left: 0.4rem;
  background: var(--slate);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.62rem 1.25rem !important;
  font-weight: 600 !important;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta:hover { background: var(--slate-900) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: transparent;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--slate);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 10px 24px -12px rgba(168,98,60,0.7); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn-primary .pin {
  width: 26px; height: 26px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .pin { transform: translateX(3px); }
.btn-dark { background: var(--slate); color: #fff; }
.btn-dark:hover { background: var(--slate-900); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--slate-700); background: rgba(43,47,51,0.04); }
.btn-light { background: var(--surface); color: var(--slate); border-color: var(--hairline); }
.btn-light:hover { transform: translateY(-2px); border-color: var(--clay); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--clay-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 8px;
  background: var(--clay);
  display: inline-block;
  border-radius: 2px;
  /* kleines versetztes Kachel-Detail */
  box-shadow: 12px 0 0 -1px var(--sand);
}
.eyebrow.on-dark { color: var(--sand); }
.eyebrow.on-dark::before { background: var(--clay); box-shadow: 12px 0 0 -1px rgba(255,255,255,0.4); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.95rem, 4.6vw, 3.1rem); }
.section-head p { color: var(--muted); margin-top: 1.05rem; font-size: 1.07rem; }
.center { margin-inline: auto; text-align: center; }
.center .eyebrow { justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(115% 95% at 90% -12%, rgba(201,183,156,0.4), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  color: var(--slate);
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.032em;
}
.hero h1 .mark {
  position: relative;
  display: inline-block;
  color: var(--clay);
}
.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.12em;
  background: var(--sand);
  z-index: -1;
  border-radius: 2px;
}
.hero-lead {
  color: var(--slate-700);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  margin-top: 1.5rem;
  max-width: 44ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--hairline);
}
.hero-trust .item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-trust .k { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--slate); letter-spacing: -0.01em; }
.hero-trust .l { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.01em; }

/* Hero-Karte: Schiefer-Fläche mit FG-Monogramm + Material-Fächer */
.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--slate) 0%, var(--slate-900) 100%);
  border-radius: 26px;
  padding: clamp(1.9rem, 3vw, 2.6rem);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(27,30,33,0.7);
}
.hero-card .tilegrid-bg { opacity: 0.5; -webkit-mask-image: none; mask-image: none; }
.hero-card .card-inner { position: relative; z-index: 1; }
.hero-card .mono-lg { width: clamp(108px, 22vw, 138px); height: auto; margin-bottom: 1.6rem; }
.hero-card .card-title { color: #fff; font-size: 1.3rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.hero-card .card-text { color: #c9cbcd; font-size: 0.96rem; }
.hero-card .swatches { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.hero-card .swatches span { flex: 1; height: 10px; border-radius: 4px; }
.hero-card .cap {
  margin-top: 1.3rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: #c9cbcd;
}
.hero-card .cap b { color: #fff; font-weight: 600; }

/* ---------- Leistungs-Überblick (Bento mit Fugen-Optik) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}
.tile {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  box-shadow: 0 0 0 1px var(--hairline-2), 0 1px 2px rgba(43,47,51,0.03);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--hairline), 0 18px 40px rgba(43,47,51,0.10);
}
.tile h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.tile p { color: var(--muted); font-size: 0.98rem; }
.tile .ic {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-deep);
  color: var(--slate);
  margin-bottom: 1.1rem;
}
.tile.span-7 { grid-column: span 7; }
.tile.span-5 { grid-column: span 5; }
.tile.span-6 { grid-column: span 6; }
.tile.span-4 { grid-column: span 4; }
.tile.span-12 { grid-column: span 12; }

/* Feature-Kachel mit Schiefer-Verlauf + Kachelraster */
.tile.feature {
  background: linear-gradient(155deg, var(--slate) 0%, var(--slate-900) 100%);
  color: #e7e3dd;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.tile.feature .tilegrid-bg { opacity: 0.45; -webkit-mask-image: radial-gradient(120% 130% at 100% 0%, #000, transparent 70%); mask-image: radial-gradient(120% 130% at 100% 0%, #000, transparent 70%); }
.tile.feature > * { position: relative; z-index: 1; }
.tile.feature h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
.tile.feature p { color: #c4c6c8; }
.tile.feature .ic { background: rgba(255,255,255,0.12); color: #fff; }
.tile.feature .more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--sand); font-weight: 600; font-size: 0.95rem;
}
.tile.feature .more svg { transition: transform 0.25s var(--ease); }
.tile.feature:hover .more svg { transform: translateX(4px); }
/* Terrakotta-Kachel */
.tile.accent .ic { background: var(--clay-soft); color: var(--clay-deep); }

/* ---------- Material-Streifen (Naturstein/Fliesen-Anmutung in CSS) ---------- */
.material-band { background: var(--surface); border-block: 1px solid var(--hairline-2); }
.material-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
}
.swatch-tile {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--hairline-2), inset 0 1px 0 rgba(255,255,255,0.3);
}
.swatch-tile .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(to top, rgba(27,30,33,0.55), transparent);
}
.swatch-tile .label.dark { color: var(--slate); background: linear-gradient(to top, rgba(255,255,255,0.6), transparent); }
/* materialhafte Verläufe statt Fotos */
.sw-slate   { background: linear-gradient(135deg, #3a3f44, #23272a); }
.sw-travertin { background: linear-gradient(135deg, #e3d6c2, #c9b79c); }
.sw-clay    { background: linear-gradient(135deg, #c07a52, #a8623c); }
.sw-mosaic  {
  background-color: var(--sand);
  background-image:
    linear-gradient(45deg, rgba(43,47,51,0.10) 25%, transparent 25%, transparent 75%, rgba(43,47,51,0.10) 75%),
    linear-gradient(45deg, rgba(43,47,51,0.10) 25%, transparent 25%, transparent 75%, rgba(43,47,51,0.10) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
}

/* ---------- Anker / Vertrauensband ---------- */
.anchor-band { background: var(--surface); border-block: 1px solid var(--hairline-2); }
.anchor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.anchor-item { display: flex; gap: 1rem; align-items: flex-start; }
.anchor-item .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: var(--cream-deep); color: var(--slate);
  display: inline-flex; align-items: center; justify-content: center;
}
.anchor-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.anchor-item p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Split / About-Vorschau ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split .panel {
  background: linear-gradient(160deg, var(--slate) 0%, var(--slate-900) 100%);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem);
  color: #e7e3dd; position: relative; overflow: hidden;
}
.split .panel .tilegrid-bg { opacity: 0.45; -webkit-mask-image: radial-gradient(120% 120% at 0% 100%, #000, transparent 70%); mask-image: radial-gradient(120% 120% at 0% 100%, #000, transparent 70%); }
.split .panel > * { position: relative; z-index: 1; }
.split .panel .mono-md { width: 86px; height: auto; margin-bottom: 1.4rem; }
.split .panel h3 { color: #fff; font-size: 1.6rem; margin-bottom: 0.7rem; }
.split .panel p { color: #c4c6c8; }
.split .panel .quote {
  margin-top: 1.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.97rem; color: var(--sand-soft);
}
.feature-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink-soft); }
.feature-list .chk {
  width: 24px; height: 24px; flex: none; border-radius: 7px;
  background: var(--clay-soft); color: var(--clay-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(168,98,60,0.42), transparent 55%),
    linear-gradient(155deg, var(--slate), var(--slate-900));
  color: #e7e3dd; border-radius: 26px; overflow: hidden;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: space-between;
}
.cta-band .tilegrid-bg { opacity: 0.4; -webkit-mask-image: radial-gradient(120% 120% at 0% 100%, #000, transparent 65%); mask-image: radial-gradient(120% 120% at 0% 100%, #000, transparent 65%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 24ch; }
.cta-band p { color: #c4c6c8; margin-top: 0.7rem; max-width: 48ch; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.info-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--cream-deep); color: var(--slate);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-list .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }
.info-list a, .info-list span.val { font-weight: 500; color: var(--ink-soft); font-size: 1.02rem; }
.info-list a:hover { color: var(--clay-deep); }

/* Formular: Schiefer-Karte, kein weißer Standardkasten */
.form-card {
  position: relative;
  background: linear-gradient(160deg, var(--slate) 0%, var(--slate-900) 100%);
  border-radius: 24px;
  padding: clamp(1.7rem, 3.4vw, 2.6rem);
  color: #e7e3dd;
  overflow: hidden;
}
.form-card .tilegrid-bg { opacity: 0.4; -webkit-mask-image: radial-gradient(120% 110% at 100% 0%, #000, transparent 65%); mask-image: radial-gradient(120% 110% at 100% 0%, #000, transparent 65%); }
.form-card > * { position: relative; z-index: 1; }
.form-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 5px; z-index: 2;
  background: linear-gradient(90deg, var(--sand), var(--clay));
}
.form-card h3 { color: #fff; font-size: 1.42rem; margin-bottom: 0.4rem; }
.form-card .hint { color: #b7b9bb; font-size: 0.9rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.76rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #b7b9bb; font-weight: 600; margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 11px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9a9c9e; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: rgba(255,255,255,0.1);
}
.field textarea { resize: vertical; min-height: 122px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.78rem; color: #9a9c9e; margin-top: 1rem; line-height: 1.5; }

/* ---------- Map-Link ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.4rem; color: var(--slate); font-weight: 600; font-size: 0.96rem;
  padding: 0.7rem 1.1rem; border: 1px solid var(--hairline); border-radius: 999px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.map-link:hover { border-color: var(--clay); background: var(--clay-soft); }

/* ---------- Inhaltsseiten ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(95% 120% at 88% -20%, rgba(201,183,156,0.42), transparent 56%),
    var(--bg);
  border-bottom: 1px solid var(--hairline-2);
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.page-hero h1 { color: var(--slate); font-size: clamp(2.2rem, 5vw, 3.7rem); max-width: 20ch; }
.page-hero h1 .mark { position: relative; display: inline-block; color: var(--clay); }
.page-hero h1 .mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.12em; background: var(--sand); z-index: -1; border-radius: 2px;
}
.page-hero p { color: var(--slate-700); margin-top: 1.1rem; max-width: 58ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--clay-deep); }

.service-block { display: grid; gap: clamp(1.4rem, 2.4vw, 1.8rem); }
.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 2.4vw, 1.8rem); }
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  box-shadow: 0 0 0 1px var(--hairline-2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--hairline), 0 18px 40px rgba(43,47,51,0.08); }
.service-card .head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.2rem; }
.service-card .ic {
  width: 50px; height: 50px; flex: none; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-deep); color: var(--slate);
}
.service-card.alt .ic { background: var(--clay-soft); color: var(--clay-deep); }
.service-card h3 { font-size: 1.34rem; }
.service-card .kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; }
.svc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.svc-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); }
.svc-list .dot {
  width: 22px; height: 22px; flex: none; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
  background: var(--cream-deep); color: var(--slate);
}

.prose { max-width: 720px; }
.prose p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.06rem; }
.prose p strong { color: var(--ink-soft); font-weight: 600; }

.note-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: 0 0 0 1px var(--hairline-2);
  border-left: 4px solid var(--sand);
}
.note-box p { color: var(--muted); font-size: 0.98rem; }
.note-box strong { color: var(--ink-soft); }

/* Prozess-Schritte */
.steps { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  background: var(--surface); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  box-shadow: 0 0 0 1px var(--hairline-2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--hairline), 0 16px 34px rgba(43,47,51,0.08); }
.step .no {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--slate); color: #fff;
}
.step.is-clay .no { background: var(--clay); }
.step h3 { font-size: 1.16rem; margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* Werte-Reihe */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.value-card {
  background: var(--surface); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2rem); box-shadow: 0 0 0 1px var(--hairline-2);
}
.value-card .num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--clay-deep); margin-bottom: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.value-card .num::before { content: ""; width: 10px; height: 10px; border-radius: 2px; background: var(--clay); display: inline-block; box-shadow: 6px 0 0 -1px var(--sand); }
.value-card h3 { font-size: 1.16rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 770px; }
.legal h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.legal h2 { font-size: 1.4rem; margin-top: 2.6rem; margin-bottom: 0.7rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--clay-deep); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal .datenschutz-title { word-break: normal; }
.callout {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: 0 0 0 1px var(--hairline);
  border-left: 4px solid var(--clay);
  margin: 1.6rem 0;
}
.callout p { color: var(--ink-soft); margin-bottom: 0.5rem; }
.callout .tag {
  display: inline-block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700; color: var(--clay-deep); margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--slate);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--slate-900);
  color: #b9bbbd;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  overflow: hidden;
}
.site-footer .tilegrid-bg { opacity: 0.35; -webkit-mask-image: radial-gradient(120% 90% at 90% 0%, #000, transparent 70%); mask-image: radial-gradient(120% 90% at 90% 0%, #000, transparent 70%); }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand .emblem { width: 46px; height: 46px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--sand); }
.footer-about { color: #93969a; font-size: 0.95rem; max-width: 40ch; }
.footer-col h4 {
  font-family: var(--font-display); color: #fff; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #b9bbbd; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.82rem; color: #83868a;
}
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--sand); }

/* ---------- Reveal-Animationen (CSS-only + Fallback) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: reveal 0.8s var(--ease) forwards;
    animation-delay: var(--d, 0s);
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}
@keyframes reveal { to { opacity: 1; transform: none; } }
.no-vt .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); animation: none; }
.no-vt .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-cols { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .material-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .anchor-grid { grid-template-columns: 1fr; }
  .tile.span-7, .tile.span-5, .tile.span-6, .tile.span-4 { grid-column: span 12; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.2rem;
    background: var(--bg);
    padding: 6rem 1.4rem 2rem;
    box-shadow: -20px 0 60px rgba(27,30,33,0.2);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
    border-left: 1px solid var(--hairline);
    visibility: hidden;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform 0.4s var(--ease); }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1.05rem; border-radius: 10px; }
  .nav-links a.active { background: rgba(43,47,51,0.05); }
  .nav-cta { margin: 0.6rem 0 0; text-align: center; justify-content: center; display: flex; }
  .nav-toggle { display: block; z-index: 55; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(27,30,33,0.42);
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 40;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .step { grid-template-columns: 1fr; gap: 0.8rem; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .material-row { grid-template-columns: 1fr; }
}
