:root {
  --page-width: 1200px;
  --text: #121212;
  --muted: #595959;
  --border: #d9d9d9;
  --surface: #f3f3f3;
  --white: #ffffff;
  --accent: #121212;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.announcement {
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: var(--surface);
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.hero-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  width: 100%;
  padding: 4rem 1rem;
  text-align: center;
}

.hero-logo {
  width: min(560px, 76vw);
  margin: 0 auto 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.18;
  font-weight: 500;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}

.button.secondary {
  background: var(--white);
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  background: var(--white);
}

.card-body {
  padding: 1.1rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface);
}

.product-card .meta {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card .button {
  width: 100%;
}

.report-list {
  border-top: 1px solid var(--border);
}

.report-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.split img {
  width: 100%;
  border: 1px solid var(--border);
}

.narrow {
  max-width: 820px;
}

.legal h2 {
  margin-top: 2.2rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.contact-box {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 840px) {
  .nav-wrap {
    grid-template-columns: 44px 1fr 44px;
    min-height: 92px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 1;
    grid-row: 1;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    font-size: 1.7rem;
    color: #555;
  }

  .brand img {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 0 0;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 142px);
  }

  .hero-inner {
    padding-top: 3rem;
  }

  .hero-logo {
    width: min(520px, 82vw);
  }

  .grid-2,
  .grid-3,
  .split,
  .report-item,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
