/* Trinity North — MSP site styles (black & gold) */

:root {
  --bg: #0b0b0c;
  --bg-elevated: #0e0e10;
  --card: #141416;
  --border: #26262a;
  --border-soft: #1e1e21;
  --gold: #c9a227;
  --gold-light: #e4b84b;
  --gold-dim: #4a3d13;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --dim: #8a8a90;
  --faint: #6a6a70;
  --radius: 8px;
  --radius-lg: 12px;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 7px; font-family: "Sora", "Inter", sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; text-transform: uppercase; }
.brand .mark-img { width: 38px; height: 38px; display: block; flex: none; }
.brand .gold { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav-links a { color: var(--muted); transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; line-height: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}
.btn:active { transform: scale(0.98); }
.btn-gold, .nav-links a.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover, .nav-links a.btn-gold:hover { background: var(--gold-light); color: #000; }
.btn-ghost { border-color: #3a3a3e; color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-sm { padding: 9px 16px; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 90px 0 74px; }
.hero-logo { width: 84px; height: 84px; display: block; margin: 0 auto 24px; }
.eyebrow {
  display: inline-block;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 600; line-height: 1.15; max-width: 660px; margin: 0 auto 20px; }
.hero p { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 auto 30px; }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gold-text { color: var(--gold-light); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-elevated); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 28px; font-weight: 600; margin-bottom: 10px; }
.section-head p { color: var(--dim); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* ---------- Service cards ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card .icon { color: var(--gold-light); font-size: 26px; line-height: 1; margin-bottom: 16px; }
.card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 66px 0; }
.cta-band h2 { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.cta-band p { color: var(--muted); margin-bottom: 26px; }

/* ---------- About ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.prose p strong { color: var(--text); font-weight: 600; }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 44px; }
.value { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.value .icon { color: var(--gold-light); font-size: 22px; margin-bottom: 12px; }
.value h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 13.5px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 600; margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-item .icon { width: 42px; height: 42px; flex: none; border-radius: 9px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 20px; }
.contact-item .label { font-size: 12px; color: var(--dim); }
.contact-item .value { font-size: 15px; color: var(--text); border: 0; padding: 0; border-radius: 0; display: block; margin-top: 2px; text-decoration: none; }
.contact-item a.value:hover { color: var(--gold-light); }
.form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn-gold { width: 100%; text-align: center; }
.form-note { font-size: 12px; color: var(--faint); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 40px 0 32px; margin-top: 20px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--dim); font-size: 13.5px; margin-top: 12px; }
.footer-col h4 { font-size: 13px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.03em; }
.footer-col a { display: block; color: var(--muted); font-size: 13.5px; margin-bottom: 9px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border-soft); margin-top: 32px; padding-top: 22px; display: flex; justify-content: space-between; font-size: 12.5px; color: var(--faint); flex-wrap: wrap; gap: 8px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 66px 0 44px; text-align: center; border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: 36px; font-weight: 600; margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: 16px; }
.page-hero-logo { width: 60px; height: 60px; display: block; margin: 0 auto 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-soft);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 24px; width: 100%; }
  .nav-links .btn { margin: 10px 24px; text-align: center; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid 