:root {
  --navy: #06283b;
  --green: #7d9f23;
  --teal: #3e8e9e;
  --teal-dark: #2f7887;
  --cream: #f2f1e9;
  --mist: #e9f0ed;
  --white: #fff;
  --muted: #61747c;
  --line: #d7e1dd;
  --background: #f8faf7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--background); font-family: 'Lato', 'Segoe UI', Arial, sans-serif; overflow-x: hidden; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.72; }
img { max-width: 100%; display: block; }
::selection { color: #fff; background: var(--teal); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.section { padding: clamp(78px, 9vw, 142px) clamp(24px, 7vw, 112px); }
.section-kicker, .eyebrow { margin: 0 0 20px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.section-kicker.light { color: #cddd91; }
.section h2 { margin: 0; font-size: clamp(37px, 4.5vw, 68px); line-height: 1.06; letter-spacing: -.035em; font-weight: 900; text-wrap: balance; }
.primary-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: fit-content; padding: 16px 22px; border: 0; border-radius: 9px; background: var(--teal); color: #fff; font-size: 14px; font-weight: 900; cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.primary-button:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgb(16 76 88 / 20%); }
.primary-button svg { width: 18px; height: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 900; }
.text-link svg { width: 19px; height: 19px; }

/* Reveal on scroll (JS adds .is-visible; content is visible without JS) */
html.js .reveal { opacity: 0; transform: translateY(42px); transition: opacity .85s ease, transform .85s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: relative; z-index: 40; height: 104px; padding: 0 clamp(24px, 5vw, 76px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.site-header.is-overlay { position: absolute; inset: 0 0 auto; color: #fff; border-bottom: 1px solid rgb(255 255 255 / 19%); }
.brand img { width: 156px; height: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); font-size: 14px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 13px 0; }
.desktop-nav a::after { content: ''; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; display: inline-flex; align-items: center; gap: 9px; padding: 13px 19px; border-radius: 8px; background: var(--teal); color: #fff; font-size: 14px; font-weight: 900; transition: .25s; }
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-2px); }
.nav-cta svg { width: 17px; height: 17px; }
.nav-item { position: relative; }
.nav-submenu-trigger { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 13px 0; border: 0; background: transparent; cursor: pointer; font-size: 14px; font-weight: 700; color: inherit; }
.nav-submenu-trigger::after { content: ''; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav-submenu-trigger:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-submenu-trigger svg { width: 13px; height: 13px; transition: transform .25s; }
.nav-item.is-open .nav-submenu-trigger svg { transform: rotate(180deg); }
.nav-submenu { position: absolute; top: calc(100% - 4px); left: 50%; transform: translateX(-50%); min-width: 190px; padding: 8px; display: none; flex-direction: column; border-radius: 11px; background: #fff; color: var(--navy); box-shadow: 0 20px 44px rgb(6 40 59 / 20%); }
.nav-submenu a { padding: 11px 14px; border-radius: 7px; font-size: 14px; font-weight: 700; }
.nav-submenu a:hover { background: var(--mist); color: var(--teal); }
.nav-item:hover .nav-submenu, .nav-item:focus-within .nav-submenu, .nav-item.is-open .nav-submenu { display: flex; }
.menu-trigger { display: none; border: 0; background: transparent; cursor: pointer; }
.menu-trigger svg { width: 24px; height: 24px; }
.mobile-menu-layer { position: fixed; z-index: 100; inset: 0; display: none; }
.mobile-menu-layer.is-open { display: block; }
.mobile-menu-backdrop { position: absolute; inset: 0; border: 0; background: rgb(6 40 59 / 56%); backdrop-filter: blur(4px); cursor: pointer; }
.mobile-sheet { position: absolute; z-index: 1; top: 0; right: 0; width: min(88vw, 390px); height: 100%; padding: 34px 26px; display: flex; flex-direction: column; overflow-y: auto; background: #f8faf7; color: var(--navy); box-shadow: -18px 0 45px rgb(6 40 59 / 22%); animation: mobile-menu-in .25s ease-out; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-top > img { width: 148px; height: auto; }
.mobile-menu-close { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 8px; background: transparent; color: var(--navy); cursor: pointer; font-size: 24px; line-height: 1; }
.mobile-sheet nav { display: flex; flex-direction: column; margin-top: 46px; border-top: 1px solid var(--line); }
.mobile-sheet nav a { display: flex; align-items: center; gap: 18px; padding: 18px 2px; border-bottom: 1px solid var(--line); font-size: 23px; font-weight: 900; }
.mobile-sheet nav a span { width: 24px; color: var(--green); font-size: 11px; letter-spacing: .1em; }
.mobile-join { margin-top: auto; width: 100%; }
@keyframes mobile-menu-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Home hero */
.hero { position: relative; min-height: 740px; height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transform: scale(1.04); transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgb(6 40 59 / 91%) 0%, rgb(6 40 59 / 63%) 49%, rgb(6 40 59 / 22%) 100%); }
.hero-content { position: relative; z-index: 3; width: min(900px, 84%); margin-left: clamp(24px, 8vw, 126px); padding-top: 72px; }
.hero .eyebrow, .page-hero .eyebrow { color: #d4e2a7; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(54px, 6.2vw, 94px); line-height: .98; letter-spacing: -.047em; font-weight: 900; text-wrap: balance; }
.hero-copy { max-width: 570px; margin: 28px 0 34px; color: rgb(255 255 255 / 79%); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.hero-controls { position: absolute; z-index: 3; right: clamp(24px, 5vw, 76px); bottom: 46px; display: flex; align-items: center; gap: 13px; font-size: 11px; font-weight: 900; }
.progress-track { width: 98px; height: 2px; overflow: hidden; background: rgb(255 255 255 / 32%); }
.progress-track span { display: block; width: 100%; height: 100%; background: var(--green); transform-origin: left; }
.progress-track span.is-running { animation: progress 5.6s linear forwards; }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Home sections */
.mission-statement { display: grid; grid-template-columns: 110px 1fr; gap: clamp(24px, 5vw, 70px); align-items: start; background: var(--cream); }
.mission-statement h2 { max-width: 1080px; }
.mission-icon { width: 88px; height: 88px; display: grid; place-items: center; border-radius: 16px; background: var(--green); color: #fff; }
.mission-icon svg { width: 38px; height: 38px; }
.intro-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 8vw, 126px); align-items: center; }
.intro-copy > p:not(.section-kicker) { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.intro-image-wrap { position: relative; min-height: 630px; border-radius: 24px; overflow: hidden; }
.intro-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-stat { position: absolute; right: 22px; bottom: 22px; width: 210px; padding: 24px; display: flex; flex-direction: column; border-radius: 14px; background: rgb(6 40 59 / 91%); color: #fff; backdrop-filter: blur(8px); }
.image-stat strong { color: #cfdf91; font-size: 48px; line-height: 1; }
.image-stat span { margin-top: 8px; font-size: 13px; line-height: 1.45; }
.pillars-section { padding-top: 70px; background: #fff; }
.section-heading { max-width: 800px; margin-bottom: 60px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card { min-height: 350px; padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: 17px; background: #f8faf7; transition: transform .3s, background .3s, color .3s; }
.pillar-card:hover { transform: translateY(-7px); background: var(--navy); color: #fff; }
.pillar-top { margin-bottom: auto; display: flex; align-items: center; justify-content: space-between; color: var(--green); font-weight: 900; }
.pillar-top svg { width: 30px; height: 30px; }
.pillar-card h3 { margin: 35px 0 12px; font-size: clamp(27px, 2.4vw, 36px); line-height: 1.1; }
.pillar-card p { margin: 0; color: var(--muted); }
.pillar-card:hover p { color: rgb(255 255 255 / 70%); }
.services-home { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 126px); color: #fff; background: var(--navy); }
.services-heading { position: sticky; top: 50px; height: fit-content; }
.services-heading > p:not(.section-kicker) { margin: 24px 0 30px; color: rgb(255 255 255 / 66%); font-size: 17px; }
.service-list { border-top: 1px solid rgb(255 255 255 / 18%); }
.service-row { display: grid; grid-template-columns: 46px 1fr auto; gap: 18px; align-items: center; min-height: 98px; border-bottom: 1px solid rgb(255 255 255 / 18%); }
.service-row span { color: #cddd91; font-size: 11px; font-weight: 900; }
.service-row p { margin: 0; font-size: clamp(17px, 1.5vw, 22px); font-weight: 700; line-height: 1.35; }
.service-row svg { width: 19px; color: var(--teal); }
.home-gallery { height: 760px; padding: clamp(24px, 4vw, 58px); display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 16px; background: var(--cream); }
.gallery-image { position: relative; overflow: hidden; border-radius: 15px; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-1 { grid-row: 1 / 3; }
.gallery-4 { display: none; }
.cta-section { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(48px, 9vw, 150px); align-items: end; background: #fff; }
.cta-section > div:last-child > p { max-width: 580px; margin: 0 0 30px; color: var(--muted); font-size: 19px; }

/* Inner heroes */
.page-hero { position: relative; min-height: 570px; height: 68svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--navy); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(6 40 59 / 88%), rgb(6 40 59 / 30%)), linear-gradient(0deg, rgb(6 40 59 / 52%), transparent 60%); }
.page-hero-content { position: relative; z-index: 2; width: min(1000px, 90%); margin: 0 0 clamp(62px, 8vw, 105px) clamp(24px, 8vw, 126px); }
.page-hero h1 { margin: 0; max-width: 970px; font-size: clamp(52px, 6.6vw, 92px); line-height: 1; letter-spacing: -.045em; text-wrap: balance; }
.story-intro, .team-intro, .services-intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.story-intro > div:last-child p, .team-intro > p, .services-intro > p { margin: 0 0 20px; color: var(--muted); font-size: 19px; }
.foundation-grid { padding-top: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.foundation-card { min-height: 520px; padding: clamp(34px, 5vw, 68px); border-radius: 20px; background: var(--mist); }
.foundation-card:nth-child(2) { background: var(--cream); }
.foundation-icon { width: 66px; height: 66px; margin-bottom: 70px; display: grid; place-items: center; border-radius: 14px; background: var(--teal); color: #fff; }
.foundation-icon svg { width: 30px; height: 30px; }
.foundation-card p:last-child { margin: 26px 0 0; color: var(--muted); font-size: 17px; }
.value-section { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 760px; padding-top: 0; padding-bottom: 0; background: var(--navy); color: #fff; }
.value-image { position: relative; min-height: 650px; margin-left: calc(clamp(24px, 7vw, 112px) * -1); overflow: hidden; }
.value-image img { width: 100%; height: 100%; object-fit: cover; }
.value-image > span { position: absolute; right: 20px; bottom: 20px; padding: 14px 18px; display: flex; align-items: center; gap: 9px; border-radius: 10px; background: rgb(6 40 59 / 88%); font-weight: 700; }
.value-image > span svg { width: 18px; height: 18px; }
.value-copy { padding: clamp(70px, 8vw, 126px) 0 clamp(70px, 8vw, 126px) clamp(42px, 7vw, 105px); }
.value-copy p:not(.section-kicker) { color: rgb(255 255 255 / 67%); font-size: 17px; }
.value-copy .primary-button { margin-top: 15px; }
.social-impact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 160px); background: var(--cream); }
.social-impact > div:last-child p { margin: 0 0 20px; color: var(--muted); font-size: 18px; }
.impact-icon { width: 72px; height: 72px; margin-bottom: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--green); color: #fff; }
.impact-icon svg { width: 32px; height: 32px; }

/* Team */
.team-section { padding-top: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.team-card { min-width: 0; padding: 0; overflow: hidden; display: flex; flex-direction: column; text-align: left; border: 1px solid var(--line); border-radius: 17px; background: #fff; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgb(6 40 59 / 12%); }
.team-photo { position: relative; height: 330px; overflow: hidden; background: var(--mist); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.8); transition: transform .5s, filter .5s; }
.team-card:hover .team-photo img { transform: scale(1.035); filter: saturate(1); }
.team-card-body { min-height: 290px; padding: 24px; display: flex; flex-direction: column; }
.team-role { color: var(--green); font-size: 11px; line-height: 1.35; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.team-card strong { margin: 10px 0 12px; font-size: clamp(22px, 1.8vw, 28px); line-height: 1.08; }
.team-summary { color: var(--muted); font-size: 15px; line-height: 1.55; }
.team-more { margin-top: auto; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; color: var(--teal); font-size: 14px; font-weight: 900; }
.team-more svg { width: 18px; height: 18px; }

/* Bio modal */
.modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgb(3 29 43 / 68%); backdrop-filter: blur(8px); border: 0; cursor: pointer; }
.bio-dialog { position: relative; z-index: 1; width: min(960px, 100%); height: min(760px, 92svh); display: grid; grid-template-columns: 40% minmax(0, 60%); overflow: hidden; border-radius: 18px; background: #fff; color: var(--navy); box-shadow: 0 32px 90px rgb(3 29 43 / 32%); }
.bio-dialog-close { position: absolute; z-index: 3; top: 16px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--navy); cursor: pointer; font-size: 20px; line-height: 1; box-shadow: 0 6px 18px rgb(6 40 59 / 14%); }
.bio-dialog-image { position: relative; min-height: 0; background: var(--mist); }
.bio-dialog-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bio-dialog-copy { min-width: 0; min-height: 0; padding: clamp(30px, 4vw, 54px); display: flex; flex-direction: column; overflow: hidden; }
.bio-dialog-copy .bio-name { margin: 12px 0 0; font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.bio-dialog-copy .bio-role { margin: 10px 0 0; color: var(--teal); font-size: 16px; font-weight: 700; }
.bio-scroll { flex: 1; min-height: 0; margin-top: 26px; padding: 0 18px 8px 0; overflow-y: auto; overscroll-behavior: contain; }
.bio-scroll::-webkit-scrollbar { width: 8px; }
.bio-scroll::-webkit-scrollbar-track { border-radius: 8px; background: var(--mist); }
.bio-scroll::-webkit-scrollbar-thumb { border-radius: 8px; background: var(--teal); }
.bio-section + .bio-section { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.bio-section h3 { margin: 0 0 8px; color: var(--navy); font-size: 14px; line-height: 1.35; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.bio-section p { margin: 0; color: var(--muted); font-size: 15px; }

/* Services listing */
.services-grid { padding-top: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgb(6 40 59 / 12%); }
.service-card-media { position: relative; height: 200px; overflow: hidden; background: var(--mist); }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-body { min-height: 210px; padding: 26px 28px; display: flex; flex-direction: column; }
.service-card-body > span:first-child { color: var(--green); font-size: 12px; font-weight: 900; }
.service-card-body h3 { margin: auto 0 22px; font-size: clamp(22px, 1.9vw, 28px); line-height: 1.16; color: var(--navy); }
.service-card-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 14px; font-weight: 900; }
.service-card-cta svg { width: 17px; height: 17px; transition: transform .25s; }
.service-card:hover .service-card-cta svg { transform: translate(2px, -2px); }

/* Service detail */
.service-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.service-intro-media { position: relative; min-height: 460px; border-radius: 22px; overflow: hidden; background: var(--mist); }
.service-intro-media img { width: 100%; height: 100%; object-fit: cover; }
.service-intro-copy > p:not(.section-kicker) { margin: 26px 0 0; color: var(--muted); font-size: 19px; }
.service-detail { padding-top: 0; display: flex; flex-direction: column; gap: clamp(52px, 6vw, 84px); }
.service-section-title { margin: 0 0 26px; color: var(--navy); font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -.02em; font-weight: 900; }
.service-points ul, .service-group-card ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-points li, .service-group-card li { display: flex; gap: 13px; align-items: flex-start; padding: 20px 22px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--muted); font-size: 16px; line-height: 1.55; }
.service-points li svg, .service-group-card li svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--green); }
.service-steps ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.service-steps li { display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 26px 4px; border-bottom: 1px solid var(--line); }
.service-steps li > span { color: var(--green); font-size: 15px; font-weight: 900; letter-spacing: .06em; }
.service-steps li p { margin: 0; color: var(--muted); font-size: 16px; }
.service-group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-group-card { padding: clamp(26px, 3vw, 40px); border-radius: 17px; background: var(--mist); }
.service-group-card:nth-child(2) { background: var(--cream); }
.service-group-card h4 { margin: 0 0 20px; color: var(--navy); font-size: 20px; font-weight: 900; }
.service-group-card ul { grid-template-columns: 1fr; }
.service-closing { padding: clamp(30px, 4vw, 52px); border-left: 4px solid var(--green); border-radius: 0 16px 16px 0; background: var(--cream); color: var(--muted); font-size: 18px; }

/* Contact and join */
.contact-section, .join-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 145px); align-items: start; }
.contact-details > p:not(.section-kicker), .join-section > div:first-child > p:not(.section-kicker) { color: var(--muted); font-size: 18px; }
.contact-methods { margin-top: 42px; border-top: 1px solid var(--line); }
.contact-methods a { padding: 18px 0; display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; border-bottom: 1px solid var(--line); }
.contact-methods a > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 10px; background: var(--mist); color: var(--teal); }
.contact-methods a > span svg { width: 20px; height: 20px; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { margin-bottom: 3px; color: var(--muted); }
.contact-methods strong { overflow-wrap: anywhere; }
.contact-form-wrap { padding: clamp(30px, 4.5vw, 62px); border-radius: 19px; background: var(--cream); }
.contact-form-wrap h2 { margin-bottom: 38px; font-size: clamp(35px, 4vw, 56px); }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; color: var(--navy); font-size: 13px; font-weight: 900; }
.contact-form label > span.req { display: inline; color: var(--green); }
.contact-form input, .contact-form textarea { height: 52px; padding: 0 15px; border: 1px solid #cbd7d2; border-radius: 9px; background: #fff; font-size: 15px; font-weight: 400; font-family: inherit; }
.contact-form textarea { min-height: 150px; padding-top: 14px; resize: vertical; }
.submit-button { min-height: 54px; }
.form-note { margin: 0; display: flex; align-items: center; gap: 8px; color: var(--teal); font-size: 14px; }
.form-note.is-warning { color: #9a5a18; }
.form-note svg { width: 18px; height: 18px; }
.spam-protection { margin: -8px 0 0; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.spam-protection svg { width: 17px; height: 17px; color: var(--green); }
.spam-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* Vacantes */
.vacantes-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 145px); align-items: start; }
.vacantes-intro > div:first-child > p:not(.section-kicker) { margin: 0 0 20px; color: var(--muted); font-size: 18px; }
.vacantes-contact { margin-top: 36px; border-top: 1px solid var(--line); }
.vacantes-contact a { padding: 18px 0; display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; border-bottom: 1px solid var(--line); }
.vacantes-contact a > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 10px; background: var(--mist); color: var(--teal); }
.vacantes-contact a > span svg { width: 20px; height: 20px; }
.vacantes-contact small, .vacantes-contact strong { display: block; }
.vacantes-contact small { margin-bottom: 3px; color: var(--muted); }
.vacantes-contact strong { overflow-wrap: anywhere; }
.vacantes-list { padding-top: 0; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.vacantes-list-copy { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.vacante-card { display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: center; padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .3s, box-shadow .3s, background .3s, color .3s; }
.vacante-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgb(6 40 59 / 12%); background: var(--navy); color: #fff; }
.vacante-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 13px; background: var(--mist); color: var(--teal); }
.vacante-icon svg { width: 26px; height: 26px; }
.vacante-card h3 { margin: 0 0 8px; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.15; }
.vacante-card p { margin: 0; color: var(--muted); font-size: 15px; }
.vacante-card:hover p { color: rgb(255 255 255 / 65%); }
.vacante-card > svg { width: 20px; color: var(--teal); }
.vacante-card:hover > svg { color: #cddd91; }

/* CV upload */
.cv-upload { position: relative; cursor: pointer; }
.cv-upload .cv-upload-title { color: var(--navy); font-size: 13px; font-weight: 900; }
.cv-upload .cv-upload-row { min-height: 52px; padding: 0 15px; display: flex; align-items: center; gap: 10px; border: 1px solid #cbd7d2; border-radius: 9px; background: #fff; color: var(--muted); font-size: 15px; font-weight: 400; }
.cv-upload .cv-upload-row svg { width: 17px; height: 17px; color: var(--green); }
.cv-upload .cv-upload-filename { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cv-upload .cv-upload-action { align-self: flex-start; padding: 9px 14px; border-radius: 8px; background: var(--mist); color: var(--teal); font-size: 13px; font-weight: 900; }
.cv-upload input[type='file'] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }

/* Footer */
.site-footer { padding: 80px clamp(24px, 7vw, 112px) 28px; background: #031d2b; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.05fr 1.3fr 1fr; gap: clamp(40px, 7vw, 110px); padding-bottom: 70px; }
.footer-brand > img { width: 175px; height: auto; }
.footer-brand > p { max-width: 340px; color: rgb(255 255 255 / 60%); }
.social-links { display: flex; gap: 10px; margin-top: 26px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / 22%); border-radius: 9px; transition: .25s; font-size: 13px; font-weight: 900; }
.social-links a:hover { background: var(--teal); border-color: var(--teal); }
.footer-title { margin: 0 0 24px; color: #cddd91; font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.footer-services > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.footer-services a { color: rgb(255 255 255 / 68%); font-size: 13px; line-height: 1.45; }
.footer-services a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a { display: grid; grid-template-columns: 20px 1fr; gap: 9px; color: rgb(255 255 255 / 74%); font-size: 13px; line-height: 1.5; }
.footer-contact svg { width: 16px; color: #cddd91; }
.footer-contact > p:last-child { color: rgb(255 255 255 / 65%); font-size: 13px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid rgb(255 255 255 / 14%); color: rgb(255 255 255 / 44%); font-size: 12px; }

@media (max-width: 1020px) {
  .desktop-nav { gap: 18px; }
  .team-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / 3; }
}

@media (max-width: 820px) {
  .section { padding: 76px 24px; }
  .site-header { height: 86px; display: flex; justify-content: space-between; }
  .desktop-nav, .site-header .nav-cta { display: none; }
  .brand img { width: 132px; }
  .menu-trigger { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 9px; color: inherit; }
  .hero { min-height: 680px; }
  .hero-content { width: auto; margin: 0 24px; padding-top: 48px; }
  .hero h1 { font-size: clamp(43px, 12.5vw, 67px); }
  .hero-shade { background: linear-gradient(90deg, rgb(6 40 59 / 91%), rgb(6 40 59 / 48%)); }
  .hero-controls { right: 24px; bottom: 28px; }
  .mission-statement, .intro-section, .services-home, .cta-section, .story-intro, .team-intro, .services-intro, .value-section, .social-impact, .contact-section, .join-section, .service-intro, .vacantes-intro, .vacantes-list { grid-template-columns: 1fr; }
  .mission-statement { gap: 32px; }
  .mission-icon { width: 70px; height: 70px; }
  .intro-image-wrap { min-height: 520px; grid-row: 1; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 300px; }
  .services-heading { position: static; }
  .services-home { gap: 58px; }
  .home-gallery { height: 690px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.25fr .75fr; }
  .gallery-1 { grid-column: 1 / 3; grid-row: auto; }
  .gallery-2, .gallery-3 { grid-row: 2; }
  .cta-section { align-items: start; }
  .page-hero { min-height: 510px; height: 64svh; }
  .page-hero-content { margin: 0 24px 64px; }
  .page-hero h1 { font-size: clamp(47px, 12vw, 72px); }
  .foundation-grid { grid-template-columns: 1fr; padding-top: 0; }
  .foundation-card { min-height: 450px; }
  .value-section { padding: 0; }
  .value-image { min-height: 500px; margin: 0; }
  .value-copy { padding: 76px 24px; }
  .social-impact { gap: 46px; }
  .service-intro-media { min-height: 420px; }
  .service-points ul, .service-group-grid { grid-template-columns: 1fr; }
  .bio-dialog { height: calc(100svh - 24px); grid-template-columns: 1fr; grid-template-rows: 220px minmax(0, 1fr); }
  .bio-dialog-copy { padding: 28px 26px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 620px) {
  .section h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero h1 { font-size: clamp(42px, 12.8vw, 58px); }
  .hero-copy { font-size: 16px; }
  .hero-controls { display: none; }
  .mission-statement h2 { font-size: 34px; }
  .intro-image-wrap { min-height: 440px; }
  .image-stat { right: 14px; bottom: 14px; width: 190px; padding: 19px; }
  .service-row { grid-template-columns: 34px 1fr; padding: 16px 0; }
  .service-row svg { display: none; }
  .home-gallery { height: 600px; padding: 16px; gap: 10px; }
  .team-grid, .services-grid { grid-template-columns: 1fr; }
  .team-photo { height: 430px; }
  .team-card-body { min-height: 245px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 20px; }
  .bio-dialog { grid-template-rows: 190px minmax(0, 1fr); }
  .bio-dialog-copy { padding: 24px 20px; }
  .bio-dialog-copy .bio-name { padding-right: 34px; font-size: 32px; }
  .service-intro-media { min-height: 300px; }
  .service-steps li { grid-template-columns: 42px 1fr; gap: 14px; }
  .footer-services > div { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
