:root {
  --green: #61bb46;
  --green-dark: #4f9c39;
  --navy: #1c2b39;
  --gray-bg: #f6f7f8;
  --gray-border: #e5e8eb;
  --text: #384451;
  --text-muted: #5c6672;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-weight: 600; color: var(--navy); line-height: 1.25; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.3em; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 0 var(--gray-border); }
.utility-bar { background: #fff; }
.utility-nav { list-style: none; display: flex; justify-content: flex-end; gap: 24px; margin: 0; padding: 10px 0 0; font-size: 0.85rem; }
.utility-nav a { color: var(--text-muted); }
.main-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 16px; }
.logo { display: block; line-height: 0; }
.logo-img { height: 36px; width: auto; display: block; }
.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.main-nav a { color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--green); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; }

/* Sections */
.section { padding: 72px 0; }
.section.shade { background: var(--gray-bg); }
.section.dark { background: var(--navy); color: #e7ebee; }
.section.dark h2, .section.dark h1 { color: #fff; }
.section.dark p { color: #c4ccd3; }
.section.dark.dotted { position: relative; overflow: hidden; }
.section.dark.dotted::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--green) 3px, transparent 3.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 90% at 85% 60%, black 40%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 90% at 85% 60%, black 40%, transparent 75%);
  opacity: 0.9;
}
.section.dark .wrap { position: relative; }

.hero { padding: 90px 0 60px; text-align: center; }
.hero .lede { font-size: 1.25rem; color: var(--text-muted); max-width: 620px; margin: 0 auto 2em; }

.page-hero { padding: 48px 0 8px; }
.page-hero .lede { font-size: 1.15rem; color: var(--text-muted); }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2em; }
.breadcrumb a { color: var(--text-muted); }

.accent-heading { color: var(--green); font-weight: 600; }
.lede-2 { font-size: 1.1rem; color: var(--text-muted); max-width: 780px; margin: 0 auto 2.5em; }
.section-lead { font-weight: 600; color: var(--navy); margin-top: 2em; }

/* Cards */
.card-grid { display: grid; gap: 28px; margin-top: 2.5em; }
.card-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.card-grid.three-up { grid-template-columns: repeat(2, 1fr); }
.card-grid.compact { margin-top: 1.5em; }
.card {
  position: relative; background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center; overflow: hidden;
}
.card h3, .card h4 { margin-top: 100px; }
.card-grid.compact .card { text-align: left; padding: 32px; }
.card-grid.compact .card h4 { margin-top: 0; }

/* Decorative blob fields */
.blob-field { position: relative; height: 140px; margin: 0 auto 8px; max-width: 260px; }
.blob { position: absolute; left: var(--x); top: var(--y); border-radius: 50%; display: block; }
.blob.green { background: var(--green); }
.blob.navy { background: var(--navy); }
.blob-lg { width: 68px; height: 68px; }
.blob-md { width: 46px; height: 46px; }
.blob-sm { width: 32px; height: 32px; }
.blob-xs { width: 16px; height: 16px; }

/* Split section */
.split { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; margin-top: 3em; }
.split-media { position: relative; height: 220px; }
.split-media .blob-field { max-width: 100%; height: 100%; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5em; }
.team-card { background: #fff; border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.team-card h3 { margin-bottom: 0.2em; font-size: 1.15rem; }
.team-card h3 a { color: var(--navy); }
.team-card .role { color: var(--green); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5em; }
.team-card .role-desc { color: var(--text-muted); font-size: 0.92rem; }

.avatar-link { display: block; width: 88px; height: 88px; margin: 0 auto 16px; border-radius: 50%; }
.avatar {
  display: block; width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; background: var(--gray-bg);
}

.bio-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.bio-avatar {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover; background: var(--gray-bg);
}
.role-lead { color: var(--green); font-weight: 600; margin-bottom: 0.3em; }

.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); margin-top: 0.5em; }
.social-link svg { fill: currentColor; }
.social-link:hover { color: var(--green); text-decoration: none; }

/* FAQ */
.faq-list { margin-top: 1em; }
.faq-item { border-bottom: 1px solid var(--gray-border); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--navy); font-size: 1.05rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+"; color: var(--green); font-weight: 700; margin-right: 12px; }
.faq-item[open] summary::before { content: "\2212"; }
.faq-answer { margin-top: 12px; color: var(--text-muted); }

/* Legal */
.legal h3 { margin-top: 1.6em; }

/* Check list */
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 0.6em; }
.check-list li::before { content: "\2713"; color: var(--green); font-weight: 700; position: absolute; left: 0; }

/* Contact */
.contact-linkedin { margin-top: 1.2em; }

/* Footer */
.site-footer { background: #fff; }
.footer-top { padding: 48px 0 24px; }
.footer-heading { color: var(--green); font-size: 1.1rem; margin-bottom: 0.6em; }
.footer-top .social-link { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--gray-border); padding: 20px 0 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-links a { color: var(--text-muted); }

/* Responsive */
@media (max-width: 860px) {
  .card-grid.two-up, .card-grid.three-up { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-avatar { margin: 0 auto; }
}
@media (max-width: 640px) {
  .utility-nav { display: none; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 8px 16px rgba(0,0,0,0.06); display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 16px 24px; gap: 16px; }
  .nav-toggle { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}
