:root {
  --navy: #12294d;
  --navy-dark: #0d1f3c;
  --navy-light: #1c3a68;
  --green: #1e7a34;
  --green-dark: #176028;
  --bg-tint: #f4f7fb;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 8px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.25; }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.eyebrow-light { color: rgba(255,255,255,.85); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, color .2s, transform .15s;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: #eef2f7; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .2s;
}
.nav-links > a:hover { color: var(--green); }
.nav-links > a.nav-cta { text-transform: none; letter-spacing: 0; color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 84px 0 92px;
}
.badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-variant: small-caps;
  letter-spacing: .5px;
  margin-bottom: 22px;
  max-width: 720px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 14px; }
.pill {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 16px 22px;
  min-width: 138px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.pill-icon { width: 20px; height: 20px; color: var(--white); }

/* ---------- About ---------- */
.about { padding: 84px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-variant: small-caps;
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 16px;
}
.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.about-text p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.about-text strong { color: var(--text); font-weight: 600; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ---------- Services ---------- */
.services { background: var(--bg-tint); padding: 84px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-variant: small-caps;
  color: var(--navy);
  position: relative;
  padding-bottom: 18px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 54px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(18,41,77,.10); }
.service-header {
  color: var(--white);
  padding: 22px 26px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: .5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-header.navy { background: var(--navy); }
.service-header.green { background: var(--green); }
.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 18px; height: 18px; }
.service-list { padding: 24px 26px 28px; flex: 1; }
.service-list > li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}
.service-list > li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-list { margin-top: 6px; }
.sub-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  margin-bottom: 3px;
}
.sub-list li::before { content: '–'; position: absolute; left: 0; }

/* ---------- Why / Founder ---------- */
.why-founder { padding: 84px 0; }
.why-founder-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why h2, .founder h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-variant: small-caps;
  color: var(--navy);
  padding-bottom: 16px;
  margin-bottom: 26px;
  position: relative;
}
.why h2::after, .founder h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.check-list li:hover { border-color: var(--green); box-shadow: 0 4px 14px rgba(30,122,52,.08); }
.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-list strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.check-list p { font-size: 12.5px; color: var(--muted); }

.founder-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}
.founder-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.founder-photo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid rgba(255,255,255,.35);
  flex-shrink: 0;
}
.founder-card-head h3 { font-size: 18px; font-variant: small-caps; letter-spacing: .5px; }
.founder-card-head p { font-size: 12px; color: rgba(255,255,255,.7); }
.founder-bio { font-size: 13.5px; color: rgba(255,255,255,.82); margin-bottom: 14px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 500;
}

/* ---------- CTA ---------- */
.cta { background: var(--green); color: var(--white); padding: 76px 0; text-align: center; }
.cta-inner { max-width: 700px; }
.cta h2 { font-size: clamp(28px, 3.6vw, 40px); font-variant: small-caps; margin-bottom: 16px; }
.cta p { font-size: 15px; color: rgba(255,255,255,.88); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
  padding: 5px 8px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 320px; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.social-icons a:hover { background: var(--green); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  position: relative;
  padding-left: 14px;
  transition: color .2s;
}
.footer-links a::before { content: '›'; position: absolute; left: 0; color: var(--green); }
.footer-links a:hover { color: var(--white); }

.footer-contact li { margin-bottom: 14px; font-size: 13.5px; }
.contact-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 2px;
}
.footer-contact a { transition: color .2s; word-break: break-word; }
.footer-contact a:hover { color: var(--white); }

.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; padding-bottom: 26px; }
.footer-disclaimer p { font-size: 11px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-disclaimer strong { color: rgba(255,255,255,.7); }
.copyright { margin-top: 12px; color: var(--green) !important; }

/* ---------- Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,.6);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  padding: 34px;
  margin: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.modal-close:hover { color: var(--navy); }
.modal-box h3 {
  font-size: 24px;
  font-variant: small-caps;
  color: var(--navy);
  margin-bottom: 16px;
}
.modal-box p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner, .why-founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(18,41,77,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links > a.nav-cta { border: 0; margin-top: 14px; justify-content: center; }

  .hero { padding: 60px 0 68px; }
  .hero-pills { gap: 10px; }
  .pill { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 14px 16px; }
  .about, .services, .why-founder { padding: 60px 0; }
  .cta { padding: 58px 0; }
  .stats-grid { gap: 12px; }
  .stat-card { padding: 22px 14px; }
  .stat-num { font-size: 28px; }
  .founder-card { padding: 22px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .modal-box { padding: 26px 20px; }
}
