:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --surface: #ffffff;
  --ink: #18201b;
  --muted: #5c665f;
  --line: #ddd6ca;
  --accent: #0d7f6f;
  --accent-strong: #075c51;
  --warm: #e9c46a;
  --max: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 2;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 16px 22px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  height: 34px;
  width: 34px;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.hero,
.page {
  margin: 0 auto;
  max-width: var(--max);
  padding: 56px 22px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 180px;
}

.hero img {
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(24, 32, 27, 0.16);
  width: 100%;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  max-width: 780px;
}

h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 38px 0 10px;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 26px 0 8px;
}

p {
  margin: 0 0 14px;
}

.lede {
  color: var(--muted);
  font-size: 1.14rem;
  margin-top: 18px;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 750;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.info-card h2 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.info-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.document {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

.document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.document li {
  margin: 6px 0;
}

.note {
  background: #fff8df;
  border: 1px solid #ead58c;
  border-radius: 8px;
  margin: 24px 0;
  padding: 16px;
}

.meta {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 28px;
  padding: 28px 22px 42px;
}

.footer-inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-inner a {
  color: var(--muted);
  margin-left: 16px;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .hero img {
    max-width: 150px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .document {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-inner a {
    display: inline-block;
    margin: 0 14px 0 0;
  }
}
