/* =========================================================
   Raumkunst Walser (Inh. Volker Walser, Langenargen), Demo
   Eigenständige Markenwelt: warmer, präziser Innenausbau am Bodensee.
     Basis-Text:   Anthrazit  #424240
     Leitfarbe:    Bordeaux   #80191A  (Headlines, Links, Marke)
     Rot:          #AB211F             (zweiter Akzent, Hover)
     Orange:       #E76A28             (scharfer, sparsamer Akzent)
     Grund:        warmes Off-White / Sand (#F7F2EA, #EFE7DA)
   Signatur: die drei Rot-Orange-Balken aus dem Logo als wiederkehrendes
     Trenn- und Akzentmotiv (.barmark), dazu dezente Holz-/Maserungs-Anmutung.
   Fonts lokal (DSGVO): Spectral (Display), Public Sans (Body)
   Schreibregel: KEINE Gedankenstriche in sichtbaren Texten.
   ========================================================= */

/* ---------- Fonts (lokal gehostet) ---------- */
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/spectral-400-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: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/spectral-500-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: "Spectral";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/spectral-600-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: "Spectral";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/spectral-700-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;
}
/* Public Sans ist ein Variable-Font: eine Datei deckt alle Weights ab */
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/publicsans-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 (warmes Dunkelgrau) */
  --ink:        #424240;   /* Haupttext, Wortmarke */
  --ink-deep:   #2e2e2c;   /* dunkler Anker / Flächen */
  --ink-900:    #232321;   /* sehr dunkel (Verläufe) */
  --ink-soft:   #4f4e4b;   /* Fließtext */
  --muted:      #7c7468;   /* gedämpfter, warmer Grauton */
  --muted-2:    #938a7c;

  /* Marken-Akzente (aus dem Logo) */
  --bordeaux:   #80191A;   /* Leitfarbe: Headlines/Links */
  --bordeaux-d: #6a1314;   /* tiefer für Hover */
  --red:        #AB211F;   /* zweiter Rot-Akzent */
  --orange:     #E76A28;   /* scharfer, sparsamer Akzent */
  --orange-d:   #cf5a1c;

  /* warme, natürliche Grundtöne */
  --paper:      #F7F2EA;   /* Haupt-Hintergrund (Off-White/Sand) */
  --paper-2:    #EFE7DA;   /* tieferes Sand */
  --paper-3:    #E6DBC9;   /* warmes Akzent-Sand */
  --surface:    #FFFFFF;   /* Karten */
  --surface-2:  #FBF8F2;   /* sehr helle Karte */

  --hairline:   rgba(66, 66, 64, 0.16);
  --hairline-2: rgba(66, 66, 64, 0.09);
  --line-dark:  rgba(255, 255, 255, 0.12);

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

  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", system-ui, -apple-system, 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(--paper);
  line-height: 1.68;
  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: 600;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink-deep);
  margin: 0;
  hyphens: manual;
}
p { margin: 0; }

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

/* ---------- Holz-/Maserungs-Anmutung (Marken-Textur) ---------- */
/* sehr feine, gerichtete Linien als Maserungseindruck, dezent */
.woodgrain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      92deg,
      rgba(66,66,64,0.040) 0px,
      rgba(66,66,64,0.040) 1px,
      transparent 1px,
      transparent 7px),
    repeating-linear-gradient(
      92deg,
      rgba(66,66,64,0.018) 0px,
      rgba(66,66,64,0.018) 2px,
      transparent 2px,
      transparent 23px);
  -webkit-mask-image: radial-gradient(120% 100% at 80% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(120% 100% at 80% 0%, #000 0%, transparent 72%);
  opacity: 0.85;
}
.woodgrain.on-dark {
  background-image:
    repeating-linear-gradient(
      92deg,
      rgba(255,255,255,0.045) 0px,
      rgba(255,255,255,0.045) 1px,
      transparent 1px,
      transparent 7px),
    repeating-linear-gradient(
      92deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 2px,
      transparent 2px,
      transparent 23px);
}

/* ---------- Balken-Motiv (drei Logo-Balken, neu interpretiert) ---------- */
/* Wiedererkennbares Markenzeichen: drei kurze Balken im Rot-Orange-Verlauf */
.barmark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 30px;
  flex: none;
}
.barmark span { display: block; height: 4px; border-radius: 2px; }
.barmark span:nth-child(1) { width: 100%;  background: var(--bordeaux); }
.barmark span:nth-child(2) { width: 78%;   background: var(--red); }
.barmark span:nth-child(3) { width: 56%;   background: var(--orange); }
.barmark.lg { width: 46px; gap: 5px; }
.barmark.lg span { height: 6px; border-radius: 3px; }
.barmark.center { align-items: center; }
.barmark.center span { margin-inline: auto; }

/* horizontale Balken-Trennlinie */
.barrule {
  display: flex; gap: 6px; align-items: center;
  margin: 0;
}
.barrule i { display: block; height: 5px; border-radius: 3px; }
.barrule i:nth-child(1) { width: 38px; background: var(--bordeaux); }
.barrule i:nth-child(2) { width: 26px; background: var(--red); }
.barrule i:nth-child(3) { width: 16px; background: var(--orange); }

/* ---------- Emblem (Wortmarke-Zeichen) ---------- */
.emblem { flex: none; display: flex; align-items: center; gap: 0.62rem; }
.emblem .em-bars {
  display: inline-flex; flex-direction: column; gap: 2.5px;
}
.emblem .em-bars span { display: block; height: 3.5px; border-radius: 2px; }
.emblem .em-bars span:nth-child(1) { width: 26px; background: var(--bordeaux); }
.emblem .em-bars span:nth-child(2) { width: 20px; background: var(--red); }
.emblem .em-bars span:nth-child(3) { width: 14px; background: var(--orange); }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--ink-900);
  color: #e7ddcd;
  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(--orange); font-weight: 600; }
.demo-bar .sep { color: rgba(255,255,255,0.3); padding: 0 0.35rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.84);
  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: 80px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink-deep);
  letter-spacing: -0.01em;
}
.brand-name b { font-weight: 700; }
.brand-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bordeaux);
  font-weight: 700;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; 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(--bordeaux); background: rgba(128,25,26,0.06); }
.nav-links a.active { color: var(--bordeaux); }
.nav-cta {
  margin-left: 0.4rem;
  background: var(--bordeaux);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.62rem 1.3rem !important;
  font-weight: 600 !important;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease) !important;
}
.nav-cta:hover { background: var(--bordeaux-d) !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(--ink-deep);
  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(--bordeaux); color: #fff; box-shadow: 0 12px 26px -14px rgba(128,25,26,0.75); }
.btn-primary:hover { background: var(--bordeaux-d); 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-orange { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -14px rgba(231,106,40,0.8); }
.btn-orange:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink-deep); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--bordeaux); color: var(--bordeaux); background: rgba(128,25,26,0.04); }
.btn-light { background: var(--surface); color: var(--ink-deep); border-color: var(--hairline); }
.btn-light:hover { transform: translateY(-2px); border-color: var(--bordeaux); color: var(--bordeaux); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--bordeaux);
}
.eyebrow .bars { display: inline-flex; flex-direction: column; gap: 2px; }
.eyebrow .bars i { display: block; height: 3px; border-radius: 2px; }
.eyebrow .bars i:nth-child(1) { width: 20px; background: var(--bordeaux); }
.eyebrow .bars i:nth-child(2) { width: 14px; background: var(--red); }
.eyebrow .bars i:nth-child(3) { width: 9px;  background: var(--orange); }
.eyebrow.on-dark { color: #e9c9a6; }
.eyebrow.on-dark .bars i:nth-child(1) { background: #d98a4f; }
.eyebrow.on-dark .bars i:nth-child(2) { background: var(--orange); }
.eyebrow.on-dark .bars i:nth-child(3) { background: #f0a368; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 700px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head h2 { font-size: clamp(2rem, 4.7vw, 3.2rem); font-weight: 600; }
.section-head p { color: var(--muted); margin-top: 1.05rem; font-size: 1.08rem; }
.center { margin-inline: auto; text-align: center; }
.center .eyebrow { justify-content: center; }

/* Bordeaux-Markierung unter einem Wort */
.mark {
  position: relative;
  display: inline-block;
  color: var(--bordeaux);
}
.mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.11em;
  background: linear-gradient(90deg, var(--red), var(--orange));
  z-index: -1;
  border-radius: 2px;
  opacity: 0.55;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(231,106,40,0.10), transparent 52%),
    radial-gradient(90% 80% at 0% 110%, rgba(128,25,26,0.07), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.6rem, 8vw, 6.8rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero .barrule { margin-bottom: 1.4rem; }
.hero h1 {
  color: var(--ink-deep);
  font-size: clamp(2.7rem, 6.6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.04;
}
.hero .tagline {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--bordeaux);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: 0.01em;
  margin-top: 1.1rem;
}
.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  margin-top: 1.5rem;
  max-width: 46ch;
}
.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.6rem;
  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: 600; font-size: 1.1rem; color: var(--ink-deep); letter-spacing: -0.01em; }
.hero-trust .l { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.01em; }

/* Hero-Karte: dunkle Holz-Anmutung mit Wortmarke + Materialfächer */
.hero-card {
  position: relative;
  background: linear-gradient(158deg, #3a3936 0%, var(--ink-900) 100%);
  border-radius: 26px;
  padding: clamp(1.9rem, 3vw, 2.6rem);
  overflow: hidden;
  box-shadow: 0 44px 84px -42px rgba(35,35,33,0.72);
}
.hero-card .woodgrain { opacity: 0.6; -webkit-mask-image: none; mask-image: none; }
.hero-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; z-index: 2;
  background: linear-gradient(180deg, var(--bordeaux), var(--red) 50%, var(--orange));
}
.hero-card .card-inner { position: relative; z-index: 1; }
.hero-card .wordmark {
  font-family: var(--font-display);
  line-height: 0.96;
  margin-bottom: 1.5rem;
}
.hero-card .wordmark .l1 { display: block; font-size: clamp(2rem, 5vw, 2.7rem); font-weight: 500; color: #f3ece1; letter-spacing: -0.01em; }
.hero-card .wordmark .l2 { display: block; font-size: clamp(1.55rem, 4vw, 2rem); font-weight: 700; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-card .wordmark .bars { margin: 0.9rem 0 0; }
.hero-card .card-tag {
  color: var(--orange); font-style: italic; font-family: var(--font-display);
  font-size: 1.02rem; margin-top: 0.9rem;
}
.hero-card .card-text { color: #cdc6bb; font-size: 0.96rem; margin-top: 1.2rem; }
.hero-card .swatches { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.hero-card .swatches span { flex: 1; height: 12px; border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.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: #cdc6bb;
}
.hero-card .cap b { color: #fff; font-weight: 600; }

/* ---------- Leistungs-Überblick (Bento) ---------- */
.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(66,66,64,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 20px 42px rgba(66,66,64,0.10);
}
.tile h3 { font-size: 1.28rem; margin-bottom: 0.5rem; font-weight: 600; }
.tile p { color: var(--muted); font-size: 0.98rem; }
.tile .ic {
  width: 50px; height: 50px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  color: var(--bordeaux);
  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 Holz-Verlauf */
.tile.feature {
  background: linear-gradient(155deg, #3a3936 0%, var(--ink-900) 100%);
  color: #e9e2d6;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.tile.feature .woodgrain { opacity: 0.5; -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.45rem, 2.4vw, 2rem); }
.tile.feature p { color: #c9c2b6; }
.tile.feature .ic { background: rgba(255,255,255,0.1); color: var(--orange); }
.tile.feature .more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--orange); 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); }
/* Orange-Akzent-Kachel */
.tile.accent .ic { background: rgba(231,106,40,0.12); color: var(--orange-d); }

/* ---------- Material-/Holzwelt-Streifen ---------- */
.material-band { background: var(--surface-2); 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: 13px;
  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.2);
}
.swatch-tile .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(to top, rgba(35,35,33,0.6), transparent);
}
.swatch-tile .label.dark { color: var(--ink-deep); background: linear-gradient(to top, rgba(255,255,255,0.66), transparent); }
/* Holz-/Materialhafte Verläufe statt Fotos (Maserungslinien) */
.sw-eiche {
  background: linear-gradient(135deg, #c9a26a, #a9763d);
  background-image:
    repeating-linear-gradient(96deg, rgba(70,40,15,0.16) 0 1px, transparent 1px 9px),
    linear-gradient(135deg, #c9a26a, #a9763d);
}
.sw-nuss {
  background: linear-gradient(135deg, #6f4a30, #3f2a1c);
  background-image:
    repeating-linear-gradient(96deg, rgba(20,10,4,0.22) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #6f4a30, #3f2a1c);
}
.sw-bordeaux { background: linear-gradient(135deg, #9c2426, var(--bordeaux)); }
.sw-orange  { background: linear-gradient(135deg, #f08a4a, var(--orange)); }

/* ---------- Anker / Vertrauensband ---------- */
.anchor-band { background: var(--surface-2); 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: 48px; height: 48px; flex: none; border-radius: 13px;
  background: var(--paper-2); color: var(--bordeaux);
  display: inline-flex; align-items: center; justify-content: center;
}
.anchor-item h3 { font-size: 1.14rem; margin-bottom: 0.25rem; font-weight: 600; }
.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, #3a3936 0%, var(--ink-900) 100%);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem);
  color: #e9e2d6; position: relative; overflow: hidden;
}
.split .panel .woodgrain { opacity: 0.5; -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 .wordmark { font-family: var(--font-display); line-height: 0.98; margin-bottom: 1.3rem; }
.split .panel .wordmark .l1 { display: block; font-size: 1.9rem; font-weight: 500; color: #f3ece1; }
.split .panel .wordmark .l2 { display: block; font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; }
.split .panel h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.7rem; font-weight: 600; }
.split .panel p { color: #c9c2b6; }
.split .panel .quote {
  margin-top: 1.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 1.02rem; color: #e9c9a6; font-style: italic;
  font-family: var(--font-display);
}
.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: rgba(128,25,26,0.1); color: var(--bordeaux);
  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(231,106,40,0.34), transparent 56%),
    linear-gradient(155deg, #3a3936, var(--ink-900));
  color: #e9e2d6; 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 .woodgrain { opacity: 0.42; -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.75rem, 3.4vw, 2.7rem); max-width: 24ch; font-weight: 600; }
.cta-band p { color: #c9c2b6; margin-top: 0.7rem; max-width: 50ch; }

/* ---------- 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.85rem, 3.6vw, 2.6rem); font-weight: 600; }
.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: 46px; height: 46px; flex: none; border-radius: 13px;
  background: var(--paper-2); color: var(--bordeaux);
  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: 700; }
.info-list a, .info-list span.val { font-weight: 500; color: var(--ink-soft); font-size: 1.02rem; }
.info-list a:hover { color: var(--bordeaux); }

/* Formular: dunkle Holz-Karte, kein weißer Standardkasten */
.form-card {
  position: relative;
  background: linear-gradient(160deg, #3a3936 0%, var(--ink-900) 100%);
  border-radius: 24px;
  padding: clamp(1.7rem, 3.4vw, 2.6rem);
  color: #e9e2d6;
  overflow: hidden;
}
.form-card .woodgrain { 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(--bordeaux), var(--red) 55%, var(--orange));
}
.form-card h3 { color: #fff; font-size: 1.48rem; margin-bottom: 0.4rem; font-weight: 600; }
.form-card .hint { color: #b8b1a5; 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: #b8b1a5; font-weight: 700; 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: #9b958a; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  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; background: var(--orange); box-shadow: 0 12px 26px -14px rgba(231,106,40,0.8); }
.form-card .btn-primary:hover { background: var(--orange-d); }
.form-note { font-size: 0.78rem; color: #9b958a; margin-top: 1rem; line-height: 1.55; }

/* ---------- Map-Link ---------- */
.map-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.4rem; color: var(--ink-deep); 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), color 0.2s var(--ease);
}
.map-link:hover { border-color: var(--bordeaux); color: var(--bordeaux); background: rgba(128,25,26,0.05); }

/* ---------- Inhaltsseiten ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(95% 120% at 86% -20%, rgba(231,106,40,0.12), transparent 56%),
    radial-gradient(80% 90% at 0% 120%, rgba(128,25,26,0.06), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--hairline-2);
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.5rem, 8vw, 5.6rem); }
.page-hero .barrule { margin-bottom: 1.2rem; }
.page-hero h1 { color: var(--ink-deep); font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 20ch; font-weight: 600; }
.page-hero p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 60ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--bordeaux); }

.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 20px 42px rgba(66,66,64,0.08); }
.service-card .head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.2rem; }
.service-card .ic {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--bordeaux);
}
.service-card.alt .ic { background: rgba(231,106,40,0.12); color: var(--orange-d); }
.service-card h3 { font-size: 1.38rem; font-weight: 600; }
.service-card .kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; }
.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: 3px;
  background: var(--paper-2); color: var(--bordeaux);
}

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

.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(--orange);
}
.note-box p { color: var(--muted); font-size: 0.98rem; }
.note-box strong { color: var(--ink-soft); }

/* 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: 1.4rem;
  color: var(--bordeaux); margin-bottom: 0.7rem;
}
.value-card h3 { font-size: 1.18rem; margin-bottom: 0.4rem; font-weight: 600; }
.value-card p { color: var(--muted); font-size: 0.96rem; }

/* Zitat / Marken-Streifen */
.creed {
  position: relative;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(231,106,40,0.30), transparent 55%),
    linear-gradient(155deg, #3a3936, var(--ink-900));
  color: #f0e9dd; border-radius: 26px; overflow: hidden;
  padding: clamp(2.6rem, 5vw, 4.2rem);
}
.creed .woodgrain { opacity: 0.4; }
.creed > * { position: relative; z-index: 1; }
.creed .barrule { margin-bottom: 1.4rem; }
.creed blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.3; color: #fff; max-width: 24ch;
}
.creed .by { margin-top: 1.4rem; color: #e9c9a6; font-size: 0.95rem; letter-spacing: 0.02em; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 770px; }
.legal h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 600; }
.legal h2 { font-size: 1.42rem; margin-top: 2.6rem; margin-bottom: 0.7rem; font-weight: 600; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: 0.4rem; font-weight: 600; }
.legal p, .legal li { color: var(--muted); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--bordeaux); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.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(--bordeaux);
  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(--bordeaux); margin-bottom: 0.6rem;
}
.placeholder-pill {
  display: inline-block;
  background: var(--paper-2);
  color: var(--ink-deep);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--ink-900);
  color: #b6afa3;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  overflow: hidden;
}
.site-footer .woodgrain { opacity: 0.3; -webkit-mask-image: radial-gradient(120% 90% at 88% 0%, #000, transparent 70%); mask-image: radial-gradient(120% 90% at 88% 0%, #000, transparent 70%); }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 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 .brand-name { color: #fff; font-size: 1.34rem; }
.footer-brand .brand-sub { color: var(--orange); }
.footer-about { color: #908a7f; font-size: 0.95rem; max-width: 42ch; }
.footer-col h4 {
  font-family: var(--font-display); color: #fff; font-size: 0.86rem;
  text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 1rem; font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col span { color: #b6afa3; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.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: #807a70;
}
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- 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: 500px; }
  .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(--paper);
    padding: 6rem 1.4rem 2rem;
    box-shadow: -20px 0 60px rgba(35,35,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(128,25,26,0.06); }
  .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(35,35,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; }
}

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