/* =========================================================
   Monarch Compass — Site Styles
   Colors sourced from logo.svg
   ========================================================= */

:root {
  --navy:       #021830;
  --navy-mid:   #011830;
  --gold:       #cf910f;
  --gold-light: #edbb4a;
  --white:      #ffffff;
  --off-white:  #f5f4f0;
  --gray:       #6b7280;
  --gray-light: #e5e7eb;
  --text:       #1a2332;

  --radius:     6px;
  --max-w:      1120px;
  --section-pad: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lucida Grande', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(207, 145, 15, 0.2);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }

.logo {
  /*height: 44px;*/
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(207,145,15,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-logo {

  position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-55%);
    width: min(1580px, 55vw);
    height: auto;
    opacity: 0.045;
/*

  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-55%);
  width: min(580px, 55vw);
  height: auto;
  opacity: 0.045;*/
  pointer-events: none;
  user-select: none;
  filter: brightness(10);
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-rule {
  max-width: var(--max-w);
  margin: 60px auto 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Sections ── */
.section { padding: var(--section-pad) 32px; }

.section-light { background: var(--off-white); }
.section-dark  { background: #0d1f33; }
.section-navy  { background: var(--navy); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.section-title.light { color: var(--white); }

/* ── About Two-col ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.two-col p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 16px;
}

.two-col p:last-child { margin-bottom: 0; }

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.card {
  background: rgba(255,255,255,0.03);
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.card:hover { background: rgba(207,145,15,0.06); }

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.card-icon svg { width: 100%; height: 100%; }

.card h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
}

.btn-card-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-card-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Pillars ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar-number {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.pillar h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Contact ── */
.contact-intro {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-block {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 28px;
  border: 1px solid rgba(207,145,15,0.35);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}

.contact-link:hover {
  background: rgba(207,145,15,0.1);
  border-color: var(--gold);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── Footer ── */
footer {
  background: #010e1c;
  padding: 40px 32px;
  border-top: 1px solid rgba(207,145,15,0.15);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { height: 36px; width: auto; opacity: 0.8; }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { gap: 20px; }

  .hero { padding: 80px 24px 72px; }

  .section { padding: 64px 24px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero h1 { font-size: 30px; }
}
