:root{
  --navy:#0C1B45;
  --navy-2:#16295E;
  --orange:#F0501C;
  --orange-2:#C93F13;
  --lime:#E4F24F;
  --paper:#F7F3EC;
  --ink:#0C1B45;
  --line: rgba(12,27,69,0.14);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:'Work Sans', sans-serif; -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{font-family:'Bricolage Grotesque', sans-serif; margin:0; letter-spacing:-0.02em;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
code{background:rgba(12,27,69,0.08); padding:2px 6px; border-radius:4px; font-size:0.9em;}

header{position:sticky; top:0; z-index:50; background:var(--paper); border-bottom:2px solid var(--ink);}
.nav-row{display:flex; align-items:center; justify-content:space-between; padding:20px 0; position:relative;}
.logo{display:flex; align-items:center; gap:10px; font-family:'Bricolage Grotesque'; font-weight:800; font-size:22px;}
.logo-mark{width:28px; height:32px; background:var(--orange); border-radius:9px 9px 9px 2px;}
nav ul{list-style:none; display:flex; gap:26px; margin:0; padding:0;}
nav a{font-size:14px; font-weight:600;}
nav a:hover{color:var(--orange);}
.nav-cta{background:var(--ink); color:#fff !important; padding:12px 22px; border-radius:100px; font-weight:700; font-size:14px;}
.nav-cta:hover{background:var(--orange);}
.mobile-toggle{display:none;}
@media (max-width:880px){
  nav ul{display:none;}
  .mobile-toggle{display:block; background:none; border:none; font-size:26px; cursor:pointer; color:var(--ink); order:3;}
  nav{order:4; width:100%;}
  nav ul.open{
    display:flex; flex-direction:column; gap:0; position:absolute; top:100%; left:0; right:0;
    background:var(--paper); border-bottom:2px solid var(--ink); padding:10px 28px 20px;
  }
  nav ul.open li{padding:10px 0; border-bottom:1px solid var(--line);}
}

/* HERO (homepage) */
.hero{background:var(--orange); padding:0; overflow:hidden;}
.hero-inner{padding:60px 28px 0; max-width:1180px; margin:0 auto;}
.hero-tag{font-size:15px; font-weight:700; color:var(--navy); margin-bottom:14px;}
.hero h1{font-size:clamp(56px,10vw,132px); line-height:0.86; font-weight:800; color:var(--navy);}
.hero-sub{font-size:20px; font-weight:600; color:var(--navy); max-width:520px; margin:26px 0 0;}
.hero-bottom{display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; padding:34px 0 0;}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}
.btn-dark{background:var(--navy); color:#fff; padding:16px 30px; border-radius:100px; font-weight:700; font-size:16px; display:inline-block; border:none; cursor:pointer;}
.btn-dark:hover{background:#000;}
.btn-outline{border:2.5px solid var(--navy); color:var(--navy); padding:14px 28px; border-radius:100px; font-weight:700; font-size:16px; display:inline-block;}
.btn-outline:hover{background:var(--navy); color:#fff;}
.hero-stat{font-size:14px; font-weight:700; color:var(--navy); max-width:220px; text-align:right;}
.hero-strip{height:64px; background:var(--navy); margin-top:40px; display:flex; align-items:center; overflow:hidden;}
.marquee{display:flex; gap:50px; white-space:nowrap; animation:scroll 22s linear infinite; width:max-content;}
.marquee span{font-family:'Bricolage Grotesque'; font-size:17px; font-weight:700; color:var(--lime);}
@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* PAGE HERO (internal pages) */
.page-hero{padding:60px 0 60px;}
.page-hero .back-link{display:inline-flex; gap:6px; font-size:14px; font-weight:700; margin-bottom:24px;}
.page-hero .kicker{font-size:14px; font-weight:700; color:var(--orange-2); margin-bottom:14px;}
.page-hero h1{font-size:clamp(38px,6vw,68px); font-weight:800; line-height:1.02;}
.page-hero-sub{font-size:18px; font-weight:500; max-width:600px; margin-top:20px; opacity:0.85;}
.hero-orange{background:var(--orange); color:var(--navy);}
.hero-navy{background:var(--navy); color:#fff;}
.hero-navy .kicker{color:var(--lime);}
.hero-lime{background:var(--lime); color:var(--navy);}

.section{padding:90px 0;}
.section-head{max-width:640px; margin-bottom:44px;}
.section-head .kicker{font-size:14px; font-weight:700; color:var(--orange-2); margin-bottom:10px;}
.section-head h2{font-size:clamp(32px,4.5vw,50px); font-weight:800; line-height:1.05;}

/* PATHS GRID (homepage) */
.paths-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px;}
.path-card{
  border-radius:20px; padding:36px; position:relative; overflow:hidden; min-height:260px;
  display:flex; flex-direction:column; justify-content:space-between; transition:transform .2s ease;
}
.path-card:hover{transform:translateY(-6px);}
.path-card h3{font-size:clamp(28px,3vw,38px); font-weight:800; line-height:0.98;}
.path-card p{font-size:15px; line-height:1.5; margin:14px 0 0; font-weight:500;}
.path-card .go{font-size:14px; font-weight:700; margin-top:20px;}
.p1{background:var(--navy); color:#fff;} .p1 p{color:rgba(255,255,255,0.75);}
.p2{background:var(--orange); color:var(--navy);} .p2 p{color:rgba(12,27,69,0.75);}
.p3{background:var(--lime); color:var(--navy);} .p3 p{color:rgba(12,27,69,0.75);}
.p4{background:var(--navy); color:#fff;} .p4 p{color:rgba(255,255,255,0.75);}
.p5{background:#fff; border:2.5px solid var(--ink); color:var(--navy); grid-column:span 2;}
@media (max-width:720px){ .paths-grid{grid-template-columns:1fr;} .p5{grid-column:span 1;} }

/* STATEMENT */
.statement{background:var(--navy); color:#fff; padding:100px 0;}
.statement .wrap{max-width:900px;}
.statement .kicker{color:var(--lime); font-weight:700; font-size:14px; margin-bottom:18px;}
.statement h2{font-size:clamp(32px,5vw,58px); font-weight:800; line-height:1.08;}
.statement h2 em{font-style:normal; color:var(--lime);}
.statement p{font-size:18px; color:rgba(255,255,255,0.7); margin-top:24px; max-width:560px; font-weight:500;}

/* STORIES */
.story-row{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.story-card{background:var(--ink); border-radius:20px; overflow:hidden; color:#fff;}
.story-photo{height:180px; background:linear-gradient(155deg,var(--orange),#7A2A0C);}
.story-body{padding:22px;}
.story-kicker{font-size:12px; color:var(--lime); font-weight:700; margin-bottom:8px; text-transform:uppercase; letter-spacing:0.04em;}
.story-body h3{font-size:18px; font-weight:700; line-height:1.28;}
.story-body p{font-size:14px; color:rgba(255,255,255,0.6); margin-top:10px;}
@media (max-width:880px){ .story-row{grid-template-columns:1fr;} }

.quote-section{padding:80px 0 30px;}
.quote-section blockquote{
  font-family:'Bricolage Grotesque'; font-size:clamp(26px,3.6vw,42px); font-weight:700;
  max-width:820px; line-height:1.18; margin:0 0 18px;
}
.quote-section cite{font-style:normal; color:var(--ink); opacity:0.6; font-size:15px; font-weight:600;}

.strip{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.strip-card{border-radius:20px; padding:36px; display:flex; flex-direction:column; gap:16px;}
.strip-card.orange{background:var(--orange); color:var(--navy);}
.strip-card.navy{background:var(--navy); color:#fff;}
.strip-card h3{font-size:24px; font-weight:800;}
.strip-card p{font-size:15px; line-height:1.5; font-weight:500;}
.strip-card.orange p{opacity:0.75;} .strip-card.navy p{opacity:0.7;}
@media (max-width:768px){ .strip{grid-template-columns:1fr;} }

.news{background:var(--lime); border-radius:24px; padding:50px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;}
.news h2{font-size:clamp(24px,3vw,32px); font-weight:800; max-width:420px; color:var(--navy);}
.news form{display:flex; gap:10px; flex:1; min-width:280px; max-width:420px;}
.news input{flex:1; padding:15px 18px; border-radius:100px; border:2px solid var(--navy); font-family:inherit; font-size:15px; background:#fff;}
.news button{background:var(--navy); color:#fff; border:none; padding:15px 26px; border-radius:100px; font-weight:700; font-size:15px; cursor:pointer;}

/* RESOURCE / CARD GRID (internal pages) */
.resource-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.resource-card{background:#fff; border:2px solid var(--ink); border-radius:18px; padding:26px; display:block; transition:transform .15s ease;}
.resource-card:hover{transform:translateY(-4px);}
.resource-card h3{font-size:19px; font-weight:800; margin-bottom:8px; line-height:1.25;}
.resource-card p{font-size:14px; color:rgba(12,27,69,0.7); margin:0 0 14px; line-height:1.5;}
.resource-card .link{font-weight:700; font-size:14px; color:var(--orange-2);}
@media (max-width:880px){ .resource-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .resource-grid{grid-template-columns:1fr;} }

/* FAQ */
.faq-item{border-bottom:2px solid var(--line); padding:22px 0;}
.faq-item h3{font-size:19px; font-weight:800; margin-bottom:8px;}
.faq-item p{font-size:15px; color:rgba(12,27,69,0.75); margin:0; line-height:1.6;}

/* CONTACT */
.contact-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.contact-card{background:var(--navy); color:#fff; border-radius:18px; padding:28px;}
.contact-card h3{font-size:19px; font-weight:800; margin-bottom:10px;}
.contact-card p{font-size:14px; color:rgba(255,255,255,0.7); line-height:1.55;}
@media (max-width:880px){ .contact-grid{grid-template-columns:1fr;} }

/* JOBS BOARD */
.job-card{background:#fff; border:2px solid var(--ink); border-radius:18px; padding:24px; display:flex; flex-direction:column; gap:10px;}
.job-tag{display:inline-block; background:var(--lime); color:var(--navy); font-size:12px; font-weight:800; padding:4px 10px; border-radius:100px; width:fit-content;}
.job-card h3{font-size:19px; font-weight:800;}
.job-card p{font-size:14px; color:rgba(12,27,69,0.7); margin:0;}

.placeholder-note{
  font-size:13px; color:var(--orange-2); background:rgba(240,80,28,0.08); border:1.5px dashed var(--orange-2);
  border-radius:12px; padding:14px 18px; margin-top:30px; line-height:1.5; font-weight:500;
}

/* FOOTER */
footer{background:var(--ink); color:rgba(255,255,255,0.7); padding:60px 0 30px;}
.foot-top{display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:30px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.14);}
.foot-brand .logo{color:#fff;}
.foot-brand p{font-size:14px; margin-top:16px; max-width:260px; line-height:1.6;}
.foot-col h4{font-size:13px; color:rgba(255,255,255,0.45); font-weight:700; margin-bottom:14px;}
.foot-col ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.foot-col a{font-size:14px; color:rgba(255,255,255,0.85); font-weight:500;}
.foot-col a:hover{color:var(--lime);}
.eco-badge{display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.1); padding:10px 16px; border-radius:100px; font-size:13px; margin-top:18px; font-weight:600;}
.eco-dot{width:8px; height:8px; border-radius:50%; background:var(--orange);}
.foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:13px; flex-wrap:wrap; gap:12px;}
@media (max-width:880px){ .foot-top{grid-template-columns:1fr 1fr;} }
