:root {
  --navy: #18243a;
  --navy-deep: #111a2a;
  --cream: #f7f3ed;
  --sand: #efe6d9;
  --white: #ffffff;
  --text: #243244;
  --muted: #667487;
  --line: #dde5ee;
  --gold: #c88a3d;
  --gold-soft: #f6ede1;
  --shadow: 0 20px 55px rgba(17, 26, 42, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.top-strip { height: 8px; background: linear-gradient(90deg,#e5243b 0 6%,#dda63a 6% 12%,#4c9f38 12% 18%,#c5192d 18% 24%,#ff3a21 24% 30%,#26bde2 30% 36%,#fcc30b 36% 42%,#a21942 42% 48%,#fd6925 48% 54%,#dd1367 54% 60%,#fd9d24 60% 66%,#bf8b2e 66% 72%,#3f7e44 72% 78%,#0a97d9 78% 84%,#56c02b 84% 90%,#00689d 90% 96%,#19486a 96% 100%); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { font-weight: 800; font-size: 1.1rem; color: var(--navy); letter-spacing: 0.01em; }
.nav-toggle { display: none; }
.nav-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; }
.nav-menu a { color: var(--muted); font-weight: 600; }
.nav-menu a.active, .nav-menu a:hover { color: var(--navy); }
.hero { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); padding: 44px 0 28px; }
.hero-grid, .page-hero-grid, .services-hero-grid, .contact-grid, .split-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(340px,480px); gap: 42px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; font-weight: 700; }
.hero h1, .page-hero h1 { margin: 0; color: var(--navy); line-height: 1.06; }
.hero h1 { font-size: clamp(2.55rem, 5vw, 4.8rem); }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
.lead { font-size: 1.08rem; color: var(--muted); margin-top: 18px; }
.hero-card, .image-card, .panel, .quote-card, .cta-band, .form-card, .info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.hero-card img, .image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-plain, .service-image-plain { border-radius: 0; overflow: visible; border: 0; box-shadow: none; background: transparent; }
.hero-photo-plain img, .service-image-plain img { border-radius: 0; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border-radius: 999px; font-weight: 700; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-secondary { border: 1px solid var(--line); color: var(--navy); background: #fff; }
.metrics { padding: 12px 0 16px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.metric { text-align: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.metric strong { display: block; color: var(--navy); font-size: 1.72rem; }
.section { padding: 58px 0; }
.section-light { background: var(--cream); }
.intro-section { padding-top: 20px; }
.intro-heading { margin-bottom: 16px; }
.intro-copy { max-width: 900px; }
.section-heading { max-width: 760px; margin-bottom: 26px; }
.section-heading h2 { margin: 0; color: var(--navy); line-height: 1.1; font-size: clamp(1.9rem, 4vw, 3rem); }
.section-heading p, .text-muted, .panel p, .card p, .form-note, .footer p { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 24px rgba(19,34,58,0.05); }
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.12rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { background: var(--gold-soft); color: #8b5a1b; border: 1px solid #ecd5b8; border-radius: 999px; padding: 7px 11px; font-size: 0.85rem; font-weight: 700; }
.quote-card { background: linear-gradient(180deg,var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 30px; }
.quote-card blockquote { margin: 0; font-size: 1.24rem; line-height: 1.7; }
.quote-card cite { display: block; margin-top: 16px; color: rgba(255,255,255,0.82); font-style: normal; }
.sdg-header-grid { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 24px; align-items: center; margin-bottom: 24px; }
.sdg-heading { margin-bottom: 0; }
.sdg-wheel-wrap { display: flex; justify-content: center; align-items: center; }
.sdg-wheel-wrap img { width: 100%; max-width: 260px; height: auto; display: block; }
.sdg-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 12px; }
.sdg-pill { padding: 12px 10px; text-align: center; border-radius: 14px; border: 1px solid var(--line); background: #fff; font-weight: 700; color: var(--navy); }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.services-hero-panel { background: linear-gradient(180deg,var(--navy) 0%, #22324f 100%); border-radius: var(--radius-lg); overflow: hidden; }
.services-hero-grid { grid-template-columns: minmax(0,1fr) 500px; gap: 0; align-items: stretch; }
.services-copy { padding: 34px; }
.services-copy h1 { margin: 0; color: #fff; font-size: clamp(2.1rem, 4vw, 3.4rem); }
.services-copy p, .services-copy .eyebrow { color: rgba(255,255,255,0.88); }
.services-copy .eyebrow { color: #f0b066; }
.service-image-plain { border-radius: 0; overflow: visible; border: 0; box-shadow: none; background: transparent; }
.service-image-plain img { border-radius: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.process-step strong { color: var(--gold); font-size: 0.9rem; display: block; margin-bottom: 8px; }
.cta-band { padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-card, .info-card { padding: 28px; }
.contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.contact-form label { display: block; font-weight: 600; color: var(--navy); font-size: 0.94rem; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px; font: inherit; }
.contact-form .full { grid-column: 1 / -1; }
.footer { border-top: 1px solid var(--line); background: #fff; padding: 28px 0 42px; }
.footer-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 1020px) {
  .hero-grid, .page-hero-grid, .services-hero-grid, .contact-grid, .split-grid, .card-grid, .metrics-grid, .process-grid, .sdg-header-grid, .sdg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--navy); }
  .nav-wrap { min-height: auto; padding: 16px 0; flex-wrap: wrap; }
  .nav-menu { width: 100%; display: none; flex-direction: column; gap: 12px; padding-top: 8px; }
  .nav-menu.open { display: flex; }
  .contact-form { grid-template-columns: 1fr; }
  .cta-band, .footer-wrap, .actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
}
