:root {
  --bg: #f7f0e3;
  --ink: #1f2a22;
  --ink-soft: #4a5a4f;
  --accent: #2f4435;
  --rule: #d9cdb6;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 28px 64px;
}

.lang-switch {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  color: var(--ink-soft);
}

.lang-switch a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 2px 4px;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}

.lang-switch a:hover {
  color: var(--accent);
}

.lang-switch a.active {
  color: var(--accent);
  font-weight: 500;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--accent);
  line-height: 1;
  margin: 0;
}

.brand-logo {
  display: block;
  max-width: 220px;
  max-height: 240px;
  width: auto;
  height: auto;
}

.brand-contact {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

.brand-contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 120ms ease;
}

.brand-contact a:hover {
  border-bottom-color: var(--accent);
}

.prose p {
  margin: 0 0 20px;
  color: var(--ink);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose p.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px;
}

.footer {
  margin-top: 80px;
  font-size: 12px;
  color: var(--ink-soft);
}

.footer p {
  margin: 0;
}

@media (max-width: 480px) {
  .page {
    padding: 24px 22px 48px;
  }

  .lang-switch {
    margin-bottom: 36px;
  }

  .brand {
    margin-bottom: 48px;
  }
}
