/* ============================================================
   salenaburke.com — shared stylesheet
   Palette carried over from the letdi.org ecosystem so
   salenaburke.com, jilss.com and jeromebf.org read as one family.
   ============================================================ */

:root {
  --navy: #0b1220;
  --navy-soft: #131b2e;
  --purple: #6d28d9;
  --purple-dark: #4c1d95;
  --purple-tint: #f2edfb;
  --ink: #16181d;
  --muted: #5b6472;
  --line: #e4e2ea;
  --paper: #ffffff;
  --panel: #f7f6f9;
  --gold: #d97706;

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; max-width: 62ch; }

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

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

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

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

/* ---------- Nav ---------- */
.site-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-nav .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-nav .brand span { color: #a78bfa; }
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.site-nav a.nav-link {
  color: #cbd2e1;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a.nav-link:hover { color: #fff; text-decoration: none; }
.site-nav a.nav-link.current { color: #fff; }
.site-nav .nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.site-nav .nav-cta:hover { background: var(--purple-dark); text-decoration: none; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 88px 0 64px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: #a78bfa;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #a78bfa;
  margin-right: 10px;
  vertical-align: middle;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero .lede {
  color: #cbd2e1;
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: #fff; text-decoration: none; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); text-decoration: none; }

.hero-portrait {
  border-radius: 14px;
  overflow: hidden;
  background: var(--purple-tint);
}
.hero-portrait .avatar {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #7c3aed, #4c1d95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
}
.hero-portrait .caption {
  background: var(--purple);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.85rem;
}
.hero-portrait .caption strong { display: block; font-size: 0.95rem; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 32px;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--purple);
}
.stat .label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head h2 { font-size: 2rem; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.section-alt { background: var(--panel); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark p { color: #cbd2e1; }
.section-dark .section-head p { color: #cbd2e1; }

.pullquote {
  border-left: 3px solid var(--purple);
  background: var(--panel);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* card grids */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
}
.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--purple-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-tint);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.card-dark {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 30px;
  color: #fff;
}
.card-dark p { color: #cbd2e1; }

/* pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.pill {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: #e4e2ea;
}

/* contact list */
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-list a, .contact-list .item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-list a:hover { border-color: var(--purple); text-decoration: none; }

/* ---------- Form ---------- */
.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--purple);
  outline-offset: 1px;
  border-color: var(--purple);
}
textarea { resize: vertical; min-height: 120px; }
.two-field { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.form-status.ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-status.err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: #9aa3b5;
  padding: 40px 0;
  font-size: 0.85rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: #cbd2e1; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
  padding-top: 20px;
  font-size: 0.78rem;
  color: #6b7280;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 260px; }
  .two-col { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: 2.1rem; }
  .site-nav ul { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-field { grid-template-columns: 1fr; }
  footer .wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
