/* ==========================================================================
   Holler IT-Service — Stylesheet
   Handgeschrieben, kein Framework, kein Build-Schritt.

   Gestaltungsleitlinie
   --------------------
   Vorbild sind reale IT-Betriebe aus der Region (Weiz/Oststeiermark), nicht
   Design-Agentur- oder SaaS-Vorlagen: flache Flächen, scharfe Kanten, eine
   feste Akzentfarbe, echte Inhalte statt Spielerei. Kein Glow, kein Blur,
   kein Freihand-Dekor, keine 3D-Karten, keine schwebenden Icon-Animationen.
   Was bewegt wird, bewegt sich einmal beim Einblenden — mehr nicht.

   1. Tokens        2. Reset       3. Layout      4. Typografie
   5. Buttons       6. Leistungskarten   7. Header  8. Hero
   9. Sektionen / Listen   10. Foto   11. Formular   12. Footer
   13. Rechtstexte  14. Utilities   15. Kontaktwege   16. Reduced Motion
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* --- Farben --------------------------------------------------------
     Eine feste Akzentfarbe (Steel-Blau), die auch als Fläche funktioniert —
     kein Pastellton, der nur als Glow taugt. Dunkel kommt als klarer
     Block vor (Header dunkel, Footer dunkel), nicht als Verlauf. */
  --steel:      #2B5C82;
  --steel-dark: #1E4864;
  --steel-tint: #E4EDF3;
  --gunmetal:   #1D2529;
  --amber:      #B96A1E;

  --paper:      #F5F4F1;   /* Grundfläche, warmes Papier statt kühles Tech-Grau */
  --paper-2:    #EAE8E3;   /* abgesetzte Bänder */
  --surface:    #FFFFFF;
  --line:       #D7D3CC;
  --line-soft:  #E3E0D9;

  --ink:        #1B1F22;   /* Überschriften */
  --body:       #43494D;   /* Fließtext */
  --muted:      #6C7377;   /* Meta */
  --accent-ink: #1E4864;   /* Links auf Hell */

  --on-dark:       #F2F1EE;
  --on-dark-muted: #AFB6B9;
  --on-dark-line:  rgba(242, 241, 238, .16);

  /* --- Schrift --- */
  --font-display: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:    'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-display: clamp(2.4rem, 1.5rem + 3.8vw, 4rem);
  --fs-h1:      clamp(2.1rem, 1.5rem + 2.6vw, 3.2rem);
  --fs-h2:      clamp(1.7rem, 1.3rem + 1.8vw, 2.5rem);
  --fs-h3:      1.18rem;
  --fs-lead:    clamp(1.05rem, 1rem + .3vw, 1.2rem);
  --fs-body:    1.0625rem;
  --fs-sm:      .9375rem;
  --fs-xs:      .8125rem;
  --fs-mono:    .72rem;

  /* --- Abstand --- */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 2.75rem; --sp-8: 4rem;

  --section-y:      clamp(3.75rem, 2.75rem + 4vw, 6rem);
  --section-y-wide: clamp(4.5rem, 3rem + 6vw, 7.5rem);

  /* Bewusst kantig statt rund — das unterscheidet die Seite von der
     üblichen "Startup"-Vorlage mit weichen Ecken überall. */
  --radius:    3px;
  --radius-sm: 2px;
  --shell:     1180px;

  --shadow-1: 0 1px 0 rgba(27, 31, 34, .06);
  --shadow-2: 0 2px 0 rgba(27, 31, 34, .08);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================================================
   2. RESET / BASIS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--body);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--steel); }

::selection { background: var(--steel-tint); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px; top: 0; z-index: 200;
  padding: var(--sp-3) var(--sp-5);
  background: var(--gunmetal);
  color: var(--on-dark);
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, .6rem + 2.2vw, 2.5rem);
}
.shell--narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--tall  { padding-block: var(--section-y-wide); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2.5vw, 3.5rem); }

.section--band { background: var(--paper-2); }

.section--dark {
  background: var(--gunmetal);
  color: var(--on-dark-muted);
}
.section--dark h2, .section--dark h3 { color: var(--on-dark); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.split--wide-right { grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr); }
@media (max-width: 900px) {
  .split, .split--wide-right { grid-template-columns: 1fr; }
}

.grid { display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }

/* ==========================================================================
   4. TYPOGRAFIE
   ========================================================================== */
h1, h2, h3, h4 { margin: 0; color: var(--ink); text-wrap: balance; }

h1, h2, .display {
  font-family: var(--font-display);
  font-variation-settings: normal;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.015em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }

h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.3;
  letter-spacing: -.005em;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.58;
  color: var(--body);
  text-wrap: pretty;
}
.section--dark .lead { color: var(--on-dark-muted); }

.muted { color: var(--muted); font-size: var(--fs-sm); }

/* Eyebrow-Label in Monospace — Ortsangaben, Kategorien, Rechtstexte-Nav. */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
}
.section--dark .tag { color: var(--on-dark); opacity: .8; }

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); }
.section-head .tag { margin-bottom: var(--sp-3); }
.section-head .lead { margin-top: var(--sp-4); }

/* Betonter Begriff in einer Überschrift — flache Akzentfarbe statt
   handgezeichneter, animierter Unterstreichung. */
.accent { color: var(--steel); }

/* Schlichte Trennlinie */
.rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin: var(--sp-5) 0;
  background: var(--steel);
  border: 0;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--gunmetal);
  --btn-fg: var(--on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .85rem 1.6rem;
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { color: var(--btn-fg); }
.btn--primary:hover { background: var(--steel-dark); border-color: var(--steel-dark); }

.btn--secondary {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--secondary:hover { border-color: var(--steel); color: var(--steel); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--steel); background: var(--steel-tint); color: var(--steel-dark); }

.section--dark .btn--ghost,
.cta-band .btn--ghost,
.site-header--overlay .btn--ghost {
  --btn-fg: var(--on-dark);
  border-color: rgba(242, 241, 238, .35);
}
.section--dark .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.site-header--overlay .btn--ghost:hover {
  border-color: var(--on-dark);
  background: rgba(242, 241, 238, .1);
}

.btn--onDark { --btn-bg: var(--surface); --btn-fg: var(--gunmetal); border-color: var(--surface); }
.btn--onDark:hover { --btn-bg: var(--steel-tint); }

.btn--sm { padding: .55rem 1.05rem; font-size: var(--fs-xs); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--accent-ink);
  text-decoration: none;
}
.link-arrow .icon { transition: transform .18s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }

.icon { width: 1.375rem; height: 1.375rem; flex: none; }
.icon--sm { width: 1.0625rem; height: 1.0625rem; }

/* ==========================================================================
   6. LEISTUNGSKARTEN
   Flache Karten mit klarer Kante — kein 3D-Auffalten, kein Hover-Tilt.
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, .6rem + 1.4vw, 1.5rem);
  align-items: stretch;
}
@media (max-width: 940px) { .services { grid-template-columns: 1fr; max-width: 32rem; margin-inline: auto; } }

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--sp-5);
  background: var(--steel-tint);
  color: var(--steel-dark);
}
.service-card__icon .icon { width: 1.6rem; height: 1.6rem; }

.service-card__tag { margin-bottom: var(--sp-3); }
.service-card__title {
  margin-bottom: var(--sp-3);
  font-size: 1.28rem;
  line-height: 1.25;
}
.service-card__q {
  margin-bottom: var(--sp-3);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.service-card__text { margin-bottom: var(--sp-5); color: var(--body); }
.service-card__price {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  margin-bottom: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-soft);
}
.service-card__price strong {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.service-card__price span { font-size: var(--fs-xs); color: var(--muted); }

.service-card__foot { display: flex; flex-direction: column; gap: var(--sp-2); align-items: flex-start; margin-top: auto; }
.service-card__direct {
  font-size: var(--fs-sm);
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.service-card__direct:hover,
.service-card__direct:focus-visible { color: var(--accent-ink); text-decoration-color: currentColor; }

/* ==========================================================================
   7. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-2); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 4.6rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 2.1rem; height: 2.1rem; color: currentColor; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__node { fill: currentColor; }
.brand__node--accent { fill: var(--steel); }

.brand__text { display: flex; flex-direction: column; line-height: 1.04; }
.brand__name {
  font-family: var(--font-display);
  font-variation-settings: normal;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.01em;
}
.brand__suffix {
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, .1rem + 1.2vw, 1.7rem);
  list-style: none;
}
.site-nav__link {
  position: relative;
  display: inline-block;
  padding: .4rem 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--body);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.site-nav__link:hover { color: var(--ink); }
.site-nav__link:hover,
.site-nav__link.is-active { border-color: var(--steel); }
.site-nav__link.is-active { color: var(--ink); }

.nav-toggle {
  display: none;
  padding: .5rem;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 4.6rem 0 auto 0;
    background: var(--gunmetal);
    box-shadow: var(--shadow-2);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .3s var(--ease);
  }
  .site-nav.is-open { clip-path: inset(0 0 0 0); }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4) clamp(1.15rem, .6rem + 2.2vw, 2.5rem) var(--sp-6);
  }
  .site-nav__link {
    display: block;
    padding: .95rem 0;
    font-size: 1.1rem;
    color: var(--on-dark-muted);
    border-bottom: 1px solid var(--on-dark-line);
  }
  .site-nav__link:hover, .site-nav__link.is-active { color: var(--on-dark); }
  .site-nav__cta-wrap { margin-top: var(--sp-5); }
  .site-nav__cta {
    width: 100%;
    color: var(--gunmetal);
    background: var(--on-dark);
    border-color: var(--on-dark);
    padding: .8rem 1.2rem;
  }
}

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
  padding-bottom: clamp(2.25rem, 1.4rem + 2.6vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: clamp(1.5rem, .5rem + 4vw, 4rem);
  align-items: end;
}
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; align-items: start; } }

.hero__title {
  font-family: var(--font-display);
  font-variation-settings: normal;
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
  max-width: 15ch;
}

.hero__meta { margin-bottom: var(--sp-6); }

.hero__aside { padding-bottom: .6rem; }
.hero__lead { font-size: var(--fs-lead); line-height: 1.6; margin-bottom: var(--sp-6); }

.hero__cta-wrap { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero__facts li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__facts .icon { color: var(--steel); }

/* Seitenkopf der Unterseiten */
.page-head {
  padding-top: clamp(2.75rem, 2rem + 2.5vw, 4rem);
  padding-bottom: clamp(2.25rem, 1.6rem + 2vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}
.page-head__inner { max-width: 44rem; }
.page-head .tag { margin-bottom: var(--sp-3); }
.page-head h1 { margin-bottom: var(--sp-4); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: var(--sp-4);
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--muted);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs li + li::before { content: '/'; margin-right: .4rem; opacity: .55; }

/* ==========================================================================
   9. SEKTIONEN / LISTEN
   ========================================================================== */
.check-list { list-style: none; display: grid; gap: var(--sp-4); }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); }
.check-list .icon {
  width: 1.3rem; height: 1.3rem;
  margin-top: .34rem;
  padding: .16rem;
  color: var(--steel-dark);
  background: var(--steel-tint);
}
.check-list strong { display: block; color: var(--ink); font-weight: 700; }
.check-list p { margin: .15rem 0 0; font-size: var(--fs-sm); }
.section--dark .check-list strong { color: var(--on-dark); }
.section--dark .check-list .icon { color: var(--on-dark); background: rgba(242, 241, 238, .12); }

/* Ablauf: nummerierte Schritte in einem kantigen Kasten */
.steps { list-style: none; counter-reset: step; display: grid; }
.steps li {
  position: relative;
  counter-increment: step;
  padding: 0 0 var(--sp-6) clamp(3.25rem, 2.5rem + 2vw, 4rem);
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -.15rem;
  display: grid;
  place-items: center;
  width: 2.3rem; height: 2.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  color: var(--steel-dark);
}
.steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.15rem; top: 2.45rem; bottom: .5rem;
  width: 1px;
  background: var(--line);
}
.steps h3 { margin-bottom: var(--sp-2); }
.steps p { font-size: var(--fs-sm); margin: 0; }

.section--dark .steps li::before {
  background: rgba(242, 241, 238, .06);
  color: var(--on-dark);
  border-color: var(--on-dark-line);
}
.section--dark .steps li:not(:last-child)::after { background: var(--on-dark-line); }

/* Ruhige Karte ohne Neigung oder Schatten-Spielerei */
.note {
  padding: clamp(1.4rem, 1.1rem + .9vw, 1.75rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--steel);
  height: 100%;
}
.note h3 { margin-bottom: var(--sp-3); }
.note p { font-size: var(--fs-sm); margin: 0; }
.note--dark {
  background: rgba(242, 241, 238, .04);
  border-color: var(--on-dark-line);
  border-left-color: var(--on-dark);
}
.note--dark h3 { color: var(--on-dark); }
.note--dark p  { color: var(--on-dark-muted); }

.cta-band {
  padding: clamp(2.25rem, 1.6rem + 2.6vw, 3.5rem);
  background: var(--gunmetal);
  color: var(--on-dark-muted);
}
.cta-band h2 { color: var(--on-dark); margin-bottom: var(--sp-4); }
.cta-band .lead { color: var(--on-dark-muted); margin-bottom: var(--sp-6); max-width: 38rem; }
.cta-band .tag { margin-bottom: var(--sp-4); }

.contact-lines { display: grid; gap: var(--sp-5); list-style: none; }
.contact-lines li { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); align-items: start; }
.contact-lines .icon { margin-top: .2rem; color: var(--steel-dark); }
.contact-lines a { font-weight: 600; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines .label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Fälle / Referenzen */
.cases {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
  gap: clamp(1.5rem, .8rem + 2.4vw, 2.25rem);
  align-items: start;
}

.case {
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  background: rgba(242, 241, 238, .03);
  border: 1px solid var(--on-dark-line);
  border-top: 3px solid var(--steel);
}
.case__field { color: var(--on-dark); opacity: .75; margin-bottom: var(--sp-3); }
.case__name {
  font-family: var(--font-sans);
  font-variation-settings: normal;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--on-dark);
  margin-bottom: var(--sp-3);
}
.case__summary {
  color: var(--on-dark-muted);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--on-dark-line);
}

.case__steps { list-style: none; display: flex; flex-direction: column; gap: var(--sp-5); }
.case__label {
  display: block;
  margin-bottom: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-dark);
  opacity: .75;
}
.case__step p { color: var(--on-dark-muted); font-size: var(--fs-sm); line-height: 1.6; }
.case__foot { margin-top: var(--sp-6); }
.case .link-arrow { color: var(--on-dark); }

.cases__note {
  margin-top: clamp(2rem, 1.4rem + 1.6vw, 3rem);
  font-size: var(--fs-sm);
  color: var(--on-dark-muted);
}
.cases__note a { color: var(--on-dark); text-underline-offset: 3px; }

.page-head__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.page-head__price {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--muted);
}
.page-head__price .icon { color: var(--steel-dark); flex: none; margin-top: .15em; }
.page-head__price strong { color: var(--ink); font-family: var(--font-mono); }

/* ==========================================================================
   10. FOTO — gerade, mit einer schmalen Akzentkante statt Klebeband-Optik
   ========================================================================== */
.photo {
  position: relative;
  max-width: 23rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
}
.photo img { width: 100%; display: block; }
.photo__caption {
  padding: .75rem 1rem;
  text-align: left;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: .06em;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.photo__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-align: center;
  line-height: 1.9;
  padding: var(--sp-4);
}

/* ==========================================================================
   11. FORMULAR
   ========================================================================== */
.form-panel {
  padding: clamp(1.6rem, 1.1rem + 1.6vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
}
.form-panel__title { margin-bottom: var(--sp-3); }
.form-panel__intro { margin-bottom: var(--sp-6); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 620px) { .field-grid { grid-template-columns: 1fr; } }

.field { display: block; margin-bottom: var(--sp-4); }
.field__label { display: block; margin-bottom: .4rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.field__hint { font-weight: 400; color: var(--muted); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 9rem; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2343494D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #B9B4AB; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--steel);
  box-shadow: 0 0 0 3px var(--steel-tint);
}

.field-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  align-items: start;
  margin-bottom: var(--sp-5);
  font-size: var(--fs-sm);
}
.field-consent input { width: 1.15rem; height: 1.15rem; margin-top: .3rem; accent-color: var(--steel); }

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.required-mark { color: var(--steel); }

.alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-5);
  border-radius: var(--radius-sm);
  border: 1px solid;
  font-size: var(--fs-sm);
}
.alert--ok    { background: #EAF3EC; border-color: #B7D3BC; color: #1B4A28; }
.alert--error { background: #F8EAE8; border-color: #E0B7B0; color: #6E2A20; }
.alert strong { display: block; margin-bottom: .15rem; }
.alert .icon { margin-top: .12rem; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.site-footer {
  padding-top: clamp(3rem, 2.25rem + 3.5vw, 4.5rem);
  padding-bottom: var(--sp-6);
  background: var(--gunmetal);
  color: var(--on-dark-muted);
  font-size: var(--fs-sm);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr .8fr;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  padding-bottom: var(--sp-7);
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

.brand--footer { color: var(--on-dark); margin-bottom: var(--sp-4); }
.brand--footer .brand__suffix { color: var(--on-dark-muted); }
.brand--footer .brand__node--accent { fill: var(--on-dark); }
.site-footer__claim { max-width: 24rem; }

.site-footer__head {
  margin-bottom: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark);
  opacity: .8;
}
.site-footer__links { list-style: none; display: grid; gap: var(--sp-3); }
.site-footer__links a {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--on-dark-muted); text-decoration: none;
  transition: color .18s var(--ease);
}
.site-footer__links a:hover { color: var(--on-dark); }
.site-footer__links--contact .icon { color: var(--on-dark-muted); flex: none; }
.site-footer__static { display: flex; gap: var(--sp-2); align-items: start; }
.site-footer__static .icon { color: var(--on-dark-muted); margin-top: .25rem; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--on-dark-line);
  font-size: var(--fs-xs);
}
.site-footer__bottom p { margin: 0; }
.site-footer__note { opacity: .8; }

/* ==========================================================================
   13. RECHTSTEXTE
   ========================================================================== */
.legal { max-width: 46rem; }
.legal h2 {
  margin: var(--sp-8) 0 var(--sp-3);
  font-size: 1.5rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: var(--sp-6) 0 var(--sp-2); }
.legal p, .legal li { color: var(--body); }
.legal ul { margin: 0 0 var(--sp-4); padding-left: 1.2rem; list-style: disc; }
.legal li { margin-bottom: var(--sp-2); }
.legal address { font-style: normal; }
.legal code {
  font-family: var(--font-mono);
  font-size: .85em;
  background: var(--paper-2);
  padding: .1rem .35rem;
}
.todo-note {
  display: inline-block;
  padding: .35rem .6rem;
  background: #FBF0D9;
  border: 1px dashed var(--amber);
  color: #6B4A12;
  font-family: var(--font-mono);
  font-size: .78rem;
  line-height: 1.6;
}

.legal__updated {
  margin-top: var(--sp-8);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--muted);
}

/* ==========================================================================
   14. UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.measure { max-width: 44rem; }
.stack > * + * { margin-top: var(--sp-5); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

/* Ein einziges, ruhiges Einblenden — keine gestaffelten Effekte pro Element */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   15. KONTAKT-WEGE
   Alles, was auf "anrufen" hinführt: Telefon ist bei diesem Geschäft die
   wichtigste Aktion.
   ========================================================================== */
.header-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-left: auto;
  border: 1px solid var(--line);
  color: var(--accent-ink);
  background: var(--surface);
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.header-call:hover,
.header-call:focus-visible { background: var(--steel-tint); border-color: var(--steel); }

@media (max-width: 860px) {
  .header-call { display: flex; }
  .header-call + .nav-toggle { margin-left: var(--sp-2); }
}

.call-bar {
  display: none;
  position: fixed;
  z-index: 120;
  inset: auto 0 0 0;
  gap: var(--sp-2);
  padding: .55rem .75rem;
  padding-bottom: calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.call-bar__call,
.call-bar__write {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 3rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  line-height: 1.15;
  text-decoration: none;
}

.call-bar__call {
  flex: 1 1 auto;
  background: var(--gunmetal);
  color: var(--on-dark);
  padding-inline: var(--sp-4);
}
.call-bar__call .icon { color: var(--on-dark-muted); flex: none; }
.call-bar__label { display: flex; flex-direction: column; align-items: flex-start; }
.call-bar__label strong { font-size: var(--fs-sm); font-weight: 700; }
.call-bar__label span {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--on-dark-muted);
  letter-spacing: .02em;
}

.call-bar__write {
  flex: 0 0 auto;
  padding-inline: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent-ink);
  font-size: var(--fs-sm);
}

@media (max-width: 860px) {
  .call-bar { display: flex; }
  body { padding-bottom: 4.6rem; }
}

.btn--call { align-items: center; gap: var(--sp-3); text-align: left; }
.btn__stack { display: flex; flex-direction: column; line-height: 1.15; }
.btn__stack strong { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.btn__stack > span {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  opacity: .75;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__price {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--muted);
}
.hero__price .icon { color: var(--steel-dark); flex: none; margin-top: .15em; }

.credential {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  max-width: 52rem;
  margin-top: clamp(2rem, 1.4rem + 1.6vw, 3rem);
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--steel);
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.6;
}
.credential .icon { color: var(--steel-dark); flex: none; margin-top: .2em; }
.credential strong { color: var(--ink); }
.credential a { white-space: nowrap; }

.field-reach {
  margin-bottom: var(--sp-5);
  padding: var(--sp-5);
  border: 1px solid var(--line-soft);
  background: var(--paper);
}
.field-reach legend {
  padding-inline: var(--sp-2);
  margin-left: calc(var(--sp-2) * -1);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}
.field-reach__hint {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--muted);
}
.field-reach .field-grid { margin-bottom: 0; }

/* ==========================================================================
   16. REDUZIERTE BEWEGUNG
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
