:root {
  --bg: #f8f7f3;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;
  --line: #d8d6cf;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Comfortaa", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem min(6vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
}

.lang-switch {
  display: flex;
  gap: 0.65rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-switch a {
  text-decoration: none;
  color: var(--muted);
}

.lang-switch a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lead {
  margin: 0 auto;
  max-width: 30ch;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.divider {
  width: 3rem;
  height: 1px;
  margin: 2rem auto 0;
  background: var(--text);
}
