:root {
  --navy: #071d42;
  --navy-2: #0b2d62;
  --blue: #0e4fa8;
  --blue-bright: #1e72d7;
  --orange: #f58220;
  --orange-dark: #a94700;
  --ink: #142033;
  --muted: #59677a;
  --line: #dce4ee;
  --light: #f4f7fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 29, 66, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ffb15c; outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--navy); background: var(--white); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.utility-bar { color: #dce8f8; background: #04152f; font-size: .78rem; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner p { margin: 0; }
.utility-contact { display: flex; align-items: center; gap: 10px; }
.utility-contact a { text-decoration: none; }
.utility-contact a:hover { color: var(--white); }
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,228,238,.9); backdrop-filter: blur(14px); }
.nav-wrap { height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 220px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); font-size: .88rem; font-weight: 700; }
.site-nav > a:not(.button) { position: relative; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; content: ""; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: right .2s ease; }
.site-nav > a:hover::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown summary { list-style: none; cursor: pointer; white-space: nowrap; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: ""; width: 6px; height: 6px; margin: 0 0 3px 7px; display: inline-block; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.nav-dropdown[open] summary::after { transform: rotate(225deg) translate(-2px,-2px); }
.nav-dropdown-panel { position: absolute; z-index: 60; top: calc(100% + 20px); left: 50%; width: 330px; padding: 12px; display: grid; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); transform: translateX(-50%); }
.nav-dropdown-panel a { padding: 10px 12px; color: var(--ink); border-radius: 7px; font-size: .8rem; line-height: 1.3; text-decoration: none; }
.nav-dropdown-panel a:hover { color: var(--blue); background: var(--light); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 2px solid var(--orange); border-radius: 9px; color: #17130d; background: var(--orange); font-weight: 800; text-decoration: none; box-shadow: 0 10px 26px rgba(245,130,32,.23); cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { background: #ff963d; border-color: #ff963d; transform: translateY(-2px); }
.button-small { min-height: 43px; padding-inline: 18px; font-size: .84rem; }
.button.outline { color: var(--white); background: transparent; border-color: rgba(255,255,255,.42); box-shadow: none; }
.button.outline:hover { color: var(--navy); background: var(--white); border-color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link.light { color: var(--white); }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.hero { min-height: 720px; position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-image, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 58% center; }
.hero-scrim { background: linear-gradient(90deg, rgba(4,17,42,.99) 0%, rgba(5,24,56,.94) 42%, rgba(5,24,56,.38) 72%, rgba(5,24,56,.15) 100%), linear-gradient(0deg, rgba(3,15,36,.74), transparent 48%); }
.hero-inner { position: relative; z-index: 2; padding: 110px 0 94px; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 12px; color: #b8cae5; font-size: .76rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 35px; height: 2px; background: var(--orange); }
.eyebrow.dark { color: var(--blue); }
h1, h2, h3 { color: inherit; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 780px; margin: 0; font-size: clamp(3rem, 6.1vw, 5.6rem); }
h2 { margin: 0; font-size: clamp(2.25rem, 4.4vw, 4.2rem); }
h3 { margin: 0; font-size: 1.35rem; }
.hero-lede { max-width: 710px; margin: 28px 0 0; color: #d9e4f5; font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.hero-actions { margin-top: 35px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-proof { max-width: 720px; margin: 62px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.hero-proof li { padding: 20px 20px 0 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: .95rem; }
.hero-proof span { color: #aebed6; font-size: .79rem; }
.concept-note { position: absolute; z-index: 3; right: 18px; bottom: 12px; margin: 0; color: rgba(255,255,255,.62); font-size: .66rem; }

.answer-section { border-bottom: 1px solid var(--line); background: var(--white); }
.answer-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.answer-section h2 { max-width: 460px; font-size: clamp(2.2rem, 4vw, 3.7rem); }
.answer-copy { padding-left: 28px; border-left: 4px solid var(--orange); font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.answer-copy p { margin: 0 0 15px; }
.answer-copy p:last-child { margin-bottom: 0; color: var(--muted); font-size: .96rem; }

.customer-band { padding: 58px 0 54px; background: var(--white); border-bottom: 1px solid var(--line); }
.customer-band-heading { margin-bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.customer-band-heading .eyebrow { margin-bottom: 0; flex: 0 0 auto; }
.customer-band-heading h2 { max-width: 620px; color: var(--navy); font-size: clamp(1.35rem, 2.1vw, 2rem); text-align: right; }
.customer-name-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); list-style: none; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.customer-name-grid li { min-width: 0; border-right: 1px solid var(--line); }
.customer-name-grid li:last-child { border-right: 0; }
.customer-name-grid a, .customer-name-grid li > div { min-height: 116px; padding: 20px 16px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--navy); background: #fbfcfe; text-align: center; text-decoration: none; transition: color .2s ease, background .2s ease; }
.customer-name-grid a:hover { color: var(--blue); background: var(--light); }
.customer-name-grid strong { font-size: .91rem; line-height: 1.25; }
.customer-name-grid span { margin-top: 6px; color: var(--muted); font-size: .66rem; line-height: 1.3; }
.customer-reference-note { margin: 14px 0 0; color: var(--muted); font-size: .68rem; }

.capabilities { background: var(--light); }
.section-heading { margin-bottom: 50px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; }
.section-heading > p { max-width: 480px; margin: 0 0 7px auto; color: var(--muted); }
.section-heading.compact { margin-bottom: 44px; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.capability-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 34px rgba(7,29,66,.07); transition: transform .25s ease, box-shadow .25s ease; }
.capability-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.capability-card img { width: calc(100% + 6px); max-width: none; height: auto; margin: -3px -3px 0; aspect-ratio: 16 / 9; object-fit: cover; object-position: center top; filter: saturate(.92) contrast(1.07) brightness(1.02); transition: transform .45s ease, filter .45s ease; }
.capability-card:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.08) brightness(1.03); }
.card-body { position: relative; z-index: 1; padding: 25px 22px 27px; background: var(--white); }
.card-body > span { display: block; margin-bottom: 18px; color: var(--orange-dark); font: 800 .73rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.card-body h3 { color: var(--navy); }
.card-body p { min-height: 96px; margin: 13px 0 17px; color: var(--muted); font-size: .9rem; }
.card-body a { color: var(--blue); font-size: .82rem; font-weight: 800; text-decoration: none; }
.card-body h3 a { color: inherit; font-size: inherit; }
.service-rail { margin-top: 20px; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.service-rail a { min-height: 104px; padding: 23px; display: flex; justify-content: center; flex-direction: column; text-decoration: none; border-right: 1px solid var(--line); transition: background .2s ease; }
.service-rail a:last-child { border-right: 0; }
.service-rail a:hover { background: #edf4fd; }
.service-rail span, .service-rail b { display: block; }
.service-rail span { color: var(--navy); font-weight: 800; }
.service-rail b { margin-top: 3px; color: var(--muted); font-size: .76rem; font-weight: 550; }

.industries { padding-top: 0; color: var(--ink); background: var(--light); }
.industries-heading { margin-bottom: 46px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: clamp(40px, 7vw, 90px); align-items: end; }
.industries-heading h2 { max-width: 820px; color: var(--navy); font-size: clamp(2.25rem, 4vw, 3.7rem); }
.industries-heading > p { max-width: 390px; margin: 0 0 5px auto; color: var(--muted); }
.industry-cards { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.industry-card { min-height: 174px; padding: 28px 16px 23px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 19px; position: relative; overflow: hidden; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 14px; text-align: center; text-decoration: none; box-shadow: 0 9px 26px rgba(7,29,66,.05); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.industry-card::after { position: absolute; right: 17px; bottom: 12px; content: "→"; color: var(--blue); font-weight: 850; opacity: 0; transform: translateX(-7px); transition: opacity .25s ease, transform .25s ease; }
.industry-card img { width: 48px; height: 48px; }
.industry-card strong { font-size: .9rem; line-height: 1.3; }
.industry-card:hover { border-color: #aac5e7; box-shadow: 0 18px 42px rgba(7,29,66,.11); transform: translateY(-5px); }
.industry-card:hover::after { opacity: 1; transform: none; }
.industries-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 135px); align-items: center; }
.section-lede { margin: 27px 0 32px; color: #bbc9dc; font-size: 1.02rem; }
.section-lede.dark-text { color: var(--muted); }
.industry-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); }
.industry-list > a { min-height: 118px; padding: 25px 18px; display: block; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; transition: background .2s ease; }
.industry-list > a:hover { background: rgba(255,255,255,.07); }
.industry-list > a:nth-child(even) { border-right: 0; }
.industry-list span { color: #7d9bc7; font: 700 .7rem ui-monospace, monospace; }
.industry-list h3 { margin-top: 10px; font-size: 1.13rem; }

.proof-section { background: var(--white); }
.proof-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(55px, 8vw, 100px); align-items: center; }
.proof-grid > * { min-width: 0; }
.proof-visual { width: 100%; max-width: 1024px; margin: 0; position: relative; }
.proof-visual::before { position: absolute; z-index: -1; content: ""; width: 70%; height: 74%; left: -22px; bottom: -22px; background: var(--orange); border-radius: 20px; }
.proof-visual img { width: 100%; height: auto; object-fit: contain; border-radius: 20px; box-shadow: var(--shadow); }
.proof-visual figcaption { margin-top: 12px; color: var(--muted); font-size: .72rem; }
.proof-copy h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.check-list { margin: 34px 0; padding: 0; list-style: none; }
.check-list li { margin-bottom: 22px; display: grid; grid-template-columns: 35px 1fr; gap: 14px; }
.check-list li > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 900; }
.check-list strong { color: var(--navy); }
.check-list p { margin: 3px 0 0; color: var(--muted); font-size: .9rem; }

.process-section { background: #eef3f9; }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); list-style: none; counter-reset: steps; }
.process-grid li { min-height: 278px; padding: 30px 28px; background: var(--white); border-top: 4px solid var(--blue); border-right: 1px solid var(--line); }
.process-grid li:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-grid li:last-child { border-right: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.process-grid span { color: var(--orange-dark); font: 800 .78rem ui-monospace, monospace; }
.process-grid h3 { margin-top: 42px; color: var(--navy); }
.process-grid p { margin: 15px 0 0; color: var(--muted); font-size: .9rem; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 10vw, 140px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 25px 44px 25px 0; position: relative; color: var(--navy); font-size: 1.04rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 20px; right: 5px; color: var(--blue); font-size: 1.7rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; margin: -4px 44px 25px 0; color: var(--muted); }

.quote-section { padding: clamp(78px, 9vw, 120px) 0; color: var(--white); background: linear-gradient(135deg, #071d42 0%, #0b2d62 100%); }
.quote-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.quote-section h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.quote-section > .container > div > p:not(.eyebrow) { max-width: 470px; color: #c7d4e7; }
.contact-card { margin-top: 42px; padding-top: 24px; display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.2); }
.contact-card span { color: #9fb3d0; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-card a { margin-top: 7px; width: fit-content; color: var(--white); font-size: 1.13rem; font-weight: 800; text-decoration: none; }
.quote-form { padding: clamp(25px, 4vw, 44px); color: var(--ink); background: var(--white); border-radius: 20px; box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { margin-bottom: 18px; display: block; color: var(--navy); font-size: .81rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; color: var(--ink); background: #f8fafc; border: 1px solid #cbd7e5; border-radius: 8px; }
.quote-form input, .quote-form select { min-height: 48px; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); outline: 3px solid rgba(30,114,215,.18); }
.quote-form small { display: block; margin-top: 4px; color: var(--muted); font-size: .7rem; font-weight: 500; }
.upload-note { margin: 5px 0 22px; padding: 14px 16px; color: #554b38; background: #fff8e8; border-left: 4px solid var(--orange); font-size: .78rem; }
.upload-note p { margin: 3px 0 0; }
.form-status { margin: 13px 0 0; color: #0b6b4f; font-weight: 750; }
.form-status.error { color: #9c2f2f; }
.form-disclaimer { margin: 13px 0 0; color: var(--muted); font-size: .7rem; }

.site-footer { padding: 70px 0 28px; color: #c2cee0; background: #031127; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .7fr 1fr 1fr; gap: 55px; }
.footer-brand img { width: 240px; height: auto; padding: 8px; background: var(--white); border-radius: 7px; }
.footer-brand p { max-width: 320px; color: #91a2bc; }
.site-footer h2 { margin: 0 0 20px; color: var(--white); font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.site-footer a, .site-footer address { margin: 0 0 9px; display: block; color: #c2cee0; font-size: .86rem; font-style: normal; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer .button { color: #17130d; }
.policy-note { color: #788ba9; font-size: .69rem; line-height: 1.45; }
.legal-links { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 5px 15px; }
.legal-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #7588a5; font-size: .7rem; }
.footer-bottom p { margin: 0; }
.site-footer .agency-credit { margin: -8px 0; display: flex; align-items: center; justify-content: flex-end; gap: 8px; color: #9eacc1; font-size: .68rem; text-align: right; }
.agency-credit img { width: 19px; height: 19px; padding: 2px; object-fit: contain; background: var(--white); border-radius: 5px; }
.agency-credit strong { color: #d9e2ef; }
.legal-placeholder { min-height: 300px; }
.legal-review-note { font-size: .82rem; }

@media (min-width: 561px) {
  .site-footer .agency-credit { margin-right: 100px; }
}

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .service-rail { grid-template-columns: 1fr 1fr; }
  .service-rail a:nth-child(2) { border-right: 0; }
  .service-rail a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industry-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .customer-name-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .customer-name-grid li { border-bottom: 1px solid var(--line); }
  .customer-name-grid li:nth-child(3n) { border-right: 0; }
  .customer-name-grid li:nth-child(n+4) { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1.4fr .7fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 850px) {
  .utility-inner p { display: none; }
  .utility-inner { justify-content: flex-end; }
  .nav-wrap { height: 82px; }
  .brand img { width: 180px; }
  .menu-toggle { display: flex; }
  .site-nav { position: absolute; inset: 82px 0 auto; padding: 22px 20px 28px; display: none; align-items: stretch; flex-direction: column; gap: 0; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 22px 40px rgba(7,29,66,.15); }
  .site-nav { max-height: calc(100vh - 120px); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-dropdown { border-bottom: 1px solid var(--line); }
  .nav-dropdown summary { padding: 12px 0; display: flex; align-items: center; justify-content: space-between; }
  .nav-dropdown-panel { position: static; width: auto; padding: 0 0 12px 12px; border: 0; border-radius: 0; box-shadow: none; transform: none; }
  .nav-dropdown-panel a { padding: 9px 10px; }
  .site-nav .button { margin-top: 18px; }
  .hero { min-height: 680px; }
  .hero-image { object-position: 65% center; opacity: .75; }
  .hero-scrim { background: linear-gradient(90deg, rgba(4,17,42,.98), rgba(5,24,56,.82)); }
  .answer-grid, .section-heading, .industries-grid, .proof-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; }
  .answer-grid, .section-heading { gap: 35px; }
  .answer-copy { padding-left: 20px; }
  .section-heading > p { margin-left: 0; }
  .industries-heading { grid-template-columns: 1fr; gap: 24px; }
  .industries-heading > p { max-width: 620px; margin-left: 0; }
  .industries-grid, .proof-grid, .faq-grid, .quote-grid { gap: 55px; }
  .proof-visual { max-width: 680px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .process-grid li { min-height: 240px; border: 0; border-top: 4px solid var(--blue); }
  .process-grid li:first-child { border-radius: var(--radius) 0 0 0; }
  .process-grid li:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .process-grid li:nth-child(3) { border-radius: 0 0 0 var(--radius); }
  .process-grid li:last-child { border-radius: 0 0 var(--radius) 0; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-contact { width: 100%; justify-content: space-between; gap: 6px; font-size: .7rem; }
  .hero { min-height: 735px; }
  .hero-inner { padding: 80px 0 76px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-proof { margin-top: 45px; grid-template-columns: 1fr; }
  .hero-proof li { padding: 12px 0; display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid rgba(255,255,255,.12); }
  .concept-note { right: 8px; bottom: 5px; max-width: 230px; text-align: right; }
  .capability-grid, .industry-list, .process-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .industry-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .industry-card { min-height: 154px; }
  .customer-band-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
  .customer-band-heading h2 { text-align: left; }
  .customer-name-grid { grid-template-columns: 1fr 1fr; }
  .customer-name-grid li, .customer-name-grid li:nth-child(3n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .customer-name-grid li:nth-child(even) { border-right: 0; }
  .customer-name-grid li:nth-child(n+5) { border-bottom: 0; }
  .customer-name-grid a, .customer-name-grid li > div { min-height: 110px; padding-inline: 10px; }
  .capability-card img { height: auto; }
  .card-body p { min-height: auto; }
  .service-rail { grid-template-columns: 1fr; }
  .service-rail a { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-rail a:last-child { border-bottom: 0; }
  .industry-list > a { min-height: auto; border-right: 0; }
  .process-grid li { min-height: auto; border-radius: 0 !important; }
  .process-grid li:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .process-grid li:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }
  .process-grid h3 { margin-top: 24px; }
  .quote-form { padding: 24px 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer .agency-credit { justify-content: flex-start; text-align: left; }
}

.ava-chat { position: fixed; z-index: 90; right: 22px; bottom: 22px; }
.ava-toggle { display: flex; align-items: center; gap: 10px; padding: 12px 20px 12px 12px; border: none; border-radius: 999px; color: var(--white); background: var(--navy); box-shadow: 0 16px 40px rgba(7,29,66,.28); cursor: pointer; font-weight: 800; font-size: .88rem; transition: transform .2s ease, box-shadow .2s ease; }
.ava-toggle:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(7,29,66,.34); }
.ava-avatar { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy); background: var(--orange); border-radius: 50%; font-weight: 900; }
.ava-panel { position: absolute; right: 0; bottom: calc(100% + 14px); width: min(360px, calc(100vw - 44px)); max-height: 70vh; flex-direction: column; background: var(--white); border-radius: 18px; box-shadow: 0 30px 80px rgba(7,29,66,.32); overflow: hidden; display: none; }
.ava-panel:not([hidden]) { display: flex; }
.ava-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 16px 14px; color: var(--white); background: linear-gradient(135deg, #071d42, #0b2d62); }
.ava-header-id { display: flex; align-items: center; gap: 12px; }
.ava-header-id strong { display: block; font-size: .95rem; }
.ava-header-id span { display: block; color: #b8cae5; font-size: .72rem; }
.ava-close { width: 30px; height: 30px; border: none; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.14); font-size: 1.2rem; line-height: 1; cursor: pointer; }
.ava-close:hover { background: rgba(255,255,255,.24); }
.ava-messages { flex: 1; min-height: 220px; max-height: 340px; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; background: var(--light); }
.ava-message { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: .88rem; line-height: 1.5; }
.ava-message-ava { align-self: flex-start; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.ava-message-user { align-self: flex-end; color: var(--white); background: var(--blue); border-bottom-right-radius: 4px; }
.ava-typing { display: flex; gap: 5px; padding: 14px; }
.ava-typing span { width: 7px; height: 7px; background: #9fb0c4; border-radius: 50%; animation: ava-bounce 1.1s infinite ease-in-out; }
.ava-typing span:nth-child(2) { animation-delay: .15s; }
.ava-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes ava-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .ava-typing span { animation: none; } }
.ava-suggestions { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; background: var(--light); }
.ava-suggestions:empty, .ava-suggestions[hidden] { display: none; }
.ava-chip { padding: 7px 12px; color: var(--blue); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .76rem; font-weight: 700; cursor: pointer; }
.ava-chip:hover { background: #edf4fd; }
.ava-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--white); }
.ava-input-row input { flex: 1; min-height: 42px; padding: 0 12px; color: var(--ink); background: #f8fafc; border: 1px solid #cbd7e5; border-radius: 8px; }
.ava-input-row .button { min-height: 42px; padding: 0 16px; }
.ava-disclaimer { margin: 0; padding: 0 16px 14px; color: var(--muted); font-size: .66rem; background: var(--white); }

@media (max-width: 560px) {
  .ava-chat { right: 14px; bottom: 14px; }
  .ava-toggle-label { display: none; }
  .ava-toggle { padding: 14px; border-radius: 50%; }
  .ava-panel { width: calc(100vw - 28px); }
}

/* Production Hop assistant */
.hop-chat { position: fixed; z-index: 100; right: 22px; bottom: 22px; font-family: inherit; }
.hop-toggle { min-height: 62px; display: flex; align-items: center; gap: 11px; padding: 9px 18px 9px 9px; color: var(--white); background: linear-gradient(135deg, #061731, #0b3471); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; box-shadow: 0 18px 50px rgba(3,17,39,.3); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.hop-toggle:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(3,17,39,.38); }
.hop-toggle img, .hop-identity img { flex: 0 0 auto; object-fit: contain; background: var(--white); border-radius: 50%; }
.hop-toggle img { width: 42px; height: 42px; padding: 4px; }
.hop-toggle > span { display: grid; gap: 1px; text-align: left; }
.hop-toggle strong { font-size: .9rem; line-height: 1.2; }
.hop-toggle small { color: #bad0ec; font-size: .65rem; }
.hop-panel { position: absolute; right: 0; bottom: calc(100% + 14px); width: min(400px, calc(100vw - 44px)); height: min(640px, calc(100vh - 120px)); min-height: 430px; display: flex; flex-direction: column; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid rgba(7,29,66,.13); border-radius: 20px; box-shadow: 0 30px 90px rgba(3,17,39,.34); }
.hop-panel[hidden] { display: none; }
.hop-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 15px; color: var(--white); background: linear-gradient(135deg, #061731, #0b3471); }
.hop-identity { display: flex; align-items: center; gap: 11px; min-width: 0; }
.hop-identity img { width: 44px; height: 44px; padding: 4px; }
.hop-identity strong, .hop-identity span { display: block; }
.hop-identity strong { font-size: 1rem; line-height: 1.2; }
.hop-identity span { margin-top: 3px; color: #bad0ec; font-size: .7rem; white-space: nowrap; }
.hop-identity i { width: 7px; height: 7px; display: inline-block; margin-right: 3px; background: #63d9aa; border-radius: 50%; box-shadow: 0 0 0 3px rgba(99,217,170,.14); }
.hop-close { width: 34px; height: 34px; flex: 0 0 auto; color: var(--white); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; font-size: 1.35rem; line-height: 1; }
.hop-close:hover { background: rgba(255,255,255,.22); }
.hop-messages { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 12px; padding: 18px 16px; overflow-y: auto; overscroll-behavior: contain; background: #f3f6fa; scrollbar-color: #a8b7c9 transparent; }
.hop-message { width: fit-content; max-width: 88%; padding: 11px 14px; border-radius: 15px; box-shadow: 0 4px 13px rgba(7,29,66,.055); }
.hop-message-label { display: block; margin-bottom: 4px; color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.hop-message p { margin: 0; font-size: .86rem; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.hop-message-hop { align-self: flex-start; background: var(--white); border: 1px solid #dce4ed; border-bottom-left-radius: 4px; }
.hop-message-user { align-self: flex-end; color: var(--white); background: var(--blue); border-bottom-right-radius: 4px; }
.hop-message-user .hop-message-label { color: #d8e9ff; }
.hop-message-error { align-self: flex-start; color: #7d2222; background: #fff4f3; border: 1px solid #efcbc7; border-bottom-left-radius: 4px; }
.hop-message-error .hop-message-label { font-size: 0; }
.hop-message-error .hop-message-label::after { content: "Couldn’t send"; font-size: .64rem; }
.hop-escalation { margin-top: 10px; display: inline-flex; color: var(--blue); font-size: .75rem; font-weight: 850; }
.hop-escalation::after { content: "→"; margin-left: 6px; }
.hop-typing { min-width: 66px; display: flex; gap: 5px; padding-block: 16px; }
.hop-typing span { width: 7px; height: 7px; background: #8698ac; border-radius: 50%; animation: hop-bounce 1.1s infinite ease-in-out; }
.hop-typing span:nth-child(2) { animation-delay: .14s; }
.hop-typing span:nth-child(3) { animation-delay: .28s; }
@keyframes hop-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-5px); opacity: 1; } }
.hop-suggestions { display: flex; gap: 7px; padding: 10px 14px 0; overflow-x: auto; background: var(--white); scrollbar-width: none; }
.hop-suggestions[hidden] { display: none; }
.hop-suggestions button { flex: 0 0 auto; padding: 7px 10px; color: var(--blue); background: #f5f8fc; border: 1px solid #ccd9e7; border-radius: 999px; cursor: pointer; font: inherit; font-size: .68rem; font-weight: 750; }
.hop-suggestions button:hover { background: #eaf2fc; border-color: #a9c4e4; }
.hop-form { padding: 11px 13px 12px; background: var(--white); }
.hop-input-wrap { display: flex; align-items: flex-end; gap: 8px; padding: 7px 7px 7px 12px; background: #f8fafc; border: 1px solid #c9d5e3; border-radius: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.hop-input-wrap:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,114,215,.14); }
.hop-input-wrap textarea { width: 100%; min-height: 36px; max-height: 100px; padding: 8px 0 4px; resize: none; color: var(--ink); background: transparent; border: 0; outline: 0; font: inherit; font-size: .86rem; line-height: 1.35; }
.hop-input-wrap textarea::placeholder { color: #718298; }
.hop-input-wrap button { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: #17130d; background: var(--orange); border: 0; border-radius: 9px; cursor: pointer; font-size: 1.25rem; font-weight: 900; }
.hop-input-wrap button:hover { background: #ff9a43; }
.hop-input-wrap button:disabled, .hop-input-wrap textarea:disabled { cursor: wait; opacity: .6; }
.hop-disclaimer { margin: 8px 3px 0; color: #69798d; font-size: .61rem; line-height: 1.4; }
.hop-disclaimer a { color: #405b7d; font-weight: 750; }

@media (prefers-reduced-motion: reduce) {
  .hop-toggle { transition: none; }
  .hop-typing span { animation: none; }
}

@media (max-width: 560px) {
  .hop-chat { right: 14px; bottom: 14px; }
  .hop-toggle { min-height: 56px; padding: 7px; }
  .hop-toggle > span { display: none; }
  .hop-panel { width: calc(100vw - 28px); height: min(620px, calc(100dvh - 92px)); min-height: 390px; border-radius: 17px; }
}

/* Interior page system */
.inner-hero { position: relative; padding: clamp(72px, 9vw, 128px) 0; color: var(--white); background: radial-gradient(circle at 82% 20%, rgba(26,94,184,.55), transparent 32%), linear-gradient(135deg, #061731, #0a2c61); overflow: hidden; }
.inner-hero .container { position: relative; z-index: 2; max-width: 980px; }
.inner-hero.has-media { min-height: 620px; display: flex; align-items: center; }
.inner-hero-media, .inner-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero-media { object-fit: cover; object-position: center; }
.inner-hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(4,18,42,.97) 0%, rgba(4,24,55,.82) 42%, rgba(4,24,55,.18) 72%, rgba(4,24,55,.08) 100%); }
.inner-concept-note { position: absolute; z-index: 2; right: 18px; bottom: 14px; max-width: 360px; padding: 7px 9px; color: var(--white); background: rgba(4,18,42,.78); border-radius: 6px; font-size: .68rem; text-align: right; }
.inner-hero h1 { max-width: 900px; margin: 22px 0; font-size: clamp(2.8rem, 6vw, 5.5rem); }
.inner-hero p:last-child { max-width: 780px; margin: 0; color: #d5e1f2; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.breadcrumbs { display: flex; gap: 9px; align-items: center; margin-bottom: 38px; color: #b7cae6; font-size: .8rem; }
.breadcrumbs a { color: var(--white); }
.eyebrow-text { color: #0758b8; font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.inner-hero .eyebrow-text { color: #88b8f4; }
.inner-section { padding: clamp(72px, 9vw, 120px) 0; }
.split-content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.split-content h2, .answer-band h2 { margin: 18px 0 24px; font-size: clamp(2.2rem, 4.6vw, 4rem); }
.split-content p, .answer-band p { color: var(--muted); font-size: 1.05rem; }
.info-card, .status-card { padding: clamp(28px, 4vw, 46px); background: var(--light); border: 1px solid var(--line); border-radius: var(--radius); }
.info-card h3 { margin-bottom: 24px; }
.info-card li { margin: 14px 0; padding-left: 6px; }
.status-card { border-left: 5px solid var(--orange); }
.status-card > span { color: var(--orange-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.status-card h2 { margin: 16px 0; }
.narrow { max-width: 880px; }
.answer-band { padding: clamp(72px, 8vw, 105px) 0; background: var(--light); }
.answer-band .container { max-width: 900px; }
.answer-band p { max-width: 760px; margin-bottom: 32px; }
.contact-stack { margin-top: 35px; display: grid; gap: 13px; font-size: 1.05rem; font-weight: 800; }
.contact-stack address { margin-top: 12px; color: #b8cae5; font-style: normal; font-weight: 500; }
.gallery-section { background: var(--light); }
.gallery-heading, .video-heading { margin-bottom: 42px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(40px, 8vw, 100px); align-items: end; }
.gallery-heading h2, .video-heading h2 { margin-top: 12px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.gallery-heading > p, .video-heading > p { max-width: 480px; margin: 0 0 6px auto; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery-card { min-width: 0; margin: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 12px 32px rgba(7,29,66,.07); }
.gallery-card a { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #e8edf3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card figcaption { min-height: 72px; padding: 18px 19px; color: var(--navy); font-size: .86rem; font-weight: 750; line-height: 1.35; }
.gallery-source-note { max-width: 850px; margin: 24px 0 0; color: var(--muted); font-size: .72rem; }
.video-section { padding: clamp(76px, 9vw, 120px) 0; color: var(--white); background: var(--navy); }
.video-heading .eyebrow-text { color: #9fc8ff; }
.video-heading > p { color: #b8cae5; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.video-card { padding: 12px 12px 20px; color: var(--navy); background: var(--white); border-radius: 17px; text-decoration: none; box-shadow: 0 20px 52px rgba(0,0,0,.2); }
.video-poster { position: relative; overflow: hidden; display: block; aspect-ratio: 16 / 9; background: #dfe7f0; border-radius: 11px; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-poster b { position: absolute; inset: 50% auto auto 50%; width: 58px; height: 58px; display: grid; place-items: center; color: var(--navy); background: var(--orange); border: 5px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.24); transform: translate(-50%,-50%); }
.video-card > strong, .video-card > small { display: block; }
.video-card > strong { margin: 18px 8px 0; }
.video-card > small { margin: 4px 8px 0; color: var(--blue); font-weight: 750; }
.video-card:hover .video-poster img { transform: scale(1.025); }
.media-lightbox { width: min(1200px, calc(100vw - 32px)); max-width: none; max-height: calc(100dvh - 32px); padding: 0; overflow: hidden; color: var(--white); background: #020b19; border: 0; border-radius: 18px; box-shadow: 0 32px 90px rgba(0,0,0,.55); }
.media-lightbox::backdrop { background: rgba(1,8,20,.88); backdrop-filter: blur(6px); }
.media-lightbox-shell { max-height: calc(100dvh - 32px); display: grid; grid-template-rows: auto minmax(0, 1fr); }
.media-lightbox-bar { min-height: 68px; padding: 11px 12px 11px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.14); }
.media-lightbox-bar h2 { margin: 0; color: var(--white); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.3; letter-spacing: 0; }
.media-lightbox-close { flex: 0 0 auto; width: 46px; height: 46px; padding: 0; color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); border-radius: 50%; cursor: pointer; font: 400 2rem/1 Arial, sans-serif; }
.media-lightbox-close:hover, .media-lightbox-close:focus-visible { color: var(--navy); background: var(--orange); border-color: var(--orange); }
.media-lightbox-stage { min-height: 0; overflow: auto; display: grid; place-items: center; background: #020812; }
.media-lightbox-stage img { width: auto; height: auto; max-width: 100%; max-height: calc(100dvh - 100px); object-fit: contain; }
.media-lightbox-stage video { width: 100%; max-height: calc(100dvh - 100px); background: #000; }
body.lightbox-open { overflow: hidden; }
.route-directory { margin-top: 45px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.route-directory summary { color: var(--white); cursor: pointer; font-weight: 800; }
.route-groups { padding: 28px 0 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.route-groups h3 { margin-bottom: 13px; color: #91a2bc; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.route-groups a { margin: 8px 0; display: block; color: #d7e1ef; font-size: .82rem; text-decoration: none; }
.route-groups a:hover { color: var(--white); }
.related-section { padding: clamp(68px, 8vw, 105px) 0; background: var(--light); border-top: 1px solid var(--line); }
.related-heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.related-heading h2 { margin: 10px 0 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.related-heading > a { color: var(--blue); font-weight: 800; }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.related-grid > a { min-height: 230px; padding: 24px; display: flex; flex-direction: column; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 14px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.related-grid > a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related-grid strong { font-size: 1.05rem; line-height: 1.25; }
.related-grid span { margin: 12px 0 20px; color: var(--muted); font-size: .82rem; }
.related-grid b { margin-top: auto; color: var(--blue); font-size: .8rem; }
.page-index-hero { padding-top: 80px; padding-bottom: 80px; }
.page-index-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
.page-index-grid section { padding: 28px; background: var(--light); border: 1px solid var(--line); border-radius: 16px; }
.page-index-grid h2 { margin-bottom: 18px; font-size: 1.55rem; }
.page-index-grid a { margin: 0 -10px; padding: 13px 10px; display: grid; gap: 3px; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }
.page-index-grid a:last-child { border-bottom: 0; }
.page-index-grid a:hover { color: var(--blue); background: var(--white); border-radius: 8px; }
.page-index-grid a span { color: var(--muted); font: 500 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; overflow-wrap: anywhere; }

@media (max-width: 820px) {
  .split-content { grid-template-columns: 1fr; }
  .route-groups, .page-index-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-heading, .video-heading { grid-template-columns: 1fr; gap: 20px; }
  .gallery-heading > p, .video-heading > p { margin-left: 0; }
  .gallery-grid, .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .inner-hero { padding: 58px 0 72px; }
  .inner-hero.has-media { min-height: 660px; }
  .inner-hero-media { object-position: 68% center; }
  .inner-hero-overlay { background: linear-gradient(90deg, rgba(4,18,42,.97), rgba(4,24,55,.78)); }
  .inner-concept-note { right: 10px; bottom: 8px; max-width: 255px; }
  .breadcrumbs { margin-bottom: 28px; align-items: flex-start; flex-wrap: wrap; }
  .gallery-grid, .video-grid, .route-groups, .page-index-grid { grid-template-columns: 1fr; }
  .related-heading { align-items: flex-start; flex-direction: column; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid > a { min-height: 190px; }
  .gallery-card figcaption { min-height: 0; }
  .media-lightbox { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); border-radius: 12px; }
  .media-lightbox-shell { max-height: calc(100dvh - 16px); }
  .media-lightbox-bar { min-height: 62px; padding: 8px 8px 8px 14px; }
  .media-lightbox-stage img, .media-lightbox-stage video { max-height: calc(100dvh - 78px); }
}

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