:root {
  --ink: #071728;
  --ink-soft: #18324a;
  --blue: #0089df;
  --blue-deep: #006bb7;
  --green: #82c72c;
  --paper: #f4f7f8;
  --line: #dce4e8;
  --muted: #627182;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: var(--green); color: var(--ink); }

.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 128px 0; scroll-margin-top: 84px; }

.topline { background: var(--ink); color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.topline-inner { height: 32px; display: flex; align-items: center; justify-content: space-between; }
.topline a { color: #fff; transition: color .2s ease; }
.topline a:hover { color: var(--green); }

.site-header { position: sticky; top: 0; z-index: 30; height: 86px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(7,23,40,.09); backdrop-filter: blur(12px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { width: 260px; flex: 0 0 auto; }
.brand img { width: 100%; height: 72px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.2vw, 36px); margin-left: auto; }
.desktop-nav a { position: relative; color: #243648; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--green); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 44px; padding: 0 22px; margin-left: 12px; background: var(--blue); color: white; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.header-cta svg, .button svg, .text-link svg, .service-top svg { width: 20px; height: 20px; flex: 0 0 auto; }
.header-cta:hover { background: var(--blue-deep); }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { width: 44px; height: 44px; border: 1px solid var(--line); display: grid; align-content: center; justify-content: center; gap: 5px; list-style: none; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; width: 20px; height: 2px; background: var(--ink); }
.mobile-menu nav { position: absolute; top: 54px; right: 0; width: 260px; padding: 14px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(7,23,40,.14); }
.mobile-menu nav a { display: block; padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.mobile-menu nav a:last-child { border: 0; color: var(--blue); }

.hero { position: relative; min-height: 820px; color: white; overflow: hidden; }
.hero-image, .hero-overlay, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 57%; }
.hero-overlay { background: linear-gradient(90deg, rgba(4,18,32,.96) 0%, rgba(4,18,32,.85) 40%, rgba(4,18,32,.43) 72%, rgba(4,18,32,.18) 100%), linear-gradient(0deg, rgba(4,18,32,.75), transparent 55%); }
.hero-grid { opacity: .17; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg,#000,transparent 72%); }
.hero-content { position: relative; z-index: 2; min-height: 650px; display: flex; align-items: center; justify-content: space-between; gap: 80px; padding-top: 18px; padding-bottom: 100px; }
.hero-copy { max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--blue-deep); font-size: 11px; font-weight: 800; letter-spacing: .18em; line-height: 1.5; text-transform: uppercase; }
.eyebrow span { display: block; width: 38px; height: 2px; background: var(--green); }
.eyebrow.light { color: rgba(255,255,255,.75); }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(54px, 6vw, 88px); font-weight: 650; letter-spacing: -.055em; line-height: .99; }
.hero h1 em, .section-heading h2 em, .experience h2 em, .contact h2 em { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-intro { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 27px; font-size: 12px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: #fff; }
.button.primary:hover { background: var(--green); color: var(--ink); }
.button.ghost { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.button.ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-note { width: 210px; flex: 0 0 auto; align-self: flex-end; margin-bottom: 100px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.35); }
.hero-note p { margin: 0 0 7px; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.hero-note strong { font-family: Georgia, serif; font-size: 21px; font-weight: 400; line-height: 1.35; }
.stat-band { position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4,1fr); background: rgba(255,255,255,.97); color: var(--ink); }
.stat-band > div { min-height: 138px; display: flex; align-items: center; gap: 18px; padding: 24px 34px; border-right: 1px solid var(--line); }
.stat-band > div:last-child { border: 0; }
.stat-band strong { color: var(--blue); font-family: Georgia, serif; font-size: 44px; font-weight: 400; line-height: 1; }
.stat-band span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 110px; align-items: start; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(43px, 4.3vw, 66px); font-weight: 650; letter-spacing: -.045em; line-height: 1.05; }
.section-heading h2 em { display: inline; color: var(--blue); }
.about-copy { padding-top: 40px; }
.about-copy p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.about-copy .lead { color: var(--ink-soft); font-family: Georgia, serif; font-size: 24px; line-height: 1.5; }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 12px; color: var(--blue-deep); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link:hover { color: var(--green); }
.about-visual { margin-top: 84px; display: grid; grid-template-columns: 1.45fr .75fr .62fr; align-items: end; gap: 24px; }
.image-frame { position: relative; overflow: hidden; background: #dfe8ec; }
.image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.image-frame:hover img { transform: scale(1.035); }
.image-frame.large { height: 430px; }
.image-frame.small { height: 300px; }
.about blockquote { margin: 0 0 16px; padding: 0 10px 22px; }
.about blockquote > span { color: var(--green); font-family: Georgia, serif; font-size: 70px; line-height: .7; }
.about blockquote p { margin: 18px 0 24px; color: var(--ink); font-family: Georgia, serif; font-size: 21px; line-height: 1.5; }
.about blockquote cite { color: var(--muted); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.services { background: var(--ink); color: white; position: relative; overflow: hidden; }
.services::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; top: -330px; right: -130px; box-shadow: 0 0 0 120px rgba(255,255,255,.015), 0 0 0 240px rgba(255,255,255,.01); }
.section-intro { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; gap: 100px; align-items: end; }
.light-heading h2 { color: white; }
.light-heading h2 em { color: var(--green); }
.section-intro > p, .experience-head > p, .leadership-head > p { max-width: 470px; margin: 0 0 8px; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.75; }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(5,1fr); margin-top: 74px; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.service-card { min-height: 288px; padding: 28px 25px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); transition: background .25s ease, transform .25s ease; }
.service-card:hover { background: var(--blue); transform: translateY(-4px); }
.service-top { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .12em; }
.service-top svg { opacity: 0; transform: translateX(-8px); transition: all .25s ease; }
.service-card:hover .service-top svg { opacity: 1; transform: translateX(0); }
.service-card h3 { margin: 65px 0 15px; color: white; font-size: 18px; line-height: 1.28; }
.service-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
.service-card:hover p, .service-card:hover .service-top { color: rgba(255,255,255,.88); }

.methodology { background: var(--paper); }
.methodology-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; align-items: center; }
.method-image { position: relative; min-height: 690px; }
.method-image > img { width: calc(100% - 56px); height: 690px; object-fit: cover; filter: saturate(.76) contrast(1.04); }
.method-tag { position: absolute; right: 0; bottom: 55px; width: 230px; height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 28px; background: var(--blue); color: #fff; }
.method-tag strong { font-family: Georgia, serif; font-size: 42px; font-weight: 400; }
.method-tag span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.method-content h2 { max-width: 630px; margin: 0; font-size: clamp(42px, 4vw, 62px); letter-spacing: -.045em; line-height: 1.05; }
.method-lead { max-width: 620px; margin: 28px 0 40px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #cdd8de; }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid #cdd8de; }
.process-list > li > span { color: var(--blue); font-family: Georgia, serif; font-size: 18px; }
.process-list h3 { margin: 0 0 7px; font-size: 16px; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.markets { background: white; }
.market-intro > p { color: var(--muted); }
.market-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 330px 330px; gap: 16px; margin-top: 76px; }
.market-card { position: relative; overflow: hidden; color: white; background: var(--ink); }
.market-card img, .market-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.market-card img { object-fit: cover; transition: transform .65s ease, filter .65s ease; }
.market-card:hover img { transform: scale(1.05); filter: saturate(1.12); }
.market-shade { background: linear-gradient(0deg, rgba(5,20,35,.95), rgba(5,20,35,.08) 72%); }
.market-copy { position: absolute; inset: auto 28px 25px; }
.market-copy > span { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.market-copy h3 { margin: 8px 0 6px; font-size: 23px; }
.market-copy p { max-height: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; opacity: 0; transition: max-height .35s ease, opacity .35s ease; }
.market-card:hover .market-copy p { max-height: 80px; opacity: 1; }
.market-1, .market-5 { grid-column: span 5; }
.market-2, .market-3, .market-4, .market-6 { grid-column: span 3.5; }
.market-2 { grid-column: span 3; }
.market-3 { grid-column: span 4; }
.market-4 { grid-column: span 3; }
.market-5 { grid-column: span 5; }
.market-6 { grid-column: span 4; }

.experience { background: #071421; color: white; }
.experience-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 110px; align-items: end; }
.project-list { margin-top: 76px; border-top: 1px solid rgba(255,255,255,.16); }
.project-row { display: grid; grid-template-columns: 52px 1.15fr .45fr 1fr; gap: 36px; align-items: center; min-height: 144px; border-bottom: 1px solid rgba(255,255,255,.16); transition: padding .2s ease, background .2s ease; }
.project-row:hover { padding-inline: 18px; background: rgba(255,255,255,.035); }
.project-number { color: var(--green); font-family: Georgia, serif; font-size: 15px; }
.project-title small { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-title h3 { margin: 8px 0 0; font-size: 19px; line-height: 1.35; }
.project-location { color: rgba(255,255,255,.83); font-size: 12px; font-weight: 700; }
.project-row > p { margin: 0; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.65; }

.industry-gallery { background: var(--ink); overflow: hidden; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-top: 48px; padding-bottom: 34px; color: white; }
.gallery-heading .eyebrow { margin: 0; }
.gallery-heading > p:last-child { max-width: 500px; margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
.gallery-track { display: grid; grid-template-columns: repeat(5, minmax(240px,1fr)); }
.industry-gallery figure { position: relative; height: 280px; margin: 0; overflow: hidden; }
.industry-gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,18,32,.85),transparent 55%); }
.industry-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68); transition: transform .5s ease, filter .5s ease; }
.industry-gallery figure:hover img { transform: scale(1.05); filter: saturate(1); }
.industry-gallery figcaption { position: absolute; z-index: 2; left: 24px; bottom: 22px; display: flex; align-items: center; gap: 10px; color: white; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.industry-gallery figcaption span { color: var(--green); font-family: Georgia,serif; }

.leadership { background: white; }
.leadership-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.leadership-head > p { color: var(--muted); }
.leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 72px; }
.leader-card { display: grid; grid-template-columns: 44% 56%; min-height: 430px; background: var(--paper); border: 1px solid var(--line); overflow: hidden; }
.leader-image { background: #e2e8eb; overflow: hidden; }
.leader-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.84); transition: transform .5s ease, filter .5s ease; }
.leader-card:hover .leader-image img { transform: scale(1.025); filter: saturate(1); }
.leader-info { display: flex; flex-direction: column; justify-content: flex-end; padding: 38px 32px; }
.leader-info > span { color: var(--blue); font-family: Georgia, serif; font-size: 14px; }
.leader-info h3 { margin: 55px 0 12px; font-size: 25px; line-height: 1.25; letter-spacing: -.02em; }
.leader-info p { min-height: 40px; margin: 0 0 34px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.leader-info a { display: flex; align-items: flex-start; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--blue-deep); font-size: 11px; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; }
.leader-info a svg { width: 18px; height: 18px; flex: 0 0 auto; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 120px; align-items: start; }
.faq-list { border-top: 1px solid #cdd8de; }
.faq-list details { border-bottom: 1px solid #cdd8de; }
.faq-list summary { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; list-style: none; color: var(--ink); font-size: 16px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -5px 45px 25px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.contact { position: relative; padding: 120px 0; color: white; overflow: hidden; }
.contact-image, .contact-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-image { object-fit: cover; }
.contact-shade { background: linear-gradient(90deg,rgba(3,16,29,.97),rgba(3,16,29,.82) 55%,rgba(3,16,29,.5)); }
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.contact h2 { max-width: 660px; margin: 0; font-size: clamp(50px,5.1vw,76px); line-height: 1.02; letter-spacing: -.05em; }
.contact-panel { padding: 42px; background: rgba(255,255,255,.96); color: var(--ink); }
.contact-panel > p { margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.button.full { width: 100%; }
.contact-details { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-details > a, .contact-details > div { display: flex; gap: 12px; min-height: 92px; padding: 19px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; line-height: 1.5; }
.contact-details svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--blue); }
.contact-details span { overflow-wrap: anywhere; }
.contact-details small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

footer { background: white; }
.footer-main { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 70px; padding: 76px 0 60px; }
.footer-brand img { width: 280px; height: 92px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 380px; margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-main h3 { margin: 18px 0 22px; color: var(--ink); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) p { display: block; margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-main a:hover { color: var(--blue) !important; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--line); color: #7b8895; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom a { color: var(--ink); font-weight: 800; }

/* Multi-page navigation */
.header-inner { position: relative; }
.desktop-nav { height: 100%; }
.desktop-nav > a, .nav-group > a { display: flex; align-items: center; height: 100%; }
.nav-group { height: 100%; display: flex; align-items: center; }
.nav-group > a { position: relative; color: #243648; font-size: 13px; font-weight: 700; }
.nav-group > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; background: var(--green); transition: right .25s ease; }
.nav-group:hover > a::after { right: 0; }
.nav-mega, .nav-popover { position: absolute; z-index: 50; top: 85px; left: 260px; right: 0; display: grid; visibility: hidden; opacity: 0; transform: translateY(8px); background: white; border: 1px solid var(--line); box-shadow: 0 24px 55px rgba(7,23,40,.18); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-group:hover .nav-mega, .nav-group:hover .nav-popover { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-mega { grid-template-columns: .7fr 1.3fr; padding: 32px; }
.nav-mega > div:first-child { padding: 10px 36px 10px 4px; border-right: 1px solid var(--line); }
.nav-mega small { display: block; margin-bottom: 16px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nav-mega strong { display: block; font-family: Georgia,serif; font-size: 22px; font-weight: 400; line-height: 1.45; }
.mega-all { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--blue-deep); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mega-all svg, .mega-links svg, .nav-popover svg { width: 16px; height: 16px; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; padding-left: 32px; }
.mega-links a { display: flex; align-items: center; gap: 12px; padding: 8px 12px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.mega-links a:hover { color: var(--blue); background: var(--paper); }
.mega-links span { color: var(--green); font-family: Georgia,serif; font-size: 11px; }
.nav-popover { left: auto; right: 315px; width: 310px; padding: 12px; }
.nav-popover a { display: flex; align-items: center; justify-content: space-between; padding: 13px 14px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.nav-popover a:last-child { border: 0; }
.nav-popover a:hover { color: var(--blue); background: var(--paper); }

/* Shared inner-page elements */
.page-hero { position: relative; min-height: 570px; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.page-hero.compact { min-height: 430px; }
.page-hero > img, .page-hero-shade, .page-hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { object-fit: cover; }
.page-hero-shade { background: linear-gradient(90deg,rgba(4,18,32,.96),rgba(4,18,32,.77) 55%,rgba(4,18,32,.28)), linear-gradient(0deg,rgba(4,18,32,.65),transparent); }
.page-hero-grid { opacity: .14; background-image: linear-gradient(rgba(255,255,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.25) 1px,transparent 1px); background-size: 72px 72px; }
.page-hero-inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 90px; }
.page-hero h1 { max-width: 950px; margin: 0; font-size: clamp(52px,6vw,86px); font-weight: 650; letter-spacing: -.055em; line-height: 1; }
.page-hero h1 em { color: var(--green); font-family: Georgia,serif; font-weight: 400; }
.page-hero-inner > p:last-child { max-width: 730px; margin: 28px 0 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.75; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 22px; padding-bottom: 22px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumbs span { display: flex; gap: 8px; }
.breadcrumbs b { color: var(--green); }
.breadcrumbs a:hover { color: var(--blue); }
.inner-section { padding: 110px 0; }
.inner-section + .inner-section { padding-top: 0; }
.split-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.split-copy h2, .section-heading h2, .service-value h2, .featured-case h2 { margin: 0; font-size: clamp(40px,4.2vw,64px); font-weight: 650; letter-spacing: -.045em; line-height: 1.07; }
.split-copy h2 em, .service-value h2 em { color: var(--blue); font-family: Georgia,serif; font-weight: 400; }
.rich-copy p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.rich-copy .lead { color: var(--ink-soft); font-family: Georgia,serif; font-size: 25px; line-height: 1.5; }

.values-section, .service-directory, .market-directory, .insights-page { background: var(--paper); }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 64px; border-top: 1px solid #cdd8de; border-left: 1px solid #cdd8de; }
.value-grid article { min-height: 270px; padding: 28px; border-right: 1px solid #cdd8de; border-bottom: 1px solid #cdd8de; }
.value-grid span, .directory-card > span { color: var(--blue); font-family: Georgia,serif; }
.value-grid h3 { margin: 75px 0 14px; font-size: 18px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.method-long .section-heading { max-width: 900px; }
.method-long-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; margin-top: 70px; }
.method-long-image { min-height: 620px; }
.method-long-image img { width: 100%; height: 100%; object-fit: cover; }
.method-long-list { border-top: 1px solid var(--line); }
.method-long-list article { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.method-long-list article > span { color: var(--blue); font-family: Georgia,serif; }
.method-long-list h3 { margin: 0 0 9px; font-size: 18px; }
.method-long-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.profile-stats { background: var(--ink); color: white; }
.profile-stats .shell { display: grid; grid-template-columns: repeat(4,1fr); }
.profile-stats .shell > div { display: flex; flex-direction: column; justify-content: center; min-height: 175px; padding: 28px 38px; border-right: 1px solid rgba(255,255,255,.15); }
.profile-stats .shell > div:last-child { border: 0; }
.profile-stats strong { color: var(--green); font-family: Georgia,serif; font-size: 48px; font-weight: 400; }
.profile-stats span { margin-top: 9px; color: rgba(255,255,255,.64); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.directory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.directory-card { position: relative; display: grid; grid-template-columns: 62px 190px 1fr; min-height: 275px; background: white; border: 1px solid var(--line); overflow: hidden; }
.directory-card > span { padding: 25px 20px; font-size: 14px; }
.directory-card > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .45s ease,filter .45s ease; }
.directory-card > div { display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.directory-card h2 { margin: 0 0 13px; font-size: 23px; }
.directory-card p { margin: 0 0 24px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.directory-card b, .related-grid b, .project-card b { display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.directory-card b svg, .related-grid svg, .project-card svg, .market-directory-row svg, .related-article-grid svg { width: 17px; height: 17px; }
.directory-card:hover img { transform: scale(1.04); filter: saturate(1); }
.directory-card:hover { border-color: var(--blue); }
.delivery-band { background: var(--ink); color: white; }
.delivery-band .shell { display: grid; grid-template-columns: repeat(4,1fr); }
.delivery-band .shell > div { min-height: 220px; padding: 36px 30px; border-right: 1px solid rgba(255,255,255,.14); }
.delivery-band small { color: var(--green); }
.delivery-band strong { display: block; margin: 55px 0 12px; font-size: 22px; }
.delivery-band span { color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.6; }

.service-overview .shell { display: grid; grid-template-columns: .4fr 1fr; gap: 110px; }
.service-overview aside { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--paper); border-top: 3px solid var(--green); }
.service-overview aside > span { color: var(--blue); font-family: Georgia,serif; font-size: 38px; }
.service-overview aside p { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-overview aside a { display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.service-overview aside svg { width: 18px; height: 18px; }
.capabilities { background: var(--paper); }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 62px; border-top: 1px solid #cdd8de; border-left: 1px solid #cdd8de; }
.capability-grid article { min-height: 175px; padding: 24px; border-right: 1px solid #cdd8de; border-bottom: 1px solid #cdd8de; }
.capability-grid span { color: var(--blue); font-family: Georgia,serif; font-size: 13px; }
.capability-grid h3 { margin: 56px 0 0; font-size: 15px; line-height: 1.45; }
.service-value { padding: 100px 0; background: var(--ink); color: white; }
.service-value .shell { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.service-value h2 { color: white; }
.value-list { border-top: 1px solid rgba(255,255,255,.16); }
.value-list p { display: grid; grid-template-columns: 50px 1fr; margin: 0; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.8); font-size: 15px; }
.value-list span { color: var(--green); font-family: Georgia,serif; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 60px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid > a { min-height: 310px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-grid > a > span { color: var(--blue); font-family: Georgia,serif; }
.related-grid h3 { margin: 75px 0 14px; font-size: 21px; }
.related-grid p { min-height: 66px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.market-directory-row { display: grid; grid-template-columns: 60px 220px 1fr 24px; gap: 28px; align-items: center; min-height: 200px; padding: 22px 0; border-bottom: 1px solid #cdd8de; }
.market-dir-number { color: var(--green); font-family: Georgia,serif; }
.market-dir-image { height: 155px; overflow: hidden; }
.market-dir-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.market-directory-row h2 { margin: 0 0 10px; font-size: 28px; }
.market-directory-row p { max-width: 620px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.market-directory-row > svg { color: var(--blue); }
.market-directory-row:hover img { transform: scale(1.05); }
.two-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.two-lists h2 { margin: 0 0 45px; font-size: 42px; line-height: 1.08; }
.two-lists h2 em { color: var(--blue); font-family: Georgia,serif; font-weight: 400; }
.numbered-list { border-top: 1px solid var(--line); }
.numbered-list p { display: grid; grid-template-columns: 50px 1fr; margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.numbered-list span { color: var(--green); font-family: Georgia,serif; }
.numbered-list.blue span { color: var(--blue); }
.featured-case { padding: 100px 0; background: var(--ink); color: white; }
.featured-case .shell { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 500px; }
.featured-case-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-case-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px; background: #0c2236; }
.featured-case-copy small { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.featured-case-copy h2 { margin: 15px 0 20px; color: white; }
.featured-case-copy > p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.75; }
.featured-case-copy .button { align-self: flex-start; margin-top: 18px; }

.project-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.project-card-grid.two { grid-template-columns: 1fr 1fr; }
.project-card { border: 1px solid var(--line); background: white; overflow: hidden; }
.project-card-image { position: relative; height: 270px; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card-image > span { position: absolute; left: 18px; top: 18px; width: 44px; height: 44px; display: grid; place-items: center; background: var(--green); color: var(--ink); font-family: Georgia,serif; }
.project-card-body { padding: 28px; }
.project-card-body small { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-card-body h2 { min-height: 58px; margin: 12px 0 15px; font-size: 23px; line-height: 1.25; }
.project-card-body p { min-height: 84px; margin: 0 0 23px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.project-card:hover img { transform: scale(1.05); }
.project-card:hover { border-color: var(--blue); }
.project-hero { position: relative; min-height: 690px; display: flex; align-items: flex-end; color: white; }
.project-hero > img, .project-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero-shade { background: linear-gradient(0deg,rgba(4,18,32,.96),rgba(4,18,32,.2) 75%); }
.project-hero .shell { position: relative; z-index: 2; padding-bottom: 75px; }
.project-hero h1 { max-width: 970px; margin: 0 0 20px; font-size: clamp(55px,6.5vw,90px); line-height: .98; letter-spacing: -.055em; }
.project-hero .shell > p:last-child { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-facts { background: var(--ink); color: white; }
.project-facts .shell { display: grid; grid-template-columns: repeat(4,1fr); }
.project-facts .shell > div { min-height: 140px; padding: 30px; border-right: 1px solid rgba(255,255,255,.14); }
.project-facts small { display: block; margin-bottom: 26px; color: var(--green); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-facts strong { font-size: 13px; line-height: 1.5; }
.project-detail .shell { display: grid; grid-template-columns: 1.2fr .8fr; gap: 120px; }
.project-detail-copy > p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.project-detail-copy .lead { color: var(--ink); font-family: Georgia,serif; font-size: 28px; }
.project-detail aside { padding: 32px; background: var(--paper); }
.project-detail aside > p:not(.eyebrow) { display: grid; grid-template-columns: 42px 1fr; margin: 0; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.project-detail aside > p span { color: var(--blue); font-family: Georgia,serif; }
.experience-note { margin-top: 34px; padding: 22px; border-left: 3px solid var(--green); background: var(--paper); }
.experience-note strong { color: var(--blue); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.experience-note p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.leader-profile { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 600px; margin-bottom: 34px; background: var(--paper); border: 1px solid var(--line); }
.leader-profile:nth-child(even) .leader-profile-image { order: 2; }
.leader-profile-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-profile-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.leader-profile-copy > span { color: var(--blue); font-family: Georgia,serif; }
.leader-profile-copy h2 { margin: 20px 0 12px; font-size: 42px; line-height: 1.12; }
.leader-profile-copy h3 { margin: 0 0 25px; color: var(--blue-deep); font-size: 14px; }
.leader-profile-copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 1.8; }
.leader-profile-copy a { display: flex; align-items: center; gap: 12px; margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 700; }
.leader-profile-copy a svg { width: 20px; height: 20px; }

.contact-page-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; }
.contact-page h2 { margin: 0; font-size: 60px; line-height: 1.05; }
.contact-page h2 em { color: var(--blue); font-family: Georgia,serif; font-weight: 400; }
.contact-lead { max-width: 680px; margin: 26px 0 42px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.contact-card-list { border-top: 1px solid var(--line); }
.contact-card-list a { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-card-list small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card-list strong { overflow-wrap: anywhere; font-size: 14px; }
.contact-card-list svg, .contact-card-list a > span { grid-row: 1/3; grid-column: 2; align-self: center; width: 20px; color: var(--blue); }
.contact-card-list a > span { width: auto; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.office-card { align-self: start; padding: 45px; background: var(--ink); color: white; }
.office-card > span { color: var(--green); font-family: Georgia,serif; font-size: 45px; }
.office-card h3 { margin: 35px 0 18px; font-size: 25px; }
.office-card > p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.8; }
.office-hours { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.office-hours small { display: block; margin-bottom: 8px; color: var(--green); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.office-hours a, .office-hours p { margin: 0; color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.6; }
.enquiry-guide { padding: 100px 0; background: var(--paper); }
.enquiry-guide .shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.enquiry-guide h2 { margin: 0; font-size: 46px; line-height: 1.08; }
.enquiry-guide ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid #cdd8de; }
.enquiry-guide li { display: grid; grid-template-columns: 55px 1fr; padding: 22px 0; border-bottom: 1px solid #cdd8de; }
.enquiry-guide li > span { color: var(--blue); font-family: Georgia,serif; }
.enquiry-guide li p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.enquiry-guide li strong { display: block; margin-bottom: 6px; color: var(--ink); font-size: 15px; }

.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 68px; }
.insight-card { background: white; border: 1px solid var(--line); }
.insight-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.insight-image { position: relative; display: block; height: 260px; overflow: hidden; }
.insight-card.featured .insight-image { height: 100%; min-height: 450px; }
.insight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-image > span { position: absolute; left: 18px; top: 18px; padding: 8px 10px; background: var(--green); color: var(--ink); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.insight-body { padding: 26px; }
.insight-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insight-body h3 { margin: 23px 0 15px; font-size: 23px; line-height: 1.28; }
.insight-body > p { min-height: 72px; margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.insight-card:hover img { transform: scale(1.05); }
.home-insights { background: var(--paper); }
.section-end-link, .home-leader-link { display: flex; justify-content: center; margin-top: 45px; }
.article-hero { padding: 110px 0 80px; background: var(--paper); }
.article-hero h1 { max-width: 980px; margin: 0; font-size: clamp(50px,5.8vw,82px); line-height: 1.02; letter-spacing: -.05em; }
.article-hero > .shell > p:not(.eyebrow) { max-width: 800px; margin: 28px 0; color: var(--muted); font-family: Georgia,serif; font-size: 21px; line-height: 1.6; }
.article-meta { display: flex; flex-wrap: wrap; gap: 26px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.article-feature { width: min(1240px,calc(100% - 64px)); height: 590px; margin: 35px auto 0; }
.article-feature img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 280px 1fr; gap: 90px; padding-top: 90px; padding-bottom: 110px; }
.article-layout > aside { align-self: start; position: sticky; top: 115px; border-top: 2px solid var(--green); }
.article-layout > aside > strong { display: block; padding: 18px 0; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-layout > aside > a { display: grid; grid-template-columns: 35px 1fr; padding: 13px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.5; }
.article-layout > aside > a span { color: var(--blue); font-family: Georgia,serif; }
.article-layout > aside > a:last-child { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding: 18px; border: 0; background: var(--blue); color: white; font-weight: 800; text-transform: uppercase; }
.article-layout > aside svg { width: 18px; height: 18px; }
.article-content { max-width: 760px; }
.article-intro { margin: 0 0 55px; color: var(--ink-soft); font-family: Georgia,serif; font-size: 28px; line-height: 1.55; }
.article-content section { scroll-margin-top: 115px; margin-bottom: 60px; }
.article-content h2 { margin: 0 0 22px; font-size: 37px; line-height: 1.16; }
.article-content p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.article-content ul { margin: 28px 0; padding: 25px 30px 25px 50px; background: var(--paper); border-left: 3px solid var(--green); }
.article-content li { margin: 10px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.article-share { margin-top: 75px; padding: 34px; background: var(--ink); color: white; }
.article-share > strong { font-size: 23px; }
.article-share p { color: rgba(255,255,255,.6); }
.related-article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 60px; }
.related-article-grid > a { display: grid; grid-template-columns: 180px 1fr; grid-template-rows: auto 1fr auto; gap: 8px 25px; padding: 18px; border: 1px solid var(--line); }
.related-article-grid img { grid-row: 1/4; width: 100%; height: 170px; object-fit: cover; }
.related-article-grid small { color: var(--blue); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.related-article-grid h3 { margin: 0; font-size: 19px; line-height: 1.3; }
.related-article-grid span { display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.legal-page .article-content { margin-inline: auto; }
.inner-cta { padding: 110px 0; }
.inner-cta .contact-details { grid-template-columns: 1fr; }
.inner-cta .contact-details > div { grid-column: 1/-1; }
.not-found { min-height: 670px; display: flex; align-items: center; background: var(--paper); }
.not-found .shell > span { color: var(--green); font-family: Georgia,serif; font-size: 110px; }
.not-found h1 { max-width: 780px; margin: 18px 0; font-size: 60px; line-height: 1.05; }
.not-found .shell > p:not(.eyebrow) { color: var(--muted); }
.not-found .shell > div { display: flex; gap: 14px; margin-top: 32px; }
.button.outline { border: 1px solid var(--ink); color: var(--ink); }
.footer-bottom > div { display: flex; gap: 22px; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu { display: block; }
  .brand { width: 240px; }
  .service-grid { grid-template-columns: repeat(3,1fr); }
  .service-card { min-height: 260px; }
  .about-grid, .methodology-grid { gap: 65px; }
  .method-image, .method-image > img { min-height: 620px; height: 620px; }
  .leader-card { grid-template-columns: 42% 58%; }
  .leader-info { padding: 30px 22px; }
  .leader-info h3 { font-size: 21px; }
  .footer-main { gap: 36px; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 40px, 720px); }
  .section { padding: 92px 0; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: 900px; }
  .hero-content { min-height: 650px; align-items: flex-start; padding-top: 110px; }
  .hero-note { display: none; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-band > div { min-height: 112px; padding: 19px 24px; }
  .stat-band > div:nth-child(2) { border-right: 0; }
  .stat-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .section-intro, .methodology-grid, .experience-head, .leadership-head, .faq-grid, .contact-inner { grid-template-columns: 1fr; gap: 42px; }
  .about-copy { padding-top: 0; }
  .about-visual { grid-template-columns: 1.3fr .7fr; }
  .about blockquote { grid-column: 1 / -1; grid-row: 2; }
  .about-visual .small { height: 430px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .method-image, .method-image > img { min-height: 520px; height: 520px; }
  .market-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,320px); }
  .market-card { grid-column: span 1 !important; }
  .project-row { grid-template-columns: 45px 1fr .45fr; gap: 22px; padding: 24px 0; }
  .project-row > p { grid-column: 2 / -1; }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-card { min-height: 390px; }
  .contact-panel { padding: 32px; }
  .footer-main { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { min-height: 520px; }
  .page-hero-inner { padding-top: 90px; padding-bottom: 70px; }
  .split-copy, .method-long-grid, .service-value .shell, .two-lists, .featured-case .shell, .project-detail .shell, .contact-page-grid, .enquiry-guide .shell { grid-template-columns: 1fr; gap: 48px; }
  .value-grid, .capability-grid { grid-template-columns: 1fr 1fr; }
  .profile-stats .shell, .delivery-band .shell, .project-facts .shell { grid-template-columns: 1fr 1fr; }
  .profile-stats .shell > div:nth-child(2), .delivery-band .shell > div:nth-child(2), .project-facts .shell > div:nth-child(2) { border-right: 0; }
  .profile-stats .shell > div:nth-child(-n+2), .delivery-band .shell > div:nth-child(-n+2), .project-facts .shell > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .directory-grid { grid-template-columns: 1fr; }
  .service-overview .shell { grid-template-columns: .45fr 1fr; gap: 55px; }
  .project-card-grid { grid-template-columns: 1fr 1fr; }
  .leader-profile { grid-template-columns: 1fr 1fr; }
  .leader-profile-copy { padding: 40px; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .insight-card.featured { grid-column: span 2; }
  .article-feature { width: calc(100% - 40px); height: 450px; }
  .article-layout { grid-template-columns: 210px 1fr; gap: 45px; }
  .related-article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .shell { width: calc(100% - 30px); }
  .topline-inner span { display: none; }
  .topline-inner { justify-content: flex-end; }
  .site-header { height: 72px; }
  .brand { width: 210px; }
  .brand img { height: 60px; }
  .hero { min-height: 850px; }
  .hero-image { object-position: 66% center; }
  .hero-content { min-height: 610px; padding-top: 80px; padding-bottom: 95px; }
  .hero h1 { font-size: clamp(44px,13vw,62px); }
  .hero-intro { font-size: 15px; }
  .button { width: 100%; }
  .stat-band strong { font-size: 32px; }
  .stat-band span { font-size: 9px; }
  .stat-band > div { gap: 12px; padding: 16px; }
  .section-heading h2 { font-size: 40px; }
  .about-visual { margin-top: 54px; display: grid; grid-template-columns: 1fr; }
  .about-visual .large, .about-visual .small { height: 300px; }
  .about blockquote { grid-column: auto; grid-row: auto; padding: 35px 15px; }
  .section-intro { gap: 28px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .service-card { min-height: 230px; }
  .service-card h3 { margin-top: 48px; }
  .methodology-grid { gap: 52px; }
  .method-image, .method-image > img { min-height: 440px; height: 440px; }
  .method-tag { width: 185px; height: 125px; bottom: 32px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 18px; }
  .market-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .market-card { min-height: 320px; }
  .market-copy p { max-height: 100px; opacity: 1; }
  .project-row { grid-template-columns: 38px 1fr; gap: 16px; }
  .project-location, .project-row > p { grid-column: 2; }
  .project-location { color: var(--blue); }
  .gallery-track { overflow-x: auto; scroll-snap-type: x mandatory; grid-template-columns: repeat(5, 82vw); }
  .gallery-heading { display: block; padding-top: 38px; padding-bottom: 26px; }
  .gallery-heading > p:last-child { margin-top: 16px; }
  .industry-gallery figure { scroll-snap-align: start; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-image { height: 340px; }
  .leader-info { min-height: 300px; padding: 28px; }
  .leader-info h3 { margin-top: 35px; }
  .faq-grid { gap: 52px; }
  .contact { padding: 90px 0; }
  .contact h2 { font-size: 48px; }
  .contact-panel { padding: 24px; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-top: 58px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; gap: 25px; }
  .inner-section { padding: 78px 0; }
  .page-hero { min-height: 490px; }
  .page-hero.compact { min-height: 390px; }
  .page-hero h1 { font-size: 45px; }
  .page-hero-inner { padding-top: 70px; padding-bottom: 55px; }
  .split-copy, .method-long-grid, .service-value .shell, .two-lists, .featured-case .shell, .project-detail .shell, .contact-page-grid, .enquiry-guide .shell { gap: 36px; }
  .split-copy h2, .section-heading h2, .service-value h2, .featured-case h2 { font-size: 39px; }
  .value-grid, .capability-grid, .profile-stats .shell, .delivery-band .shell, .project-facts .shell { grid-template-columns: 1fr; }
  .profile-stats .shell > div, .delivery-band .shell > div, .project-facts .shell > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .directory-card { grid-template-columns: 42px 105px 1fr; min-height: 240px; }
  .directory-card > span { padding: 18px 12px; }
  .directory-card > div { padding: 18px; }
  .directory-card h2 { font-size: 18px; }
  .directory-card p { font-size: 10px; }
  .service-overview .shell { grid-template-columns: 1fr; gap: 35px; }
  .service-overview aside { min-height: 230px; }
  .related-grid { grid-template-columns: 1fr; }
  .market-directory-row { grid-template-columns: 40px 1fr 20px; gap: 16px; }
  .market-dir-image { grid-column: 2/4; grid-row: 2; height: 180px; }
  .market-directory-row > div:nth-child(3) { grid-column: 2/4; grid-row: 3; padding-bottom: 20px; }
  .market-directory-row > svg { grid-column: 3; grid-row: 1; }
  .featured-case-copy { padding: 32px 25px; }
  .project-card-grid, .project-card-grid.two { grid-template-columns: 1fr; }
  .project-hero { min-height: 590px; }
  .project-hero h1 { font-size: 48px; }
  .project-detail-copy .lead { font-size: 24px; }
  .leader-profile { grid-template-columns: 1fr; }
  .leader-profile:nth-child(even) .leader-profile-image { order: 0; }
  .leader-profile-image { height: 380px; }
  .leader-profile-copy { padding: 32px 24px; }
  .leader-profile-copy h2 { font-size: 34px; }
  .contact-page h2 { font-size: 43px; }
  .office-card { padding: 32px 25px; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-column: auto; display: block; }
  .insight-card.featured .insight-image { min-height: 0; height: 260px; }
  .article-hero { padding: 80px 0 55px; }
  .article-hero h1 { font-size: 44px; }
  .article-feature { width: calc(100% - 30px); height: 300px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 60px; }
  .article-layout > aside { display: none; }
  .article-intro { font-size: 23px; }
  .article-content h2 { font-size: 31px; }
  .related-article-grid > a { grid-template-columns: 110px 1fr; }
  .related-article-grid img { height: 135px; }
  .not-found h1 { font-size: 43px; }
  .not-found .shell > div { flex-direction: column; }
}

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