:root {
  --navy: #0f3152;
  --navy-deep: #08233c;
  --blue: #3b9dcb;
  --blue-soft: #dff3fa;
  --yellow: #f6cf4a;
  --ink: #132638;
  --muted: #5d6c78;
  --paper: #f8faf9;
  --white: #ffffff;
  --line: #dce5e9;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shadow: 0 24px 70px rgba(8, 35, 60, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.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;
}
.skip-link {
  position: fixed; z-index: 200; top: .75rem; left: .75rem; padding: .7rem 1rem;
  color: var(--white); background: var(--navy); border-radius: .5rem;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute; z-index: 50; top: 0; left: 0; width: 100%;
  padding: 1rem clamp(1rem, 4vw, 4rem);
}
.nav-shell {
  width: min(1180px, 100%); min-height: 72px; margin: 0 auto; padding: .45rem .55rem .45rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.75);
  border-radius: 1.1rem; box-shadow: 0 12px 35px rgba(8,35,60,.12);
  backdrop-filter: blur(18px);
}
.brand img { width: 93px; height: 59px; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-menu a {
  position: relative; color: #274157; font-size: .9rem; font-weight: 650; letter-spacing: .01em;
}
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px;
  background: var(--blue); transition: right .25s ease;
}
.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: .78rem 1.15rem; color: var(--white) !important; background: var(--navy); border-radius: .75rem; }
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: 880px; padding: 10rem clamp(1.25rem, 5vw, 5rem) 5rem;
  color: var(--white); overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(59,157,203,.36), transparent 26rem),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 67%, #164d72 100%);
}
.hero::before {
  content: ""; position: absolute; width: 28rem; height: 28rem; left: -15rem; bottom: -12rem;
  border: 5rem solid rgba(246,207,74,.08); border-radius: 50%;
}
.hero-grid {
  position: relative; z-index: 1; width: min(1180px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: clamp(3rem, 7vw, 7rem); align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 1rem; color: var(--blue); font-size: .78rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .75rem; color: #9adcf4; }
.eyebrow span { width: 2.25rem; height: 2px; background: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 660px; margin-bottom: 1.5rem; font-size: clamp(3.5rem, 6.8vw, 6.7rem);
  font-weight: 750; line-height: .94; letter-spacing: -.055em;
}
h1 em { color: var(--yellow); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 620px; color: #d7e4eb; font-size: clamp(1.08rem, 1.55vw, 1.3rem); line-height: 1.65; }
.hero-actions { margin-top: 2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem 1.8rem; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .7rem;
  padding: .85rem 1.35rem; border: 0; border-radius: .85rem; font-weight: 750;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-deep); background: var(--yellow); box-shadow: 0 12px 30px rgba(246,207,74,.2); }
.button-primary:hover { background: #ffe37b; box-shadow: 0 16px 36px rgba(246,207,74,.28); }
.button-dark { color: var(--white); background: var(--navy); }
.text-link { display: inline-flex; gap: .6rem; align-items: center; font-weight: 700; }
.text-link span { color: var(--yellow); font-size: 1.25rem; }
.hero-proof {
  display: flex; gap: 2.75rem; margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.17);
}
.hero-proof div { display: grid; gap: .15rem; }
.hero-proof strong { color: var(--white); font-size: .95rem; }
.hero-proof span { color: #9bb3c4; font-size: .78rem; }
.hero-visual { position: relative; min-height: 570px; }
.photo-card {
  position: absolute; margin: 0; overflow: hidden; border: 6px solid rgba(255,255,255,.96);
  background: #dbe5e9; box-shadow: var(--shadow);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.photo-main { z-index: 2; width: 72%; height: 430px; top: 60px; left: 9%; border-radius: 8rem 1.5rem 1.5rem 1.5rem; transform: rotate(-2deg); }
.photo-top { z-index: 3; width: 48%; height: 165px; top: 0; right: -2%; border-radius: 1rem; transform: rotate(4deg); }
.photo-bottom { z-index: 3; width: 49%; height: 180px; right: 2%; bottom: 5px; border-radius: 1rem 1rem 6rem 1rem; transform: rotate(3deg); }
.hero-stamp {
  position: absolute; z-index: 5; left: -1.5rem; bottom: 4rem; width: 118px; height: 118px;
  padding: 1.15rem; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--navy-deep); background: var(--yellow); border-radius: 50%;
  font-size: .65rem; font-weight: 850; line-height: 1.1; letter-spacing: .06em; text-transform: uppercase;
  transform: rotate(-9deg); box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.hero-stamp b { color: var(--blue); }
.scroll-cue {
  position: absolute; z-index: 2; bottom: 2rem; left: 50%; display: flex; align-items: center; gap: .8rem;
  color: #9bb3c4; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%);
}
.scroll-cue i { width: 44px; height: 1px; background: #9bb3c4; }

.section { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 5vw, 5rem); }
.section-grid, .section-heading {
  width: min(1180px, 100%); margin: 0 auto; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 8rem);
}
.section h2 {
  margin-bottom: 0; color: var(--navy-deep); font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  line-height: 1.03; letter-spacing: -.045em;
}
.intro { background: var(--white); }
.intro-copy { align-self: end; padding-top: 2rem; color: var(--muted); font-size: 1.1rem; }
.intro-copy p:first-child { color: var(--ink); font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.55; }
.values-line { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.values-line span { padding: .45rem .8rem; color: var(--navy); background: var(--blue-soft); border-radius: 999px; font-size: .8rem; font-weight: 750; }

.services { color: var(--white); background: var(--navy); }
.services .section-heading { align-items: end; }
.services .section-heading h2 { color: var(--white); }
.section-kicker.light { color: var(--yellow); }
.section-heading > p { align-self: end; max-width: 450px; margin-bottom: .45rem; color: #bcd0dc; font-size: 1.05rem; }
.service-list { width: min(1180px, 100%); margin: 4rem auto 0; border-top: 1px solid rgba(255,255,255,.18); }
.service-card {
  position: relative; display: grid; grid-template-columns: 85px minmax(0, 1fr) 54px; gap: 1rem;
  padding: 2.4rem 0; border-bottom: 1px solid rgba(255,255,255,.18); overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.045);
  transform: translateX(-102%); transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover::before { transform: translateX(0); }
.service-number { position: relative; color: var(--yellow); font-size: .82rem; font-weight: 800; letter-spacing: .12em; }
.service-body { position: relative; display: grid; grid-template-columns: .55fr .75fr 1fr; gap: 1.5rem; align-items: start; }
.service-label { color: #92b2c5; font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-body h3 { margin-bottom: 0; color: var(--white); font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.15; }
.service-body > p:last-child { margin-bottom: 0; color: #bdd0db; font-size: .96rem; }
.service-mark { position: relative; color: var(--yellow); font-size: 1.8rem; text-align: right; }

.resource { background: var(--paper); }
.resource-card {
  width: min(1180px, 100%); min-height: 500px; margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr;
  overflow: hidden; background: var(--yellow); border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(15,49,82,.1);
}
.resource-copy { z-index: 2; padding: clamp(2.5rem, 6vw, 5rem); }
.resource-copy .section-kicker { color: var(--navy); }
.resource-copy h2 { max-width: 620px; font-size: clamp(2.2rem, 4vw, 4.2rem); }
.resource-copy > p { max-width: 540px; margin: 1.5rem 0 2rem; color: #364b58; font-size: 1.05rem; }
.resource-visual { position: relative; min-height: 400px; overflow: hidden; }
.resource-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--yellow), transparent 40%); }
.resource-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.resource-word {
  position: absolute; z-index: 2; right: -1.5rem; bottom: 3rem; color: rgba(255,255,255,.88);
  font-size: clamp(2.6rem, 6vw, 6rem); font-weight: 850; letter-spacing: -.05em; writing-mode: vertical-rl;
}

.testimonials { position: relative; overflow: hidden; background: var(--white); }
.quote-mark {
  position: absolute; right: 5%; top: 1rem; color: var(--blue-soft); font-family: Georgia, serif;
  font-size: clamp(15rem, 30vw, 32rem); line-height: 1;
}
.testimonial-wrap { position: relative; width: min(1020px, 100%); margin: 0 auto; }
.testimonial-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.testimonial-head h2 { max-width: 720px; font-size: clamp(2.25rem, 4vw, 4rem); }
.slider-controls { display: flex; gap: .6rem; }
.slider-button {
  width: 52px; height: 52px; color: var(--navy); background: var(--white);
  border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: .2s;
}
.slider-button:hover, .slider-button:focus-visible { color: var(--white); background: var(--navy); }
.testimonial-stage { position: relative; min-height: 360px; margin-top: 4rem; }
.testimonial { position: absolute; inset: 0; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .4s, transform .4s; }
.testimonial.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial blockquote {
  max-width: 910px; margin: 0; color: var(--navy-deep); font-size: clamp(1.55rem, 3.1vw, 2.65rem);
  font-weight: 600; line-height: 1.35; letter-spacing: -.025em;
}
.testimonial footer { display: grid; gap: .1rem; margin-top: 2.4rem; }
.testimonial footer span { color: var(--muted); font-size: .92rem; }
.slider-progress { width: 100%; height: 3px; overflow: hidden; background: var(--line); border-radius: 2px; }
.slider-progress span { display: block; width: 33.333%; height: 100%; background: var(--blue); transition: transform .4s; }

.team { background: #eef4f6; }
.team-heading { align-items: end; }
.team-heading > p { color: var(--muted); }
.team-grid {
  width: min(1180px, 100%); margin: 4rem auto 0; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.team-card {
  min-width: 0; overflow: hidden; background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(15,49,82,.06); transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(15,49,82,.12); }
.team-card img { width: 100%; height: 285px; object-fit: cover; filter: grayscale(1); transition: filter .3s, transform .45s; }
.team-card:hover img { filter: grayscale(0); transform: scale(1.025); }
.team-card > div { padding: 1.5rem; }
.team-card > div > p:first-child { margin-bottom: .25rem; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.team-card h3 { margin-bottom: .65rem; color: var(--navy-deep); font-size: 1.35rem; }
.team-card > div > p:last-child { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.team-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.05fr .95fr; }
.team-card.featured img { height: 100%; min-height: 360px; }
.team-card.featured > div { display: flex; flex-direction: column; justify-content: end; padding: 2rem; }
.team-card.featured h3 { font-size: clamp(1.7rem, 2.5vw, 2.5rem); }

.campaign { padding-inline: 0; color: var(--white); background: #091f34; overflow: hidden; }
.campaign-intro { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto 3.5rem; display: grid; grid-template-columns: .7fr 1.2fr .8fr; gap: 3rem; align-items: end; }
.campaign-intro .section-kicker { align-self: start; }
.campaign-intro h2 { color: var(--white); font-size: clamp(2.8rem, 5vw, 5rem); }
.campaign-intro > p:last-child { margin-bottom: .4rem; color: #aec3d1; }
.campaign-rail {
  display: flex; gap: 1rem; padding: 0 max(1.25rem, calc((100vw - 1180px)/2)) 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.campaign-rail::-webkit-scrollbar { display: none; }
.campaign-rail figure {
  flex: 0 0 clamp(230px, 24vw, 330px); aspect-ratio: 1; margin: 0; overflow: hidden;
  border-radius: 1.1rem; scroll-snap-align: start; background: #163750;
}
.campaign-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.campaign-rail figure:hover img { transform: scale(1.035); }
.rail-hint { width: min(1180px, calc(100% - 2.5rem)); margin: 1.5rem auto 0; display: flex; align-items: center; gap: 1rem; color: #7f9bad; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.rail-hint i { width: 90px; height: 1px; background: var(--yellow); }

.contact { background: var(--white); }
.contact-panel {
  width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 5rem;
  padding: clamp(2.5rem, 6vw, 5rem); background: var(--blue-soft); border-radius: var(--radius-lg);
}
.contact-panel h2 { max-width: 660px; }
.contact-details { align-self: end; }
.contact-details > p { color: #486170; font-size: 1.05rem; }
.contact-details .button { margin: 1.25rem 0; }
.email-link { display: block; color: var(--navy); font-size: .9rem; text-decoration: underline; text-underline-offset: .25rem; }

.site-footer { padding: 3.5rem clamp(1.25rem, 5vw, 5rem) 1.5rem; color: #b8cbd6; background: var(--navy-deep); }
.footer-main, .footer-bottom { width: min(1180px, 100%); margin: 0 auto; display: flex; align-items: center; }
.footer-main { justify-content: space-between; gap: 2rem; padding-bottom: 2.5rem; }
.footer-logo { padding: .5rem; background: var(--white); border-radius: .75rem; }
.footer-logo img { width: 93px; height: 59px; object-fit: contain; }
.footer-main p { margin-bottom: 0; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.social-links a { color: var(--white); font-size: .85rem; }
.social-links a:hover { color: var(--yellow); }
.footer-bottom { justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .75rem; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 9rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(620px, 100%); margin: 0 auto; }
  .section-grid, .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .service-body { grid-template-columns: .7fr 1fr 1.15fr; }
  .resource-card { grid-template-columns: 1fr; }
  .resource-visual { min-height: 310px; }
  .resource-visual::after { background: linear-gradient(180deg, var(--yellow), transparent 40%); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card.featured { grid-column: span 2; }
  .campaign-intro { grid-template-columns: 1fr 1.7fr; }
  .campaign-intro > p:last-child { grid-column: 2; }
  .contact-panel { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .site-header { padding: .75rem; }
  .nav-shell { min-height: 64px; padding: .3rem .45rem .3rem .75rem; }
  .brand img { width: 80px; height: 51px; }
  .menu-toggle {
    position: relative; z-index: 2; width: 48px; height: 48px; display: grid; place-content: center;
    gap: 5px; border: 0; color: var(--navy); background: transparent; cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 2px; background: currentColor; transition: .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu {
    position: fixed; inset: 0; padding: 8rem 2rem 3rem; display: flex; flex-direction: column;
    align-items: flex-start; gap: 1.6rem; color: var(--white); background: var(--navy-deep);
    transform: translateY(-105%); visibility: hidden; transition: transform .35s, visibility .35s;
  }
  .nav-menu.open { transform: translateY(0); visibility: visible; }
  .nav-menu a { color: var(--white); font-size: 1.45rem; }
  .nav-cta { margin-top: .5rem; color: var(--navy-deep) !important; background: var(--yellow); }
  .hero { padding: 8.5rem 1.25rem 5rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-proof { gap: 1.5rem; }
  .hero-visual { min-height: 460px; }
  .photo-main { width: 76%; height: 340px; top: 60px; left: 2%; }
  .photo-top { width: 52%; height: 130px; right: -2%; }
  .photo-bottom { width: 55%; height: 145px; right: 0; bottom: 0; }
  .hero-stamp { left: 0; bottom: 1.5rem; width: 102px; height: 102px; }
  .scroll-cue { display: none; }
  .section { padding: 5rem 1.25rem; }
  .service-card { grid-template-columns: 50px 1fr; padding: 2rem 0; }
  .service-mark { display: none; }
  .service-body { grid-template-columns: 1fr; gap: .5rem; }
  .service-label, .service-body h3 { margin-bottom: .2rem; }
  .resource { padding-inline: .75rem; }
  .resource-card { border-radius: 1.25rem; }
  .resource-copy { padding: 2rem 1.5rem; }
  .resource-word { writing-mode: horizontal-tb; right: 1rem; bottom: 1rem; font-size: clamp(2rem, 12vw, 4.2rem); }
  .testimonial-head { align-items: start; flex-direction: column; }
  .testimonial-stage { min-height: 510px; margin-top: 2.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card.featured { grid-column: auto; display: block; }
  .team-card.featured img { min-height: 0; height: 310px; }
  .campaign-intro { grid-template-columns: 1fr; gap: 1rem; }
  .campaign-intro > p:last-child { grid-column: auto; }
  .contact { padding-inline: .75rem; }
  .contact-panel { padding: 2rem 1.5rem; border-radius: 1.25rem; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom { gap: .5rem; }
}

@media (max-width: 420px) {
  .hero-proof { flex-direction: column; }
  .hero-visual { min-height: 410px; }
  .photo-main { height: 300px; }
  .photo-top { height: 112px; }
  .photo-bottom { height: 125px; }
  .testimonial-stage { min-height: 590px; }
}
