/* Anna Sgroi – statische Website
   Keine externen Schriften, kein Tracking, keine externen Requests.
   Selbst gehostet auf Strato. */

:root {
  --ink: #1b1b1a;
  --muted: #6a6a66;
  --line: #e3e0d9;
  --bg: #ffffff;
  --green: #607040;
  --accent: #607040;
  --font: "Helvetica Neue", "Segoe UI", system-ui, -apple-system, Roboto,
    "Arial", sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* ---------- Kopfbereich ---------- */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 46px 24px 10px;
  text-align: center;
}

.wordmark {
  text-decoration: none;
  letter-spacing: 0.32em;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
}
.logo-img {
  width: min(320px, 66vw);
  height: auto;
  margin: 0 auto;
}

.lang {
  display: flex;
  gap: 18px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lang a { text-decoration: none; color: var(--muted); }
.lang a.active { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.lang a:hover { color: var(--ink); }

/* ---------- Inhalt ---------- */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  text-align: center;
}

/* Zusammengehalten: bricht auf breiten Screens nicht um,
   auf schmalen Geräten normaler, sauberer Umbruch. */
.nb { white-space: normal; }
@media (min-width: 980px) {
  .nb { white-space: nowrap; }
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: 0.14em;
  font-weight: 300;
  color: var(--green);
  margin: 30px 0 6px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 0.18em;
  font-weight: 300;
  color: var(--green);
  text-transform: uppercase;
  margin: 8px 0 22px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 30px;
}

main p { margin: 0 0 20px; text-wrap: balance; }

.hero-title, .section-title { text-wrap: balance; }

.lead p { font-size: 20px; }

.portrait {
  margin: 40px auto;
  max-width: 560px;
}
.portrait img { margin: 0 auto; border-radius: 2px; }

/* Platzhalter für das Portraitfoto, bis die Originaldatei eingesetzt ist */
.portrait .placeholder {
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #faf9f6;
  padding: 20px;
}

.bio p { color: var(--ink); }
.bio .keywords {
  color: var(--muted);
  font-style: italic;
  font-size: 17px;
}

.divider {
  width: 46px;
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 48px auto;
}

.signature {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Kontakt ---------- */
.contact { margin-top: 8px; }
.contact a.mail {
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  white-space: nowrap;
}
.contact a.mail:hover { color: var(--muted); border-color: var(--muted); }

/* ---------- Fußbereich ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 40px 24px 60px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.site-footer .brand {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 10px;
}
.site-footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14px 0;
}
.site-footer nav a { text-decoration: none; color: var(--muted); }
.site-footer nav a:hover { color: var(--ink); }
.site-footer .social {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}
.site-footer .social a { text-decoration: none; color: var(--muted); }
.site-footer .social a:hover { color: var(--ink); }

/* ---------- Rechtstexte ---------- */
.legal { text-align: left; max-width: 820px; }
.legal h1 { font-size: 40px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 30px; }
.legal h2 { font-size: 22px; font-weight: 400; margin: 34px 0 10px; }
.legal h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.legal p { margin: 0 0 14px; }
.legal address { font-style: normal; margin: 0 0 20px; line-height: 1.8; }
.legal .small { font-size: 15px; color: var(--muted); }

@media (max-width: 540px) {
  body { font-size: 18px; }
  .site-header { padding-top: 34px; }
  .wordmark { font-size: 24px; letter-spacing: 0.24em; }
}
