/* ============================================================
   SITE HEADER / NAVIGATION
   ============================================================ */

.topbar {
  background: var(--forest-900);
  color: var(--paper);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-contact a,
.topbar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(241, 240, 231, 0.82);
  transition: color 150ms ease;
}

.topbar-contact a:hover { color: var(--brass-200); }

.topbar-contact .icon { width: 14px; height: 14px; }

@media (max-width: 700px) {
  .topbar-contact a[href^="mailto"],
  .topbar-contact span { display: none; }
}

.topbar-portal a {
  color: var(--brass-200);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark { width: 62px; height: 62px; flex-shrink: 0; }

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--forest-900);
  letter-spacing: 0.01em;
}

.brand-name span {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-700);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--forest-900);
  border-bottom-color: var(--brass-500);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-deep);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.nav-toggle .icon { width: 20px; height: 20px; color: var(--forest-900); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}

.mobile-nav {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: block;
  padding: 14px var(--gutter);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  border-top: 1px solid var(--line);
}

.mobile-nav .mobile-cta {
  padding: 16px var(--gutter) 20px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */

.site-footer {
  background: var(--forest-900);
  color: rgba(241, 240, 231, 0.78);
}

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand .brand-mark { width: 44px; height: 44px; }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-row { display: flex; align-items: center; gap: 14px; }

.footer-brand-row strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(241, 240, 231, 0.62);
}

.footer-soar {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--brass-200);
  margin-top: -4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(241, 240, 231, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease, background 150ms ease;
}

.footer-social a:hover {
  border-color: var(--brass-500);
  background: rgba(202, 148, 62, 0.15);
}

.footer-social .icon { width: 15px; height: 15px; color: var(--brass-200); }

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  font-size: 14.5px;
  color: rgba(241, 240, 231, 0.68);
  transition: color 150ms ease;
}

.footer-col a:hover { color: var(--brass-200); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(241, 240, 231, 0.68);
}

.footer-contact .icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--brass-200); }

.footer-bottom {
  border-top: 1px solid rgba(241, 240, 231, 0.14);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(241, 240, 231, 0.5);
}

.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--brass-200); }

/* ============================================================
   CTA BAND (used across all pages)
   ============================================================ */

.cta-band {
  background: var(--forest-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.cta-band .container {
  padding-top: 76px;
  padding-bottom: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(26px, 3vw, 34px);
  max-width: 480px;
  margin-bottom: 10px;
}

.cta-band p { color: rgba(241, 240, 231, 0.7); font-size: 15px; max-width: 460px; }

.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-band-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  opacity: 0.06;
  pointer-events: none;
}

@media (max-width: 700px) {
  .cta-band-watermark { display: none; }
}
