@font-face {
  font-family: "ABC Areal";
  src: url("/fonts/ABCAreal-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  font-family: "ABC Areal", Arial, sans-serif;
  color: #6f6f6f;
  background: #fff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: clamp(24px, 5vw, 64px);
  min-height: 100svh;
  font-size: 18px;
  line-height: 1.5;
}

h1, h2, p { margin: 0; }
h1, h2 { font-weight: 400; }
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #d4d4d4;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover { text-decoration-color: currentColor; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }

.home {
  display: grid;
  grid-template-rows: 1fr auto;
}

.identity {
  min-width: 0;
  text-align: center;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68svh;
}

.intro h1 {
  color: #000;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.intro p {
  color: #000;
  margin-top: 18px;
  font-size: clamp(17px, 2.3vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.history {
  margin-top: 40px;
  margin-bottom: 96px;
  font-size: 14px;
  line-height: 1.7;
}

.history ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.history li + li { margin-top: 32px; }
.history li > :first-child { color: #000; }

.language-switch {
  position: absolute;
  top: clamp(24px, 5vw, 64px);
  right: clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.language-switch a { padding-block: 4px; text-decoration: none; }
.language-switch a[aria-current] { text-decoration: underline; text-decoration-thickness: 2px; }


footer {
  text-align: center;
  font-size: 14px;
}

.legal {
  max-width: 760px;
  margin-inline: auto;
}

.legal nav { margin-bottom: 72px; }
.legal nav a, .legal section:first-of-type > p { color: #000; }
.legal h1 { font-size: 36px; letter-spacing: -0.025em; }
.legal h2 { font-size: 18px; margin-bottom: 8px; }
.legal section { margin-top: 32px; }
.legal address { font-style: normal; }
.legal p, .legal address { overflow-wrap: anywhere; }
