@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Lora:wght@400;500&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --text: #232323;
  --muted: #5b5b5b;
  --rule: #dddddd;
  --accent: #2a5b9f;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 85%);
}

.page-shell {
  min-height: 100svh;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(56px, 11vh, 120px) 26px 84px;
  position: relative;
  z-index: 1;
}

.site-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.92;
}

h1 {
  margin: 14px 0 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
}

.statement {
  margin-top: 52px;
}

.statement p {
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.15rem);
  line-height: 1.9;
  color: var(--muted);
}

.statement p + p {
  margin-top: 28px;
}

.contact-note {
  margin: 54px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--muted);
}

.contact-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.contact-note a:hover,
.contact-note a:focus-visible {
  color: #1d467d;
}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 44px;
  }

  h1 {
    margin-top: 10px;
    line-height: 1.24;
  }

  .statement {
    margin-top: 38px;
  }

  .statement p + p {
    margin-top: 22px;
  }
}