/* =========================================================
   Peck Stelzer Partners — Shared Stylesheet
   ========================================================= */

:root {
  --navy:         #0f1e35;
  --navy-mid:     #1a2e4a;
  --accent:       #2d6cdf;
  --accent-light: #4a87f5;
  --gold:         #c9a84c;
  --off-white:    #f7f8fa;
  --text:         #1c2532;
  --text-muted:   #5a6478;
  --border:       #e2e6ed;
  --white:        #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 68px;
}

.nav-logo {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 3px;
  font-weight: bold;
}

.nav-cta:hover { opacity: 0.88; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.8rem 1.5rem; }
  .nav-cta { margin: 0.5rem 6%; }
}

/* ── RULE ── */
.rule {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  background-image: linear-gradient(135deg, #0f1e35 0%, #1a3060 100%);
  padding: 80px 6% 70px;
}

.page-hero-inner { max-width: 760px; }

.page-hero .eyebrow {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.page-hero p {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.75;
}

/* ── SECTION HEADINGS ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header.left { text-align: left; }

.eyebrow {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: normal;
  color: var(--navy);
  line-height: 1.25;
}

.section-header p {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.75;
}

.section-header.left p { margin-left: 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: #09131f;
  padding: 50px 6%;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
}
.footer-logo span { color: var(--gold); opacity: 0.7; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── CTA SECTION (shared) ── */
.cta-section {
  background: var(--navy);
  background-image: linear-gradient(135deg, #0f1e35 0%, #1a3060 100%);
  padding: 100px 6%;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-section .btn-primary { margin-right: 0.75rem; }

/* ── UTILITY ── */
.container { max-width: 1060px; margin: 0 auto; }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
em.styled { font-style: italic; color: var(--gold); }
