:root {
  color-scheme: light;
  --background: #ffffff;
  --foreground: #000000;
  --muted: #000000;
  --page-gutter: clamp(24px, 6vw, 36px);
  --content-gap: 32px;
  --hero-logo-space: 111px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--background);
  color: var(--foreground);
  font-family: "Sohne", "Söhne", "Neue Haas Grotesk Text",
    "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.page {
  display: grid;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(88px, 17vh, 150px) var(--page-gutter) var(--page-gutter);
  place-items: start center;
}

.intro {
  width: 100%;
  margin-top: var(--hero-logo-space);
  text-align: center;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.statement {
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: var(--content-gap) 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact a {
  color: var(--foreground);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 0 0 auto;
  padding: 0 var(--page-gutter) 56px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.footer-mark {
  display: block;
  width: 72px;
  height: auto;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.location-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .page {
    padding-top: clamp(84px, 16vh, 112px);
  }
}
