/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --ink: #14171a;
  --ink-2: #1e2327;
  --paper: #f6f5f1;
  --sand: #e3dfcd;
  --petrol: #12474a;
  --signal: #c2410c;
  --signal-bright: #f26a21;
  --erde-gruen: #4e7a1e;
  --erde-gelb: #f2c200;
  --line: #d9d6cb;
  --line-dark: #31383d;
  --text: #3a4045;
  --text-dim: #6b7378;
  --text-on-dark: #b9c1c6;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1140px;
  --gap: clamp(20px, 4vw, 32px);
  --radius: 4px;
  --header-h: 64px;
}

/* ============================================================
   2. BASIS
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--signal-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.98;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.6rem, 8.5vw, 5.2rem);
  line-height: 0.9;
}
h2 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
}
h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
}
p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gap);
}
.section {
  padding-block: clamp(64px, 9vw, 116px);
}
.section--tight {
  padding-block: clamp(48px, 6vw, 80px);
}
.section--dark {
  background: var(--ink);
  color: var(--text-on-dark);
}
.section--dark h2,
.section--dark h3 {
  color: #fff;
}
.section--sand {
  background: var(--sand);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  flex: none;
}
.section--dark .eyebrow {
  color: var(--signal-bright);
}

.lead {
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  max-width: 56ch;
}
.muted {
  color: var(--text-dim);
}
.section--dark .muted {
  color: #8a9298;
}

/* Erdungsleiter — grün/gelb, das Signal jedes Elektrikers */
.erde {
  height: 9px;
  border: 0;
  margin: 0;
  background: repeating-linear-gradient(
    135deg,
    var(--erde-gelb) 0 12px,
    var(--erde-gruen) 12px 24px
  );
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 15px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--signal);
  color: #fff;
}
.btn--primary:hover {
  background: #a6360a;
}
.btn--line {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--line:hover {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .btn--line {
  border-color: #4a5359;
  color: #fff;
}
.section--dark .btn--line:hover {
  background: #fff;
  color: var(--ink);
}
.btn--sm {
  padding: 10px 18px;
  font-size: 0.92rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ============================================================
   4. HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand__logo {
  height: 34px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--signal);
}
.nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--signal);
}
.header .btn {
  white-space: nowrap;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gap) 20px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    box-shadow: 0 18px 40px rgba(20, 23, 26, 0.12);
  }
  .nav[data-open="true"] {
    transform: translateY(0);
  }
  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }
  .burger {
    display: flex;
  }
  .header .btn--head {
    display: none;
  }
}

/* ============================================================
   5. HERO (Startseite — vollflächige Animation, ein Bildschirm)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(96px, 14vh, 140px) clamp(40px, 7vh, 72px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(246, 245, 241, 0.86) 0%,
      rgba(246, 245, 241, 0.72) 38%,
      rgba(246, 245, 241, 0.86) 82%,
      var(--paper) 100%
    );
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    display: none;
  }
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__grid {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}
.hero h1 em {
  font-style: normal;
  color: var(--signal);
}
.hero .lead {
  margin-top: 22px;
  margin-inline: auto;
}
.hero .btn-row {
  justify-content: center;
}
.hero__note {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__note span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__note span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3vh, 28px);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
}
.hero__scroll svg {
  width: 16px;
  height: 16px;
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll svg {
    animation: none;
  }
}

/* ============================================================
   5b. PAGE HEAD (Subpages — kompakter Titelbereich statt Hero)
   ============================================================ */
.page-head {
  padding-block: clamp(56px, 9vw, 96px) clamp(40px, 6vw, 64px);
  background: var(--ink);
  color: var(--text-on-dark);
}
.page-head h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6.5vw, 3.8rem);
}
.page-head .lead {
  margin-top: 16px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9298;
  text-decoration: none;
  margin-bottom: 22px;
}
.breadcrumb:hover {
  color: #fff;
}
.breadcrumb svg {
  width: 13px;
  height: 13px;
}

/* ============================================================
   6. RUBRIKEN (Startseite — Übersicht der Unterseiten)
   ============================================================ */
.rubriken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.rubrik {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.rubrik::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--sand);
  transition: background-color 0.2s ease;
}
.rubrik:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -18px rgba(20, 23, 26, 0.35);
}
.rubrik:hover::before {
  background: var(--signal);
}
.rubrik__icon {
  width: 30px;
  height: 30px;
  color: var(--petrol);
  margin-bottom: 14px;
}
.rubrik h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.rubrik p {
  font-size: 0.92rem;
  color: var(--text-dim);
}
.rubrik__go {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}
@media (max-width: 900px) {
  .rubriken {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .rubriken {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   6b. CTA-BAND (Subpages — Abschluss vor dem Footer)
   ============================================================ */
.cta-band {
  padding-block: clamp(48px, 7vw, 80px);
  background: var(--signal);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band .lead {
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.88);
}
.cta-band .btn-row {
  justify-content: center;
}
.cta-band .btn--primary {
  background: var(--ink);
}
.cta-band .btn--primary:hover {
  background: #000;
}
.cta-band .btn--line {
  border-color: #fff;
  color: #fff;
}
.cta-band .btn--line:hover {
  background: #fff;
  color: var(--signal);
}

/* ============================================================
   7. PROBLEM
   ============================================================ */
.quote {
  font-family: var(--font-display);
  text-transform: none;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.22;
  color: var(--ink);
  border-left: 5px solid var(--signal);
  padding-left: clamp(18px, 3vw, 28px);
  max-width: 34ch;
}
.loss {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
}
.loss__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.loss__item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.loss__item p {
  font-size: 0.94rem;
}
.loss__no {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--signal);
  display: block;
  margin-bottom: 12px;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 820px) {
  .problem__grid {
    grid-template-columns: 1fr;
  }
  .loss {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   8. WEBSITE-CHECK (Signature)
   ============================================================ */
.check__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  margin-top: 38px;
}
.gauge {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 26px 22px 22px;
  text-align: center;
}
.gauge svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin-inline: auto;
}
.gauge__needle {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition: transform 0.7s cubic-bezier(0.34, 1.3, 0.5, 1);
}
.gauge__score {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: #fff;
  margin-top: -14px;
}
.gauge__score sub {
  font-size: 1.1rem;
  color: #7c858b;
  vertical-align: baseline;
  margin-left: 3px;
}
.gauge__verdict {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-bright);
  margin-top: 10px;
  min-height: 2.4em;
  display: block;
}
.gauge__hint {
  font-size: 0.9rem;
  color: #8a9298;
  margin-top: 12px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 15px 16px;
  font-size: 0.97rem;
  line-height: 1.45;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease;
}
.checklist button:hover {
  border-color: #57626a;
  color: #fff;
}
.checklist .box {
  flex: none;
  width: 23px;
  height: 23px;
  border: 2px solid #4a5359;
  border-radius: 3px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}
.checklist .box svg {
  width: 13px;
  height: 13px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.checklist button[aria-pressed="true"] {
  border-color: var(--erde-gruen);
  background: rgba(78, 122, 30, 0.13);
  color: #fff;
}
.checklist button[aria-pressed="true"] .box {
  background: var(--erde-gruen);
  border-color: var(--erde-gruen);
}
.checklist button[aria-pressed="true"] .box svg {
  opacity: 1;
}
.check__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.check__cta .btn {
  flex: none;
}
@media (max-width: 820px) {
  .check__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gauge {
    order: -1;
  }
}

/* ============================================================
   9. LEISTUNGEN
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--sand);
  transition: background-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -18px rgba(20, 23, 26, 0.35);
}
.card:hover::before {
  background: var(--signal);
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: 0.96rem;
}
.card__icon {
  width: 34px;
  height: 34px;
  color: var(--petrol);
  margin-bottom: 16px;
}
.card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card li {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  display: flex;
  gap: 9px;
}
.card li::before {
  content: "—";
  color: var(--signal);
}
@media (max-width: 820px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   10. ABLAUF
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 2px solid var(--ink);
}
.step {
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child {
  border-right: 0;
}
.step__no {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--sand);
  display: block;
  margin-bottom: 10px;
}
.section--dark .step {
  border-color: var(--line-dark);
}
.section--dark .step__no {
  color: var(--petrol);
}
.step h3 {
  margin-bottom: 8px;
}
.step p {
  font-size: 0.95rem;
}
.step__time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-bright);
  margin-top: 14px;
  display: block;
}
@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .step:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   11. ZIELGRUPPE
   ============================================================ */
.target {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 100px;
}
.chip--off {
  background: transparent;
  border-style: dashed;
  border-color: #b3af9f;
  color: var(--text-dim);
}
@media (max-width: 820px) {
  .target {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   12. ÜBER
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}
.about__photo {
  aspect-ratio: 4/5;
  background: var(--sand);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-align: center;
  padding: 20px;
}
.sig {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-top: 22px;
  display: block;
}
.sig small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__photo {
    max-width: 230px;
  }
}

/* ============================================================
   13. KONTAKT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.form {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9298;
}
.field input,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 13px 14px;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #666f75;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--signal-bright);
  outline: none;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form__note {
  font-size: 0.83rem;
  color: #8a9298;
  margin-top: 4px;
}
.direct {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.direct a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}
.direct a:hover {
  border-color: var(--signal-bright);
  background: rgba(242, 106, 33, 0.07);
}
.direct b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.direct small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9298;
}
.direct svg {
  width: 22px;
  height: 22px;
  color: var(--signal-bright);
  flex: none;
}
@media (max-width: 820px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   14. FOOTER + MOBILE CALLBAR
   ============================================================ */
.footer {
  background: var(--ink);
  color: #7c858b;
  padding: 28px 0 calc(28px + var(--callbar-space, 0px));
  border-top: 1px solid var(--line-dark);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer p,
.footer nav {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.footer nav {
  display: flex;
  gap: 20px;
}

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  box-shadow: 0 -8px 24px rgba(20, 23, 26, 0.18);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 15px 8px;
}
.callbar a.is-primary {
  background: var(--signal);
}
@media (max-width: 860px) {
  .callbar {
    display: grid;
  }
  body {
    --callbar-space: 56px;
  }
}

/* ============================================================
   15. MOTION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
