/* ==========================================================================
   KLINGE — 90-footer.css · Fußzeile (Kohle, schmal)
   Streifenkante, Wortmarke mit Claim, drei Mono-Spalten, Schlussleiste.
   ========================================================================== */

.ft {
  position: relative;
  background: var(--c-coal);
}
.ft__edge { width: 100%; }

/* Wortmarke links, Spalten rechts — auf Desktop nur drei Zeilen hoch */
.ft__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 4vw, 4.5rem);
  align-items: start;
  padding-block: clamp(2.1rem, 3.4vw, 3.2rem);
}

/* ---- Marke --------------------------------------------------------------- */
.ft__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
/* ---- Schlussbild: die Wortmarke füllt die volle Breite -------------------
   Sie sitzt unter den Spalten, wird am unteren Rand angeschnitten und trägt
   den Abschluss der Seite. Optisch bis an beide Gutter, deshalb vw-Maß. */
.ft__signature {
  position: relative;
  overflow: hidden;
  padding-inline: var(--gutter);
  margin-top: clamp(1.5rem, 3vw, 3rem);
  line-height: 0;
}
.ft__sig-word {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  /* Gemessen: „KLINGE" ist in Big Shoulders 800 genau 2,262 × so breit wie hoch.
     Damit füllt das Wort bei jeder Fensterbreite exakt den Satzspiegel. */
  font-size: calc((100vw - 2 * var(--gutter) - 6px) / 2.262);
  line-height: 0.8;
  letter-spacing: -0.022em;
  color: var(--t-strong);
  margin-block-end: -0.09em;    /* Unterkante leicht anschneiden */
  user-select: none;
}
/* Kein Schlusspunkt am Wort: er würde umbrechen und eine leere Zeile erzeugen.
   Das Signalquadrat sitzt stattdessen in der Schlussleiste. */
.ft__hours { color: var(--t-faint); }
.ft__claim {
  font-size: var(--fs-lead);
  line-height: 1.4;
  color: var(--t-body);
  max-width: 32ch;
}
.ft__adr {
  color: var(--t-faint);
  letter-spacing: 0.16em;
}

/* ---- Spalten ------------------------------------------------------------- */
.ft__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: clamp(1.5rem, 3.4vw, 3.6rem);
}
.ft__col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ft__k {
  font-weight: 400;
  color: var(--t-faint);
}
.ft__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ft__a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--t-body);
  transition: color var(--d-fast) var(--e-sleek);
}
.ft__a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-base) var(--e-sleek);
}
.ft__a:hover { color: var(--t-strong); }
.ft__a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---- Schlussleiste ------------------------------------------------------- */
.ft__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: clamp(0.85rem, 1.3vw, 1.2rem);
  border-top: 1px solid var(--line-soft);
}
.ft__copy,
.ft__by { color: var(--t-faint); }
.ft__demo {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--t-muted);
}
.ft__by-a {
  color: var(--t-body);
  border-bottom: 1px solid var(--line-strong);
  transition: color var(--d-fast) var(--e-sleek), border-color var(--d-fast) var(--e-sleek);
}
.ft__by-a:hover {
  color: var(--c-signal);
  border-bottom-color: var(--c-signal);
}

/* Schmaler als Desktop: die Schlussleiste läuft als linksbündige Reihe */
@media (max-width: 1023px) {
  .ft__base { justify-content: flex-start; }
}

/* ---- Mobil: einspaltig, Listen laufen als Zeilen um --------------------- */
@media (max-width: 767px) {
  .ft__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.9rem;
  }
  .ft__cols {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
  }
  .ft__col { gap: 0.35rem; }
  .ft__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 1.35rem;
  }
  .ft__a { min-height: 2.75rem; }
}
