:root {
    --brand: #a7272c;
    --interaction-red: #C9161E;
    --nav-accent: var(--interaction-red);
    --brand-dark: #7e171d;
    --brand-soft: #f6e9e9;
    --navy: #14283d;
    --navy-deep: #0d1c2c;
    --blue: #2e73a8;
    --ink: #262729;
    --muted: #6f7175;
    --line: #e0e1e3;
    --surface: #f5f6f7;
    --white: #fff;
    --container: 1200px;
    --wide-container: 1504px;
    --header-container: 1520px;
    --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font-sans); font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
body, button, input, textarea, select { font-family: var(--font-sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; }
figure { margin: 0; }

.site-container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow-container { width: min(900px, calc(100% - 48px)); margin-inline: auto; }
.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: 999; top: 10px; left: 10px; padding: 10px 16px; color: #fff; background: var(--navy); transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 72%, white); outline-offset: 4px; }

/* Header */
.site-header { position: relative; z-index: 100; height: 80px; background: #fff; box-shadow: 0 5px 15px rgba(13, 28, 44, .09); }
.header-inner { width: min(var(--header-container), calc(100% - 80px)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.site-brand { min-width: 305px; display: inline-flex; align-items: center; }
.site-brand-logo { position: relative; width: 112px; height: 34px; display: block; flex: 0 0 auto; }
.site-brand-logo > img { width: 112px; height: 34px; max-width: none; object-fit: contain; }
.site-brand-logo-ink { position: absolute; inset: 0; display: block; background: #1d1e20; clip-path: inset(0 0 0 31%); -webkit-mask: url("/site/images/home/footer-logo.png") center / 100% 100% no-repeat; mask: url("/site/images/home/footer-logo.png") center / 100% 100% no-repeat; }
.site-brand-separator { width: 1px; height: 36px; margin: 0 10px; display: block; flex: 0 0 auto; background: #b7b7b7; }
.site-brand-tagline { width: 156px; display: grid; color: #333; line-height: 1; white-space: nowrap; }
.site-brand-tagline strong { font-size: 13px; font-weight: 500; line-height: 18px; letter-spacing: .52px; }
.site-brand-tagline small { margin-top: 1px; color: #555; font-family: Arial, sans-serif; font-size: 9px; line-height: 13px; letter-spacing: .09px; }
.brand-mark { position: relative; width: 51px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: var(--brand); border-radius: 55% 35% 52% 38%; transform: skewX(-13deg); }
.brand-mark::after { content: ""; position: absolute; inset: 4px 5px; border: 1px solid rgba(255,255,255,.58); border-radius: inherit; }
.brand-mark i { font-size: 14px; font-weight: 900; font-style: italic; letter-spacing: -.09em; transform: skewX(13deg); }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 22px; font-weight: 780; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; display: grid; color: #45474a; font-size: 10px; line-height: 1.15; letter-spacing: .08em; }
.brand-copy small b { margin-top: 2px; font-size: 9px; font-weight: 500; letter-spacing: .02em; }
.primary-nav { height: 100%; display: flex; align-items: stretch; gap: clamp(30px, 4vw, 58px); }
.nav-link { position: relative; min-width: 62px; height: 100%; padding: 0 4px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; color: #333; background: transparent; cursor: pointer; font-size: 16px; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; background: var(--nav-accent); transform: scaleX(0); transform-origin: center; transition: transform 180ms var(--ease); }
.nav-link:hover, .nav-link.is-active { color: var(--nav-accent); }
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link:active { transform: scale(.97); }
.nav-group { position: relative; height: 100%; transform: translateX(3px); }
.primary-nav > .nav-link:first-child { transform: translateX(19px); }
.nav-group > .nav-link { min-width: 105px; }
.nav-group > summary { list-style: none; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary span { transition: transform 160ms var(--ease); }
.nav-group[open] > summary span { transform: none; }
.nav-dropdown { position: absolute; top: 80px; left: 50%; width: 150px; padding: 0; background: #fff; box-shadow: 0 10px 24px rgba(15, 24, 36, .15); opacity: 0; pointer-events: none; transform: translate(-50%, -7px); transition: opacity 160ms var(--ease), transform 160ms var(--ease); }
.nav-group[open] .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown a { min-height: 40px; padding: 0 12px; display: flex; align-items: center; justify-content: center; color: #404246; font-size: 14px; }
.nav-dropdown a.is-active { color: var(--nav-accent); background: #faeeee; font-weight: 600; }
.nav-dropdown a:hover { color: var(--nav-accent); background: var(--brand-soft); }
.nav-dropdown a:active { transform: scale(.985); }
.nav-dropdown i { display: none; }
.nav-toggle { display: none; }

/* Home hero */
.home-hero { position: relative; height: 665px; overflow: hidden; background: #e7e9e8; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; pointer-events: none; }
[data-carousel] .hero-slide { transition: opacity 480ms var(--ease); }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide > img { position: absolute; top: 0; right: 0; width: min(59.45%, 894px); height: 100%; object-fit: cover; object-position: center; }
.home-hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(229,232,231,.99) 0%, rgba(229,232,231,.97) 34%, rgba(229,232,231,.32) 53%, rgba(229,232,231,0) 70%); }
.hero-slide--red-geometric > img { width: 100%; max-width: none; object-fit: fill; }
.hero-slide--blue-architecture > img,
.hero-slide--photo-pill > img { width: 100%; max-width: none; object-fit: fill; }
.hero-slide--red-geometric .home-hero-wash,
.hero-slide--red-geometric .hero-geometry,
.hero-slide--blue-architecture .home-hero-wash,
.hero-slide--blue-architecture .hero-geometry,
.hero-slide--photo-pill .home-hero-wash,
.hero-slide--photo-pill .hero-geometry { display: none; }
.hero-copy { position: relative; z-index: 2; height: 100%; padding-top: 227px; }
.hero-title { max-width: 620px; margin: 0 0 0 4px; color: #fff; font-size: clamp(44px, 4.49vw, 67.5px); font-weight: 900; line-height: 1.17; letter-spacing: .127em; text-shadow: none; -webkit-text-stroke: .5px currentColor; transform: translateY(3px) scaleY(1.007); transform-origin: top left; }
.hero-title em { color: #bc292e; font-style: normal; }
.hero-copy p { margin: 7px 0 0 3px; color: #171717; font-family: Arial, sans-serif; font-size: clamp(15px, 1.42vw, 21px); font-weight: 500; line-height: 1.5; letter-spacing: .023em; transform: translateY(-1px); }
.hero-slide--blue-architecture .hero-copy { padding-top: 229px; }
.hero-slide--blue-architecture .hero-title { max-width: 620px; margin-left: 3px; color: #3177a9; font-size: 67px; font-weight: 760; line-height: 1.2; letter-spacing: 0; -webkit-text-stroke: 0; transform: translateY(1px) scaleY(.993); transform-origin: top left; }
.hero-slide--blue-architecture .hero-title em { color: inherit; }
.hero-slide--blue-architecture .hero-copy p { margin-top: 24px; color: #171717; font-size: 23px; font-weight: 500; letter-spacing: .48em; transform: translateY(-1px); }
.hero-slide--photo-pill .hero-copy { padding-top: 247px; }
.hero-slide--photo-pill .hero-title { max-width: 780px; margin-left: 473px; color: #fff; font-size: 64px; font-weight: 800; line-height: 1.16; letter-spacing: .075em; -webkit-text-stroke: .3px currentColor; transform: translateY(2px); white-space: nowrap; }
.hero-slide--photo-pill .hero-title em { color: inherit; }
.hero-slide--photo-pill .hero-copy p { width: 710px; margin: 47px 0 0 473px; color: #fff; font-size: 27px; font-weight: 500; line-height: 1.4; letter-spacing: .414em; text-align: center; transform: translate(4px, -6px); white-space: nowrap; }
.hero-geometry i { position: absolute; z-index: 1; display: block; background: #be3438; clip-path: polygon(0 0, 100% 100%, 0 100%); }
.hero-geometry i:first-child { top: 92px; left: max(46px, calc((100vw - var(--wide-container)) / 2 + 46px)); width: 188px; height: 78px; transform: rotate(180deg); }
.hero-geometry i:nth-child(2) { bottom: -86px; left: max(-26px, calc((100vw - var(--wide-container)) / 2 - 26px)); width: 740px; height: 250px; }
.hero-geometry i:nth-child(3) { right: calc(50% + 163px); bottom: 96px; width: 74px; height: 28px; transform: rotate(180deg); }
.carousel-controls { position: absolute; z-index: 6; right: max(24px, calc((100vw - var(--container)) / 2)); bottom: 28px; display: none; gap: 8px; }
.carousel-controls button { width: 30px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.55); cursor: pointer; transition: width 160ms var(--ease), background-color 160ms var(--ease); }
.carousel-controls button.is-active { width: 52px; background: #fff; }
.carousel-controls button:active { transform: scaleY(1.8); }

/* Shared sections */
.site-section { padding: 96px 0; }
.section-heading { margin: 0 auto 46px; text-align: center; }
.section-heading p { margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.5; letter-spacing: .06em; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(30px, 3.2vw, 44px); font-weight: 710; line-height: 1.25; letter-spacing: .025em; }
.section-heading > i { width: 54px; height: 3px; margin: 17px auto 0; display: block; background: var(--brand); }
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading--left > i { margin-left: 0; }
.text-link, .section-more, .read-more { display: inline-flex; align-items: center; gap: 24px; color: var(--brand); font-weight: 680; }
.text-link span, .section-more span, .read-more span { transition: transform 160ms var(--ease); }
.text-link:hover span, .section-more:hover span, .read-more:hover span { transform: translateX(5px); }
.text-link:active, .section-more:active, .read-more:active { transform: scale(.98); }
.rich-text { color: #54565a; line-height: 2; }
.rich-text > :first-child { margin-top: 0; }
.rich-text > :last-child { margin-bottom: 0; }
.rich-text h2 { margin: 2.2em 0 .7em; color: var(--ink); font-size: 28px; line-height: 1.45; }
.rich-text h3 { margin: 1.8em 0 .6em; color: var(--ink); font-size: 22px; }
.rich-text p { margin: 0 0 1.2em; }
.rich-text ul, .rich-text ol { padding-left: 1.4em; }
.rich-text a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.rich-text--lead { color: #4f5155; font-size: 18px; text-align: center; }

/* Home content */
.services-section { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { --tone: var(--brand); position: relative; min-width: 0; min-height: 330px; padding: 31px 23px 27px; display: flex; flex-direction: column; border-left: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.service-card:last-child { border-right: 1px solid var(--line); }
.service-card::before { content: ""; position: absolute; z-index: -1; right: 0; bottom: 0; left: 0; height: 6px; background: var(--tone); transition: height 220ms var(--ease); }
.service-card--cpa { --tone: #233a8d; }
.service-card--aia { --tone: #a52343; }
.service-card--ipa-ifa { --tone: #1776a9; }
.service-card--cima { --tone: #703a76; }
.service-card--isca { --tone: #1a7079; }
.service-number { color: #999ca1; font-size: 12px; letter-spacing: .15em; }
.service-card > div { margin-top: auto; }
.service-card > div > p { margin: 0 0 7px; color: var(--tone); font-size: 13px; font-weight: 760; }
.service-card h3 { margin: 0; font-size: 19px; line-height: 1.5; }
.service-card small { height: 0; display: block; overflow: hidden; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.65; opacity: 0; transform: translateY(8px); transition: height 220ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease); }
.service-card > b { margin-top: 24px; align-self: flex-end; font-size: 22px; font-weight: 400; }
.service-card:hover { color: #fff; }
.service-card:hover::before { height: 100%; }
.service-card:hover .service-number, .service-card:hover > div > p { color: rgba(255,255,255,.78); }
.service-card:hover small { height: 62px; margin-top: 9px; opacity: 1; transform: translateY(0); }
.service-card:active { transform: translateY(2px); }
.company-section { padding: 108px 0; background: #f2f3f4; }
.company-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr); gap: clamp(52px, 7vw, 96px); align-items: center; }
.company-visual { position: relative; height: 610px; overflow: hidden; background: var(--navy); }
.company-visual img { width: 100%; height: 100%; object-fit: cover; }
.company-visual figcaption { position: absolute; right: -9px; bottom: -43px; color: rgba(255,255,255,.7); font-family: Arial, sans-serif; font-size: 116px; font-weight: 800; line-height: 1; }
.feature-grid { margin: 37px 0 31px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 31px; }
.feature-grid article { position: relative; padding-left: 35px; }
.feature-grid span { position: absolute; top: 3px; left: 0; color: var(--brand); font-size: 11px; font-weight: 700; }
.feature-grid h3 { margin: 0 0 4px; font-size: 17px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.news-card { min-width: 0; }
.news-image { aspect-ratio: 1.42; margin-bottom: 18px; display: block; overflow: hidden; background: #e9ecef; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms var(--ease); }
.news-card:hover .news-image img { transform: scale(1.045); }
.news-card time { color: var(--brand); font-size: 12px; }
.news-card h3 { margin: 6px 0 8px; font-size: 17px; line-height: 1.65; }
.news-card h3 a:hover { color: var(--brand); }
.news-card p { display: -webkit-box; margin: 0 0 12px; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.read-more { gap: 12px; font-size: 13px; }
.section-more { width: max-content; margin: 43px auto 0; }

/* Inner hero and breadcrumbs */
.page-hero { position: relative; min-height: 600px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); isolation: isolate; }
.page-hero-image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(11,28,46,.93), rgba(18,48,73,.65) 50%, rgba(19,47,70,.12)); }
.page-hero--cpa .page-hero-shade { background: linear-gradient(90deg, rgba(20,34,109,.94), rgba(32,53,131,.65) 51%, rgba(29,43,101,.12)); }
.page-hero--aia .page-hero-shade { background: linear-gradient(90deg, rgba(104,20,43,.94), rgba(151,35,65,.62) 51%, rgba(67,31,55,.1)); }
.page-hero--ipa-ifa .page-hero-shade { background: linear-gradient(90deg, rgba(17,66,125,.94), rgba(27,111,161,.58) 51%, rgba(25,72,108,.08)); }
.page-hero--cima .page-hero-shade { background: linear-gradient(90deg, rgba(77,27,89,.94), rgba(115,49,112,.6) 51%, rgba(67,42,79,.1)); }
.page-hero--isca .page-hero-shade { background: linear-gradient(90deg, rgba(14,67,80,.94), rgba(25,101,111,.6) 51%, rgba(23,73,79,.1)); }
.page-hero--light-blue .page-hero-shade { background: linear-gradient(90deg, rgba(39,99,157,.91), rgba(77,144,199,.56) 53%, rgba(40,91,133,.08)); }
.page-hero-content p { margin: 14px 0 0; color: rgba(255,255,255,.92); font-family: Arial, sans-serif; font-size: 24px; font-weight: 500; letter-spacing: 0; }
.page-hero-content h1 { max-width: 850px; margin: 0; font-size: clamp(42px, 4vw, 56px); font-weight: 720; line-height: 1.2; letter-spacing: .035em; }
.page-hero-content > p:first-child { margin: 0 0 12px; font-size: 14px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.page-hero-content div { margin-top: 14px; color: rgba(255,255,255,.84); font-size: 20px; letter-spacing: .04em; }
.page-hero-line { width: 220px; height: 8px; margin-top: 42px; display: block; background: #c62e32; }
.page-company-profile .page-hero-content,
.page-contact .page-hero-content,
.page-industry-list .page-hero-content { width: min(970px, calc(100% - 48px)); }
.breadcrumbs { padding-block: 16px; }
.breadcrumbs ol { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; color: #8b8d91; font-size: 13px; }
.breadcrumbs li { display: inline-flex; gap: 9px; }
.breadcrumbs a:hover { color: var(--brand); }

/* Service pages */
.service-intro { padding-top: 74px; }
.stats-band { padding: 47px 0; color: #fff; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid article { min-height: 112px; padding: 5px 28px; border-right: 1px solid rgba(255,255,255,.18); text-align: center; }
.stats-grid article:last-child { border-right: 0; }
.stats-grid strong { font-family: Arial, sans-serif; font-size: clamp(34px, 4vw, 51px); line-height: 1; }
.stats-grid span { margin-left: 5px; color: rgba(255,255,255,.78); }
.stats-grid p { margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: 13px; }
.content-section--muted { background: var(--surface); }
.content-items { display: grid; gap: 23px; }
.content-items--cards, .content-items--gallery, .content-items--people, .content-items--quotes { grid-template-columns: repeat(3, 1fr); }
.content-items--steps, .content-items--timeline { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.content-items article { position: relative; min-height: 210px; padding: 32px 28px; border: 1px solid var(--line); background: #fff; }
.content-items article img { width: calc(100% + 56px); max-width: none; height: 200px; margin: -32px -28px 26px; object-fit: cover; }
.content-items--steps article, .content-items--timeline article { border-width: 1px 0 0; background: transparent; }
.content-items--steps article::after, .content-items--timeline article::after { content: ""; position: absolute; top: -5px; left: 28px; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }
.item-index { color: var(--brand); font-size: 12px; font-weight: 750; letter-spacing: .15em; }
.content-items h3 { margin: 44px 0 8px; font-size: 20px; line-height: 1.45; }
.content-items p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-strip { padding: 55px 0; color: #fff; background: var(--brand-dark); }
.contact-strip .site-container { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.contact-strip p { margin: 0 0 3px; color: rgba(255,255,255,.7); }
.contact-strip h2 { margin: 0; font-size: 28px; }
.contact-strip a { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; gap: 30px; border: 1px solid rgba(255,255,255,.6); }
.contact-strip a:hover { color: var(--brand-dark); background: #fff; }
.contact-strip a:active { transform: scale(.98); }

/* Company and contact */
.about-intro { padding-top: 75px; }
.company-visual--about { height: 400px; border-radius: 0 48px 0 48px; }
.company-visual--about figcaption { display: none; }
.about-copy { display: grid; gap: 28px; }
.about-copy article { padding-top: 22px; border-top: 1px solid var(--line); }
.about-copy h3 { margin: 0 0 8px; font-size: 20px; }
.advantages-section { padding-top: 0; background: #fff; }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; border: 0; }
.advantage-grid article { min-height: 160px; padding: 26px 25px; color: var(--ink); border: 1px solid #eadfe0; border-radius: 18px; background: #fff; }
.advantage-grid article:first-child { color: #fff; border-color: var(--brand); background: linear-gradient(135deg, #c93633, #b72226); box-shadow: 0 12px 24px rgba(167,39,44,.16); }
.advantage-grid span { color: var(--brand); font-size: 12px; }
.advantage-grid article:first-child span { color: rgba(255,255,255,.72); }
.advantage-grid h3 { margin: 25px 0 8px; font-size: 21px; }
.advantage-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.advantage-grid article:first-child p { color: rgba(255,255,255,.82); }
.partner-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); list-style: none; }
.partner-grid li { min-height: 94px; padding: 18px; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #4d4f53; font-size: 17px; font-weight: 650; text-align: center; }
.partner-grid li:nth-child(6n) { border-right: 0; }
.partner-grid li:nth-last-child(-n+6) { border-bottom: 0; }
.contact-page { padding-top: 73px; }
.contact-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.contact-lead { max-width: 630px; margin: 0 0 37px; color: var(--muted); font-size: 18px; }
.contact-copy dl { margin: 0; border-top: 1px solid var(--line); }
.contact-copy dl > div { min-height: 67px; display: grid; grid-template-columns: 110px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.contact-copy dt { color: var(--muted); font-size: 13px; }
.contact-copy dd { margin: 0; font-size: 17px; font-weight: 620; }
.contact-copy dd a:hover { color: var(--brand); }
.consultant-card { padding: 35px; background: var(--surface); text-align: center; }
.consultant-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; }
.consultant-card figcaption { margin-top: 18px; display: grid; }
.consultant-card strong { font-size: 19px; }
.consultant-card span { color: var(--muted); font-size: 13px; }

/* Industry */
.industry-list-page { padding-top: 54px; }
.industry-grid { display: grid; gap: 30px; }
.industry-card { min-width: 0; display: grid; grid-template-columns: 250px minmax(0, 1fr) 36px; gap: 20px; align-items: center; }
.industry-card-image { width: 250px; height: 160px; display: block; overflow: hidden; background: #e9ecef; }
.industry-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms var(--ease); }
.industry-card:hover img { transform: scale(1.035); }
.industry-card-copy { min-width: 0; }
.industry-card time { color: var(--brand); font-size: 12px; }
.industry-card h2 { margin: 5px 0 9px; padding-bottom: 9px; border-bottom: 1px solid var(--line); font-size: 18px; line-height: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.industry-card h2 a:hover { color: var(--brand); }
.industry-card p { margin: 0; display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.industry-card-arrow { height: 100%; display: grid; place-items: center; color: #333; font-family: Arial, sans-serif; font-size: 42px; font-weight: 200; }
.industry-card-arrow:hover { color: var(--brand); transform: translateX(3px); }
.pagination { margin-top: 58px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.pagination a, .pagination > span:first-child, .pagination > span:last-child { min-width: 88px; min-height: 42px; padding: 7px 15px; display: inline-grid; place-items: center; border: 1px solid var(--line); }
.pagination a:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.pagination a:active { transform: scale(.97); }
.pagination [aria-disabled="true"] { color: #aaa; }
.article-masthead { position: relative; min-height: 330px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); isolation: isolate; }
.article-masthead > img { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-masthead-shade { position: absolute; z-index: -2; inset: 0; background: rgba(14,35,55,.76); }
.article-masthead p { margin: 0; color: rgba(255,255,255,.7); font-family: Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .18em; }
.article-masthead h1 { margin: 5px 0 0; font-size: 46px; }
.article-page { padding: 66px 0 100px; }
.article-header { padding-bottom: 35px; border-bottom: 1px solid var(--line); text-align: center; }
.article-header time { color: var(--brand); font-size: 13px; }
.article-header h1 { margin: 11px auto 14px; color: var(--ink); font-size: clamp(30px, 4vw, 46px); line-height: 1.45; }
.article-header > p { max-width: 760px; margin: 0 auto; color: var(--muted); }
.article-header > div { margin-top: 16px; display: flex; justify-content: center; gap: 30px; color: #999; font-size: 12px; }
.article-cover { margin: 43px 0; }
.article-cover img { width: 100%; max-height: 600px; object-fit: cover; }
.article-body { font-size: 17px; }
.article-body blockquote { margin: 1.8em 0; padding: 22px 28px; color: #4c4e51; background: var(--surface); }
.article-adjacent { margin-top: 65px; padding-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; border-top: 1px solid var(--line); }
.article-adjacent a { display: grid; }
.article-adjacent a:last-child { text-align: right; }
.article-adjacent span { color: var(--muted); font-size: 12px; }
.article-adjacent strong { margin-top: 4px; font-size: 14px; line-height: 1.55; }
.article-adjacent a:hover strong { color: var(--brand); }

/* Footer */
.site-footer { padding: 53px 0 22px; color: rgba(255,255,255,.78); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: .9fr 1.2fr 1fr; gap: 55px; align-items: start; }
.footer-identity { display: grid; justify-items: start; gap: 10px; }
.footer-identity > a:not(.footer-brand) { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-identity > a:hover { color: #fff; }
.footer-brand { margin-bottom: 9px; display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.footer-brand span { width: 45px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); font-size: 12px; font-style: italic; font-weight: 900; }
.footer-brand strong { font-size: 23px; }
.footer-benefits h2 { margin: 0 0 18px; color: #fff; font-size: 20px; }
.footer-benefits ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px; list-style: none; font-size: 13px; }
.footer-benefits li { display: flex; gap: 8px; }
.footer-benefits li span { color: #db6a6e; }
.footer-qrs { display: flex; justify-content: flex-end; gap: 24px; }
.footer-qrs figure { width: 132px; text-align: center; }
.footer-qrs img { width: 132px; height: 132px; object-fit: cover; background: #fff; }
.footer-qrs figcaption { margin-top: 7px; font-size: 12px; }
.footer-legal { margin-top: 40px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.13); text-align: center; }
.footer-legal p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.75; }

@media (hover: hover) and (min-width: 901px) {
    .nav-group > summary::before { content: ""; position: absolute; top: 100%; right: -20px; left: -20px; height: 19px; }
    .nav-group:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
    .primary-nav > .nav-link:hover,
    .primary-nav > .nav-group:hover > .nav-link { color: var(--nav-accent); }
    .primary-nav > .nav-link:hover::after,
    .primary-nav > .nav-group:hover > .nav-link::after { transform: scaleX(1); }
    .primary-nav:has(> .nav-link:hover) > .nav-link.is-active:not(:hover),
    .primary-nav:has(> .nav-link:hover) > .nav-group > .nav-link.is-active,
    .primary-nav:has(> .nav-group:hover) > .nav-link.is-active { color: #333; }
    .primary-nav:has(> .nav-link:hover) > .nav-link.is-active:not(:hover)::after,
    .primary-nav:has(> .nav-link:hover) > .nav-group > .nav-link.is-active::after,
    .primary-nav:has(> .nav-group:hover) > .nav-link.is-active::after { transform: scaleX(0); }
}

@media (max-width: 1240px) {
    .header-inner { padding-inline: 24px; }
    .primary-nav { gap: 30px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .service-card:nth-child(3) { border-right: 1px solid var(--line); }
    .service-card:nth-child(n+4) { border-top: 1px solid var(--line); }
    .company-grid { gap: 48px; }
    .company-visual { height: 520px; }
    .content-items--cards, .content-items--gallery, .content-items--people, .content-items--quotes { grid-template-columns: 1fr 1fr; }
    .advantage-grid { grid-template-columns: 1fr 1fr; }
    .partner-grid { grid-template-columns: repeat(4, 1fr); }
    .partner-grid li:nth-child(6n) { border-right: 1px solid var(--line); }
    .partner-grid li:nth-child(4n) { border-right: 0; }
    .partner-grid li:nth-last-child(-n+6) { border-bottom: 1px solid var(--line); }
    .partner-grid li:nth-last-child(-n+4) { border-bottom: 0; }
}

@media (max-width: 900px) {
    .site-header { height: 68px; }
    .header-inner { padding-inline: 16px; }
    .site-brand { min-width: 0; }
    .brand-copy strong { font-size: 19px; }
    .brand-copy small b { display: none; }
    .nav-toggle { width: 46px; height: 46px; padding: 12px 9px; display: grid; align-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
    .nav-toggle i { width: 100%; height: 2px; display: block; background: var(--ink); transition: transform 170ms var(--ease), opacity 150ms var(--ease); }
    .nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-7px) rotate(-45deg); }
    .nav-toggle:active { transform: scale(.94); }
    .primary-nav { position: absolute; top: 68px; right: 0; left: 0; height: auto; max-height: calc(100vh - 68px); padding: 11px 18px 22px; display: none; overflow-y: auto; background: #fff; box-shadow: 0 18px 45px rgba(15,24,36,.16); }
    .primary-nav.is-open { display: grid; }
    .nav-link { width: 100%; min-height: 49px; padding: 0 8px; justify-content: space-between; border-bottom: 1px solid var(--line); }
    .nav-link::after { display: none; }
    .nav-group { height: auto; }
    .nav-dropdown { position: static; width: auto; padding: 5px 0 8px 16px; display: grid; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
    .nav-dropdown a { border-bottom: 1px solid #eee; }
    .home-hero { height: min(700px, calc(100vh - 68px)); min-height: 580px; }
    .hero-slide > img { width: 100%; opacity: .82; }
    .home-hero-wash { background: linear-gradient(90deg, rgba(34,48,57,.75), rgba(34,48,57,.28)); }
    .hero-copy { padding-top: 180px; }
    .hero-title { max-width: 540px; color: #fff; font-size: clamp(42px, 8vw, 62px); }
    .hero-copy p { color: #fff; }
    .hero-geometry i:first-child { left: 24px; }
    .hero-geometry i:nth-child(3) { right: 30px; }
    .company-grid, .contact-grid { grid-template-columns: 1fr; }
    .company-visual { width: min(620px, 100%); }
    .contact-grid { gap: 45px; }
    .consultant-card { width: min(420px, 100%); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-qrs { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 700px) {
    .site-container, .narrow-container { width: calc(100% - 32px); }
    .site-section { padding: 68px 0; }
    .section-heading { margin-bottom: 31px; }
    .section-heading p { font-size: 14px; }
    .home-hero { min-height: 560px; }
    .hero-copy { padding-top: 155px; }
    .hero-title { font-size: clamp(38px, 11.5vw, 52px); line-height: 1.3; letter-spacing: .04em; }
    .hero-copy p { margin-top: 14px; font-size: 13px; letter-spacing: .02em; }
    .hero-geometry i:first-child { top: 68px; width: 130px; height: 54px; }
    .hero-geometry i:nth-child(2) { bottom: -40px; width: 220px; height: 160px; }
    .hero-geometry i:nth-child(3) { display: none; }
    .service-grid { width: calc(100% - 32px); grid-template-columns: 1fr; border: 0; }
    .service-card { min-height: 170px; border: 1px solid var(--line); border-bottom: 0; }
    .service-card:nth-child(3) { border-right: 1px solid var(--line); }
    .service-card:last-child { border-bottom: 1px solid var(--line); }
    .service-card > div { margin-top: 28px; }
    .service-card > b { position: absolute; right: 22px; bottom: 22px; }
    .company-section { padding: 68px 0; }
    .company-visual, .company-visual--about { height: 390px; }
    .company-visual figcaption { font-size: 82px; }
    .feature-grid, .news-grid { grid-template-columns: 1fr; }
    .feature-grid { gap: 22px; }
    .news-grid { gap: 37px; }
    .page-hero { min-height: 430px; }
    .page-hero-content h1 { font-size: 42px; }
    .page-hero-content p { font-size: 18px; }
    .page-hero-content div { font-size: 16px; }
    .page-hero-line { width: 120px; height: 5px; margin-top: 26px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid article:nth-child(2) { border-right: 0; }
    .stats-grid article:nth-child(-n+2) { margin-bottom: 27px; }
    .content-items--cards, .content-items--gallery, .content-items--people, .content-items--quotes, .content-items--steps, .content-items--timeline { grid-template-columns: 1fr; }
    .content-items article { min-height: 180px; }
    .contact-strip .site-container { align-items: flex-start; flex-direction: column; }
    .advantage-grid { grid-template-columns: 1fr; }
    .advantage-grid article { min-height: 190px; }
    .advantage-grid h3 { margin-top: 35px; }
    .partner-grid { grid-template-columns: 1fr 1fr; }
    .partner-grid li:nth-child(4n) { border-right: 1px solid var(--line); }
    .partner-grid li:nth-child(2n) { border-right: 0; }
    .partner-grid li:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
    .partner-grid li:nth-last-child(-n+2) { border-bottom: 0; }
    .industry-grid { gap: 42px; }
    .industry-card { display: block; }
    .industry-card-image { width: 100%; height: auto; aspect-ratio: 1.55; }
    .industry-card-copy { padding-top: 19px; }
    .industry-card h2 { font-size: 20px; white-space: normal; }
    .industry-card-arrow { display: none; }
    .article-page { padding: 48px 0 72px; }
    .article-header h1 { font-size: 31px; }
    .article-header > div { align-items: center; flex-direction: column; gap: 1px; }
    .article-body { font-size: 16px; }
    .article-adjacent { grid-template-columns: 1fr; }
    .article-adjacent a:last-child { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-qrs { grid-column: auto; gap: 18px; }
    .footer-qrs figure { width: min(138px, calc(50vw - 34px)); }
    .footer-qrs img { width: 100%; height: auto; aspect-ratio: 1; }
    .footer-legal { text-align: left; }
}

@media (max-width: 420px) {
    .brand-mark { width: 43px; height: 32px; }
    .brand-copy small { max-width: 190px; overflow: hidden; white-space: nowrap; }
    .page-hero-content h1 { font-size: 37px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid article { margin: 0 !important; padding: 25px 10px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .stats-grid article:last-child { border-bottom: 0; }
    .contact-copy dl > div { grid-template-columns: 88px 1fr; }
    .pagination { gap: 10px; font-size: 13px; }
    .pagination a, .pagination > span:first-child, .pagination > span:last-child { min-width: 70px; padding-inline: 9px; }
}

@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; }
}

/* Homepage prototype match */
.home-fixed-container { width: min(994px, calc(100% - 40px)); margin-inline: auto; }

.site-header { height: 66px; box-shadow: none; }
.header-inner { width: min(1260px, calc(100% - 40px)); padding-inline: 0; }
.site-brand { min-width: 250px; }
.primary-nav { gap: 43px; }
.nav-link { min-width: 58px; padding-inline: 2px; font-size: 13px; }
.nav-link::after { bottom: 10px; height: 1px; }
.nav-group { transform: none; }
.primary-nav > .nav-link:first-child { transform: none; }
.nav-group > .nav-link { min-width: 86px; }
.nav-dropdown { top: 66px; }

.page-home .home-hero { height: 665px; }
.page-home .hero-slide > img { width: 100%; height: 100%; max-width: none; object-fit: fill; }
.page-home .hero-copy.site-container { width: min(994px, calc(100% - 40px)); padding-top: 195px; }
.page-home .hero-title { max-width: 570px; margin-left: 0; font-size: 54px; line-height: 1.19; letter-spacing: .18em; transform: none; }
.page-home .hero-copy p { margin: 7px 0 0; font-size: 16px; letter-spacing: .02em; transform: none; }
.page-home .hero-slide--blue-architecture .hero-copy { padding-top: 198px; }
.page-home .hero-slide--blue-architecture .hero-title { max-width: 540px; margin-left: 0; font-size: 54px; line-height: 1.22; }
.page-home .hero-slide--blue-architecture .hero-copy p { margin-top: 17px; font-size: 18px; letter-spacing: .44em; }
.page-home .hero-slide--photo-pill .hero-copy { padding-top: 216px; }
.page-home .hero-slide--photo-pill .hero-title { max-width: 700px; margin-left: 315px; font-size: 52px; letter-spacing: .075em; }
.page-home .hero-slide--photo-pill .hero-copy p { width: 650px; margin: 39px 0 0 315px; font-size: 22px; letter-spacing: .39em; transform: none; }
.page-home .carousel-controls { right: auto; bottom: 20px; left: 50%; display: flex; gap: 7px; transform: translateX(-50%); }
.page-home .carousel-controls button { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.65); }
.page-home .carousel-controls button.is-active { width: 24px; background: #fff; }

.home-section-heading { padding-top: 45px; text-align: center; }
.home-section-heading h2 { margin: 0; color: #292929; font-size: 28px; font-weight: 650; line-height: 1.25; letter-spacing: .04em; }
.home-section-heading p { margin: 8px 0 0; color: #666; font-size: 13px; line-height: 1.6; }

.home-services { height: 1340px; overflow: hidden; background: #fff; }
.home-service-grid { margin-top: 15px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 17px 20px; align-items: stretch; }
.home-service-card { position: relative; min-width: 0; padding: 18px; border: 1px solid #f4e6e6; border-radius: 18px; background: #fff; box-shadow: 0 6px 18px rgba(155, 45, 50, .15); }
.home-service-card--large { height: 733px; grid-column: span 3; }
.home-service-card--small { height: 456px; grid-column: span 2; padding: 17px; }
.home-service-art { width: 100%; object-fit: cover; }
.home-service-card--large .home-service-art { height: 365px; border-radius: 17px; }
.home-service-card--small .home-service-art { height: 191px; border-radius: 13px; }
.home-service-card h3 { margin: 15px 12px 0; color: #d51d28; font-size: 25px; font-weight: 580; line-height: 1.35; }
.home-service-card > p { margin: 14px 12px 0; color: #565656; font-size: 12px; line-height: 1.72; }
.home-service-card--small h3 { margin: 10px 0 0; color: #373737; font-size: 19px; font-weight: 540; }
.home-service-card--small > p { height: 89px; margin: 7px 0 0; overflow: hidden; font-size: 12px; line-height: 1.72; }
.home-service-features { margin: 24px 7px 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; }
.home-service-features li { display: grid; justify-items: center; color: #333; font-size: 11px; line-height: 1.45; text-align: center; }
.home-service-features svg { width: 31px; height: 31px; margin-bottom: 5px; fill: none; stroke: #df2430; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.home-outline-button { min-width: 133px; height: 42px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #777; border-radius: 999px; color: #444; background: transparent; font-size: 12px; transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease); }
.home-outline-button:hover { color: #fff; border-color: var(--interaction-red); background: var(--interaction-red); }
.home-service-card--large > .home-outline-button { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); }
.home-plus-button { position: absolute; bottom: 22px; left: 50%; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #d71823; font-family: Arial, sans-serif; font-size: 17px; line-height: 1; transform: translateX(-50%); }
.home-plus-button:hover { background: var(--interaction-red); }
.home-service-card:hover { box-shadow: 0 9px 23px rgba(155, 45, 50, .19); }

.home-company { height: 769px; overflow: hidden; }
.home-company-red { position: relative; height: 406px; overflow: hidden; color: #fff; background: linear-gradient(108deg, #c73339 0%, #bd252d 58%, #c92d34 100%); }
.home-company-red::before { content: ""; position: absolute; inset: 0; opacity: .18; background: linear-gradient(15deg, transparent 0 35%, rgba(115,11,18,.28) 35.2% 35.7%, transparent 36% 100%), repeating-linear-gradient(170deg, transparent 0 26px, rgba(255,255,255,.07) 27px, transparent 28px 57px); }
.home-company-intro { position: relative; z-index: 2; padding-top: 49px; display: flex; align-items: flex-start; justify-content: space-between; }
.home-company-intro > div { width: 620px; }
.home-company-intro h2 { margin: 0; font-size: 25px; font-weight: 600; line-height: 1.4; }
.home-company-subtitle { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }
.home-company-body { margin-top: 23px; color: rgba(255,255,255,.92); font-size: 13px; line-height: 1.8; }
.home-company-body p { margin: 0; }
.home-company-intro > .home-outline-button { margin: 252px 58px 0 0; }
.home-outline-button--light { color: #fff; border-color: rgba(255,255,255,.78); }
.home-outline-button--light:hover { color: var(--interaction-red); border-color: #fff; background: #fff; }
.home-company-watermark { position: absolute; right: 240px; bottom: 45px; color: rgba(138, 13, 20, .24); font-family: Arial Black, Arial, sans-serif; font-size: 178px; font-style: italic; font-weight: 900; line-height: 1; letter-spacing: -.15em; transform: skewX(-9deg); }
.home-company-watermark::before { content: ""; position: absolute; inset: -12px 4px -4px -12px; border: 11px solid currentColor; border-radius: 50%; }
.home-company-white { height: 363px; background: #fff; }
.home-company-lower { position: relative; height: 100%; }
.home-company-photo { position: absolute; top: -126px; left: 0; width: 545px; height: 430px; overflow: hidden; border-radius: 18px; background: #ddd; }
.home-company-photo img { width: 100%; height: 100%; object-fit: cover; }
.home-company-features { position: absolute; top: 44px; right: 55px; width: 315px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px 76px; }
.home-company-features article { display: grid; justify-items: center; color: #252525; text-align: center; }
.home-company-features svg { width: 43px; height: 43px; fill: none; stroke: #dd1e2a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-company-features h3 { margin: 8px 0 0; font-size: 13px; font-weight: 520; }

.home-news { height: 521px; overflow: hidden; background: #f2f2f2; }
.home-news .home-section-heading { padding-top: 47px; }
.home-news-grid { margin-top: 54px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 58px; row-gap: 27px; }
.home-news-item { min-width: 0; display: grid; grid-template-columns: 125px 1fr; gap: 17px; }
.home-news-image { width: 125px; height: 84px; display: block; overflow: hidden; background: #dbe2e6; }
.home-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms var(--ease); }
.home-news-item:hover .home-news-image img { transform: scale(1.035); }
.home-news-item h3 { height: 44px; margin: 0; overflow: hidden; color: #3c3c3c; font-size: 14px; font-weight: 600; line-height: 1.55; }
.home-news-item h3 a:hover { color: #d51d28; }
.home-news-item i { width: 48px; height: 1px; margin: 7px 0 10px; display: block; background: #8a8a8a; }
.home-news-item p { height: 38px; margin: 0; overflow: hidden; color: #848484; font-size: 11px; line-height: 1.75; }
.home-news-more { width: 133px; margin: 28px auto 0; display: flex; }

.page-home .site-footer { height: 337px; padding: 47px 0 17px; color: rgba(255,255,255,.82); background: #0d1a2b; }
.page-home .footer-grid.site-container, .page-home .footer-legal.site-container { width: min(994px, calc(100% - 40px)); }
.page-home .footer-grid { grid-template-columns: 290px 415px 1fr; gap: 32px; }
.page-home .footer-identity { gap: 8px; }
.page-home .footer-brand { width: 205px; height: 55px; margin: -6px 0 10px; }
.page-home .footer-brand img { width: 205px; height: 55px; object-fit: contain; object-position: left center; }
.page-home .footer-identity > a:not(.footer-brand) { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; }
.page-home .footer-identity b { width: 11px; color: #df1e2b; font-size: 9px; text-align: center; }
.page-home .footer-benefits h2 { margin-bottom: 23px; font-size: 20px; font-weight: 560; }
.page-home .footer-benefits ul { gap: 14px 24px; font-size: 12px; }
.page-home .footer-benefits li { gap: 8px; }
.page-home .footer-benefits li span { width: 15px; height: 15px; display: inline-grid; place-items: center; flex: 0 0 auto; border: 0; border-radius: 50%; color: #fff; font-size: 9px; }
.page-home .footer-qrs { gap: 28px; }
.page-home .footer-qrs figure { width: 112px; }
.page-home .footer-qrs img { width: 112px; height: 112px; }
.page-home .footer-qrs figcaption { margin-top: 8px; font-size: 12px; }
.page-home .footer-legal { margin-top: 74px; padding-top: 15px; }
.page-home .footer-legal p { font-size: 11px; line-height: 1.65; }

@media (max-width: 1080px) {
    .primary-nav { gap: 24px; }
    .home-fixed-container, .page-home .hero-copy.site-container, .page-home .footer-grid.site-container, .page-home .footer-legal.site-container { width: calc(100% - 40px); }
}

/* Exact desktop homepage, based on the annotated 1920 × 4455 frame. */
.page-home {
    min-width: 0;
    overflow-x: clip;
}

.page-home .site-page-shell {
    width: 100%;
    min-width: 0;
}

.page-home main {
    display: block;
}

.site-header {
    height: 80px;
    box-shadow: none;
}

.header-inner {
    width: min(1520px, calc(100% - 80px));
    padding: 0;
}

.site-brand {
    width: 301px;
    min-width: 301px;
    height: 80px;
}

.nav-toggle {
    display: none;
}

.primary-nav {
    position: static;
    width: 600px;
    height: 42px;
    max-height: none;
    padding: 0;
    display: grid;
    grid-template-columns: 52px 104px 84px 84px 84px;
    column-gap: 48px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.nav-link,
.nav-group,
.nav-group > .nav-link {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0;
    transform: none;
}

.nav-link {
    justify-content: center;
    gap: 6px;
    border: 0;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.nav-link::after {
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
}

.nav-group > summary .nav-chevron {
    width: 16px;
    height: 16px;
    display: block;
    overflow: hidden;
    color: inherit;
    background: currentColor;
    -webkit-mask: url("/site/images/home/chevron-down.png") center / 16px 16px no-repeat;
    mask: url("/site/images/home/chevron-down.png") center / 16px 16px no-repeat;
}

.nav-dropdown {
    top: 61px;
    transition: none;
}

.home-fixed-container {
    width: min(1200px, calc(100% - 80px));
    margin-inline: auto;
}

.page-home .home-hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    background: #dfe4e3;
    cursor: grab;
    isolation: isolate;
}

.page-home .home-hero:active {
    cursor: grabbing;
}

.home-hero .swiper-wrapper,
.home-hero-slide {
    height: 100%;
}

.home-hero-slide {
    position: relative;
    overflow: hidden;
}

.home-hero-media,
.home-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-media {
    display: block;
    overflow: hidden;
}

.home-hero-background {
    max-width: none;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.page-home .hero-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 232px;
    pointer-events: none;
}

.page-home .home-hero-title {
    width: 449px;
    margin: 0 0 0 3px;
    color: #fff;
    font-family: "HarmonyOS Sans SC", var(--font-sans);
    font-size: 68px;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 8.16px;
    white-space: nowrap;
}

.home-hero-title-line {
    display: block;
}

.home-hero-slide--red-geometric .home-hero-accent {
    color: #c9161e;
    font-weight: 900;
}

.page-home .home-hero-subtitle {
    margin: 0 0 0 3px;
    color: #0b0b0f;
    font-family: "PingFang SC", var(--font-sans);
    font-size: 21px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: .21px;
}

.home-hero-slide--blue-architecture .hero-copy {
    padding-top: 229px;
}

.page-home .home-hero-slide--blue-architecture .home-hero-title {
    width: 720px;
    margin-left: 3px;
    color: #3177a9;
    font-size: 67px;
    font-weight: 760;
    line-height: 80px;
    letter-spacing: 0;
}

.page-home .home-hero-slide--blue-architecture .home-hero-subtitle {
    margin: 24px 0 0 3px;
    color: #171717;
    font-size: 23px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: .48em;
}

.home-hero-slide--photo-pill .hero-copy {
    padding-top: 247px;
}

.page-home .home-hero-slide--photo-pill .home-hero-title {
    width: 780px;
    margin-left: 473px;
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 74px;
    letter-spacing: .075em;
}

.page-home .home-hero-slide--photo-pill .home-hero-subtitle {
    width: 710px;
    height: 64px;
    margin: 47px 0 0 473px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #35a4ee 0%, #766aab 49%, #db2928 100%);
    font-size: 27px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: .414em;
    text-align: center;
    white-space: nowrap;
}

.home-hero-pagination.swiper-pagination {
    position: absolute;
    z-index: 3;
    top: auto;
    bottom: 22px;
    left: 50%;
    width: auto;
    height: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.home-hero-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 !important;
    padding: 0;
    display: block;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    opacity: 1;
    cursor: pointer;
    transition: width 220ms ease, background-color 220ms ease, transform 120ms ease;
}

.home-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #fff;
}

.home-hero-pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.home-hero-pagination .swiper-pagination-bullet:active {
    transform: scale(.9);
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-pagination .swiper-pagination-bullet {
        transition: none;
    }
}

.home-section-heading {
    width: 270px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.home-section-heading h2 {
    height: 45px;
    margin: 0;
    color: #333;
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;
    letter-spacing: 1px;
}

.home-section-heading p {
    height: 25px;
    margin: 10px 0 0;
    color: #333;
    font-size: 18px;
    line-height: 25px;
    white-space: nowrap;
}

.home-services {
    height: 1606px;
    overflow: hidden;
    background: #fff;
}

.home-services .home-section-heading {
    width: 240px;
    padding-top: 54px;
    box-sizing: content-box;
}

.home-service-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 40px 24px;
    align-items: stretch;
}

.home-service-card {
    position: relative;
    min-width: 0;
    padding: 22px;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 0 0 1px #f2e5e5, 0 8px 24px rgba(150, 42, 47, .16);
}

.home-service-card--large {
    height: 840px;
    grid-column: span 3;
}

.home-service-card--small {
    height: 488px;
    grid-column: span 2;
}

.home-service-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
}

.home-service-card--large .home-service-visual {
    height: 440px;
    border-radius: 20px;
}

.home-service-card--small .home-service-visual {
    height: 230px;
    border-radius: 17px;
}

.home-service-visual-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.service-logo,
.service-quote {
    position: absolute;
    z-index: 1;
    max-width: none;
    object-fit: contain;
}

.service-logo--cpa {
    top: 32px;
    left: 92px;
    width: 360px;
    height: 73px;
}

.service-logo--aia {
    top: 32px;
    left: 104px;
    width: 336px;
    height: 65px;
}

.service-visual-title {
    position: absolute;
    z-index: 1;
    right: 0;
    left: 0;
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
    text-align: center;
    white-space: nowrap;
}

.home-service-visual--cpa .service-visual-title {
    top: 121px;
    right: auto;
    left: 50px;
    width: 445px;
    text-align: left;
}

.home-service-visual--aia .service-visual-title {
    top: 113px;
    right: auto;
    left: 95px;
    width: 355px;
    color: #34e4ff;
    font-weight: 600;
    letter-spacing: 3.84px;
}

.service-quote {
    width: 36px;
    height: 36px;
}

.service-quote--open {
    top: 182px;
    left: 24px;
}

.service-quote--close {
    right: 24px;
    bottom: 42px;
}

.service-visual-copy {
    position: absolute;
    z-index: 1;
    display: grid;
    color: #fff;
}

.home-service-visual--cpa .service-visual-copy {
    top: 231px;
    left: 38px;
    width: 468px;
}

.home-service-visual--cpa .service-visual-copy strong {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

.home-service-visual--cpa .service-visual-copy b {
    font-size: 19px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: .76px;
}

.home-service-visual--cpa .service-visual-copy small {
    margin-top: 1px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: .3px;
}

.home-service-visual--aia .service-visual-copy {
    top: 210px;
    left: 10px;
    width: 518px;
    justify-items: center;
    row-gap: 12px;
    text-align: center;
}

.home-service-visual--aia .service-visual-copy strong {
    color: #34e4ff;
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
}

.home-service-visual--aia .service-visual-copy b {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

.home-service-card > h3 {
    height: 48px;
    margin: 16px 18px 0;
    color: #d91c28;
    font-size: 34px;
    font-weight: 600;
    line-height: 48px;
}

.home-service-card > p {
    margin: 16px 18px 0;
    overflow: hidden;
    color: #565656;
    font-size: 16px;
    line-height: 24px;
}

.home-service-card--large > p {
    width: 495px;
    height: 72px;
}

.home-service-features {
    width: 417px;
    height: 96px;
    margin: 16px 0 0 51px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 107px);
    column-gap: 48px;
    list-style: none;
}

.home-service-features li {
    display: grid;
    grid-template-rows: 56px 40px;
    justify-items: center;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.home-service-features img {
    width: 56px;
    height: 56px;
}

.home-outline-button {
    width: 160px;
    min-width: 160px;
    height: 50px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #777;
    border-radius: 999px;
    color: #444;
    background: transparent;
    font-size: 16px;
    line-height: 1;
}

.home-service-card--large > .home-outline-button {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.home-service-card--small > h3 {
    height: 36px;
    margin: 11px 0 0;
    color: #373737;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
}

.home-service-card--small > p {
    width: 340px;
    height: 96px;
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 24px;
}

.service-logo--ipa {
    top: 32px;
    left: 54px;
    width: 233px;
    height: 59px;
}

.service-logo--cima {
    top: 32px;
    left: 80px;
    width: 180px;
    height: 58px;
}

.service-logo--isca {
    top: 32px;
    left: 79px;
    width: 183px;
    height: 58px;
}

.service-visual-small-copy {
    position: absolute;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
}

.home-service-visual--ipa .service-visual-small-copy {
    top: 110px;
    left: 53px;
    width: 234px;
}

.home-service-visual--ipa .service-visual-small-copy span {
    color: #f52b5a;
}

.home-service-visual--cima .service-visual-small-copy {
    top: 100px;
    left: 50px;
    width: 241px;
    font-size: 26px;
    line-height: 36px;
}

.home-service-visual--cima .service-visual-small-copy small,
.home-service-visual--cima .service-visual-small-copy strong {
    display: block;
    font-size: 20px;
    line-height: 28px;
}

.home-service-visual--cima .service-visual-small-copy small {
    white-space: nowrap;
}

.home-service-visual--cima .service-visual-small-copy strong {
    margin-top: 5px;
    color: #ffdd00;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 3.12px;
}

.home-service-visual--isca .service-visual-small-copy {
    top: 110px;
    left: 62px;
    width: 217px;
    font-size: 26px;
    line-height: 36px;
}

.home-service-visual--isca .service-visual-small-copy span {
    color: #00eaff;
}

.home-plus-button {
    position: absolute;
    bottom: 28px;
    left: 50%;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #d71925;
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 32px;
    transform: translateX(-50%);
}

.home-plus-button--wide {
    width: 32px;
    border-radius: 999px;
}

.home-plus-button img {
    width: 20px;
    height: 20px;
}

.home-company {
    height: 924px;
    overflow: hidden;
}

.home-company-red {
    position: relative;
    height: 490px;
    overflow: hidden;
    color: #fff;
    background: #c82630;
}

/* The design combines the architecture, red tint and a separate brand mark. */
.home-company-red::before { content: none; }
.home-company-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(110deg, #c53036, #b92229 70%, #bb242b);
}
.home-company-architecture {
    position: absolute;
    top: 0;
    left: 50%;
    width: max(100%, 1920px);
    height: 600px;
    max-width: none;
    object-fit: fill;
    transform: translateX(-50%) scaleX(-1);
    /* Only the building is used; the source banner's sky and mark are excluded. */
    clip-path: inset(51% 0 0);
    mask-image: linear-gradient(transparent 51%, #000 70%);
    filter: grayscale(1);
    mix-blend-mode: multiply;
    opacity: .22;
}
.home-company-brand-mark {
    position: absolute;
    top: 21px;
    left: calc(50% + 169px);
    width: 431px;
    height: 463px;
    background: url("images/home/footer-logo.png") -37px 20px / 1461px 443px no-repeat;
    filter: brightness(0) invert(1);
    opacity: .045;
}

.home-company-intro {
    position: relative;
    z-index: 1;
    height: 100%;
}

.home-company-intro > div {
    position: absolute;
    top: 58px;
    left: 16px;
    width: 782px;
}

.home-company-intro h2 {
    height: 45px;
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;
}

.home-company-subtitle {
    width: 396px;
    height: 25px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

.home-company-body {
    width: 782px;
    height: 112px;
    margin-top: 29px;
    margin-left: -1px;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}

.home-company-body p {
    margin: 0;
}

.home-company-intro > .home-outline-button {
    position: absolute;
    top: 366px;
    right: 64px;
    margin: 0;
}

.home-outline-button--light {
    color: #fff;
    border-color: rgba(255, 255, 255, .86);
}

.home-company-white {
    height: 434px;
    background: #fff;
}

.home-company-lower {
    position: relative;
    height: 100%;
}

.home-company-photo {
    position: absolute;
    top: -148px;
    left: 0;
    width: 657px;
    height: 518px;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}

.home-company-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-company-features {
    position: absolute;
    top: 50px;
    left: 780px;
    display: grid;
    grid-template-columns: 72px 72px;
    grid-auto-rows: 105px;
    gap: 64px 146px;
}

.home-company-features article {
    width: 72px;
    height: 105px;
    display: grid;
    grid-template-rows: 72px 25px;
    row-gap: 8px;
    justify-items: center;
    color: #252525;
    text-align: center;
}

.home-company-features img {
    width: 72px;
    height: 72px;
}

.home-company-features h3 {
    width: 100px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    white-space: nowrap;
}

.home-news {
    position: relative;
    height: 633px;
    overflow: hidden;
    background: #f3f3f3;
}

.home-news .home-section-heading {
    padding-top: 56px;
    box-sizing: content-box;
}

.home-news-grid {
    margin-top: 59px;
    padding-left: 16px;
    display: grid;
    grid-template-columns: 558px 558px;
    grid-template-rows: 124px 124px;
    gap: 34px 68px;
}

.home-news-item {
    min-width: 0;
    height: 124px;
    display: grid;
    grid-template-columns: 150px 392px;
    column-gap: 16px;
}

.home-news-image {
    width: 150px;
    height: 100px;
    display: block;
    overflow: hidden;
    background: #dbe2e6;
}

.home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news-item h3 {
    height: 44px;
    margin: 0;
    overflow: hidden;
    color: #3c3c3c;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.home-news-item:first-child h3 {
    height: 22px;
}

.home-news-item i {
    width: 389px;
    height: 1px;
    margin: 15.5px 0 16px;
    display: block;
    background: #9a9a9a;
}

.home-news-item i::before {
    content: "";
    width: 48px;
    height: 1px;
    display: block;
    background: #777;
}

.home-news-item:first-child i {
    margin-top: 15.5px;
}

.home-news-item:hover h3 {
    color: #d51d28;
}

.home-news-item:hover i,
.home-news-item:hover i::before {
    background: #d51d28;
}

.home-news-item p {
    height: 48px;
    margin: 0;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 24px;
}

.home-news-more {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
}

.page-home .site-footer {
    position: relative;
    height: 412px;
    padding: 0;
    color: rgba(255, 255, 255, .82);
    background: #0d192a;
}

.page-home .footer-grid.site-container,
.page-home .footer-legal.site-container {
    width: min(1200px, calc(100% - 80px));
}

.page-home .footer-grid {
    position: relative;
    height: 313px;
    display: block;
}

.page-home .footer-identity,
.page-home .footer-benefits,
.page-home .footer-qrs {
    position: absolute;
    top: 0;
}

.page-home .footer-identity {
    left: 0;
    width: 295px;
    display: block;
}

.page-home .footer-brand {
    position: absolute;
    top: 48px;
    left: 0;
    width: 178px;
    height: 54px;
    margin: 0;
}

.page-home .footer-brand img {
    width: 178px;
    height: 54px;
    max-width: none;
    object-fit: contain;
}

.page-home .footer-identity > a:not(.footer-brand) {
    position: absolute;
    left: 61px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.page-home .footer-identity > a:nth-of-type(2) { top: 127px; }
.page-home .footer-identity > a:nth-of-type(3) { top: 163px; }
.page-home .footer-identity > a:nth-of-type(4) { top: 199px; }

.page-home .footer-identity b {
    width: 20px;
    height: 20px;
    display: block;
}

.page-home .footer-identity b img {
    width: 20px;
    height: 20px;
}

.page-home .footer-benefits {
    top: 56px;
    left: 405px;
    width: 304px;
}

.page-home .footer-benefits h2 {
    height: 34px;
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: #fff;
}

.page-home .footer-benefits ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 152px 136px;
    gap: 16px;
    list-style: none;
    font-size: 16px;
    line-height: 26px;
}

.page-home .footer-benefits li {
    height: 26px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    color: #fff;
}

.page-home .footer-benefits li span {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    color: transparent;
    background: url("/site/images/home/icon-check.png") center / 20px 20px no-repeat;
}

.page-home .footer-qrs {
    top: 56px;
    left: 820px;
    width: 340px;
    display: flex;
    gap: 40px;
}

.page-home .footer-qrs figure {
    width: 150px;
    margin: 0;
    text-align: center;
}

.page-home .footer-qrs img {
    width: 150px;
    height: 150px;
}

.page-home .footer-qrs figcaption {
    height: 22px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.page-home .footer-legal {
    height: 72px;
    margin: 0 auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
}

.page-home .footer-legal p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

/* Template link states match the supplied default and hover designs. */
.page-home .home-outline-button { transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease; }
.page-home .home-outline-button::after { content: ""; width: 0; height: 8px; border-top: 1px solid; border-right: 1px solid; transform: rotate(45deg); opacity: 0; transition: width 180ms ease, margin-left 180ms ease, opacity 180ms ease; }
.page-home .home-outline-button:is(:hover, :focus-visible) { color: #fff; border-color: var(--interaction-red); background: var(--interaction-red); }
.page-home .home-outline-button:is(:hover, :focus-visible)::after { width: 8px; margin-left: 10px; opacity: 1; }
.page-home .home-outline-button--light:is(:hover, :focus-visible) { color: var(--interaction-red); border-color: #fff; background: #fff; }
.page-home .home-plus-button { border-radius: 999px; transition: width 180ms ease; }
.page-home .home-plus-button:is(:hover, :focus-visible) { width: 96px; background: var(--interaction-red); }
.page-home :is(.home-outline-button, .home-plus-button):focus-visible { outline: 3px solid #ff9da5; outline-offset: 4px; }

.page-home .home-service-card:hover {
    box-shadow: 0 0 0 1px #f2e5e5, 0 8px 24px rgba(150, 42, 47, .16);
}

.page-home .home-news-item:hover .home-news-image img {
    transform: none;
}

/*
 * The annotated homepage is a fixed 1280px desktop composition below its
 * 1920px reference width. Scale that composition only on compact desktop
 * viewports so its internal artwork coordinates remain intact without
 * introducing a horizontal scrollbar. Mobile gets its own later pass.
 */
@media (min-width: 901px) and (max-width: 1279px) {
    .page-home {
        overflow-x: hidden;
    }

    .page-home .site-page-shell {
        width: 1280px;
        min-width: 1280px;
        zoom: calc(100vw / 1280px);
    }

    .home-fixed-container,
    .page-home .footer-grid.site-container,
    .page-home .footer-legal.site-container {
        width: 1200px;
    }
}

/* Keep the shared header independent of the homepage artwork scaling. */
@media (min-width: 901px) and (max-width: 1279px) {
    .header-inner { gap: 20px; }
    .primary-nav { width: min(600px, calc(100% - 321px)); grid-template-columns: 52fr 104fr 84fr 84fr 84fr; column-gap: 16px; }
}
