:root {
  --navy: #031329;
  --navy-2: #071d38;
  --blue: #0864b6;
  --cyan: #12a8dc;
  --red: #ff334b;
  --ink: #142033;
  --muted: #5f6c7c;
  --line: #dfe5eb;
  --soft: #f3f6f9;
  --white: #fff;
  --shadow: 0 20px 60px rgba(3, 19, 41, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "Avenir Next", Avenir, "Open Sans", Arial, sans-serif; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0 0 .65em; color: var(--navy); line-height: 1.13; letter-spacing: -.028em; }
h1 { font-size: clamp(3rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.25rem; }
ul { margin: 0; padding-left: 1.15rem; }
button, input, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: #d9e6f3; }
.section-dark h2, .section-dark h3, .section-dark .eyebrow { color: #fff; }
.lead { color: #36465a; font-size: clamp(1.15rem, 1.9vw, 1.42rem); line-height: 1.6; }
.eyebrow { margin-bottom: 1.2rem; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #79cef3; }
.section-heading { max-width: 800px; margin: 0 auto clamp(2.5rem, 5vw, 4.25rem); }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.16rem; }
.section-dark .section-heading > p:not(.eyebrow) { color: #adbed0; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .9rem 1.6rem; border: 0; border-radius: 2px; font-weight: 800; letter-spacing: .03em; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: #e3233b; }
.text-link { color: var(--blue); font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid rgba(3,19,41,.08); background: rgba(255,255,255,.97); backdrop-filter: blur(12px); }
.header-inner { display: flex; height: 86px; align-items: center; justify-content: space-between; }
.brand img { width: 145px; max-height: 58px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.desktop-nav a { position: relative; color: #24334a; font-size: .86rem; font-weight: 700; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -.7rem; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { display: grid; width: 42px; height: 42px; cursor: pointer; list-style: none; place-content: center; gap: 5px; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 24px; height: 2px; background: var(--navy); }
.mobile-menu nav { position: absolute; top: 58px; right: 0; display: grid; width: min(320px, calc(100vw - 32px)); padding: 1rem; border-top: 3px solid var(--red); background: #fff; box-shadow: var(--shadow); }
.mobile-menu nav a { padding: .75rem .5rem; border-bottom: 1px solid var(--line); font-weight: 700; }

.home-hero { position: relative; min-height: min(760px, calc(100vh - 86px)); display: grid; align-items: center; background: var(--navy) url("/images/home-hero.jpg") center / cover no-repeat; color: #fff; }
.home-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,10,25,.86) 0%, rgba(1,10,25,.62) 45%, rgba(1,10,25,.04) 72%); content: ""; }
.hero-inner { position: relative; z-index: 1; }
.hero-copy { max-width: 730px; padding: 6rem 0; }
.hero-copy h1 { color: #fff; font-size: clamp(3.3rem, 6.7vw, 6.6rem); text-transform: uppercase; }
.hero-copy h1 em { color: var(--red); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 610px; color: #dce8f5; font-size: clamp(1.05rem, 2vw, 1.4rem); }
.hero-copy .button { margin-top: .6rem; }
.page-hero { display: grid; min-height: 330px; align-items: center; background: var(--navy) url("/images/page-hero.png") center / cover no-repeat; color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(3.25rem, 7vw, 6.25rem); }

.intro-section h2 { margin-bottom: .3em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.feature-image { overflow: hidden; aspect-ratio: 1.45; background: #e8edf2; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-card:hover .feature-image img { transform: scale(1.035); }
.feature-body { padding: 2rem; }
.feature-body > p { color: var(--muted); }
.check-list { display: grid; gap: .62rem; margin: 1.4rem 0 1.8rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.55rem; }
.check-list li::before { position: absolute; top: .18rem; left: 0; color: var(--red); content: "✓"; font-weight: 900; }
.logos-section { padding-block: 4.5rem; }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.logo-grid.compact { grid-template-columns: repeat(6, 1fr); }
.logo-card { display: grid; min-height: 130px; padding: 1.35rem; place-items: center; border: 1px solid var(--line); background: #fff; }
.logo-card img { width: 100%; max-height: 68px; object-fit: contain; filter: grayscale(100%); opacity: .82; transition: filter .2s, opacity .2s; }
.logo-card:hover img { filter: none; opacity: 1; }
.cta-section { padding: clamp(4.5rem, 8vw, 7rem) 0; background: linear-gradient(90deg, rgba(3,19,41,.96), rgba(3,19,41,.76)), url("/images/cta.jpg") center/cover; color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-inner > div { max-width: 790px; }
.cta-section h2 { margin-bottom: .3em; color: #fff; }
.cta-section p:not(.eyebrow) { color: #d7e2ed; font-size: 1.15rem; }
.cta-section .button { flex: 0 0 auto; }
.value-strip { padding: 4.5rem 0; background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-grid article { padding: 1rem 3rem; border-right: 1px solid var(--line); }
.value-grid article:first-child { padding-left: 0; }
.value-grid article:last-child { padding-right: 0; border: 0; }
.value-grid span { color: var(--red); font-size: .82rem; font-weight: 900; }
.value-grid h3 { margin: .45rem 0; }
.value-grid p { color: var(--muted); }
.value-link { margin-top: 2.5rem; }

.split-intro { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.intro-art img { filter: drop-shadow(0 24px 35px rgba(3,19,41,.16)); }
.two-column-list { grid-template-columns: repeat(2, 1fr); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.service-card > img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.service-card > div { padding: 1.7rem 1.8rem 2rem; }
.service-card ul { display: grid; gap: .5rem; color: var(--muted); }
.pmc-section { background: var(--navy); color: #d5e1ee; }
.pmc-section h2 { color: #fff; }
.pmc-image { width: 100%; max-height: 270px; object-fit: cover; border: 8px solid rgba(255,255,255,.08); }
.light-list li::before { color: #62c7f3; }

.audience-list { padding-top: 2rem; }
.split-panel { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 540px; margin: 3rem 0; background: #fff; box-shadow: var(--shadow); }
.split-panel.reverse { grid-template-columns: 1.22fr .78fr; }
.split-panel.reverse .split-image { order: 2; }
.split-image { overflow: hidden; background: var(--navy); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image.portrait img { object-position: center 35%; }
.split-copy { align-self: center; padding: clamp(2.5rem, 6vw, 5rem); }

.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.process-card { padding: 1.4rem 1.4rem 2.4rem; background: #fff; box-shadow: var(--shadow); }
.process-card .process-image { overflow: hidden; margin-bottom: 1.7rem; aspect-ratio: 1.8; }
.process-card img { width: 100%; height: 100%; object-fit: cover; }
.process-card > span { color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.process-card h2 { margin: .3rem 0 .5rem; font-size: 2rem; }
.process-card p { color: var(--muted); }
.twin-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.twin-panels article { padding-bottom: 2rem; }
.twin-panels article > img { width: 100%; aspect-ratio: 1.7; margin-bottom: 2rem; object-fit: cover; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.testimonial-card { display: flex; min-height: 360px; flex-direction: column; margin: 0; padding: 2.2rem; border-top: 4px solid var(--blue); background: var(--soft); }
.quote-mark { height: 3.7rem; color: var(--red); font-family: Georgia, serif; font-size: 5.5rem; line-height: 1; }
.testimonial-card blockquote { margin: 0 0 2rem; color: #34455a; }
.testimonial-card figcaption { display: grid; margin-top: auto; }
.testimonial-card figcaption strong { color: var(--navy); }
.testimonial-card figcaption span { color: var(--muted); font-size: .9rem; }

.about-intro { align-items: stretch; }
.principles-card { padding: clamp(2.5rem, 5vw, 4rem); background: var(--soft); border-left: 5px solid var(--red); }
.difference-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.difference-grid div { display: grid; padding: 2.2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.16); }
.difference-grid div:last-child { border: 0; }
.difference-grid strong { color: #fff; font-size: 1.25rem; }
.difference-grid span { color: #9fb2c6; font-size: .9rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.team-card { overflow: hidden; background: var(--soft); }
.team-card > img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card > div { padding: 1.5rem; }
.team-card .eyebrow { margin-bottom: .55rem; font-size: .62rem; }
.team-card h3 { margin-bottom: .3rem; }
.team-card p:last-child { color: var(--muted); font-size: .92rem; }

.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); }
.contact-details { display: grid; gap: 1.4rem; margin-top: 3rem; }
.contact-details > div { display: grid; }
.contact-details span { color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a, .contact-details address { color: var(--navy); font-size: 1.06rem; font-style: normal; font-weight: 700; }
.contact-form { display: grid; gap: 1.25rem; padding: clamp(2rem, 4.5vw, 3.5rem); background: #fff; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; color: #27364a; font-size: .82rem; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: .9rem 1rem; border: 1px solid #c9d2dc; border-radius: 0; outline: 0; background: #fff; color: var(--ink); font-weight: 400; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,100,182,.12); }
.contact-form .button { justify-self: start; }
.form-note { margin: -.25rem 0 0; color: var(--muted); font-size: .78rem; }
.legal-page h2 { margin-top: 2.5rem; font-size: 1.65rem; }
.legal-page h3 { margin: 1.5rem 0 .4rem; font-size: 1.15rem; }
.legal-page a { color: var(--blue); font-weight: 700; }

.site-footer { padding-top: 4.5rem; background: #020d1d; color: #aebdce; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-logo { width: 190px; margin-bottom: 1.2rem; filter: none; opacity: 1; }
.footer-grid h2 { margin-bottom: 1.2rem; color: #fff; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid nav, .footer-grid > div:last-child { display: grid; align-content: start; gap: .6rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .feature-grid, .service-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid.compact { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid div:nth-child(2) { border-right: 0; }
  .difference-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .header-inner { height: 74px; }
  .brand img { width: 125px; }
  .home-hero { min-height: 650px; background-position: 62% center; }
  .home-hero::after { background: rgba(1,10,25,.72); }
  .hero-copy { padding: 5rem 0; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .page-hero { min-height: 260px; }
  .feature-grid, .service-grid, .testimonial-grid, .process-grid, .twin-panels, .team-grid, .split-intro, .contact-grid { grid-template-columns: 1fr; }
  .feature-card { max-width: 520px; margin-inline: auto; }
  .logo-grid, .logo-grid.compact { grid-template-columns: repeat(2, 1fr); }
  .logo-card { min-height: 105px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article, .value-grid article:first-child, .value-grid article:last-child { padding: 1.7rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-grid article:last-child { border-bottom: 0; }
  .two-column-list { grid-template-columns: 1fr; }
  .split-panel, .split-panel.reverse { grid-template-columns: 1fr; }
  .split-panel.reverse .split-image { order: 0; }
  .split-image { height: 340px; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
