/* All Reverse Pro — shared styles */
:root {
  --navy: #0f2544;
  --navy-light: #1c3a63;
  --gold: #c9a227;
  --gold-light: #e3c563;
  --ink: #22303f;
  --muted: #5b6b7c;
  --bg: #f7f8fa;
  --white: #ffffff;
  --border: #e3e8ee;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, .serif { font-family: 'Libre Baskerville', Georgia, serif; }

a { color: var(--navy); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #c8d3e0;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* Header / nav */
header.site {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 8px; }
.brand .name {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.brand .name span { color: var(--gold); }
.brand .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }

nav.main { display: flex; align-items: center; gap: 4px; }
nav.main a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
}
nav.main a:hover { background: var(--bg); color: var(--navy); }
nav.main a.active { color: var(--navy); font-weight: 700; box-shadow: inset 0 -2px 0 var(--gold); border-radius: 6px 6px 0 0; }
nav.main a.cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  margin-left: 8px;
}
nav.main a.cta:hover { background: var(--gold-light); }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 6px; padding: 6px 10px; font-size: 1.1rem; cursor: pointer; color: var(--navy); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 70%);
  color: var(--white);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.22), transparent 65%);
}
.hero .kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.2; max-width: 720px; }
.hero p.lead { margin-top: 18px; font-size: 1.08rem; color: #cdd8e4; max-width: 620px; }
.hero .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* Sections */
section.block { padding: 70px 0; }
section.block.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head .kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.75rem; font-weight: 700; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); }
.section-head p { margin-top: 12px; color: var(--muted); }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
section.block.alt .card { background: var(--bg); }
.card .icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.card a.more { margin-top: 16px; font-weight: 600; font-size: 0.88rem; text-decoration: none; color: var(--navy); }
.card a.more:hover { color: var(--gold); }

/* Stats strip */
.stats { background: var(--navy); color: var(--white); padding: 44px 0; }
.stats .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 28px; text-align: center; }
.stats .num { font-family: 'Libre Baskerville', Georgia, serif; font-size: 2.2rem; color: var(--gold-light); }
.stats .label { font-size: 0.85rem; color: #b7c4d2; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }

/* Page hero (interior) */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); padding: 56px 0; }
.page-hero .kicker { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.75rem; font-weight: 600; margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.page-hero p { margin-top: 12px; color: #cdd8e4; max-width: 640px; }

/* Prose */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; }
.prose h2 { color: var(--navy); font-size: 1.4rem; margin: 34px 0 14px; }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Two-column layout */
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.sidebox {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 28px;
}
.sidebox h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.05rem; }
.sidebox p { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.sidebox .contact-line { font-size: 0.95rem; margin-bottom: 8px; }

/* CTA band */
.cta-band { background: var(--navy); color: var(--white); padding: 60px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band p { margin: 12px auto 26px; color: #cdd8e4; max-width: 560px; }

/* Forms */
form.contact { display: grid; gap: 16px; }
form.contact label { font-weight: 600; font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 5px; }
form.contact input, form.contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: var(--white);
}
form.contact input:focus, form.contact textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
form.contact button { justify-self: start; cursor: pointer; border: none; }

/* Footer */
footer.site { background: #0a1a30; color: #9fb0c2; padding: 52px 0 28px; font-size: 0.9rem; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
footer.site h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
footer.site a { color: #c8d3e0; text-decoration: none; display: block; margin-bottom: 8px; }
footer.site a:hover { color: var(--gold-light); }
footer.site .brandline { font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
footer.site .brandline span { color: var(--gold); }
footer.site .legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.8rem; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  nav.main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
  }
  nav.main.open { display: flex; }
  nav.main a.cta { margin-left: 0; text-align: center; }
  .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
}
