:root {
  color-scheme: light;
  --background: #f1faef;
  --text: #133d2d;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
}

.site-header {
  display: flex;
  justify-content: flex-start;
  width: min(680px, 100%);
  padding: 0;
}

.logo {
  display: block;
  width: min(250px, 50vw);
  height: auto;
}

.site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vh, 30px);
  padding: clamp(40px, 7vh, 72px) 24px clamp(32px, 5vh, 56px);
}

.statement {
  width: min(680px, 100%);
  margin: 0;
  text-align: left;
  font-size: clamp(0.92rem, 1.3vw, 1.4rem);
  line-height: 1.32;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.11em;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-footer {
  padding: 0 24px clamp(24px, 4vw, 40px);
  text-align: center;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.4;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 4px;
}

@media (max-width: 560px) {
  .site-main {
    gap: 18px;
    padding: 36px 24px 40px;
  }

  .statement {
    font-size: 0.88rem;
    line-height: 1.34;
  }
}
