:root {
  --ink: #15171c;
  --muted: #5c6472;
  --accent: #ef4a17;
  --line: #e5e8ee;
  --bg: #ffffff;
  --wash: #f7f8fa;
  --max: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.45rem; margin-top: 48px; }
h3 { font-size: 1.05rem; margin-top: 32px; font-weight: 500; }

p { margin: 0 0 18px; }

ul { margin: 0 0 18px; padding-left: 22px; }
li { margin-bottom: 8px; }

/* ---------- header ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  flex-wrap: wrap;
}

.site-header img { display: block; width: 190px; height: auto; }

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
}

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

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: url('sgbg.jpg') no-repeat center center;
  background-size: cover;
  padding: 96px 0 104px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.88);
}

.hero .wrap { position: relative; }

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: #3b4252;
  max-width: 640px;
  margin: 0 auto 12px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}

/* ---------- sections ---------- */

section { padding: 64px 0; }
section.alt { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section > .wrap > h2:first-child { margin-top: 0; }

.lede { font-size: 1.08rem; max-width: 720px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
}

.card h3 { margin-top: 0; margin-bottom: 10px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }

.badge-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.badge-row img { width: 140px; height: auto; }
.badge-row p { margin: 0; color: var(--muted); font-size: 0.9rem; max-width: 460px; }

/* ---------- legal / content pages ---------- */

.page { padding: 56px 0 72px; }
.page .wrap { max-width: 760px; }
.page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.page h2 { font-size: 1.25rem; }

.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 18px; }
.contact-list strong { display: block; font-weight: 500; }
.contact-list span { color: var(--muted); font-size: 0.92rem; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--wash);
  padding: 40px 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer p { margin: 0 0 6px; }
.site-footer .legal { max-width: 460px; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer nav a { color: var(--muted); }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 64px 0 72px; }
  .hero h1 { font-size: 1.9rem; }
  h1 { font-size: 1.7rem; }
  .nav { gap: 16px; font-size: 0.85rem; }
  .site-header .wrap { min-height: 0; padding-top: 14px; padding-bottom: 14px; }
}
