:root {
  --teal-900: #0A3F39; --teal-700: #0E5A52; --teal-500: #1B8A7A; --teal-300: #5FB8A8;
  --amber: #E08A3C; --amber-soft: #F0B274; --clay: #C4602A;
  --sand: #F8F4EC; --sand-deep: #EFE8DA; --sage: #E7EFE9;
  --ink: #16221F; --ink-soft: #46554F; --line: rgba(22,34,31,.10);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --maxw: 1180px; --radius: 18px; --radius-lg: 28px;
  --shadow: 0 18px 50px -24px rgba(10,63,57,.40);
  --shadow-soft: 0 10px 30px -18px rgba(10,63,57,.30);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--sand); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow { font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }

.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .96rem; border: 1.5px solid transparent; transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, box-shadow .25s, color .25s; will-change: transform; }
.btn:hover { transform: translateY(-3px); }
.btn-amber { background: var(--amber); color: #2a1602; box-shadow: 0 10px 24px -10px rgba(224,138,60,.7); }
.btn-amber:hover { background: var(--amber-soft); }
.btn-teal { background: var(--teal-700); color: #fff; }
.btn-teal:hover { background: var(--teal-500); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { border-color: var(--teal-700); color: var(--teal-700); }
.btn-outline:hover { background: var(--teal-700); color: #fff; }
.btn-dark { background: var(--teal-900); color: #fff; }
.btn-dark:hover { background: var(--ink); }
.btn-light { background: #fff; color: var(--teal-900); }

.section { padding: clamp(64px,9vw,128px) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem,4.2vw,3.1rem); margin: 18px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.lift { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ---- reveal / stagger (vanilla, IntersectionObserver) ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.page-fade { animation: pageFade .5s cubic-bezier(.2,.8,.2,1) both; }
@keyframes pageFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* contour signature */
.contours { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.contours path { fill: none; stroke: currentColor; }
.contours.draw path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.7s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .35s, box-shadow .35s, backdrop-filter .35s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.solid { background: rgba(248,244,236,.85); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--ink); transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--sage); }
.nav-links a.active { color: var(--teal-700); }
.nav .cta { margin-left: 10px; }
.nav.onhero:not(.solid) .brand, .nav.onhero:not(.solid) .nav-links a { color: #fff; }
.nav.onhero:not(.solid) .brand small { color: rgba(255,255,255,.7); }
.nav.onhero:not(.solid) .nav-links a:hover { background: rgba(255,255,255,.12); }
.nav.onhero:not(.solid) .nav-links a.active { color: var(--amber-soft); }
.menu-btn { display: none; background: none; border: none; color: inherit; padding: 8px; }
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav.onhero:not(.solid) .menu-btn { color: #fff; }
  .mobile-menu { flex-direction: column; gap: 4px; position: fixed; top: 76px; left: 0; right: 0; z-index: 49; background: var(--sand); padding: 16px 24px 28px; box-shadow: var(--shadow); border-top: 1px solid var(--line); }
  .mobile-menu a { padding: 14px 12px; border-radius: 12px; font-weight: 600; }
  .mobile-menu a:hover, .mobile-menu a.active { background: var(--sage); color: var(--teal-700); }
  .mobile-menu .btn { justify-content: center; margin-top: 8px; }
}

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: radial-gradient(120% 90% at 80% 0%, var(--teal-500) 0%, var(--teal-700) 38%, var(--teal-900) 100%); color: #fff; overflow: hidden; padding-top: 76px; }
.hero .contours { opacity: .5; }
.hero-glow { position: absolute; width: 60vw; height: 60vw; right: -10vw; top: -15vw; background: radial-gradient(circle, rgba(224,138,60,.35), transparent 60%); filter: blur(20px); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem,6.4vw,5rem); font-weight: 800; }
.hero h1 .accent { color: var(--amber-soft); }
.hero p.lede { font-size: clamp(1.05rem,2vw,1.3rem); color: rgba(255,255,255,.85); margin: 24px 0 36px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 26px; margin-top: 54px; flex-wrap: wrap; }
.hero-tags div { display: flex; flex-direction: column; }
.hero-tags b { font-family: var(--font-display); font-size: 1.7rem; color: var(--amber-soft); }
.hero-tags span { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.7); }
/* hero entrance */
.hero-anim > * { opacity: 0; transform: translateY(30px); animation: heroUp .7s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-anim > *:nth-child(1) { animation-delay: .05s; }
.hero-anim > *:nth-child(2) { animation-delay: .17s; }
.hero-anim > *:nth-child(3) { animation-delay: .29s; }
.hero-anim > *:nth-child(4) { animation-delay: .41s; }
.hero-anim > *:nth-child(5) { animation-delay: .53s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.divider { display: block; width: 100%; height: 60px; color: var(--teal-700); }

/* interior page hero */
.page-hero { position: relative; padding: clamp(120px,16vw,180px) 0 clamp(56px,8vw,96px); background: radial-gradient(120% 120% at 100% 0%, var(--teal-500), var(--teal-700) 55%, var(--teal-900)); color: #fff; overflow: hidden; }
.page-hero .contours { opacity: .45; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { font-size: clamp(2.4rem,5.5vw,4rem); font-weight: 800; margin: 16px 0 18px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.12rem; max-width: 580px; }
.page-hero .eyebrow { color: var(--amber-soft); }
.page-hero .eyebrow::before { background: var(--amber-soft); }

/* focus cards */
.focus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.focus-card { padding: 34px 30px; border-radius: var(--radius); position: relative; overflow: hidden; }
.focus-card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; background: var(--sage); color: var(--teal-700); }
.focus-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.focus-card p { color: var(--ink-soft); }
.focus-card .num { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--sand-deep); }

/* mission */
.mission { background: var(--teal-700); color: #fff; position: relative; overflow: hidden; }
.mission .contours { opacity: .35; }
.mission-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; }
.mission .eyebrow { color: var(--amber-soft); justify-content: center; }
.mission blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem,3.4vw,2.5rem); line-height: 1.28; margin-top: 22px; letter-spacing: -.02em; }
.mission blockquote span { color: var(--amber-soft); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 16px; }
.stat b { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--teal-700); display: block; line-height: 1; }
.stat span { color: var(--ink-soft); font-weight: 600; font-size: .92rem; margin-top: 10px; display: block; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--clay), var(--amber)); color: #2a1602; border-radius: var(--radius-lg); padding: clamp(44px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.cta-band .contours { opacity: .25; color: #2a1602; }
.cta-band h2 { font-size: clamp(1.9rem,4vw,3rem); margin-bottom: 14px; color: #2a1602; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; color: #4a2c08; font-weight: 500; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* about */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.06rem; }
.prose p strong { color: var(--ink); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--teal-500), var(--sand-deep)); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--amber); border: 3px solid var(--sand); }
.tl-item .yr { font-family: var(--font-display); font-weight: 700; color: var(--teal-700); font-size: 1.1rem; }
.tl-item h4 { font-size: 1.25rem; margin: 4px 0 6px; }
.tl-item p { color: var(--ink-soft); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { padding: 28px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .35s, box-shadow .35s; }
.value-card .vnum { font-family: var(--font-display); font-weight: 800; color: var(--amber); font-size: .9rem; letter-spacing: .1em; }
.value-card h4 { font-size: 1.3rem; margin: 12px 0 8px; }
.value-card p { color: var(--ink-soft); font-size: .96rem; }
.value-card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--teal-500), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card:hover::after { transform: scaleX(1); }
.gov-list { display: grid; gap: 14px; margin-top: 22px; }
.gov-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.gov-list li svg { flex: none; color: var(--teal-500); margin-top: 3px; }
.serve-panel { padding: 32px; background: var(--teal-700); color: #fff; border-radius: 24px; position: relative; overflow: hidden; }
.serve-panel .contours { opacity: .3; }
.serve-panel .inner { position: relative; z-index: 2; }
.serve-panel h3 { font-size: 1.3rem; margin-bottom: 18px; }
.serve-panel ul { display: grid; gap: 14px; }
.serve-panel li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.88); }
.serve-panel li svg { color: var(--amber-soft); flex: none; margin-top: 3px; }
.regions { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.region { padding: 24px 20px; border-radius: var(--radius); background: var(--teal-700); color: #fff; transition: transform .35s, background .35s; position: relative; overflow: hidden; }
.region:hover { transform: translateY(-6px); background: var(--teal-900); }
.region b { font-family: var(--font-display); font-size: 1.15rem; display: block; }
.region span { font-size: .85rem; color: rgba(255,255,255,.7); }
.region .pin { position: absolute; right: 16px; bottom: 12px; opacity: .25; }

/* services accordion */
.accordion { display: grid; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s; }
.acc-item.open { box-shadow: var(--shadow); }
.acc-head { display: flex; align-items: center; gap: 18px; padding: 24px 26px; width: 100%; background: none; border: none; text-align: left; }
.acc-head .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage); color: var(--teal-700); display: grid; place-items: center; flex: none; transition: background .3s, color .3s; }
.acc-item.open .acc-head .ic { background: var(--amber); color: #2a1602; }
.acc-head h3 { font-size: 1.22rem; flex: 1; }
.acc-head .chev { color: var(--ink-soft); transition: transform .3s; flex: none; }
.acc-item.open .acc-head .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1); }
.acc-body-inner { padding: 0 26px 26px 90px; }
.acc-body-inner p { color: var(--ink-soft); margin-bottom: 12px; }
.acc-body-inner ul { display: grid; gap: 8px; }
.acc-body-inner li { display: flex; gap: 10px; color: var(--ink-soft); align-items: flex-start; }
.acc-body-inner li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); margin-top: 9px; flex: none; }
.why { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-card { padding: 26px 22px; border-radius: var(--radius); background: var(--sage); }
.why-card .ic { color: var(--teal-700); margin-bottom: 14px; }
.why-card h4 { font-size: 1.08rem; margin-bottom: 6px; }
.why-card p { color: var(--ink-soft); font-size: .92rem; }

/* gallery */
.masonry { columns: 4; column-gap: 16px; }
.masonry .tile { break-inside: avoid; margin-bottom: 16px; border-radius: 14px; overflow: hidden; cursor: pointer; position: relative; background: var(--sand-deep); display: block; width: 100%; border: none; padding: 0; }
.masonry .tile img, .masonry .tile .imgph { width: 100%; height: auto; transition: transform .5s cubic-bezier(.2,.8,.2,1); display: block; }
.masonry .tile:hover img { transform: scale(1.06); }
.masonry .tile .ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,63,57,.55), transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; color: #fff; font-weight: 600; font-size: .9rem; }
.masonry .tile:hover .ov { opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,24,21,.92); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .25s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img, .lightbox .imgph { max-width: 90vw; max-height: 82vh; width: auto; border-radius: 12px; box-shadow: var(--shadow); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 20px; right: 20px; width: 46px; height: 46px; }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .9rem; letter-spacing: .05em; }

/* image fallback */
.imgph { position: relative; background: linear-gradient(135deg, var(--teal-700), var(--teal-900)); display: grid; place-items: center; color: rgba(255,255,255,.5); aspect-ratio: 4/3; }
.imgph svg { width: 38%; max-width: 90px; opacity: .55; }

/* contact */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-card { padding: 34px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .35s, box-shadow .35s; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-700); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.contact-card a, .contact-card p { color: var(--ink-soft); display: block; transition: color .2s; }
.contact-card a:hover { color: var(--teal-700); }
.socials { display: flex; gap: 12px; }
.socials a { width: 46px; height: 46px; border-radius: 12px; background: var(--sage); color: var(--teal-700); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.socials a:hover { transform: translateY(-4px); background: var(--teal-700); color: #fff; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* footer */
.footer { background: var(--teal-900); color: rgba(255,255,255,.78); padding: 64px 0 32px; position: relative; overflow: hidden; }
.footer .contours { opacity: .18; }
.footer-inner { position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand small { color: rgba(255,255,255,.6); }
.footer p { max-width: 320px; font-size: .95rem; }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { transition: color .2s; }
.footer ul a:hover { color: var(--amber-soft); }
.footer-bot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: .86rem; color: rgba(255,255,255,.55); }
.footer-bot .socials a { background: rgba(255,255,255,.08); color: #fff; width: 40px; height: 40px; }
.footer-bot .socials a:hover { background: var(--amber); color: #2a1602; }

@media (max-width: 980px) {
  .focus-grid, .values-grid, .why { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .regions { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .focus-grid, .values-grid, .why, .stats, .regions { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .acc-body-inner { padding-left: 26px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-tags { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-anim > * { opacity: 1; transform: none; }
}
