:root {
  --navy: #192a41;
  --navy-dark: #101b2b;
  --gold: #947551;
  --gold-light: #b3936a;
  --cream: #f7f5f1;
  --white: #ffffff;
  --text: #26344a;
  --text-muted: #5b6779;
  --border: #e6e2d9;
  --max-width: 1160px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-light); }

.center { text-align: center; }
.section-sub.center { max-width: 560px; margin-left: auto; margin-right: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand-logo { height: 27px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 9px 20px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 200px 0 160px;
  background: var(--navy);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(16, 27, 43, 0.88) 0%, rgba(16, 27, 43, 0.62) 42%, rgba(16, 27, 43, 0.28) 72%, rgba(16, 27, 43, 0.05) 100%),
    linear-gradient(180deg, rgba(16, 27, 43, 0.15) 0%, rgba(16, 27, 43, 0) 30%, rgba(16, 27, 43, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero .eyebrow { color: var(--gold-light); }

.hero h1 { color: var(--white); }

.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold); }

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-inverse {
  border-color: var(--white);
  color: var(--white);
}
.btn-ghost-inverse:hover { background: var(--white); color: var(--navy); }

.btn-primary-inverse {
  background: var(--gold);
  color: var(--white);
}
.btn-primary-inverse:hover { background: var(--gold-light); }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-sub { font-size: 1.05rem; margin-bottom: 40px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--gold);
}

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

.pillar-card h3 { font-size: 1.1rem; }
.pillar-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
}

.leader-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-card h3 { margin-bottom: 4px; }

.leader-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.leader-card p { font-size: 0.94rem; margin-bottom: 0; }

/* Contact */
.section-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  max-width: 640px;
}

.contact-mark {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 220px;
  opacity: 0.08;
  pointer-events: none;
}

.section-dark h2, .section-dark p.light, .light { color: var(--cream); }
.section-dark h2 { color: var(--white); }

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { height: 22px; width: auto; opacity: 0.85; }

.footer-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { align-self: flex-start; }
  .hero { padding: 140px 0 90px; min-height: 560px; }
  .section { padding: 64px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
}
