:root {
  --bg: #f7f5f0;
  --panel: #ffffff;
  --text: #202020;
  --muted: #5f625f;
  --line: #d9d3c8;
  --accent: #263f3b;
  --accent-soft: #edf3f1;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.page {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 56px 0 40px;
}

.hero {
  padding: 48px 52px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.45;
}

.sublede {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  margin-top: 28px;
  padding: 32px 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section p {
  margin: 0 0 14px;
}

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

.section p,
.section li {
  font-size: 0.98rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.boundary {
  background: var(--accent-soft);
}

.contact a {
  font-size: 1.08rem;
  font-weight: 700;
}

.footer {
  margin-top: 28px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, var(--max-width));
    padding-top: 28px;
  }

  .hero,
  .section {
    padding: 26px 22px;
    border-radius: 14px;
  }
}
