/* ============================================================
   SEFODO Landing html_v2, Zusatz-Styles fuer ueber-mich.html
   (laedt nach styles.css)
   ============================================================ */

/* ---------- Hero-Anpassung: quadratisches Portraet ---------- */

.hero-figure img { aspect-ratio: 1 / 1; height: auto; }

/* ---------- Brief / Geschichte ---------- */

.letter {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 1.5rem;
}

.letter-inner {
  max-width: 720px;
  margin: 0 auto;
}

.letter-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 2.2rem;
}

.letter-body p {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

.letter-body p:last-child { margin-bottom: 0; }

.letter-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.28;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding: 0.4rem 0 0.5rem 1.6rem;
  margin: 2.4rem 0;
}

/* ---------- Versprechen ---------- */

.promises { padding: 7rem 0 6rem; }

.bento-promises {
  grid-template-areas:
    "img img img img pre pre pre pre pre pre pre pre"
    "img img img img nut nut nut nut hei hei hei hei";
}

.promise-img    { grid-area: img; }
.promise-preis  { grid-area: pre; }
.promise-nutzer { grid-area: nut; }
.promise-heimat { grid-area: hei; }

.promise-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.promise-preis {
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(179, 90, 52, 0.14), transparent 60%),
    var(--bg-card);
}

.promise-preis h3 { font-size: 1.9rem; }

.promise-heimat { background: var(--bg-2); }

/* ---------- Signatur ---------- */

.signature {
  max-width: var(--container);
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

.signature-note {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 1.6rem;
}

.signature-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1.25;
  color: var(--text);
}

.signature-role {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.4rem;
}

.signature-role a { color: var(--accent); }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .bento-promises {
    grid-template-areas:
      "img img img img img pre pre pre pre pre pre pre"
      "nut nut nut nut nut nut hei hei hei hei hei hei";
  }
}

@media (max-width: 768px) {
  .bento-promises { grid-template-areas: "img" "pre" "nut" "hei"; }
  .promise-img img { max-height: 420px; }
  .letter { padding: 5rem 1.5rem; }
}

/* ---------- Brief-Bild ---------- */

.letter-figure {
  margin-top: 2.6rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.letter-figure img {
  width: 100%;
  height: auto;
  display: block;
}
