

:root {
  --navy: #001f46;
  --navy-2: #032c5c;
  --ink: #04294d;
  --electric: #0a43ff;
  --aqua: #00d6bc;
  --aqua-dark: #009f93;
  --sky: #b9edff;
  --mint: #d9fbf4;
  --paper: #f5f7f9;
  --line: #d8e0e7;
  --muted: #5d7083;
  --white: #fff;
  --font: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: white; color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
a, button, summary { touch-action: manipulation; }
:focus-visible { outline: 3px solid #ffbf47; outline-offset: 4px; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
p { color: var(--muted); font-size: 16px; line-height: 1.65; }

.page-width { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.section-pad { padding-block: 112px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 12px 18px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,.2); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.concept-note { position: fixed; right: 18px; bottom: 18px; z-index: 100; padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; background: rgba(0,31,70,.92); box-shadow: 0 12px 30px rgba(0,31,70,.22); color: white; font-size: 9px; font-weight: 700; letter-spacing: .06em; backdrop-filter: blur(12px); }
.kicker { margin: 0 0 22px; color: var(--electric); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.kicker--light { color: var(--aqua); }
.lead { color: var(--ink); font-size: 23px; font-weight: 540; line-height: 1.46; }

.arrow-box { display: inline-grid; width: 58px; height: 58px; place-items: center; background: var(--aqua); color: var(--navy); font-size: 25px; font-weight: 400; transition: background .22s ease, color .22s ease, transform .22s ease; }
.arrow-box--dark { background: var(--navy); color: white; }

/* Header */
.site-header { position: relative; z-index: 50; background: white; color: var(--navy); }
.utility-bar { display: flex; min-height: 42px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.utility-bar, .utility-bar a { font-size: 10px; font-weight: 650; }
.utility-contact, .utility-bar nav { display: flex; align-items: center; gap: 28px; }
.utility-bar nav { gap: 25px; }
.utility-bar a { transition: color .18s ease; }
.utility-bar a:hover { color: var(--electric); }
.main-nav { display: grid; min-height: 92px; grid-template-columns: 220px 1fr auto; align-items: center; gap: 35px; }
.logo-link { display: inline-flex; width: fit-content; }
.site-logo { width: auto; height: 54px; object-fit: contain; }
.desktop-nav { display: flex; min-height: 92px; align-items: center; justify-content: center; gap: 31px; }
.desktop-nav > a, .nav-dropdown > summary { position: relative; display: flex; min-height: 92px; align-items: center; color: var(--navy); font-size: 13px; font-weight: 680; cursor: pointer; list-style: none; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary span { margin-left: 7px; font-size: 13px; transition: transform .18s ease; }
.nav-dropdown[open] > summary span { transform: rotate(180deg); }
.desktop-nav > a::after, .nav-dropdown > summary::after { position: absolute; right: 0; bottom: 24px; left: 0; height: 3px; background: var(--aqua); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav > a:hover::after, .nav-dropdown > summary:hover::after, .nav-dropdown[open] > summary::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.mega-menu { position: absolute; top: 92px; left: -215px; display: grid; width: 790px; padding: 34px; border-top: 4px solid var(--aqua); background: white; box-shadow: 0 25px 60px rgba(0,31,70,.22); grid-template-columns: .9fr 1.35fr; gap: 38px; }
.mega-intro { padding: 27px; background: var(--navy); color: white; }
.mega-intro small { display: block; margin-bottom: 18px; color: var(--aqua); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mega-intro strong { display: block; font-size: 25px; line-height: 1.18; }
.mega-intro a { display: inline-block; margin-top: 38px; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 6px; font-size: 11px; font-weight: 700; }
.mega-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 25px; }
.mega-links a { display: flex; min-height: 58px; border-bottom: 1px solid var(--line); align-items: center; justify-content: space-between; font-size: 12px; font-weight: 680; }
.mega-links a span { color: var(--electric); font-size: 17px; transition: transform .18s ease; }
.mega-links a:hover span { transform: translateX(4px); }
.nav-cta { display: flex; min-height: 58px; padding-left: 20px; align-items: center; gap: 22px; background: var(--navy); color: white; font-size: 12px; font-weight: 700; transition: background .2s ease; }
.nav-cta .arrow-box { width: 58px; height: 58px; }
.nav-cta:hover { background: var(--electric); }
.nav-cta:hover .arrow-box { background: white; }
.mobile-menu { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 68px 0 38px; background: var(--navy); color: white; }
.hero::before { position: absolute; top: -210px; right: -250px; width: 780px; height: 780px; border: 1px solid rgba(0,214,188,.14); border-radius: 50%; content: ""; }
.hero::after { position: absolute; top: -120px; right: -160px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.hero-heading { position: relative; z-index: 2; }
.hero-title { max-width: 950px; margin: 0; color: white; font-size: clamp(57px, 6vw, 82px); font-weight: 650; letter-spacing: -.045em; line-height: 1.01; }
.hero-title span { color: var(--aqua); }
.hero-intro { max-width: 640px; margin: 27px 0 0; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-pills { display: flex; margin: 37px 0 48px; gap: 10px; }
.hero-pills a { display: flex; min-height: 47px; padding: 0 21px; border: 1px solid rgba(255,255,255,.35); border-radius: 100px; align-items: center; color: white; font-size: 12px; font-weight: 700; transition: border .18s ease, background .18s ease, color .18s ease; }
.hero-pills a:hover, .hero-pills a.active { border-color: var(--electric); background: var(--electric); }
.hero-rail { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { position: relative; display: flex; min-height: 350px; padding: 33px; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; }
.feature-card > img, .feature-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature-card > img { object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.feature-shade { background: linear-gradient(0deg, rgba(0,17,41,.76), rgba(0,31,70,.03) 72%); }
.feature-copy { position: relative; z-index: 2; max-width: 92%; }
.feature-copy small { display: block; margin-bottom: 14px; font-size: 11px; font-weight: 700; }
.feature-copy h3 { max-width: 410px; margin: 0; font-size: clamp(30px,3vw,45px); font-weight: 630; line-height: 1.08; }
.feature-copy p { margin: 15px 0 0; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.5; }
.feature-card--aqua { background: var(--aqua); color: var(--navy); }
.feature-card--aqua .feature-copy p { color: rgba(0,31,70,.72); }
.feature-card--blue { background: var(--electric); }
.feature-card > .arrow-box { position: absolute; top: 0; right: 0; z-index: 3; }
.feature-card:hover > img { transform: scale(1.055); }
.feature-card:hover > .arrow-box { background: white; color: var(--navy); transform: translate(-5px,5px); }

/* Intro */
.trust-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: start; }
.trust-heading h1 { max-width: 660px; margin: 0; font-size: clamp(52px,5vw,73px); font-weight: 630; line-height: 1.02; }
.trust-heading h1 span { color: var(--electric); }
.trust-copy { max-width: 590px; padding-top: 35px; }
.trust-copy p:not(.lead) { margin-bottom: 25px; }
.inline-link { display: inline-flex; margin-top: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--navy); align-items: center; gap: 30px; color: var(--navy); font-size: 12px; font-weight: 760; }
.inline-link span { color: var(--electric); font-size: 20px; transition: transform .18s ease; }
.inline-link:hover span { transform: translateX(5px); }

/* Approach */
.approach { overflow: hidden; background: var(--navy-2); color: white; }
.approach-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: center; }
.approach-statement h2 { margin: 0 0 34px; color: white; font-size: clamp(49px,4.7vw,68px); font-weight: 620; line-height: 1.03; }
.approach-statement h2 span { color: var(--aqua); }
.approach-statement p:not(.kicker) { color: rgba(255,255,255,.7); }
.approach-statement p:nth-of-type(2) { color: white; font-size: 19px; font-weight: 520; }
.approach-stack { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; align-items: stretch; }
.approach-card { position: relative; min-height: 565px; overflow: hidden; }
.approach-card--picture > img, .picture-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.approach-card--picture > img { object-fit: cover; transition: transform .6s ease; }
.picture-overlay { background: linear-gradient(0deg, rgba(0,31,70,.86), rgba(0,31,70,.02) 70%); }
.approach-card--picture > div { position: absolute; right: 30px; bottom: 30px; left: 30px; z-index: 2; }
.approach-card--picture small, .approach-card--cfp small { display: block; margin-bottom: 20px; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.approach-card--picture strong { font-size: 39px; line-height: 1.03; }
.approach-card--picture:hover > img { transform: scale(1.04); }
.approach-card--cfp { display: flex; padding: 35px; flex-direction: column; justify-content: space-between; background: white; color: var(--navy); }
.approach-card--cfp > img { width: 150px; height: auto; margin-inline: auto; }
.approach-card--cfp small { color: var(--electric); }
.approach-card--cfp p { font-size: 13px; line-height: 1.58; }
.approach-card--cfp > p { margin: 0; padding-top: 22px; border-top: 1px solid var(--line); }

/* Titles and services */
.services { background: var(--paper); }
.section-title { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.section-title h2, .review-heading h2, .principal-copy h2, .difference-heading h2, .contact h2 { margin: 0; font-size: clamp(50px,5vw,72px); font-weight: 630; line-height: 1.02; }
.section-title > p { margin: 0 0 8px; font-size: 13px; }
.service-grid { display: grid; margin-top: 65px; grid-template-columns: repeat(4,1fr); }
.service-card { position: relative; display: flex; min-height: 290px; padding: 27px; flex-direction: column; justify-content: flex-end; overflow: hidden; border-right: 1px solid rgba(255,255,255,.34); color: white; transition: transform .24s ease, box-shadow .24s ease; }
.service-card:nth-child(4n) { border-right: 0; }
.service-card small, .service-card h3, .service-card > .arrow-box { position: relative; z-index: 3; }
.service-card small { position: absolute; top: 29px; left: 27px; font-size: 9px; font-weight: 760; }
.service-card h3 { max-width: 260px; margin: 0; padding-right: 45px; font-size: 28px; font-weight: 630; line-height: 1.06; }
.service-card > .arrow-box { position: absolute; right: 0; bottom: 0; width: 52px; height: 52px; }
.service-card--blue { background: var(--electric); }
.service-card--aqua { background: var(--aqua); color: var(--navy); }
.service-card--navy { background: var(--navy); }
.service-card--sky { background: var(--sky); color: var(--navy); }
.service-card--white { border: 1px solid var(--line); background: white; color: var(--navy); }
.service-card--ink { background: #0b3d62; }
.service-card--mint { background: var(--mint); color: var(--navy); }
.service-card--image > img, .service-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-card--image > img { object-fit: cover; transition: transform .5s ease; }
.service-shade { z-index: 1; background: linear-gradient(0deg, rgba(0,31,70,.92), rgba(0,31,70,.03)); }
.service-card:hover { z-index: 4; box-shadow: 0 24px 60px rgba(0,31,70,.2); transform: translateY(-8px); }
.service-card:hover > img { transform: scale(1.06); }
.service-card:hover > .arrow-box { background: white; color: var(--navy); }

/* Reviews */
.reviews { background: var(--navy); color: white; }
.review-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.review-heading h2 { color: white; }
.score { display: flex; align-items: center; gap: 18px; }
.score > strong { color: white; font-size: 58px; line-height: 1; }
.score > span { display: flex; flex-direction: column; color: #f3c755; font-size: 15px; letter-spacing: .05em; }
.score small { margin-top: 7px; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 600; letter-spacing: 0; }
.review-rail { display: grid; margin-top: 65px; grid-template-columns: repeat(3,1fr); }
.review-card { display: flex; min-height: 420px; padding: 34px; border: 1px solid rgba(255,255,255,.18); border-right: 0; flex-direction: column; color: white; transition: background .22s ease, transform .22s ease; }
.review-card:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.review-card:hover { background: var(--navy-2); transform: translateY(-6px); }
.review-topline { display: flex; align-items: center; justify-content: space-between; }
.review-topline span { color: rgba(255,255,255,.4); font-size: 9px; }
.review-topline strong { color: #f3c755; font-size: 12px; letter-spacing: .05em; }
.review-card blockquote { margin: 64px 0 40px; color: white; font-size: 20px; font-weight: 480; line-height: 1.55; }
.review-card footer { display: flex; margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); flex-direction: column; }
.review-card footer strong { font-size: 12px; }
.review-card footer span { margin-top: 5px; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; }

/* Principal */
.principal { background: white; }
.principal-grid { display: grid; grid-template-columns: .85fr 1fr .55fr; gap: 72px; align-items: center; }
.principal-photo { position: relative; padding: 0 32px 32px 0; }
.principal-photo::before { position: absolute; top: 32px; right: 0; bottom: 0; left: 32px; border: 4px solid var(--aqua); content: ""; }
.principal-photo img { position: relative; z-index: 2; width: 100%; aspect-ratio: 1; object-fit: cover; }
.principal-photo > span { position: absolute; right: 0; bottom: 0; z-index: 3; padding: 17px 20px; background: var(--electric); color: white; font-size: 9px; font-weight: 760; text-transform: uppercase; }
.principal-copy h2 span { white-space: nowrap; color: var(--electric); font-size: .43em; letter-spacing: 0; }
.principal-copy h3 { margin: 18px 0 7px; color: var(--muted); font-size: 16px; font-weight: 650; letter-spacing: 0; }
.credential { margin-bottom: 32px; color: var(--electric); font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.solid-link { display: inline-flex; padding-left: 21px; align-items: center; gap: 25px; background: var(--navy); color: white; font-size: 12px; font-weight: 720; }
.solid-link:hover { background: var(--electric); }
.principal-grid aside { padding-left: 30px; border-left: 1px solid var(--line); }
.principal-grid aside > img { width: 150px; height: 150px; margin-bottom: 28px; object-fit: cover; }
.principal-grid aside small { color: var(--electric); font-size: 9px; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.principal-grid aside p { margin: 25px 0 0; font-size: 14px; }

/* Process */
.process { background: var(--paper); }
.process-grid { display: grid; margin-top: 65px; border-top: 2px solid var(--navy); grid-template-columns: repeat(4,1fr); }
.process-grid article { position: relative; min-height: 330px; padding: 31px; border-right: 1px solid var(--line); background: white; transition: background .22s ease, color .22s ease; }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { color: var(--electric); font-size: 10px; font-weight: 780; }
.process-grid h3 { max-width: 220px; margin: 70px 0 18px; font-size: 27px; font-weight: 630; line-height: 1.1; }
.process-grid p { margin: 0; font-size: 13px; line-height: 1.58; }
.process-grid i { position: absolute; right: 25px; bottom: 23px; color: var(--electric); font-size: 22px; font-style: normal; transition: transform .18s ease; }
.process-grid article:hover { background: var(--navy); color: white; }
.process-grid article:hover p { color: rgba(255,255,255,.7); }
.process-grid article:hover i { color: var(--aqua); transform: translateX(5px); }

/* Foundations */
.foundations { position: relative; overflow: hidden; background: var(--electric); color: white; }
.foundations::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,67,255,.96), rgba(10,67,255,.82) 55%, rgba(0,31,70,.58)); content: ""; }
.foundations-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.foundations > .page-width { position: relative; z-index: 2; }
.foundations-grid { display: grid; margin-top: 55px; grid-template-columns: repeat(3,1fr); }
.foundations-grid article { min-height: 380px; padding: 37px; border: 1px solid rgba(255,255,255,.25); border-right: 0; }
.foundations-grid article:last-child { border-right: 1px solid rgba(255,255,255,.25); }
.foundations-grid article > div { display: flex; align-items: center; justify-content: space-between; }
.foundations-grid span { color: var(--aqua); font-size: 11px; font-weight: 750; }
.foundations-grid small { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.foundations-grid h3 { margin: 95px 0 20px; font-size: 31px; font-weight: 630; }
.foundations-grid p { color: rgba(255,255,255,.76); font-size: 14px; }

/* Difference */
.difference { background: white; }
.difference-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.difference-heading { position: sticky; top: 35px; align-self: start; }
.difference-heading h2 { max-width: 430px; }
.difference-copy .lead { margin-bottom: 45px; font-size: 25px; }
.difference-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 50px; }
.difference-columns p { padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; }

/* Contact */
.contact { overflow: hidden; background: var(--aqua); color: var(--navy); }
.contact-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 95px; align-items: start; }
.contact-grid::after { position: absolute; right: -520px; bottom: -490px; width: 900px; height: 900px; border: 1px solid rgba(0,31,70,.18); border-radius: 50%; content: ""; pointer-events: none; }
.contact h2 { max-width: 650px; }
.contact-grid > div > a { display: block; width: fit-content; margin-top: 34px; padding-bottom: 6px; border-bottom: 1px solid rgba(0,31,70,.45); font-size: 14px; font-weight: 700; }
.contact-grid > div > a + a { margin-top: 12px; }
.contact-form { position: relative; z-index: 2; display: grid; padding: 40px; grid-template-columns: repeat(2,1fr); gap: 24px 22px; background: white; box-shadow: 0 25px 65px rgba(0,31,70,.17); }
.contact-form label { display: flex; flex-direction: column; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label span { margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: white; color: var(--navy); resize: vertical; }
.contact-form input { height: 45px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--electric); }
.contact-form button { display: flex; width: fit-content; min-height: 58px; padding: 0 0 0 22px; border: 0; align-items: center; gap: 25px; background: var(--electric); color: white; font-size: 12px; font-weight: 730; cursor: pointer; }
.contact-form button .arrow-box { width: 58px; height: 58px; background: var(--navy); }

/* Footer */
.footer { padding: 76px 0 28px; background: var(--navy); color: white; }
.footer-main { display: grid; padding-bottom: 65px; grid-template-columns: 1.35fr .65fr .75fr .9fr; gap: 62px; }
.footer .site-logo { padding: 6px 11px; background: white; }
.footer-brand p { max-width: 330px; margin: 25px 0 0; color: rgba(255,255,255,.52); font-size: 13px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; color: rgba(255,255,255,.58); font-size: 11px; }
.footer-main > div > strong { margin-bottom: 10px; color: var(--aqua); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-main a:hover { color: white; }
.disclosure { padding: 27px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.7; }
.disclosure a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; padding-top: 24px; justify-content: space-between; color: rgba(255,255,255,.68); font-size: 12px; }

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: reveal-up linear both; animation-timeline: view(); animation-range: entry 5% cover 28%; }
    @keyframes reveal-up { from { opacity: .15; transform: translateY(35px); } to { opacity: 1; transform: none; } }
  }
}

@media (max-width: 1120px) {
  .page-width { width: min(100% - 48px, 980px); }
  .main-nav { grid-template-columns: 205px 1fr auto; }
  .desktop-nav { gap: 20px; }
  .desktop-nav > a, .nav-dropdown > summary { font-size: 12px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-statement { max-width: 760px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-card:nth-child(2n) { border-right: 0; }
  .principal-grid { grid-template-columns: .85fr 1.15fr; }
  .principal-grid aside { grid-column: 2; }
  .footer-main { grid-template-columns: 1.1fr .7fr .8fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
  .utility-bar, .desktop-nav, .nav-cta { display: none; }
  .main-nav { min-height: 82px; grid-template-columns: 1fr auto; }
  .site-logo { height: 48px; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu > summary { display: flex; width: 52px; height: 52px; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 7px; cursor: pointer; list-style: none; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span { width: 20px; height: 2px; background: var(--navy); transition: transform .18s ease, background .18s ease; }
  .mobile-menu[open] > summary { border-color: var(--navy); background: var(--navy); }
  .mobile-menu[open] > summary span { background: white; }
  .mobile-menu[open] > summary span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .mobile-menu[open] > summary span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; top: 60px; right: 0; z-index: 20; display: flex; width: min(360px, calc(100vw - 48px)); max-height: calc(100dvh - 96px); padding: 18px; overflow-y: auto; overscroll-behavior: contain; flex-direction: column; background: white; box-shadow: 0 20px 55px rgba(0,31,70,.22); }
  .mobile-menu nav a { display: flex; min-height: 48px; padding: 12px 13px; border-bottom: 1px solid var(--line); align-items: center; font-size: 13px; font-weight: 670; }
  .hero { padding-top: 60px; }
  .hero-rail { display: flex; width: auto; margin-left: 24px; padding-right: 24px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .feature-card { min-width: min(78vw, 540px); flex: 0 0 auto; scroll-snap-align: start; }
  .trust-intro, .principal-grid, .difference-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-copy { padding-top: 0; }
  .approach-stack { grid-template-columns: 1fr 1fr; }
  .review-rail { display: flex; width: auto; margin-left: 24px; padding-right: 24px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .review-card { min-width: min(78vw,500px); flex: 0 0 auto; scroll-snap-align: start; border-right: 1px solid rgba(255,255,255,.18); }
  .principal-photo { max-width: 540px; }
  .principal-grid aside { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .difference-heading { position: static; }
  .difference-columns { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .page-width { width: min(100% - 36px, 560px); }
  .section-pad { padding-block: 82px; }
  .concept-note { right: 10px; bottom: 10px; font-size: 8px; }
  .hero { padding: 48px 0 28px; }
  .hero-title { font-size: clamp(45px,13vw,61px); }
  .hero-intro { font-size: 16px; }
  .hero-pills { margin-bottom: 35px; overflow-x: auto; padding-bottom: 5px; }
  .hero-pills a { min-width: max-content; }
  .hero-rail { margin-left: 18px; padding-right: 18px; }
  .feature-card { min-width: 85vw; min-height: 385px; }
  .feature-copy h3 { font-size: 35px; }
  .trust-intro { gap: 38px; }
  .trust-heading h1, .section-title h2, .review-heading h2, .principal-copy h2, .difference-heading h2, .contact h2 { font-size: clamp(43px,12vw,58px); }
  .lead { font-size: 20px; }
  .approach-grid { gap: 50px; }
  .approach-statement h2 { font-size: 46px; }
  .approach-stack { grid-template-columns: 1fr; }
  .approach-card { min-height: 480px; }
  .approach-card--cfp { min-height: 520px; }
  .section-title { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
  .review-heading { align-items: flex-start; flex-direction: column; }
  .review-rail { margin-left: 18px; padding-right: 18px; }
  .review-card { min-width: 87vw; min-height: 430px; }
  .principal-grid { gap: 50px; }
  .principal-grid aside { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 285px; border-right: 0; border-bottom: 1px solid var(--line); }
  .foundations-grid { grid-template-columns: 1fr; }
  .foundations-grid article { min-height: 330px; border-right: 1px solid rgba(255,255,255,.25); border-bottom: 0; }
  .foundations-grid h3 { margin-top: 70px; }
  .difference-grid { gap: 50px; }
  .contact-grid { gap: 55px; }
  .contact-form { grid-template-columns: 1fr; padding: 27px; }
  .contact-form label.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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

/* Premium multi-page build */
.hero--photographic { min-height: 690px; padding: 0; display: flex; align-items: center; isolation: isolate; }
.hero--photographic::before, .hero--photographic::after { display: none; }
.hero-background, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-background { z-index: -2; object-fit: cover; object-position: center 48%; }
.hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(0,31,70,.94) 0%, rgba(0,31,70,.77) 48%, rgba(0,31,70,.2) 78%, rgba(0,31,70,.05) 100%); }
.hero--photographic .hero-heading { padding-block: 100px; }
.hero--photographic .hero-title { max-width: 900px; }
.hero-actions { display: flex; margin-top: 38px; gap: 12px; flex-wrap: wrap; }
.hero-action { display: inline-flex; min-height: 58px; padding: 0 22px; border: 1px solid rgba(255,255,255,.52); align-items: center; justify-content: space-between; gap: 38px; color: white; font-size: 12px; font-weight: 750; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.hero-action span { color: var(--aqua); font-size: 20px; }
.hero-action:hover, .hero-action--primary { border-color: var(--electric); background: var(--electric); }
.hero-action--primary:hover { border-color: white; background: white; color: var(--navy); }
.hero-action--primary:hover span { color: var(--electric); }
.feature-band { padding: 28px 0 45px; background: var(--navy); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 335px; }
.feature-card--navy { background: var(--navy-2); }

.service-card { min-height: 340px; }
.service-copy { position: relative; z-index: 3; padding-right: 36px; }
.service-copy h3 { padding-right: 0; }
.service-copy p { margin: 14px 0 0; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.52; }
.service-card--aqua .service-copy p, .service-card--mint .service-copy p { color: rgba(0,31,70,.72); }

.review-person { display: flex; align-items: center; gap: 16px; }
.review-person img { width: 62px; height: 62px; border: 2px solid rgba(255,255,255,.35); border-radius: 50%; object-fit: cover; }
.review-person > div { display: flex; flex-direction: column; }
.review-person strong { font-size: 13px; }
.review-person span { margin-top: 3px; color: #f3c755; font-size: 11px; letter-spacing: .06em; }
.review-person small { margin-top: 4px; color: rgba(255,255,255,.68); font-size: 11px; }
.review-card blockquote { margin-top: 38px; }
.review-card footer a { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; }
.review-card footer a:hover { color: white; }
.review-card footer a span { color: var(--aqua); font-size: 15px; }

.principal-grid { grid-template-columns: 1.08fr .92fr; gap: 100px; }
.principal-copy { max-width: 650px; }
.principal-copy > p:not(.kicker):not(.credential) { max-width: 620px; }
.principal-photo { grid-column: 2; grid-row: 1; }
.process-grid article:hover { background: white; color: inherit; }
.process-grid article:hover p { color: var(--muted); }
.process-grid article { cursor: default; }

.contact-note { max-width: 500px; margin-top: 35px; color: rgba(0,31,70,.7); font-size: 12px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form button:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 22px; margin: 0; grid-column: 1 / -1; font-size: 12px; font-weight: 650; }
.form-status p { margin: 0; color: inherit; font-size: inherit; }
.form-status a { display: inline-block; margin-top: 8px; color: var(--electric); text-decoration: underline; text-underline-offset: 3px; }
.form-status--sent { color: #087665; }
.form-status--error { color: #a32626; }

.footer-main { grid-template-columns: 1.45fr .62fr 1fr 1fr .7fr; gap: 42px; }
.footer-main > div:not(.footer-brand) { font-size: 12px; }
.social-links { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 8px; }
.social-links a { padding: 9px 11px; border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; }
.social-links a:hover { border-color: var(--aqua); color: white; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.footer-bottom a:hover { color: white; }

/* Interior page system */
.page-hero { position: relative; overflow: hidden; padding: 95px 0 105px; background: var(--navy); color: white; }
.page-hero::after { position: absolute; top: -300px; right: -220px; width: 760px; height: 760px; border: 1px solid rgba(0,214,188,.2); border-radius: 50%; content: ""; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.page-hero h1 { max-width: 800px; margin: 0; color: white; font-size: clamp(55px,5.4vw,82px); font-weight: 640; line-height: 1.01; }
.page-hero h1 span { color: var(--aqua); }
.page-hero .lead { max-width: 640px; margin: 30px 0 0; color: rgba(255,255,255,.75); }
.page-hero-actions { display: flex; margin-top: 36px; gap: 14px; flex-wrap: wrap; }
.page-hero-media { position: relative; min-height: 470px; }
.page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.2); content: ""; transform: translate(18px,18px); }
.breadcrumbs { margin-bottom: 28px; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 650; }
.breadcrumbs a:hover { color: white; }
.content-intro { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.content-intro h2, .area-heading h2, .faq-heading h2, .insights-title h1, .profile-title h1 { margin: 0; font-size: clamp(47px,4.6vw,68px); font-weight: 630; line-height: 1.03; }
.content-intro .lead { margin-bottom: 25px; }
.area-grid { display: grid; margin-top: 58px; grid-template-columns: repeat(5,1fr); }
.area-card { min-height: 330px; padding: 30px; border: 1px solid var(--line); border-right: 0; background: white; }
.area-card:last-child { border-right: 1px solid var(--line); }
.area-card span { color: var(--electric); font-size: 9px; font-weight: 800; }
.area-card h3 { margin: 70px 0 18px; font-size: 25px; font-weight: 630; line-height: 1.1; }
.area-card p { margin: 0; font-size: 13px; }
.considerations { background: var(--paper); }
.considerations-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.consideration-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.consideration-list li { padding: 22px; border-top: 3px solid var(--aqua); background: white; color: var(--ink); font-size: 13px; line-height: 1.5; list-style: none; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; color: var(--ink); font-size: 17px; font-weight: 680; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--electric); content: "+"; font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 750px; padding: 0 50px 28px 0; }
.related-services { background: var(--navy); color: white; }
.related-services h2 { color: white; font-size: clamp(42px,4vw,60px); }
.related-grid { display: grid; margin-top: 50px; grid-template-columns: repeat(3,1fr); }
.related-grid a { display: flex; min-height: 180px; padding: 28px; border: 1px solid rgba(255,255,255,.2); border-right: 0; flex-direction: column; justify-content: space-between; }
.related-grid a:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.related-grid span { color: var(--aqua); font-size: 20px; }
.related-grid strong { font-size: 23px; }

@media (max-width: 1120px) {
  .footer-main { grid-template-columns: 1.25fr .75fr 1fr; }
  .footer-main > div:last-child { grid-column: auto; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .area-card { border-right: 1px solid var(--line); }
  .area-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero--photographic { min-height: 620px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,31,70,.95), rgba(0,31,70,.68)); }
  .feature-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .feature-grid .feature-card { min-width: min(78vw,540px); scroll-snap-align: start; }
  .principal-grid, .page-hero-grid, .content-intro, .considerations-grid, .faq-grid { grid-template-columns: 1fr; }
  .principal-photo { grid-column: auto; grid-row: auto; }
  .page-hero-grid { gap: 55px; }
  .page-hero-media { min-height: 420px; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { border-right: 1px solid rgba(255,255,255,.2); border-bottom: 0; }
  .related-grid a:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero--photographic { min-height: 650px; align-items: end; }
  .hero-background { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(0,31,70,.97) 12%, rgba(0,31,70,.78) 62%, rgba(0,31,70,.3)); }
  .hero--photographic .hero-heading { padding-block: 74px; }
  .hero-actions { flex-direction: column; }
  .hero-action { width: 100%; }
  .feature-band { padding-top: 18px; }
  .feature-grid { width: auto; margin-left: 18px; padding-right: 18px; }
  .feature-grid .feature-card { min-width: 86vw; }
  .service-card { min-height: 290px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom nav { justify-content: flex-start; }
  .page-hero { padding: 70px 0 80px; }
  .page-hero-media { min-height: 320px; }
  .area-grid, .consideration-list { grid-template-columns: 1fr; }
  .area-card:last-child { grid-column: auto; }
  .area-card { min-height: 260px; }
  .area-card h3 { margin-top: 45px; }
}

.values-grid { margin-top: 55px; }
.values-grid article { background: var(--navy); }
.profile-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 110px; }
.profile-facts { display: flex; padding: 34px; border-top: 5px solid var(--aqua); flex-direction: column; background: var(--navy); color: white; }
.profile-facts strong { margin-top: 28px; color: var(--aqua); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.profile-facts span { margin-top: 8px; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.6; }
.profile-story .lead { font-size: 28px; }
.profile-story p { max-width: 760px; }
.profile-lists { display: grid; grid-template-columns: repeat(2,1fr); gap: 80px; }
.profile-lists h2 { font-size: clamp(38px,3.5vw,54px); }
.profile-lists ul { margin: 40px 0 0; padding: 0; }
.profile-lists li { padding: 16px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 14px; list-style: none; }
.portrait-media img { object-position: center top; }
.contact-details-card { position: relative; z-index: 2; display: flex; padding: 45px; flex-direction: column; background: white; box-shadow: 0 25px 70px rgba(0,0,0,.18); }
.contact-details-card strong { margin-bottom: 25px; color: var(--electric); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-details-card a, .contact-details-card span { padding: 17px 0; border-top: 1px solid var(--line); color: var(--navy); font-size: 15px; line-height: 1.55; }
.contact-details-card a:hover { color: var(--electric); }
.document-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.document-grid article { display: flex; min-height: 410px; padding: 35px; border: 1px solid var(--line); border-right: 0; flex-direction: column; }
.document-grid article:last-child { border-right: 1px solid var(--line); }
.document-grid article > span { color: var(--electric); font-size: 10px; font-weight: 800; }
.document-grid h2 { margin: 65px 0 18px; font-size: 29px; }
.document-grid .solid-link { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) {
  .profile-layout, .profile-lists { grid-template-columns: 1fr; gap: 55px; }
  .document-grid { grid-template-columns: 1fr; }
  .document-grid article { min-height: 330px; border-right: 1px solid var(--line); border-bottom: 0; }
  .document-grid article:last-child { border-bottom: 1px solid var(--line); }
}

/* Insights and article system */
.insights-hero { padding-block: 110px 120px; }
.insights-title { position: relative; z-index: 2; }
.insights-title h1 { max-width: 1000px; color: white; }
.insights-title h1 span { color: var(--aqua); }
.insights-title .lead { max-width: 720px; color: rgba(255,255,255,.72); }
.featured-insight-grid { display: grid; margin-top: 60px; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.insight-feature { position: relative; display: flex; min-height: 490px; padding: 35px; overflow: hidden; flex-direction: column; justify-content: flex-end; background: var(--navy); color: white; }
.insight-feature--2 { background: var(--electric); }
.insight-feature--3 { background: var(--aqua); color: var(--navy); }
.insight-feature > img, .insight-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.insight-feature > img { object-fit: cover; transition: transform .55s ease; }
.insight-shade { background: linear-gradient(0deg, rgba(0,31,70,.92), rgba(0,31,70,.12)); }
.insight-feature > div { position: relative; z-index: 2; }
.insight-feature small, .insight-card small { color: var(--aqua); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.insight-feature--3 small { color: var(--electric); }
.insight-feature h2 { margin: 20px 0 15px; color: inherit; font-size: 36px; line-height: 1.05; }
.insight-feature p { color: rgba(255,255,255,.73); font-size: 13px; }
.insight-feature--3 p { color: rgba(0,31,70,.7); }
.insight-feature strong { display: block; margin-top: 28px; font-size: 11px; }
.insight-feature:hover img { transform: scale(1.05); }
.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px 24px; }
.insight-card { overflow: hidden; background: white; box-shadow: 0 14px 40px rgba(0,31,70,.07); }
.insight-card-visual { display: grid; height: 230px; place-items: center; overflow: hidden; background: var(--electric); }
.insight-card-visual--1 { background: var(--aqua); }
.insight-card-visual--2 { background: var(--navy); }
.insight-card-visual--3 { background: var(--sky); }
.insight-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-card-visual > span { color: rgba(255,255,255,.35); font-size: 70px; font-weight: 700; }
.insight-card-visual--1 > span, .insight-card-visual--3 > span { color: rgba(0,31,70,.3); }
.insight-card:hover img { transform: scale(1.05); }
.insight-card-copy { padding: 27px; }
.insight-card-copy h2 { min-height: 64px; margin: 16px 0; font-size: 25px; line-height: 1.12; }
.insight-card-copy h2 a:hover { color: var(--electric); }
.insight-card-copy p { min-height: 84px; font-size: 13px; }
.insight-card-copy footer { display: flex; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); justify-content: space-between; gap: 15px; color: var(--muted); font-size: 12px; }
.insight-card-copy footer a { color: var(--electric); font-weight: 750; }
.archive-note { background: white; }

.article-hero { padding: 90px 0 100px; background: var(--navy); color: white; }
.article-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.article-hero h1 { max-width: 940px; margin: 0; color: white; font-size: clamp(50px,5vw,76px); font-weight: 640; line-height: 1.02; }
.article-hero .lead { max-width: 760px; margin-top: 28px; color: rgba(255,255,255,.7); }
.article-byline { display: flex; margin-top: 38px; flex-wrap: wrap; align-items: center; gap: 8px 18px; color: rgba(255,255,255,.68); font-size: 11px; }
.article-byline strong { color: var(--aqua); font-size: 12px; }
.article-byline span + span { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.22); }
.article-hero-image { min-height: 520px; overflow: hidden; }
.article-hero-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: .48fr 1.52fr; gap: 100px; align-items: start; }
.article-aside { position: sticky; top: 25px; display: flex; padding: 28px; border-top: 4px solid var(--aqua); flex-direction: column; background: var(--paper); }
.article-aside strong { margin-bottom: 17px; color: var(--electric); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.article-aside a { padding: 13px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.4; }
.article-aside a:hover { color: var(--electric); }
.general-warning { padding: 28px; border-left: 4px solid var(--aqua); background: var(--paper); }
.general-warning strong { color: var(--navy); font-size: 11px; text-transform: uppercase; }
.general-warning p { margin: 9px 0 0; font-size: 12px; }
.article-body > section { padding: 65px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.article-body > section > span { color: var(--electric); font-size: 10px; font-weight: 800; }
.article-body h2 { max-width: 800px; margin: 20px 0 30px; font-size: clamp(34px,3vw,48px); font-weight: 630; line-height: 1.08; }
.article-body p { max-width: 830px; font-size: 17px; line-height: 1.75; }
.article-body ul { max-width: 800px; margin: 30px 0 0; padding: 0; }
.article-body li { position: relative; padding: 14px 15px 14px 28px; border-top: 1px solid var(--line); color: var(--ink); font-size: 15px; list-style: none; }
.article-body li::before { position: absolute; top: 21px; left: 4px; width: 8px; height: 8px; background: var(--aqua); content: ""; }
.article-faqs details { border-top: 1px solid var(--line); }
.article-faqs details:last-child { border-bottom: 1px solid var(--line); }
.article-faqs summary { position: relative; display: flex; min-height: 72px; padding: 17px 52px 17px 0; align-items: center; color: var(--navy); font-size: 17px; font-weight: 700; line-height: 1.45; cursor: pointer; list-style: none; }
.article-faqs summary::-webkit-details-marker { display: none; }
.article-faqs summary::after { position: absolute; right: 12px; color: var(--electric); content: "+"; font-size: 26px; font-weight: 400; }
.article-faqs details[open] summary::after { content: "−"; }
.article-faqs details p { margin: 0; padding: 0 52px 28px 0; font-size: 15px; }
.article-service-cta { display: grid; margin: 65px 0 0; padding: 42px; grid-template-columns: 1.2fr .8fr; gap: 45px; align-items: end; background: var(--navy); color: white; }
.article-service-cta > div:first-child > span { color: var(--aqua); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.article-service-cta h2 { margin: 14px 0 0; color: white; font-size: clamp(27px,2.4vw,38px); }
.article-service-cta > div:last-child { display: flex; flex-direction: column; gap: 8px; }
.article-service-cta a { display: flex; min-height: 48px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.28); align-items: center; justify-content: space-between; gap: 18px; color: white; font-size: 13px; font-weight: 700; }
.article-service-cta a:hover { border-color: var(--aqua); background: rgba(255,255,255,.08); }
.article-sources > a { display: flex; max-width: 830px; padding: 17px 0; border-top: 1px solid var(--line); justify-content: space-between; color: var(--electric); font-size: 13px; font-weight: 700; }

@media (max-width: 900px) {
  .feature-grid, .review-rail {
    display: grid;
    width: min(100% - 48px,760px);
    margin-inline: auto;
    padding-right: 0;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-grid .feature-card, .review-card { min-width: 0; scroll-snap-align: none; }
  .contact-grid a, .contact-details-card a, .document-grid a, .article-sources a { overflow-wrap: anywhere; }
  .review-card footer a, .insight-card-copy footer a, .article-aside a { display: flex; min-height: 44px; align-items: center; }
  .footer-main > div:not(.footer-brand) { gap: 0; font-size: 13px; }
  .footer-main > div:not(.footer-brand) > a { display: flex; min-height: 44px; align-items: center; }
  .social-links a { display: inline-flex; min-height: 44px; padding: 10px 12px; align-items: center; font-size: 12px; }
  .footer-bottom nav a { display: inline-flex; min-height: 44px; align-items: center; }
}

@media (max-width: 1000px) {
  .featured-insight-grid { grid-template-columns: 1fr 1fr; }
  .insight-feature--1 { grid-column: 1 / -1; }
  .insight-grid { grid-template-columns: repeat(2,1fr); }
  .article-hero-grid, .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .article-service-cta { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .featured-insight-grid, .insight-grid { grid-template-columns: 1fr; }
  .insight-feature--1 { grid-column: auto; }
  .insight-feature { min-height: 430px; }
  .insight-card-copy h2, .insight-card-copy p { min-height: 0; }
  .article-hero { padding: 70px 0 78px; }
  .article-hero-grid { gap: 48px; }
  .article-hero-image, .article-hero-image img { min-height: 330px; }
  .article-byline { flex-direction: column; align-items: flex-start; }
  .article-byline span + span { padding-left: 0; border-left: 0; }
  .article-body p { font-size: 16px; }
  .article-service-cta { margin-top: 48px; padding: 30px; gap: 28px; }
  .article-faqs summary { min-height: 60px; font-size: 16px; }
}

/* Final phone-size safeguards */
@media (max-width: 640px) {
  .feature-grid {
    display: grid;
    width: min(100% - 36px,560px);
    margin-inline: auto;
    padding-right: 0;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-grid .feature-card { min-width: 0; min-height: 330px; }
  .review-rail {
    display: grid;
    width: min(100% - 36px,560px);
    margin-inline: auto;
    padding-right: 0;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .review-card { min-width: 0; min-height: 0; }
  .page-hero h1, .article-hero h1, .insights-title h1 {
    overflow-wrap: anywhere;
    font-size: clamp(40px,12vw,52px);
  }
  .page-hero-media::after { transform: translate(8px,8px); }
  .contact-details-card { padding: 28px; }
  .article-byline { font-size: 11px; line-height: 1.5; }
  .faq-list details p { padding-right: 0; }
  .disclosure { font-size: 12px; line-height: 1.72; overflow-wrap: anywhere; }
  .footer-bottom { gap: 12px; font-size: 12px; }
  .footer-bottom nav { gap: 0 16px; }
  .breadcrumbs { line-height: 1.55; overflow-wrap: anywhere; }
}

@media (max-width: 380px) {
  .page-width { width: min(100% - 28px,560px); }
  .site-logo { height: 43px; }
  .mobile-menu > summary { width: 48px; height: 48px; }
  .hero-title, .trust-heading h1, .section-title h2, .review-heading h2, .principal-copy h2, .difference-heading h2, .contact h2 { font-size: 40px; }
  .approach-statement h2 { font-size: 40px; }
  .hero-action { padding-inline: 17px; gap: 18px; }
  .feature-card, .review-card, .contact-form { padding: 24px; }
  .feature-copy h3 { font-size: 31px; }
  .page-hero h1, .article-hero h1, .insights-title h1 { font-size: 39px; }
}

/* Shared refinement: comfortable reading, deliberate spacing and clear controls. */
:root { --electric: #1549bd; --muted: #4e6276; }
body { overflow-x: clip; font-size: 17px; }
p { font-size: 17px; line-height: 1.7; }
button, input, textarea, select { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button:active, .hero-action:active, .solid-link:active { transform: translateY(1px); }
.section-pad { padding-block: clamp(56px,7vw,96px); }
.kicker, .kicker--light { font-size: 13px; letter-spacing: .07em; }
.lead { font-size: clamp(20px,2vw,24px); line-height: 1.55; }
.utility-bar { font-size: 13px; }
.utility-bar a { display: inline-flex; align-items: center; min-height: 44px; }
.desktop-nav { gap: 25px; }
.desktop-nav > a, .nav-dropdown > summary, .mega-links a { font-size: 15px; }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.mega-links a[aria-current="page"], .mobile-menu a[aria-current="page"] { background: var(--mint); color: var(--navy); box-shadow: inset 3px 0 var(--aqua-dark); }
.mega-intro small, .feature-copy small, .service-card > small { font-size: 13px; }
.mobile-menu b { font-size: 12px; line-height: 1; font-weight: 600; }
.hero--photographic { min-height: 610px; }
.hero-overlay { background: linear-gradient(90deg,rgba(0,24,52,.45),rgba(0,24,52,.12) 70%); }
.hero-title { max-width: 770px; font-size: clamp(44px,5.5vw,78px); line-height: 1.06; }
.hero-intro { max-width: 580px; }
.hero-background { object-position: center; }
.feature-card { min-height: 310px; padding: 30px; }
.feature-copy p, .service-copy p, .approach-card p, .process-grid p, .foundations-grid p { font-size: 16px; line-height: 1.65; }
.service-card { min-height: 340px; }
.service-card--image .service-shade { background: linear-gradient(0deg,rgba(0,24,52,.97),rgba(0,24,52,.15) 95%); }
.service-copy h3 { font-size: 28px; }
.feature-copy h3 { font-size: 32px; }
.service-card, .insight-card, .related-grid a { transition: border-color .18s ease,box-shadow .18s ease; }
.service-card:hover, .insight-card:hover { box-shadow: 0 8px 24px rgba(0,31,70,.15); }
.review-card blockquote { font-size: 18px; line-height: 1.65; }
.review-card footer a, .review-person small, .score small { font-size: 13px; line-height: 1.5; }
.review-person small { color: #d5e5ef; }
.review-card footer a { display: inline-flex; min-height: 44px; align-items: center; }
.review-card { min-height: 0; }
.principal-photo { max-width: 392px; width: 100%; justify-self: center; }
.principal-photo img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.portrait-media { max-width: 392px; min-height: 392px; width: 100%; justify-self: center; }
.portrait-media img { object-fit: contain; }
.foundations-grid h3 { font-size: 30px; }
.foundations-grid small { font-size: 13px; }
.difference-columns h3 { font-size: 23px; }
.difference-columns p { font-size: 17px; }
.page-hero { padding-block: 72px 80px; }
.page-hero h1, .article-hero h1 { font-size: clamp(40px,4.5vw,64px); line-height: 1.08; }
.page-hero-grid { gap: 64px; }
.page-hero-media { min-height: 350px; }
.page-hero .lead, .article-hero .lead { color: #d5e5ef; }
.breadcrumbs { font-size: 14px; color: #c3d5e4; line-height: 1.7; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.content-intro, .faq-grid, .profile-layout, .article-layout { gap: clamp(32px,6vw,80px); }
.content-intro h2, .area-heading h2, .faq-heading h2, .insights-title h1 { font-size: clamp(32px,3.6vw,52px); line-height: 1.12; }
.area-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 40px; }
.area-card, .area-card:last-child { min-height: 0; border: 1px solid var(--line); padding: 28px; grid-column: auto; }
.area-card h3 { margin: 24px 0 16px; font-size: 25px; }
.area-card p, .related-grid p { font-size: 16px; }
.area-card span { font-size: 13px; }
.related-grid { gap: 18px; }
.related-grid a { border: 1px solid #44607e; gap: 18px; min-height: 0; }
.related-grid p { color: #cbdce9; margin-bottom: 0; }
.related-grid strong { font-size: 24px; }
.related-grid a:hover { border-color: var(--aqua); background: rgba(255,255,255,.04); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; min-height: 48px; padding: 13px 14px; border: 1px solid #7f94a8; background: white; color: var(--navy); border-radius: 0; }
.contact-form label > span { display: block; margin-bottom: 9px; font-size: 15px; }
.contact-form .full { grid-column: 1/-1; }
.contact-form button { min-height: 50px; font-size: 16px; }
.contact-note, .form-privacy, .form-status p { font-size: 14px; line-height: 1.65; }
.form-privacy a, .visit-section p a, .general-warning a { text-decoration: underline; text-underline-offset: 3px; }
.form-status a { display: inline-flex; min-height: 44px; align-items: center; }
.visit-section { background: var(--paper); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.visit-grid h2 { font-size: clamp(36px,4vw,54px); }
.visit-grid address { margin-bottom: 25px; font-size: 19px; font-style: normal; line-height: 1.65; }
.postal-address { margin-top: 30px; }
.office-map iframe { width: 100%; height: 460px; border: 1px solid var(--line); }
.office-map p { font-size: 14px; margin-top: 14px; }
.profile-facts strong { font-size: 13px; }
.profile-facts span, .profile-lists li { font-size: 16px; }
.profile-facts a { text-decoration: underline; }
.document-grid article { min-height: 350px; border-right: 1px solid var(--line); }
.document-grid h2 { margin-top: 32px; }
.document-grid article > span { font-size: 13px; }
.article-hero-grid--text { grid-template-columns: 1fr; max-width: 1080px; }
.article-hero-grid--text h1 { max-width: 20ch; }
.article-hero-image, .article-hero-image img { min-height: 0; height: auto; aspect-ratio: 4/3; }
.article-byline, .article-byline strong { font-size: 14px; line-height: 1.65; }
.article-body { min-width: 0; max-width: 72ch; }
.article-body p, .article-body li { font-size: 18px; line-height: 1.75; }
.article-body h2 { font-size: clamp(30px,3vw,42px); }
.article-body > section { padding-block: 44px; }
.article-aside strong { font-size: 13px; }
.article-aside a, .article-sources > a { font-size: 15px; min-height: 44px; }
.article-sources > a { overflow-wrap: anywhere; gap: 16px; }
.general-warning p { font-size: 15px; }
.general-warning strong { font-size: 13px; }
.article-service-cta a { font-size: 15px; }
.footer-main > div:not(.footer-brand), .footer-main p, .footer-main a, .social-links a { font-size: 14px; line-height: 1.6; }
.footer-main strong { font-size: 14px; }
.footer-main a, .footer-bottom a { min-height: 44px; display: flex; align-items: center; }
.footer-bottom, .disclosure { font-size: 13px; line-height: 1.75; }
.mobile-contact-bar { display: none; }
@media (max-width: 1100px) { .desktop-nav { gap: 18px; } .main-nav { gap: 20px; } }
@media (max-width: 900px) {
  .area-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-contact-bar { display: grid; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; grid-template-columns: 1fr 1fr; background: var(--navy); padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -3px 15px #001f4626; }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; min-height: 54px; font-size: 15px; color: white; }
  .mobile-contact-bar a:last-child { background: var(--aqua); color: var(--navy); font-weight: 700; }
  .footer { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .mobile-menu[open] nav { max-height: min(72dvh,720px); overflow-y: auto; overscroll-behavior: contain; }
  .hero-overlay { background: linear-gradient(90deg,rgba(0,24,52,.55),rgba(0,24,52,.15)); }
}
@media (max-width: 640px) {
  .hero--photographic { min-height: 0; display: block; padding-top: 0; }
  .hero--photographic picture { display: block; position: relative; height: auto; aspect-ratio: 1400/656; }
  .hero-background { position: static; width: 100%; height: 100%; object-fit: contain; }
  .hero-overlay { display: none; }
  .hero--photographic .hero-heading { padding-block: 32px 42px; }
  .hero-title { font-size: clamp(37px,10vw,52px); }
  .feature-grid .feature-card { min-height: 275px; }
  .service-card { min-height: 300px; }
  .area-grid { grid-template-columns: 1fr; }
  .principal-photo, .portrait-media { max-width: min(100%,392px); }
  .page-hero h1, .article-hero h1, .insights-title h1 { font-size: clamp(36px,10vw,48px); overflow-wrap: normal; hyphens: auto; }
  .page-hero-media { min-height: 280px; }
  .portrait-media { min-height: 0; aspect-ratio: 1; }
  .contact-form { grid-template-columns: 1fr; }
  .office-map iframe { height: 330px; }
  .article-body p, .article-body li { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
.insight-search { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 20px; align-items: end; padding: 28px; background: white; border: 1px solid var(--line); }
.insight-search label span { display: block; margin-bottom: 9px; font-size: 15px; font-weight: 650; }
.insight-search input, .insight-search select { width: 100%; min-width: 0; min-height: 50px; padding: 12px; border: 1px solid #7f94a8; background: white; color: var(--navy); }
.insight-search button { min-height: 50px; border: 0; padding: 12px 24px; background: var(--navy); color: white; cursor: pointer; }
.results-heading { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-block: 25px; }
.results-heading p { margin: 0; }
.results-heading a { text-decoration: underline; min-height: 44px; display: flex; align-items: center; }
.insight-grid { align-items: stretch; }
.insight-card { display: flex; flex-direction: column; border: 1px solid var(--line); box-shadow: none; }
.insight-card--text { border-top: 4px solid var(--aqua-dark); }
.insight-card-copy { display: flex; flex-direction: column; flex: 1; padding: 28px; }
.insight-card-copy small { font-size: 13px; color: #1549bd; }
.insight-card-copy h2 { font-size: 26px; line-height: 1.2; min-height: 0; }
.insight-card-copy p { font-size: 16px; min-height: 0; flex: 1; }
.insight-card-copy footer { font-size: 13px; align-items: center; }
.insight-card-copy footer a { min-height: 44px; display: flex; align-items: center; }
.insight-card-visual { height: 190px; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 40px; }
.pagination a { min-height: 48px; min-width: 48px; padding: 12px 16px; border: 1px solid #7f94a8; display: inline-flex; align-items: center; justify-content: center; }
.pagination a[aria-current="page"] { background: var(--navy); color: white; }
.empty-results { padding: 40px; background: white; }
@media (max-width: 900px) { .insight-search { grid-template-columns: 1fr 1fr; } .insight-search button { grid-column: 1/-1; } }
@media (max-width: 640px) { .insight-search { grid-template-columns: 1fr; padding: 22px; } .results-heading { align-items: start; flex-direction: column; gap: 8px; } }
.hero-action, .solid-link, .nav-cta, .inline-link { font-size: 15px; }
.hero-action, .solid-link { min-height: 50px; }
.mobile-menu[open] > summary { color: white; }
.mobile-menu[open] > summary span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
.example-label { font-size: 14px !important; color: var(--muted); }
.page-hero h1.seo-heading { margin: 0 0 22px; color: var(--aqua); font-size: 14px; font-weight: 700; line-height: 1.6; letter-spacing: .06em; text-transform: uppercase; }
.page-campaign-title { margin: 0; max-width: 800px; color: white; font-size: clamp(40px,4.5vw,64px); font-weight: 640; line-height: 1.08; letter-spacing: -.045em; }
@media(max-width:640px) { .page-campaign-title { font-size: clamp(36px,10vw,48px); } }

/* September review: calm photography, readable surfaces and consistent spacing. */
/* Consistent navy cards, subtle original photography and restrained aqua detail. */
.service-grid { gap: 18px; }
.service-card--image { background: #092d4c; color: #fff; border: 1px solid #244760; border-top: 3px solid #69c9c0; min-height: 330px; }
.service-card--image > img { opacity: .075; filter: grayscale(1); }
.service-card--image .service-shade { background: linear-gradient(180deg,transparent,#092d4c 85%); }
.service-card--image .service-copy h3 { color: #fff; }
.service-card--image .service-copy p { color: #e2eaf0; }
.service-card--image > small { color: #8ee0d4; }
.service-card--image > .arrow-box { background: #153d59; color: #fff; }
.service-card--image:hover { border-color: #69c9c0; }

.principal-copy .credential { margin: 12px 0 24px; color: #164c79; font-weight: 650; }
.principal-copy > .solid-link { margin-top: 24px; }
.principal-copy > p { margin-bottom: 20px; }
.foundations { background: #062749; }
.foundations::after { background: rgba(0,24,52,.94); }
.foundations-backdrop { opacity: .3; }
.foundations-grid article { min-height: 0; padding: 32px; }
.foundations-grid h3 { margin-top: 36px; line-height: 1.2; }
.foundations .foundations-grid h3, .values-grid h3 { color: #fff; }
.foundations .foundations-grid p, .values-grid p { color: #e1edf4; }
.foundations-grid small { color: #c9dfeb; font-size: 14px; }
.foundations-grid span { color: #72e5d4; font-size: 14px; }
.values-grid { gap: 20px; }
.values-grid article { border: 0; padding: 32px; }
.values-grid article:last-child { border: 0; }
.profile-facts { background: #f0f5f8; color: #07284a; border: 1px solid #cad8e3; border-top: 4px solid #008d83; }
.profile-facts .kicker, .profile-facts strong { color: #164c79; font-size: 14px; }
.profile-facts span, .profile-facts a { color: #173650; line-height: 1.75; }
.profile-facts strong { margin-top: 24px; letter-spacing: .035em; }
.profile-story p + p, .content-intro p + p { margin-top: 24px; }
.profile-story p, .content-intro p { max-width: 68ch; }
.profile-story h2 { font-size: 30px; margin: 36px 0 18px; line-height: 1.2; }
.difference-grid { align-items: start; gap: clamp(32px,6vw,80px); }
.difference-columns { gap: 36px 32px; }
.difference-columns h3 { margin: 0 0 16px; line-height: 1.25; }
.difference-columns p { margin: 0; padding-top: 18px; }
.difference-copy > .inline-link { margin-top: 30px; display: inline-flex; }
.visit-grid { gap: clamp(32px,5vw,68px); align-items: start; }
.visit-grid h2 { margin: 12px 0 28px; line-height: 1.12; }
.visit-grid p { margin: 20px 0; }
.visit-grid .solid-link { display: inline-flex; align-items: center; gap: 30px; margin: 10px 0 12px; padding: 16px 24px; }
.visit-grid .postal-address { padding-top: 24px; border-top: 1px solid #c9d6e0; margin-top: 22px; }
.office-map iframe { display: block; }
.first-meeting-link { border-top: 1px solid #b8cedd; padding-top: 20px; font-size: 16px; }
.review-carousel-controls { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 30px 0 20px; }
.review-carousel-controls p { margin: 0; color: #fff; font-size: 16px; font-variant-numeric: tabular-nums; }
.review-carousel-controls p span { color: #cbdde9; }
.review-carousel-controls > div { display: flex; gap: 10px; }
.review-carousel-controls button { width: 50px; height: 50px; border: 1px solid #718fa9; background: transparent; color: white; font-size: 24px; cursor: pointer; }
.review-carousel-controls button:hover:not(:disabled) { background: #fff; color: #082a4d; }
.review-carousel-controls button:disabled { opacity: .4; cursor: default; }
.review-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #6e9ab6 #082744; padding-bottom: 18px; overscroll-behavior-x: contain; }
.review-track .review-card { flex: 0 0 calc((100% - 40px)/3); min-width: 0; scroll-snap-align: start; padding: 28px; background: #0b2e50; border: 1px solid #446580; display: flex; flex-direction: column; }
.review-track .review-person strong { color: white; font-size: 16px; }
.review-track .review-person small { color: #d8e5ee; }
.review-track blockquote { color: white; margin: 28px 0; flex: 1; }
.review-track footer { margin-top: auto; padding-top: 20px; }
.review-track footer a { color: #e7f5fc; font-size: 14px; }
@media(max-width:1000px) { .review-track .review-card { flex-basis: calc((100% - 20px)/2); } }
@media(max-width:640px) { .review-track .review-card { flex-basis: 100%; padding: 24px; } .difference-columns { gap: 30px; } .values-grid { gap: 16px; } .foundations-grid article { padding: 26px; } .principal-copy > .solid-link { margin-top: 16px; } }

.profile-story h2 { font-size: clamp(25px, 3vw, 34px); line-height: 1.2; margin: 38px 0 20px; }

.review-heading .score small { color: #d7e6f1; font-size: 14px; line-height: 1.5; }

.brand-mark { position: relative; display: block; width: 250px; max-width: 100%; height: 120px; }
.brand-mark .site-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; }
.brand-mark--loaded .site-logo { opacity: 1; }
.brand-fallback { height: 100%; display: flex; justify-content: center; flex-direction: column; color: #0b3151; }
.brand-fallback strong { font-size: 24px; letter-spacing: .06em; line-height: 1.3; }
.brand-fallback > span { font-size: 12px; letter-spacing: .1em; line-height: 1.6; }
.brand-mark--loaded .brand-fallback { visibility: hidden; }
.footer-brand .brand-fallback { color: #fff; }
@media(max-width: 700px) { .logo-link .brand-mark { width: 190px; height: 70px; } .logo-link .brand-fallback strong { font-size: 21px; } .logo-link .brand-fallback > span { font-size: 10px; } }

.profile-story .lead { font-size: clamp(21px, 2vw, 25px); line-height: 1.55; }

/* September 13: larger hero, balanced navigation and aligned form controls. */
@media (min-width: 641px) { .hero--photographic { min-height: 811.3px; } }
.main-nav { grid-template-columns: 220px minmax(0,1fr) auto; gap: 24px; padding-block: 12px; }
.logo-link { padding: 12px 16px; }
.desktop-nav { gap: clamp(16px,1.6vw,26px); }
.desktop-nav > a, .nav-dropdown > summary { white-space: nowrap; font-size: 14px; }
.contact-form { grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; }
.contact-form label:not(.form-trap) { min-width: 0; display: grid; grid-template-rows: auto 1fr; }
.contact-form label > span { min-height: 44px; line-height: 22px; margin-bottom: 8px; letter-spacing: .025em; }
.contact-form input, .contact-form select { height: 52px; min-height: 52px; box-sizing: border-box; font: inherit; }
.contact-form textarea { min-height: 140px; font: inherit; }
@media (max-width: 1200px) {
  .desktop-nav, .nav-cta { display: none; }
  .main-nav { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; }
}
@media (max-width: 640px) {
  .main-nav { gap: 12px; padding-block: 8px; }
  .logo-link { padding: 8px 12px; }
  .hero--photographic picture { aspect-ratio: 1400/872.48; }
  .hero-background { object-fit: cover; }
  .hero--photographic .hero-heading { padding-block: 43px 56px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label > span { min-height: 0; }
  .service-grid { gap: 14px; }
}

/* Original bench photo: display only x=500..1600, y=130..1067. */
.page-hero-media.advice-photo-frame--bench { aspect-ratio: 1100/937; min-height: 0; }
.advice-photo-inner, .bench-photo-crop { position: absolute; inset: 0; overflow: hidden; }
.page-hero-media .bench-photo-crop img { inset: auto; left: -45.45455%; top: -13.8741%; width: 145.45455%; height: 113.8741%; max-width: none; object-fit: fill; }
.advice-photo-frame::after { display: block; border-color: rgba(170,210,220,.65); pointer-events: none; }
.visit-grid > div:first-child { padding: 0; margin: 0; }
.visit-grid h2, .visit-grid .kicker { margin-left: 0; padding-left: 0; text-indent: 0; }
.footer-wordmark { display: inline-flex; flex-direction: column; gap: 8px; padding: 0 0 20px; border-bottom: 2px solid #64d5c4; text-decoration: none; }
.footer-wordmark strong { font-size: clamp(25px,2.4vw,32px); line-height: 1.2; letter-spacing: .055em; color: #fff; }
.footer-wordmark span { font-size: 12px; font-weight: 600; letter-spacing: .17em; color: #c8dce9; }

.about-values { grid-template-columns: repeat(2,minmax(0,1fr)); }
.about-values article { background: #062749; }
@media (max-width: 640px) { .about-values { grid-template-columns: 1fr; } }

.about-section h2 { font-size: clamp(34px,4vw,54px); line-height: 1.12; font-weight: 600; letter-spacing: -.035em; margin-top: 12px; }
.about-section h3 { font-size: 24px; line-height: 1.25; font-weight: 600; letter-spacing: -.02em; }

/* Progressive motion: no content is hidden pending JavaScript. */
.motion-header { position: sticky; top: -42px; transition: box-shadow .25s ease; }
.motion-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,25,50,.12); }
.motion-header .logo-link { transition: transform .25s ease; transform-origin: left center; }
.motion-header.is-scrolled .logo-link { transform: scale(.94); }
html { scroll-padding-top: 165px; }
.service-card, .solid-link, .hero-action, .nav-cta { transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.solid-link .arrow-box, .hero-action > span, .nav-cta .arrow-box { transition: translate .25s ease, background-color .25s ease; }
.advice-photo-inner img, .principal-photo img { transition: scale .7s cubic-bezier(.2,.65,.3,1); }
.contact-form input, .contact-form textarea, .contact-form select { transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #176d85; box-shadow: 0 0 0 3px rgba(23,109,133,.14); background-color: #f8fcfd; outline: 2px solid transparent; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .service-card:hover { transform: translateY(-4px); }
  .solid-link:hover .arrow-box, .hero-action:hover > span, .nav-cta:hover .arrow-box { translate: 3px 0; }
  .advice-photo-inner:hover img, .principal-photo:hover img { scale: 1.025; }
}
@media (max-width: 1020px) { .motion-header { top: 0; } html { scroll-padding-top: 125px; } }
@media (prefers-reduced-motion: reduce) {
  .motion-header .logo-link, .service-card:hover { transform: none; }
  .advice-photo-inner img, .principal-photo img { scale: none; }
  .solid-link .arrow-box, .hero-action > span, .nav-cta .arrow-box { translate: none; }
}

@media (min-width: 1021px) and (prefers-reduced-motion: no-preference) {
  .process-grid { position: relative; }
  .process-grid.process-revealed::before { position: absolute; content: ""; z-index: 2; top: -2px; left: 0; right: 0; height: 2px; background: #39b6a6; transform-origin: left; animation: process-line 1s cubic-bezier(.2,.65,.3,1) both; }
  @keyframes process-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* Match navigation layout to its visibility breakpoint. */
@media (min-width:901px) and (max-width:1200px) {
  .mobile-menu { position: relative; display: block; }
  .mobile-menu > summary { display: flex; width: 52px; height: 52px; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 7px; cursor: pointer; list-style: none; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span { width: 20px; height: 2px; background: var(--navy); transition: transform .18s ease, background .18s ease; }
  .mobile-menu[open] > summary { border-color: var(--navy); background: var(--navy); }
  .mobile-menu[open] > summary span { background: white; }
  .mobile-menu[open] > summary span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .mobile-menu[open] > summary span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; top: 60px; right: 0; z-index: 20; display: flex; width: min(360px, calc(100vw - 48px)); max-height: calc(100dvh - 96px); padding: 18px; overflow-y: auto; overscroll-behavior: contain; flex-direction: column; background: white; box-shadow: 0 20px 55px rgba(0,31,70,.22); }
  .mobile-menu nav a { display: flex; min-height: 48px; padding: 12px 13px; border-bottom: 1px solid var(--line); align-items: center; font-size: 13px; font-weight: 670; }
}
.utility-bar, .utility-bar a { font-size: 14px; }
/* Keep the desktop advice panel inside the viewport at the desktop breakpoint. */
.nav-dropdown:not([open]) > .mega-menu { display: none; }
.mega-menu { left: auto; right: 0; width: min(790px, calc(100vw - 48px)); }
