/* ============================================================
   GLOBAL STYLES  (shared across all pages)
   ============================================================ */

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: disc; padding-left: 20px; }

/* ── HEADER ── */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.site-logo img { height: 82px; width: auto; }

/* ── NAV ── */
#site-nav { display: flex; gap: 0; }
#site-nav a {
  display: block;
  padding: 0 18px;
  height: 90px;
  line-height: 90px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
#site-nav a:hover,
#site-nav a.active {
  border-bottom-color: #c8a84b;
  color: #c8a84b;
}

/* ── HERO ── */
.hero-slider {
  position: relative;
  width: 100%;
  background: #1c2b4a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slider-inner {
  text-align: center;
  color: #fff;
  padding: 20px;
}
.hero-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero-slider.hero-short {
  height: 250px;
}
.hero-slider.hero-short .hero-title {
  font-size: 26px;
  letter-spacing: 10px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 43, 74, 0.85) 0%,
    rgba(28, 43, 74, 0.55) 60%,
    rgba(28, 43, 74, 0.3) 100%
  );
  z-index: 1;
}
.hero-slider-inner {
  position: relative;
  z-index: 2;
}

/* ── FOOTER ── */
#site-footer {
  background: #1c2b4a;
  border-top: 3px solid #c8a84b;
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  gap: 0;
}
.footer-nav a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.footer-nav a:hover {
  color: #c8a84b;
  border-bottom-color: #c8a84b;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* ── INTRO ── */
.about-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 50px;
}
.about-intro {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}
.about-intro p + p { margin-top: 14px; }


/* ── WHAT WE DO + WHO WE SERVE ── */
.about-two-col-section {
  background: #f9f9f9;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 60px 40px;
}

.about-two-col-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

.about-col {
  flex: 1;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-col:first-child { padding-left: 0; }
.about-col:last-child  { padding-right: 0; }

.about-col-divider {
  width: 1px;
  background: #e0e0e0;
  flex-shrink: 0;
  margin: 0 10px;
}

.about-col-heading {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
}

.about-service-list {
  font-size: 14px;
  line-height: 2.2;
  color: #555;
  padding-left: 18px;
}

.about-col-text {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.about-learn-more {
  display: inline-block;
  margin-top: 6px;
  padding: 14px 36px;
  background: #1c2b4a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.about-learn-more:hover { background: #2a3e6a; }


/* ── TEAM SECTION ── */
.team-full-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}
.team-full-section h2 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 40px;
}
.team-member-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.team-member-photo {
  flex-shrink: 0;
  width: 300px;
}
.team-member-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-member-name {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.team-member-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c8a84b;
  margin-bottom: 24px;
}
.bio-section { margin-bottom: 20px; }
.bio-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 6px;
}
.bio-section p {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}
.team-member-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 44px 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  #site-header {
    padding: 16px 20px;
    height: auto;
    flex-direction: column;
  }
  #site-nav a { padding: 0 10px; height: 44px; line-height: 44px; font-size: 12px; }
  .hero-slider.hero-short { height: 150px; }
  .hero-slider.hero-short .hero-title { font-size: 20px; }
  .about-two-col-section { padding: 40px 20px; }
  .about-two-col-inner { flex-direction: column; }
  .about-col { padding: 0 0 40px !important; }
  .about-col-divider { width: 100%; height: 1px; margin: 0 0 40px; }
  .team-member-row { flex-direction: column; }
}