/* ── VARIABLES ─────────────────────── */
:root {
  --navy:         #0B1628;
  --navy-mid:     #1E3A5F;
  --orange:       #E8732A;
  --orange-dark:  #C4611A;
  --amber:        #D97706;
  --grey-light:   #F9FAFB;
  --grey-border:  #E5E7EB;
  --grey-text:    #6B7280;
  --grey-muted:   #9CA3AF;
  --grey-dark:    #374151;
  --text:         #111827;
  --white:        #FFFFFF;
}

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

body {
  font-family: 'Inter', -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

/* ── NAVIGATION ─────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  height: 64px;
}

.site-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo img {
  width: 150px;
  height: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.site-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-mid);
  padding: 8px 16px;
  transition: color 0.15s;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--orange);
}

.site-nav__cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  margin-left: 16px;
  transition: background 0.15s;
  white-space: nowrap;
}

.site-nav__cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.site-nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.site-nav__mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 99;
}

.site-nav__mobile-menu.is-open {
  display: block;
}

.site-nav__mobile-menu a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid var(--grey-border);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-mid);
  min-height: 44px;
}

.site-nav__mobile-menu a:last-child {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}

@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .site-nav__hamburger { display: flex; }
}

/* ── FOOTER ─────────────────────────── */
.site-footer {
  /* Two-band container — no background here */
}

/* Band 1: cream logo band */
.site-footer__band-logo {
  background: #F2EDE4;
}

/* Band 2: dark legal band */
.site-footer__band-legal {
  background: var(--navy);
  border-top: 1px solid #E5E7EB;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__legal-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* TODO: If a white-on-dark footer variant is needed, use a separate
   white logo file (Logo_Horizontal_white.png) rather than CSS filter. */
.site-footer__logo img {
  width: 160px;
  display: block;
  margin-bottom: 16px;
}

.site-footer__tagline {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 12px;
}

.site-footer__meta {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.8;
}

.site-footer__meta a {
  color: #E8732A;
  text-decoration: none;
}

.site-footer__meta a:hover {
  text-decoration: underline;
}

.site-footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 800px;
}

.site-footer__legal p {
  margin-bottom: 12px;
}

.site-footer__legal p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .site-footer__band-logo {
    text-align: center;
  }
  .site-footer__inner {
    align-items: center;
    text-align: center;
  }
  .site-footer__logo {
    margin: 0 auto;
  }
  .site-footer__logo img {
    margin: 0 auto 16px;
  }
  .site-footer__tagline,
  .site-footer__meta {
    text-align: center;
  }
}

/* ── INNER PAGE LAYOUT ───────────────── */
.page-hero {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-border);
  padding: 72px 24px 56px;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  font-size: 18px;
  color: var(--grey-text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 16px; }
}

.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.content-wrap--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px;
}

@media (max-width: 600px) {
  .content-wrap,
  .content-wrap--narrow {
    padding: 40px 20px;
  }
}

/* ── SECTION HEADINGS ───────────────── */
.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-intro {
  font-size: 16px;
  color: var(--grey-text);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 640px;
}

/* ── CTA SECTION ────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-section .btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.15s;
}

.cta-section .btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

@media (max-width: 600px) {
  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 24px; }
  .cta-section .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ── ACCORDION ──────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--grey-border);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  gap: 16px;
}

.accordion-trigger__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.accordion-trigger__icon {
  font-size: 12px;
  color: var(--grey-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-trigger__icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content__inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--grey-dark);
  line-height: 1.75;
}

.accordion-content__inner p {
  margin-bottom: 12px;
}

.accordion-content__inner p:last-child {
  margin-bottom: 0;
}
