:root {
  --plum: #702863;
  --teal: #004667;
  --light: #DEE2E3;
  --sage: #7A9E7E;
  --white: #FFFFFF;
  --text: #1f2a30;
  --max-width: 1180px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.topbar {
  background: var(--teal);
  color: var(--white);
  font-size: 0.95rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); }

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

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 8px solid var(--plum);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand-mark-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  flex: 0 0 64px;
}
.brand-text {
  min-width: 0;
}
.brand-text .eyebrow {
  display: block;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-text .title {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
}
.brand-text .subtitle {
  display: block;
  font-size: 0.88rem;
  color: #5e6a70;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.1rem;
  flex-wrap: wrap;
  align-items: center;
}
nav a {
  color: var(--text);
  font-weight: 600;
}
nav a.active,
nav a:hover {
  color: var(--plum);
  text-decoration: none;
}

.button-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-light {
  background: var(--white);
  color: var(--teal);
  border: 1px solid rgba(0,0,0,0.08);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(122,158,126,0.18), transparent 32%),
    linear-gradient(180deg, rgba(0,70,103,0.07), transparent 100%);
  padding: 5rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.75rem 0;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 70, 103, 0.16);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--color-white);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
  color: var(--teal);
  margin: 0 0 1rem;
}
.hero .kicker,
.page-hero .kicker {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.hero p.lead,
.page-hero p.lead {
  font-size: 1.16rem;
  max-width: 58ch;
}
.hero-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.hero-card .stat {
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-card .stat:first-child { border-top: 0; padding-top: 0; }
.hero-card strong {
  display: block;
  color: var(--sage);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-card span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}
.stats-band {
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.12), rgba(222, 226, 227, 0.55));
  padding: 2.2rem 0;
  border-top: 1px solid rgba(0, 70, 103, 0.06);
  border-bottom: 1px solid rgba(0, 70, 103, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--color-secondary);
  font-size: 2rem;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat span {
  color: var(--color-muted);
  font-weight: 600;
}

.page-hero {
  padding: 4rem 0 2.25rem;
  background: linear-gradient(180deg, rgba(112,40,99,0.08), rgba(0,70,103,0.03));
}

section.section {
  padding: 4rem 0;
}
section.section.alt {
  background: #f7f9fa;
}
section.section.teal {
  background: var(--teal);
  color: var(--white);
}
section.section.plum {
  background: var(--sage);
  color: var(--white);
}
section.section.teal h2,
section.section.plum h2,
section.section.teal h3,
section.section.plum h3,
section.section.teal p,
section.section.plum p,
section.section.teal li,
section.section.plum li { color: var(--white); }

h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--sage);
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.eyebrow {
  display: inline-block;
  color: var(--sage);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.section.teal .eyebrow,
.section.plum .eyebrow { color: rgba(255,255,255,0.8); }

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}
.card.dark-outline {
  border-top: 5px solid var(--sage);
}
.card.teal-outline {
  border-top: 5px solid var(--teal);
}
.card p:last-child,
.card ul:last-child { margin-bottom: 0; }

.section.teal .card h3,
.section.plum .card h3 { color: var(--sage); }
.section.teal .card p,
.section.teal .card li,
.section.plum .card p,
.section.plum .card li { color: var(--text); }
.section.teal .card li::before,
.section.plum .card li::before { color: var(--sage); }

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.7rem;
}
.list-clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

.split-callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}
.callout-box {
  background: linear-gradient(135deg, var(--teal), var(--sage));
  color: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.callout-box h3,
.callout-box p,
.callout-box li { color: var(--white); }

.timeline {
  border-left: 4px solid rgba(122,158,126,0.35);
  padding-left: 1.5rem;
}
.timeline-item {
  margin-bottom: 1.5rem;
}
.timeline-item strong {
  display: block;
  color: var(--sage);
  margin-bottom: 0.3rem;
}

.notice {
  padding: 1.15rem 1.25rem;
  border-left: 5px solid var(--sage);
  background: rgba(122,158,126,0.10);
  border-radius: 12px;
}

.cta-band {
  padding: 3rem 0;
  background: linear-gradient(90deg, var(--teal), var(--sage));
  color: var(--white);
}
.cta-band h2,
.cta-band p { color: var(--white); }

footer.site-footer {
  background: #10242e;
  color: var(--white);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}
footer a { color: rgba(255,255,255,0.92); }
footer .muted { color: rgba(255,255,255,0.72); }

.small { font-size: 0.94rem; }
.muted { color: #5f6b71; }
.center { text-align: center; }
.spacer-top { margin-top: 1.5rem; }

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.linkedin-link {
    color: #DEE2E3;
    transition: color 0.2s ease;
}

.linkedin-link:hover {
    color: #ffffff;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-callout,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul { gap: 0.8rem 1rem; }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  section.section { padding: 3rem 0; }
  .brand-text .title { font-size: 1.4rem; }
  .btn { width: 100%; text-align: center; }
  .button-group { width: 100%; }
}

@media (max-width: 640px) {
  .brand-mark-image { width: 52px; height: 52px; flex-basis: 52px; }
}
