/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B2A4A;
  --navy-mid:    #2D4A6F;
  --copper:      #B87333;
  --copper-lt:   #D49B5F;
  --copper-dk:   #8C521E;
  --warm-white:  #FAF9F6;
  --cream:       #F0EDE5;
  --light-steel: #D5DDE5;
  --charcoal:    #2C3E50;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: Calibri, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: Georgia, serif; font-weight: bold; color: var(--navy); }

a { text-decoration: none; transition: color 0.2s ease; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.nav-logo img { width: 280px; }

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

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-family: Calibri, sans-serif;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 0.2s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--copper);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.2s ease;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--copper-lt); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-drawer {
  position: fixed;
  top: 85px;
  right: -100%;
  width: 280px;
  height: calc(100vh - 72px);
  background: var(--navy);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 2rem;
}

.mobile-drawer.open { right: 0; }

.mobile-drawer a {
  display: block;
  color: var(--white);
  font-size: 16px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--navy-mid);
}

.mobile-drawer a:hover { color: var(--copper-lt); }

.mobile-drawer .nav-cta {
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.mobile-overlay.open { display: block; }

/* ===== HOMEPAGE HERO ===== */
.hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: url('assets/medallion-watermark.png') no-repeat center / contain;
  pointer-events: none;
}

.hero-content { max-width: 60%; position: relative; z-index: 1; }

.hero h1 {
  font-size: 48px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 20px;
  color: #E2B87A;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* ===== SUBPAGE HERO (shorter, no watermark) ===== */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: url('assets/medallion-watermark.png') no-repeat center / contain;
  opacity: 0.5;
  pointer-events: none;
}

.page-hero-content { max-width: 760px; position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 44px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-size: 19px;
  color: #E2B87A;
  line-height: 1.55;
  max-width: 680px;
}

/* ===== REUSABLE BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  font-family: Calibri, sans-serif;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover { background: var(--copper-lt); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  font-family: Calibri, sans-serif;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--copper);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover { background: var(--copper); color: var(--white); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ===== PROBLEM STATEMENT ===== */
.problems {
  background: var(--cream);
  padding: 5rem 0;
  border-bottom: 1px solid var(--copper);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.problem-card { text-align: center; }

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg { width: 28px; height: 28px; }

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 0.75rem;
}

.problem-card p { font-size: 16px; line-height: 1.6; }

/* ===== THESIS ===== */
.thesis {
  background: var(--warm-white);
  padding: 5rem 0;
}

.thesis-quote {
  border-left: 4px solid var(--copper);
  padding: 1.5rem 2rem;
  margin-bottom: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.thesis-quote p {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.pillar h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.pillar p { font-size: 15px; color: var(--charcoal); }

/* ===== HOW WE WORK ===== */
.process {
  background: var(--navy);
  padding: 5rem 0;
}

.process h2 {
  text-align: center;
  color: var(--white);
  font-size: 36px;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step { text-align: center; position: relative; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 14px;
  color: var(--light-steel);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 24px;
  right: -0.75rem;
  transform: translateY(-50%);
  color: var(--copper);
  font-size: 20px;
}

.step:last-child .step-arrow { display: none; }

/* ===== BY THE NUMBERS ===== */
.stats {
  background: var(--cream);
  padding: 5rem 0;
}

.stats h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: bold;
  color: var(--copper);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label { font-size: 14px; color: var(--charcoal); }

.stats-source {
  text-align: center;
  margin-top: 2rem;
  font-size: 13px;
  font-style: italic;
  color: var(--navy-mid);
}

/* ===== WHO WE SERVE ===== */
.audiences {
  background: var(--warm-white);
  padding: 5rem 0;
}

.audiences h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 3rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  background: var(--white);
  border-top: 4px solid var(--navy);
  border-radius: 0 0 4px 4px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.audience-card h3 {
  font-size: 20px;
  margin-bottom: 1rem;
}

.audience-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.audience-card a {
  color: var(--copper);
  font-weight: bold;
  font-size: 15px;
}

.audience-card a:hover { color: var(--copper-lt); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 18px;
  color: var(--copper-lt);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SUBPAGE CONTENT SECTIONS ===== */
/* Warm-white prose section for subpage body content */
.content {
  background: var(--warm-white);
  padding: 5rem 0;
}

.content-alt {
  background: var(--cream);
  padding: 5rem 0;
}

.content-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.content h2 {
  font-size: 32px;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content-alt h2 {
  font-size: 32px;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content h3, .content-alt h3 {
  font-size: 22px;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content p, .content-alt p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.content ul, .content-alt ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.content ul li, .content-alt ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.content ul li::before, .content-alt ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
}

/* ===== STEP DETAIL BLOCKS (used on Our Approach) ===== */
.step-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light-steel);
  max-width: 900px;
  margin: 0 auto;
}

.step-detail:last-child { border-bottom: none; }

.step-detail-number {
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: bold;
  color: var(--copper);
  line-height: 1;
}

.step-detail-body h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* ===== FEATURE GRID (3-up cards used on stakeholder subpages) ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--copper);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== CONTACT PAGE BLOCKS ===== */
.contact-hero-email {
  text-align: center;
  padding: 2rem 0 1rem;
}

.contact-hero-email a.email-display {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--navy);
  font-weight: bold;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--copper);
}

.contact-hero-email a.email-display:hover { color: var(--copper); }

.contact-response {
  margin-top: 1.5rem;
  font-size: 15px;
  color: var(--navy-mid);
  font-style: italic;
}

/* ===== COMING SOON (Insights) ===== */
.coming-soon {
  text-align: center;
  padding: 6rem 0;
}

.coming-soon .copper-rule {
  width: 60px;
  height: 3px;
  background: var(--copper);
  margin: 0 auto 2rem;
}

.coming-soon h2 {
  font-size: 28px;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 1.25rem;
  color: var(--charcoal);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

/* Copper accent rule above each footer column — unifies rhythm */
.footer-col::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--copper);
  margin-bottom: 1rem;
}

/* Horizontal lockup: seal + wordmark stack, inside the brand column */
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Seal — turns the cream-background medallion into an intentional corporate seal on navy */
.footer-seal {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--copper);
  box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-seal img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
}

.footer-brand-text { display: flex; flex-direction: column; }

.footer-brand-name {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.footer-tagline {
  font-family: Calibri, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--light-steel);
  line-height: 1.5;
}

.footer h4 {
  color: var(--white);
  font-family: Calibri, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav a {
  display: block;
  color: var(--light-steel);
  font-size: 13px;
  padding: 0.5rem 0;
}

.footer-nav a:hover { color: var(--copper); }

.footer-contact a {
  display: inline-block;
  color: var(--light-steel);
  font-size: 13px;
  padding: 0.25rem 0;
}
.footer-contact a:hover { color: var(--copper); }

.footer-bottom {
  border-top: 1px solid var(--copper);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--light-steel);
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1199px) {
  .hero h1 { font-size: 40px; }
  .hero-content { max-width: 70%; }

  .page-hero h1 { font-size: 36px; }

  .problems-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .step-arrow { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero { padding: 7rem 0 4rem; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero::after { width: 250px; height: 250px; right: -5%; }

  .page-hero { padding: 7rem 0 3rem; }
  .page-hero h1 { font-size: 28px; }
  .page-hero-sub { font-size: 16px; }
  .page-hero::after { width: 200px; height: 200px; right: -15%; }

  .problems { padding: 3rem 0; }
  .problems-grid { grid-template-columns: 1fr; gap: 2rem; }

  .thesis { padding: 3rem 0; }
  .thesis-quote { padding: 1rem 1.25rem; }
  .thesis-quote p { font-size: 18px; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }

  .process { padding: 3rem 0; }
  .process h2 { font-size: 28px; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step-arrow { display: none; }

  .stats { padding: 3rem 0; }
  .stats h2 { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 36px; }

  .audiences { padding: 3rem 0; }
  .audiences h2 { font-size: 28px; }
  .audience-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .cta-band { padding: 3rem 0; }
  .cta-band h2 { font-size: 28px; }

  .content, .content-alt { padding: 3rem 0; }
  .content h2, .content-alt h2 { font-size: 26px; }

  .step-detail {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem 0;
  }
  .step-detail-number { font-size: 48px; }

  .feature-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .contact-hero-email a.email-display { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
