:root {
  --px-red: #b80e1d;
  --px-red-dark: #930b17;
  --px-orange: #ec5930;
  --px-gray: #575757;
  --px-dark: #292929;
  --px-mid: #979797;
  --px-grid: #cececf;
  --px-surface: #f4f4f4;
  --px-white: #fff;
  --px-border: rgba(87, 87, 87, .2);
  --px-shadow: 0 24px 70px rgba(41, 41, 41, .09);
  --px-unit: 8px;
  --px-container: 1240px;
  --px-header: 88px;
  --px-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--px-header) + 24px); }
body { margin: 0; background: var(--px-white); color: var(--px-gray); font-family: Arial, Helvetica, sans-serif; font-size: 1rem; line-height: 1.62; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--px-red); text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--px-red); font-weight: 700; line-height: 1.07; text-wrap: balance; }
h1 { max-width: 760px; font-size: clamp(2.65rem, 5.6vw, 5.5rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.65rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.025em; }
p { margin: 0 0 1rem; }

.container { width: min(calc(100% - 64px), var(--px-container)); margin-inline: auto; }
.section { padding: clamp(80px, 9vw, 136px) 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 18px; background: var(--px-dark); color: #fff; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; z-index: 100; top: 0; height: var(--px-header); background: rgba(255, 255, 255, .94); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { border-bottom-color: var(--px-border); box-shadow: 0 8px 28px rgba(41, 41, 41, .05); }
.header-inner { display: flex; min-height: var(--px-header); align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img, .brand .custom-logo { width: 210px; max-height: 59px; object-fit: contain; }
.brand .custom-logo-link { display: inline-flex; }
.primary-nav { display: flex; align-items: center; gap: 36px; }
.primary-nav ul, .site-footer ul { display: flex; margin: 0; padding: 0; list-style: none; }
.primary-nav ul { gap: 30px; }
.primary-nav a { color: var(--px-dark); font-size: .91rem; font-weight: 700; text-decoration: none; }
.primary-nav .menu > li > a { position: relative; padding-block: 14px; }
.primary-nav .menu > li > a::after { position: absolute; right: 0; bottom: 8px; left: 0; height: 2px; background: var(--px-red); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .24s var(--px-ease); }
.primary-nav .menu > li > a:hover::after, .primary-nav .menu > li > a:focus-visible::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; min-width: 48px; min-height: 48px; border: 1px solid var(--px-border); background: #fff; color: var(--px-dark); align-items: center; gap: 10px; padding: 10px; }
.nav-toggle-label { font-size: .82rem; font-weight: 700; }
.nav-toggle-lines { display: grid; gap: 4px; }
.nav-toggle-lines i { display: block; width: 18px; height: 2px; background: var(--px-red); transition: .2s ease; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 13px 23px; border: 2px solid var(--px-red); border-radius: 2px; background: var(--px-red); color: #fff; font-size: .93rem; font-weight: 700; line-height: 1.2; text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s var(--px-ease), box-shadow .2s ease; }
.button:hover { border-color: var(--px-red-dark); background: var(--px-red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(184, 14, 29, .18); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--px-dark); outline-offset: 4px; }
.contact-panel :focus-visible, .service-card-cta :focus-visible { outline-color: #fff; }
.button-small { min-height: 44px; padding: 10px 18px; }
.button-light { border-color: #fff; background: #fff; color: var(--px-red); }
.button-light:hover { border-color: var(--px-surface); background: var(--px-surface); color: var(--px-red-dark); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--px-red); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; }
.text-link::after { content: '↗'; text-decoration: none; transition: transform .2s var(--px-ease); }
.text-link:hover::after { transform: translate(3px, -3px); }
.text-link-light { color: #fff; }

.eyebrow { margin: 0 0 18px; color: var(--px-red); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.angle-label { display: inline-flex; align-items: center; gap: 14px; }
.angle-label::before { width: 24px; height: 24px; border-top: 3px solid var(--px-orange); border-right: 3px solid var(--px-orange); content: ''; }
.grid-surface { position: relative; background-image: linear-gradient(rgba(206, 206, 207, .22) 1px, transparent 1px), linear-gradient(90deg, rgba(206, 206, 207, .22) 1px, transparent 1px); background-size: 40px 40px; }
.grid-surface::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.6) 52%, rgba(255,255,255,.15)); content: ''; pointer-events: none; }

.hero { min-height: calc(100vh - var(--px-header)); overflow: hidden; }
.hero-grid { position: relative; z-index: 1; display: grid; min-height: calc(100vh - var(--px-header)); grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); align-items: center; gap: clamp(32px, 6vw, 96px); padding-block: 72px 96px; }
.hero-copy { position: relative; z-index: 2; }
.hero-intro { max-width: 650px; margin: 28px 0 32px; color: var(--px-gray); font-size: clamp(1.12rem, 1.7vw, 1.38rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero-facts { display: grid; max-width: 720px; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 58px 0 0; padding: 0; border-top: 1px solid var(--px-border); list-style: none; }
.hero-facts li { display: grid; gap: 4px; padding: 18px 20px 0 0; color: var(--px-dark); font-size: .86rem; line-height: 1.35; }
.hero-facts strong { color: var(--px-orange); font-size: .7rem; letter-spacing: .12em; }
.hero-visual { position: relative; margin-right: min(-5vw, -32px); }
.hero-visual::before { position: absolute; z-index: 2; top: -22px; right: 26px; width: 56px; height: 56px; border-top: 5px solid var(--px-orange); border-right: 5px solid var(--px-orange); content: ''; }
.hero-visual::after { position: absolute; z-index: 2; top: -10px; right: 14px; width: 56px; height: 56px; border-top: 2px solid var(--px-orange); border-right: 2px solid var(--px-orange); content: ''; }
.hero-visual img { width: 100%; min-height: 520px; aspect-ratio: 3 / 4; border: 1px solid rgba(87,87,87,.1); box-shadow: var(--px-shadow); object-fit: cover; object-position: 69% center; }
.hero-stamp { position: absolute; z-index: 3; right: -1px; bottom: 30px; display: grid; padding: 18px 22px; border-left: 4px solid var(--px-orange); background: rgba(41,41,41,.93); color: #fff; font-size: .69rem; font-weight: 700; letter-spacing: .13em; line-height: 1.8; text-transform: uppercase; }
.line-runner { position: absolute; z-index: 4; bottom: 40px; left: 0; width: 100%; height: 1px; overflow: hidden; background: rgba(184,14,29,.25); }
.line-runner::after { display: block; width: 20%; height: 100%; background: var(--px-red); content: ''; animation: line-runner 3s var(--px-ease) 1 both; }
@keyframes line-runner { 0% { transform: translateX(-100%); } 45%, 55% { transform: translateX(500%); } 100% { transform: translateX(500%); } }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; gap: clamp(32px, 7vw, 96px); margin-bottom: 58px; }
.section-heading > p { max-width: 520px; margin: 0 0 4px; font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--px-border); border-left: 1px solid var(--px-border); }
.service-card { position: relative; min-height: 330px; padding: 34px 32px; overflow: hidden; border-right: 1px solid var(--px-border); border-bottom: 1px solid var(--px-border); background: #fff; transition: color .3s ease, background .3s ease, transform .3s var(--px-ease), box-shadow .3s ease; }
.service-card::after { position: absolute; top: 0; right: 0; width: 34px; height: 34px; border-top: 3px solid var(--px-orange); border-right: 3px solid var(--px-orange); content: ''; opacity: 0; transform: translate(10px, -10px); transition: .3s var(--px-ease); }
.service-card:hover { z-index: 1; transform: translateY(-7px); box-shadow: var(--px-shadow); }
.service-card:hover::after { opacity: 1; transform: translate(0, 0); }
.service-card h3 { max-width: 250px; margin-bottom: 16px; }
.service-card p:last-child { max-width: 330px; margin: 0; }
.service-icon { display: inline-flex; width: 52px; height: 52px; margin-bottom: 34px; color: var(--px-dark); }
.service-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.6; }
.service-icon .accent { stroke: var(--px-orange); stroke-width: 2.4; }
.card-number { position: absolute; top: 35px; right: 34px; color: var(--px-gray); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.service-card-cta { display: flex; min-height: 230px; grid-column: 1 / -1; flex-direction: column; justify-content: flex-end; background: var(--px-red); color: #fff; }
.service-card-cta h3, .service-card-cta .eyebrow { color: #fff; }
.service-card-cta .eyebrow { opacity: .76; }

.agency { overflow: hidden; background-color: var(--px-surface); }
.agency::before { background: linear-gradient(90deg, rgba(244,244,244,.2), rgba(244,244,244,.9) 55%); }
.agency-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(56px, 9vw, 136px); }
.agency-graphic { position: relative; min-height: 560px; overflow: hidden; border: 1px solid var(--px-border); background: #fff; box-shadow: var(--px-shadow); }
.graphic-word { position: absolute; top: 45%; left: -7%; color: var(--px-red); font-size: clamp(9rem, 24vw, 20rem); font-weight: 700; letter-spacing: -.12em; line-height: .6; opacity: .96; }
.graphic-lines { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 25px, rgba(87,87,87,.12) 25px 26px), linear-gradient(135deg, transparent 0 54%, rgba(236,89,48,.22) 54% 56%, transparent 56%); mix-blend-mode: multiply; }
.double-angle { position: absolute; right: 34px; bottom: 34px; width: 105px; height: 105px; border-right: 12px solid var(--px-orange); border-bottom: 12px solid var(--px-orange); }
.double-angle::after { position: absolute; right: 17px; bottom: 17px; width: 105px; height: 105px; border-right: 4px solid var(--px-orange); border-bottom: 4px solid var(--px-orange); content: ''; }
.agency-copy .lead { margin: 28px 0 16px; color: var(--px-dark); font-size: 1.24rem; font-weight: 700; }
.agency-copy > p:not(.eyebrow) { max-width: 680px; }
.value-list { margin-top: 42px; border-top: 1px solid var(--px-border); }
.value-list > div { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--px-border); }
.value-list strong { color: var(--px-red); }

.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; counter-reset: none; list-style: none; }
.process-list li { position: relative; display: grid; gap: 58px; padding: 0 28px 0 0; }
.process-list li:not(:last-child)::after { position: absolute; top: 15px; right: 0; left: 35px; height: 1px; background: var(--px-grid); content: ''; }
.process-list > li > span { position: relative; z-index: 1; display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid var(--px-red); background: #fff; color: var(--px-red); font-size: .68rem; font-weight: 700; }
.process-list h3 { margin-bottom: 12px; }
.process-list p { max-width: 240px; margin: 0; }

.contact { padding-top: 24px; }
.contact-panel { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 64px; padding: clamp(48px, 7vw, 88px); overflow: hidden; background: var(--px-red); color: #fff; }
.contact-panel h2, .contact-panel .eyebrow { color: #fff; }
.contact-panel .eyebrow { opacity: .74; }
.contact-panel h2 { max-width: 780px; }
.contact-panel > div:first-child > p:last-child { max-width: 650px; margin: 24px 0 0; font-size: 1.12rem; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.contact-actions span { font-size: .9rem; }
.contact-angle { position: absolute; right: -65px; bottom: -65px; width: 260px; height: 260px; border-right: 34px solid rgba(255,255,255,.15); border-bottom: 34px solid rgba(255,255,255,.15); }
.contact-angle::before { position: absolute; right: 52px; bottom: 52px; width: 260px; height: 260px; border-right: 5px solid var(--px-orange); border-bottom: 5px solid var(--px-orange); content: ''; }

.site-footer { margin-top: 88px; padding: 72px 0 26px; border-top: 1px solid var(--px-red); background: var(--px-surface); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 64px; }
.footer-logo { width: 168px; margin-bottom: 18px; }
.footer-grid p { max-width: 360px; font-size: .9rem; }
.footer-label { color: var(--px-red); font-size: .74rem !important; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { flex-direction: column; gap: 7px; }
.site-footer li a { color: var(--px-gray); font-size: .9rem; text-decoration: none; }
.site-footer li a:hover { color: var(--px-red); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 21px; border-top: 1px solid var(--px-border); color: var(--px-gray); font-size: .78rem; }
.legal-nav ul { flex-flow: row wrap; justify-content: flex-end; gap: 8px 18px; }
.legal-nav a { color: var(--px-gray) !important; text-decoration: underline !important; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; white-space: nowrap; }
.screen-reader-text:focus { z-index: 100000; top: 8px; left: 8px; width: auto; height: auto; margin: 0; padding: 12px 18px; clip: auto; background: #fff; color: var(--px-dark); }

.content-shell { width: min(calc(100% - 48px), 860px); margin: 0 auto; padding: 80px 0 120px; }
.content-header { margin-bottom: 48px; padding-bottom: 30px; border-bottom: 1px solid var(--px-border); }
.content-header h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.entry-content > * { max-width: 760px; margin-right: auto; margin-left: auto; }
.entry-content > .alignwide { max-width: 1240px; }
.entry-content > .alignfull { max-width: none; }
.entry-content h2, .entry-content h3 { margin-top: 2em; margin-bottom: .7em; }
.entry-content img { height: auto; }
.post-list { display: grid; gap: 20px; }
.post-card { padding: 28px; border: 1px solid var(--px-border); }
.post-card h2 { margin-bottom: 12px; font-size: 1.8rem; }
.post-meta { color: var(--px-gray); font-size: .8rem; }
.pagination { margin-top: 40px; }

/* Gutenberg page patterns */
.px-editor-content > .entry-content, .px-editor-content.entry-content { max-width: none; }
.px-editor-content .wp-block-group.alignfull { width: 100%; margin-right: 0; margin-left: 0; }
.px-page-hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 132px) 0; background-color: var(--px-surface); }
.px-page-hero::after { position: absolute; top: 0; right: 0; width: min(44vw, 620px); height: 100%; background-image: linear-gradient(rgba(206,206,207,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(206,206,207,.28) 1px, transparent 1px); background-size: 36px 36px; content: ''; mask-image: linear-gradient(90deg, transparent, #000 35%); }
.px-page-hero__inner { position: relative; z-index: 1; display: grid; width: min(calc(100% - 64px), var(--px-container)); grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(40px, 7vw, 96px); margin-inline: auto; }
.px-page-hero h1 { max-width: 820px; }
.px-page-hero .px-lead { max-width: 700px; margin-top: 26px; color: var(--px-dark); font-size: clamp(1.12rem, 1.7vw, 1.35rem); }
.px-page-visual { position: relative; min-height: 360px; overflow: hidden; border: 1px solid var(--px-border); background: #fff; box-shadow: var(--px-shadow); }
.px-page-visual img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.px-page-visual::after { position: absolute; top: 22px; right: 22px; width: 58px; height: 58px; border-top: 5px solid var(--px-orange); border-right: 5px solid var(--px-orange); content: ''; }
.px-section { padding: clamp(72px, 8vw, 120px) 0; }
.px-section--surface { background: var(--px-surface); }
.px-section__inner { width: min(calc(100% - 64px), var(--px-container)); margin-inline: auto; }
.px-section__heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 48px; margin-bottom: 48px; }
.px-section__heading > p { max-width: 520px; margin-bottom: 5px; }
.px-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--px-border); border-left: 1px solid var(--px-border); }
.px-card { min-height: 250px; padding: 30px; border-right: 1px solid var(--px-border); border-bottom: 1px solid var(--px-border); background: #fff; }
.px-card h3 { margin-bottom: 14px; }
.px-card p:last-child { margin-bottom: 0; }
.px-card__label { color: var(--px-orange); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.px-two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 7vw, 96px); }
.px-check-list { margin: 24px 0 0; padding: 0; list-style: none; }
.px-check-list li { position: relative; margin: 0; padding: 13px 0 13px 34px; border-bottom: 1px solid var(--px-border); }
.px-check-list li::before { position: absolute; top: 18px; left: 4px; width: 13px; height: 8px; border-bottom: 2px solid var(--px-red); border-left: 2px solid var(--px-red); content: ''; transform: rotate(-45deg); }
.px-process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 36px 0 0; padding: 0; list-style: none; }
.px-process li { padding: 26px; border-top: 3px solid var(--px-red); background: #fff; }
.px-process li + li { border-left: 1px solid var(--px-border); }
.px-process strong { display: block; margin-bottom: 28px; color: var(--px-orange); font-size: .78rem; letter-spacing: .12em; }
.px-process li { line-height: 1.65; }
.px-process h3 { margin-bottom: 10px; }
.px-callout { padding: clamp(36px, 5vw, 64px); border-left: 5px solid var(--px-orange); background: var(--px-dark); color: #fff; }
.px-callout h2, .px-callout h3 { color: #fff; }
.px-callout p:last-child { margin-bottom: 0; }
.px-contact-block { padding: clamp(56px, 8vw, 100px) 0; background: var(--px-red); color: #fff; }
.px-contact-block__inner { display: grid; width: min(calc(100% - 64px), var(--px-container)); grid-template-columns: 1.2fr .8fr; align-items: end; gap: 64px; margin-inline: auto; }
.px-contact-block h2, .px-contact-block h3 { color: #fff; }
.px-contact-block a { color: #fff; }
.px-contact-list { margin: 0; padding: 0; list-style: none; }
.px-contact-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.px-editor-content .wp-block-button__link { min-height: 48px; padding: 13px 22px; border: 2px solid var(--px-red); border-radius: 2px; background: var(--px-red); color: #fff; font-size: .93rem; font-weight: 700; }
.px-editor-content .is-style-outline .wp-block-button__link { background: #fff; color: var(--px-red); }
.px-contact-block .wp-block-button__link { border-color: #fff; background: #fff; color: var(--px-red); }
.px-note { padding: 24px 28px; border: 1px solid var(--px-border); background: #fff; }
.px-faq { display: grid; gap: 0; }
.px-faq > div { padding: 22px 0; border-bottom: 1px solid var(--px-border); }
.px-faq h3 { margin-bottom: 8px; font-size: 1.18rem; }

.entry-content label { display: block; margin-bottom: 7px; color: var(--px-dark); font-weight: 700; }
.entry-content input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), .entry-content textarea, .entry-content select { width: 100%; min-height: 48px; padding: 11px 13px; border: 2px solid var(--px-gray); border-radius: 2px; background: #fff; color: var(--px-dark); }
.entry-content textarea { min-height: 160px; resize: vertical; }
.entry-content input[type="submit"], .entry-content button[type="submit"] { min-height: 48px; padding: 11px 20px; border: 2px solid var(--px-red); border-radius: 2px; background: var(--px-red); color: #fff; font-weight: 700; cursor: pointer; }
.entry-content :disabled { cursor: not-allowed; opacity: .65; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--px-ease), transform .7s var(--px-ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .container { width: min(calc(100% - 48px), var(--px-container)); }
  .primary-nav { gap: 24px; }
  .primary-nav ul { gap: 20px; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); }
  .hero-visual img { min-height: 480px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .agency-grid { gap: 64px; }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process-list li:nth-child(2)::after { display: none; }
  .px-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .px-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .px-process li:nth-child(3) { border-left: 0; }
}

@media (max-width: 767px) {
  :root { --px-header: 76px; }
  .container { width: min(calc(100% - 36px), var(--px-container)); }
  .section { padding: 76px 0; }
  .brand img, .brand .custom-logo { width: 160px; }
  .nav-toggle { display: flex; }
  .primary-nav { position: fixed; inset: var(--px-header) 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 28px; padding: 42px 24px; background: rgba(255,255,255,.99); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .22s ease, transform .22s var(--px-ease); }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .no-js .nav-toggle { display: none; }
  .no-js .header-inner { gap: 12px; }
  .no-js .brand img, .no-js .brand .custom-logo { width: 120px; }
  .no-js .primary-nav { position: static; inset: auto; max-width: 58%; flex-direction: row; align-items: center; padding: 0; opacity: 1; pointer-events: auto; transform: none; }
  .no-js .primary-nav ul { flex-flow: row wrap; gap: 4px 14px; }
  .no-js .primary-nav ul a { padding: 6px 0; font-size: .86rem; }
  .no-js .nav-cta { display: none !important; }
  .primary-nav ul { flex-direction: column; gap: 6px; }
  .primary-nav ul a { display: block; padding: 12px 0; font-size: 1.45rem; }
  .nav-cta { display: inline-flex; align-self: flex-start; }
  .nav-open .nav-toggle-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle-lines i:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 52px; padding-block: 64px 80px; }
  .hero-visual { margin-right: 0; }
  .hero-visual img { min-height: 370px; aspect-ratio: 4 / 3; object-position: 72% center; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 42px; }
  .hero-facts li { grid-template-columns: 34px 1fr; padding-top: 13px; border-bottom: 1px solid var(--px-border); }
  .line-runner { bottom: 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .agency-grid { grid-template-columns: 1fr; }
  .agency-graphic { min-height: 390px; }
  .graphic-word { font-size: 14rem; }
  .value-list > div { grid-template-columns: 90px 1fr; }
  .process-list { grid-template-columns: 1fr; gap: 32px; }
  .process-list li { grid-template-columns: 32px 1fr; gap: 20px; padding: 0; }
  .process-list li::after { display: none; }
  .contact-panel { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 38px; padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .px-page-hero__inner, .px-section__heading, .px-two-column, .px-contact-block__inner { grid-template-columns: 1fr; }
  .px-page-hero__inner, .px-section__inner, .px-contact-block__inner { width: min(calc(100% - 36px), var(--px-container)); }
  .px-page-hero::after { width: 100%; opacity: .42; }
  .px-page-visual { min-height: 280px; }
  .px-page-visual img { min-height: 280px; }
  .px-card-grid, .px-process { grid-template-columns: 1fr; }
  .px-process li + li { border-left: 0; }
}

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

@media (forced-colors: active) {
  .button, .nav-toggle, .service-card, .contact-panel { border: 2px solid ButtonText; }
  .primary-nav .menu > li > a::after, .line-runner::after { background: LinkText; }
  .hero-visual::before, .hero-visual::after, .double-angle, .double-angle::after { border-color: Highlight; }
}
