:root {
  --navy: #0f2a3d;
  --steel: #1d4e6b;
  --accent: #c97a2b;
  --light-bg: #f5f7f8;
  --text: #2b2f33;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  background: var(--navy);
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.logo-mark {
  width: 84px;
  height: 84px;
  color: var(--accent);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #b9c6cf;
}

nav a {
  color: white;
  margin-left: 28px;
  font-weight: 500;
}
nav a:hover { color: var(--accent); text-decoration: none; }

.hero {
  background:
    linear-gradient(135deg, rgba(15,42,61,0.94), rgba(29,78,107,0.94)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 40px);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #dce6ec;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover { background: #b5691f; text-decoration: none; }

.stats {
  background: var(--steel);
  color: white;
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #dce6ec;
  margin-top: 4px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--light-bg);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 36px;
  color: var(--navy);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid #e1e6e9;
  border-top: 3px solid var(--accent);
  border-radius: 6px;
  padding: 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

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

.card h3 {
  color: var(--steel);
  margin-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.about-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.credentials {
  background: white;
  border: 1px solid #e1e6e9;
  border-radius: 6px;
  padding: 24px;
}

.credentials h3 { margin-top: 0; color: var(--navy); }
.credentials ul { padding-left: 20px; }
.credentials li { margin-bottom: 8px; }

.contact-info p {
  font-size: 1.1rem;
}

.site-footer {
  background: var(--navy);
  color: #b9c6cf;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  nav a { margin-left: 16px; font-size: 0.9rem; }
  .hero h1 { font-size: 1.8rem; }
}
