/* ============================================================
   Compton Core — theme tokens
   Matches the logo palette: navy (assets/logo-mark.png) + gold.
   Change these 6 vars and the whole site re-themes.
   ============================================================ */
:root {
  --brand:        #253340;  /* primary — logo navy */
  --brand-dark:   #16212c;  /* primary, darker (hovers) */
  --accent:       #8a6438;  /* accent / highlight — logo gold, deepened for text contrast */
  --bg:           #fdfcfb;  /* page background */
  --surface:      #f6f3ee;  /* cards / raised surfaces */
  --text:         #1f2d3d;  /* body text */

  --text-muted:   #5b6b7a;
  --border:       rgba(37, 51, 64, 0.12);
  --radius:       14px;
  --maxw:         1120px;
  --shadow:       0 10px 30px rgba(37, 51, 64, 0.08);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 30px; font-size: 1.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.brand-name { font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--text-muted); font-size: .95rem; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn-primary { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(600px 300px at 70% -10%, color-mix(in srgb, var(--brand) 10%, transparent), transparent),
    radial-gradient(500px 260px at 10% 10%, color-mix(in srgb, var(--accent) 14%, transparent), transparent);
}
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; margin: 0 0 18px; }
.accent { color: var(--accent); }
.lead { font-size: 1.2rem; color: var(--text-muted); margin: 0 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; color: var(--text-muted); font-size: .95rem; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: center; margin: 0 0 44px; }

.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 8px 0 8px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--text-muted); }
.card-icon { font-size: 1.7rem; }
.card .btn { margin-top: 18px; }

/* ---------- OKC ---------- */
.okc-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.okc-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  text-align: left;
  max-width: 380px;
}
.okc-list li { color: var(--text-muted); padding-left: 24px; position: relative; }
.okc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 0 0 12px; }
.cta-inner p { color: var(--text-muted); margin: 0 0 26px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.muted { color: var(--text-muted); font-size: .9rem; }

@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
}
