:root {
  --bg: #f4efe6;
  --ink: #1a1a18;
  --warm: #8a7349;
  --muted: #6b665e;
  --border: #c7bfb0;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

a { color: inherit; }

/* === TOPBAR === */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.topbar a { color: inherit; text-decoration: none; }
.topbar .email { color: var(--muted); transition: color 0.3s ease; }
.topbar .email:hover { color: var(--warm); }

/* === HERO === */
.hero {
  text-align: center;
  padding: 7rem 2rem 5rem;
  border-bottom: 1px solid var(--ink);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--warm);
}
.hero .tagline {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
}

/* === SECTION HEADERS === */
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 2.5rem 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm);
}
.section-head::before, .section-head::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--border);
}

/* === BILINGUAL — row-aligned translations === */
.bilingual {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.bi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bi-row + .bi-row {
  border-top: 1px solid var(--border);
}
.bi-row p {
  padding: 1.7rem 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.bi-row p:first-child {
  border-right: 1px solid var(--border);
}
.bi-row em { font-style: italic; color: var(--warm); }
.bi-row.section-break {
  border-top: 1px solid var(--ink);
}

/* === LANGUAGES === */
.languages {
  text-align: center;
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--ink);
}
.languages .label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
}
.languages .list {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
}
.languages .list span {
  margin: 0 0.6rem;
  color: var(--border);
}

/* === AREAS === */
.areas {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--ink);
}
.area {
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease;
}
.area:last-child { border-right: none; }
.area:hover { background: rgba(255,255,255,0.4); }
.area-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: sepia(0.3) saturate(0.85) contrast(0.95);
  transition: filter 0.5s ease;
}
.area:hover .area-photo {
  filter: sepia(0.1) saturate(1) contrast(1);
}
.area-text {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.area h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.2;
}
.area .alt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.area .more {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm);
}

/* === CONTACT === */
.contact {
  text-align: center;
  padding: 5rem 2rem;
}
.contact .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.4;
}
.contact .quote-de {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.contact a {
  color: var(--warm);
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--warm);
  padding-bottom: 2px;
}

/* === FOOTER === */
footer {
  padding: 1rem 2.5rem;
  border-top: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

/* === SUBPAGE === */
.subpage {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.subpage .breadcrumb {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.subpage .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.subpage .breadcrumb a:hover { color: var(--warm); }
.subpage h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}
.subpage h1 .alt {
  display: block;
  color: var(--warm);
  font-size: 0.5em;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
  font-weight: 400;
}
.subpage .placeholder {
  margin-top: 3rem;
  padding: 4rem 2rem;
  border: 1px dashed var(--border);
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
}

/* === RESPONSIVE === */
@media (max-width: 800px) {
  .topbar { padding: 0.8rem 1.2rem; }
  .topbar .email { font-size: 0.6rem; }
  .hero { padding: 4rem 1.2rem 3rem; }
  .bilingual { padding: 0 1.2rem; }
  .bi-row { grid-template-columns: 1fr; }
  .bi-row p:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .areas { grid-template-columns: 1fr; }
  .area { border-right: none; border-bottom: 1px solid var(--border); }
  .area:last-child { border-bottom: none; }
  .area-text { padding: 1.5rem 1.5rem 2rem; }
  .subpage { padding: 4rem 1.5rem; }
}
