/* sassalexander.de — minimal, on-brand with Echo's design system */

:root {
  --bg: #FAFAF9;          /* stone-50 */
  --bg-card: #FFFFFF;
  --text: #1C1917;        /* stone-900 */
  --text-muted: #57534E;  /* stone-600 */
  --text-faint: #A8A29E;  /* stone-400 */
  --border: #E7E5E4;      /* stone-200 */
  --accent: #D97706;      /* amber-600 */
  --link: #1C1917;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

header.site-header .brand {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

header.site-header nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

header.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 120ms ease;
}

header.site-header nav a:hover { color: var(--text); }

h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
  display: block;
}

.subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 48px;
}

h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 56px 0 12px;
  line-height: 1.25;
}

h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 32px 0 8px;
}

p { margin: 0 0 16px; }

p, li {
  font-size: 15px;
  color: var(--text);
}

a { color: var(--link); }

ul, ol {
  padding-left: 24px;
  margin: 0 0 16px;
}

li { margin-bottom: 6px; }

dl {
  margin: 0 0 16px;
}

dl dt {
  font-weight: 600;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

dl dd {
  margin: 0 0 8px;
  font-size: 15px;
}

.placeholder {
  background: rgba(217, 119, 6, 0.08);
  color: #92400E;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin: 24px 0;
}

footer.site-footer {
  margin-top: 96px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site-footer a {
  color: var(--text-faint);
  text-decoration: none;
}

footer.site-footer a:hover { color: var(--text-muted); }

.lang-toggle {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.lang-toggle a {
  color: var(--text-faint);
  text-decoration: none;
  margin-right: 12px;
}

.lang-toggle a.active {
  color: var(--text);
  font-weight: 600;
}

/* Landing-page hero card */
.hero {
  margin-top: 24px;
}

.hero .lead {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.project-card h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.project-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 600px) {
  .container { padding: 40px 20px 64px; }
  h1 { font-size: 30px; }
  header.site-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
