:root {
  --ink: #12181d;
  --ink-2: #1b232a;
  --ink-3: #263039;
  --paper: #f4f3ef;
  --white: #fff;
  --muted: #687177;
  --line: #d9d9d3;
  --red: #d80012;
  --red-dark: #b6000e;
  --lime: #b9e438;
  --shell: min(1240px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(17, 24, 29, .14);
  --mpt-mobile-nav-top: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { width: 1.25em; fill: currentColor; }
.shell { width: var(--shell); margin-inline: auto; }
.screen-reader-text,
.skip-link { 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:focus { z-index: 9999; top: 12px; left: 12px; width: auto; height: auto; padding: 10px 16px; margin: 0; clip: auto; background: #fff; color: #111; }

.site-topbar { color: #c7cdd1; background: #0b1014; font-size: 12px; font-weight: 600; letter-spacing: .03em; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.topbar-location { display: flex; align-items: center; gap: 8px; margin: 0; }
.topbar-location svg { color: var(--red); width: 15px; }
.topbar-contact { display: flex; align-items: center; gap: 24px; }
.topbar-contact a { transition: color .2s ease; }
.topbar-contact a:hover { color: #fff; }
.topbar-phone { color: #fff; }

.site-header { position: relative; z-index: 100000; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(18,24,29,.08); transition: box-shadow .25s ease; }
.site-header.is-sticky { position: fixed; inset: 0 0 auto; transform: none !important; box-shadow: 0 10px 40px rgba(15,20,24,.1); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand img, .brand .custom-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--ink); font-size: 17px; letter-spacing: .09em; }
.brand-copy small { margin-top: 7px; color: #727a80; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); }
.primary-nav ul { display: flex; align-items: center; gap: clamp(17px, 2vw, 32px); margin: 0; padding: 0; list-style: none; }
.primary-nav li { position: relative; }
.primary-nav a { font-size: 14px; font-weight: 700; }
.primary-nav .menu > li > a { display: inline-flex; align-items: center; min-height: 84px; }
.primary-nav .menu > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--red); transition: right .25s ease; }
.primary-nav .menu > li:hover > a::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current-menu-ancestor > a::after { right: 0; }
.primary-nav .sub-menu { position: absolute; top: calc(100% - 10px); left: -20px; min-width: 250px; display: grid; gap: 0; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(8px); background: #fff; border: 1px solid #e7e7e2; box-shadow: var(--shadow); transition: .2s ease; }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-nav .sub-menu a { display: block; padding: 10px 12px; border-radius: 4px; }
.primary-nav .sub-menu a:hover { color: var(--red); background: #f5f4f1; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: var(--ink); }
.nav-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px; color: #fff; background: var(--red); border: 1px solid var(--red); font-size: 13px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; transition: color .22s ease, background .22s ease, transform .22s ease; }
.button:hover { color: #fff; background: var(--red-dark); transform: translateY(-2px); }
.button span { font-size: 20px; line-height: 1; }
.button-small { min-height: 44px; padding: 0 20px; }
.button-light { color: var(--ink); background: #fff; border-color: #fff; }
.button-light:hover { color: #fff; background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.text-link span { color: var(--red); font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-dark { color: var(--ink); }
.text-link-light { color: #fff; }
.text-link-light span { color: #fff; }

.hero { position: relative; min-height: 690px; overflow: hidden; color: #fff; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: var(--ink); }
.hero-grid-bg { display: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr); gap: 36px; align-items: center; min-height: 690px; padding-block: 82px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: #cad0d4; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--red); }
.eyebrow-dark { color: #596269; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(46px, 5.2vw, 78px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 630px; margin: 28px 0 0; color: #c0c7cb; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.hero-proof { display: flex; align-items: stretch; gap: 0; margin: 42px 0 0; padding: 0; list-style: none; }
.hero-proof li { display: grid; gap: 4px; min-width: 125px; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-proof li:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { font-size: 22px; line-height: 1; letter-spacing: -.04em; }
.hero-proof span { color: #88939a; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual { position: absolute; z-index: 0; inset-block: 0; left: 50%; width: 100vw; min-height: 0; transform: translateX(-50%); pointer-events: none; }
.hero-image-frame { position: absolute; inset: 0; width: 100%; margin: 0; }
.hero-image-frame::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(14,20,24,.97) 0%, rgba(14,20,24,.91) 28%, rgba(14,20,24,.57) 45%, rgba(14,20,24,.2) 68%, rgba(14,20,24,.1) 100%), linear-gradient(0deg, rgba(8,12,15,.28), transparent 40%); }
.hero-image-frame img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.03); }
.hero-status { position: absolute; z-index: 3; right: 2%; bottom: 5%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; width: 290px; padding: 16px 17px; color: var(--ink); background: #fff; box-shadow: 0 18px 50px rgba(0,0,0,.22); pointer-events: auto; }
.status-dot { width: 11px; height: 11px; background: #42bd62; border-radius: 50%; box-shadow: 0 0 0 5px rgba(66,189,98,.14); }
.hero-status div { display: grid; }
.hero-status small { color: #697177; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.hero-status strong { font-size: 13px; }
.hero-status > a { display: grid; place-items: center; width: 32px; height: 32px; color: #fff; background: var(--red); }

.service-strip { position: relative; z-index: 2; color: #fff; background: var(--red); }
.service-strip-inner { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-strip i { width: 4px; height: 4px; flex: 0 0 auto; background: #fff; transform: rotate(45deg); }

.section { padding-block: clamp(82px, 9vw, 130px); }
.section-heading { margin-bottom: 55px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .75fr; gap: 80px; align-items: end; }
.section-heading h2, .why-copy h2 { margin: 0; font-size: clamp(37px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; }
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 350px; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: #fff; border: 1px solid #e5e4df; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-featured { background: #e9e8e3; }
.service-number { position: absolute; z-index: 2; top: 20px; left: 22px; color: #8a8f91; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.service-image { align-self: end; padding: 45px 0 22px 18px; }
.service-image img { width: 100%; height: 230px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.service-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px 34px 34px 24px; }
.service-content h3 { margin: 0 0 12px; font-size: 25px; line-height: 1.1; letter-spacing: -.03em; }
.service-content p { margin: 0 0 24px; color: #657077; font-size: 14px; }
.service-content a { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.service-content a span { color: var(--red); font-size: 17px; }
.service-card-dark { color: #fff; background: var(--ink-2); border-color: var(--ink-2); }
.service-card-dark .service-number { color: #818b91; }
.service-card-dark .service-content p { color: #aeb7bc; }
.service-icon-large { display: grid; place-items: center; }
.service-icon-large svg { width: 150px; color: var(--red); fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; opacity: .9; }

.g2v2-section { position: relative; overflow: hidden; padding-block: 100px; color: #fff; background: var(--red); }
.g2v2-section::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(45deg, transparent 48%, rgba(255,255,255,.4) 49%, rgba(255,255,255,.4) 51%, transparent 52%); background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.g2v2-inner { position: relative; display: grid; grid-template-columns: .65fr 1.35fr; gap: 9%; align-items: center; }
.g2v2-badge { aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; box-shadow: inset 0 0 0 20px rgba(255,255,255,.06); }
.g2v2-badge strong { font-size: clamp(65px, 8vw, 112px); line-height: .8; letter-spacing: -.08em; }
.g2v2-badge span { margin-top: 18px; font-size: 10px; font-weight: 800; line-height: 1.25; letter-spacing: .22em; }
.g2v2-copy .eyebrow { color: rgba(255,255,255,.75); }
.g2v2-copy .eyebrow span { background: #fff; }
.g2v2-copy h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: -.05em; }
.g2v2-copy > p:not(.eyebrow) { max-width: 780px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: 17px; }
.g2v2-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }

.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10%; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 17px; }
.why-list { border-top: 1px solid var(--line); }
.why-item { display: grid; grid-template-columns: 54px 1fr; gap: 25px; padding: 30px 8px; border-bottom: 1px solid var(--line); }
.why-item > span { display: grid; place-items: center; width: 38px; height: 38px; color: #fff; background: var(--ink); font-size: 10px; font-weight: 800; }
.why-item h3 { margin: 0 0 7px; font-size: 22px; letter-spacing: -.02em; }
.why-item p { margin: 0; color: var(--muted); }

.locations-section { background: #eae9e4; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.location-card { min-height: 310px; display: flex; flex-direction: column; padding: 30px; background: #fff; border-top: 3px solid transparent; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.location-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }
.location-top { display: flex; align-items: center; justify-content: space-between; }
.location-top span { color: #a0a5a8; font-size: 11px; font-weight: 800; }
.location-top small { padding: 4px 9px; color: var(--red); background: rgba(216,0,18,.07); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location-card h3 { margin: 60px 0 10px; font-size: 26px; line-height: 1.1; letter-spacing: -.03em; }
.location-card p { max-width: 280px; margin: 0; color: var(--muted); font-size: 14px; }
.location-card > a { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: var(--red); font-size: 19px; font-weight: 800; }
.location-card > a svg { width: 18px; }

.insights-section { background: var(--paper); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { overflow: hidden; background: #fff; }
.post-card-image { height: 235px; display: block; overflow: hidden; background: var(--ink-2); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.post-card:hover .post-card-image img { transform: scale(1.045); }
.post-card-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: #fff; font-size: 45px; font-weight: 900; letter-spacing: -.08em; background: linear-gradient(135deg, var(--ink), #303b43); }
.post-card-placeholder span { color: var(--red); }
.post-card-content { padding: 26px 27px 28px; }
.post-meta { display: flex; align-items: center; gap: 9px; margin: 0 0 13px; color: #8a9297; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-meta span { width: 3px; height: 3px; background: var(--red); }
.post-card h3 { min-height: 60px; margin: 0 0 24px; font-size: 19px; line-height: 1.35; letter-spacing: -.02em; }
.post-more { display: inline-flex; gap: 9px; align-items: center; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.post-more span { color: var(--red); font-size: 16px; }

.contact-cta { padding: 92px 0; color: #fff; background: var(--ink); }
.contact-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.contact-cta h2 { margin: 0; font-size: clamp(39px, 5vw, 68px); line-height: 1; letter-spacing: -.05em; }
.contact-cta-actions { display: flex; align-items: center; gap: 26px; flex: 0 0 auto; }

.site-footer { color: #adb5ba; background: #090d10; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .6fr 1fr; gap: 9%; padding-block: 75px 60px; }
.brand-footer .brand-copy strong { color: #fff; }
.footer-brand > p { max-width: 380px; margin: 24px 0 15px; color: #8f989d; font-size: 14px; }
.footer-mail { color: #fff; font-size: 14px; font-weight: 700; }
.footer-column h2 { margin: 0 0 22px; color: #fff; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-column li li { display: none; }
.footer-column a { font-size: 13px; transition: color .2s ease; }
.footer-column a:hover { color: #fff; }
.footer-locations { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 26px; }
.footer-locations h2 { grid-column: 1 / -1; }
.footer-location { display: grid; align-content: start; gap: 4px; padding: 13px 0; border-top: 1px solid #283137; }
.footer-location:first-of-type { grid-column: 1 / -1; }
.footer-location strong { color: #fff; font-size: 13px; }
.footer-location a { color: #9ea7ac; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #20272c; font-size: 11px; }
.footer-bottom p { margin: 0; }
.mobile-call { display: none; }

/* Interior pages and WordPress content */
.page-hero { position: relative; padding: 92px 0 78px; overflow: hidden; color: #fff; background: var(--ink); }
.page-hero::after { content: attr(data-index); position: absolute; right: 3vw; bottom: -70px; color: rgba(255,255,255,.035); font-size: 250px; font-weight: 900; line-height: 1; }
.breadcrumbs { margin-bottom: 22px; color: #98a2a8; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a { color: #fff; }
.breadcrumbs span { margin: 0 8px; color: var(--red); }
.page-hero h1 { position: relative; z-index: 1; max-width: 920px; margin: 0; font-size: clamp(46px, 6vw, 78px); line-height: 1; letter-spacing: -.055em; }
.page-hero .page-intro { max-width: 760px; margin: 24px 0 0; color: #b4bdc2; font-size: 18px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 80px; align-items: start; }
.content-main { min-width: 0; }
.entry-content { color: #3f494f; font-size: 17px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--ink); line-height: 1.15; letter-spacing: -.03em; }
.entry-content h2 { margin: 58px 0 20px; font-size: clamp(31px, 3.4vw, 45px); }
.entry-content h3 { margin: 44px 0 16px; font-size: 28px; }
.entry-content h4 { margin: 35px 0 13px; font-size: 21px; }
.entry-content p, .entry-content ul, .entry-content ol { margin-block: 0 22px; }
.entry-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 25px; }
.entry-content li { margin-bottom: 9px; }
.entry-content img { margin-block: 34px; }
.entry-content hr { margin: 48px 0; border: 0; border-top: 1px solid var(--line); }
.entry-content blockquote { margin: 38px 0; padding: 28px 32px; color: var(--ink); background: #e9e8e3; border-left: 4px solid var(--red); font-size: 20px; font-weight: 650; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 30px 0; font-size: 14px; }
.entry-content th, .entry-content td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; }
.entry-content th { background: var(--ink); color: #fff; }
.content-sidebar { position: sticky; top: 120px; display: grid; gap: 16px; }
.sidebar-card { padding: 28px; background: #fff; border-top: 3px solid var(--red); }
.sidebar-card h2 { margin: 0 0 12px; font-size: 21px; }
.sidebar-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.sidebar-card .button { width: 100%; }
.sidebar-phone { display: flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 800; }
.sidebar-phone svg { color: var(--red); }
.article-header { max-width: 960px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; color: #aeb6ba; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.article-featured { margin: -36px auto 55px; position: relative; z-index: 2; width: min(1040px, calc(100% - 48px)); max-height: 570px; object-fit: cover; box-shadow: var(--shadow); }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pagination { margin-top: 50px; }
.nav-links { display: flex; gap: 7px; }
.page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px; background: #fff; font-size: 13px; font-weight: 700; }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--red); }
.not-found { min-height: 550px; display: grid; place-items: center; text-align: center; }
.not-found strong { display: block; color: var(--red); font-size: clamp(90px, 18vw, 230px); line-height: .75; letter-spacing: -.09em; }
.not-found h1 { margin: 30px 0 10px; font-size: 40px; }
.not-found p { margin: 0 0 28px; color: var(--muted); }

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

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1080px); }
  .brand-copy { display: none; }
  .primary-nav { gap: 18px; }
  .primary-nav ul { gap: 17px; }
  .header-cta { padding-inline: 15px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .hero-image-frame { width: 100%; margin: 0; }
  .service-card { grid-template-columns: .9fr 1.1fr; }
  .content-layout { gap: 50px; }
}

@media (max-width: 900px) {
  .site-topbar { display: none; }
  .header-inner { min-height: 72px; }
  .brand-copy { display: flex; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; z-index: 100001; top: var(--mpt-mobile-nav-top); right: 0; bottom: auto; left: 0; width: 100%; height: calc(100vh - var(--mpt-mobile-nav-top)); height: calc(100dvh - var(--mpt-mobile-nav-top)); display: block; padding: 22px 20px 40px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; background: #fff; transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav ul { display: block; }
  .primary-nav .menu > li > a { width: 100%; min-height: 0; padding: 15px 0; border-bottom: 1px solid #e4e4df; font-size: 19px; }
  .primary-nav .menu > li > a::after { display: none; }
  .primary-nav .sub-menu { position: static; min-width: 0; display: grid; padding: 0 0 8px 15px; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; }
  .header-cta { width: 100%; margin-top: 22px; }
  .nav-open .nav-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle > span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 70px 30px; }
  .hero-copy { max-width: 700px; }
  .hero-copy { padding-bottom: 34px; }
  .hero-visual { position: relative; inset: auto; left: auto; width: calc(100% + 40px); min-height: 390px; margin-left: -20px; transform: none; overflow: hidden; }
  .hero-image-frame { position: absolute; inset: 0; width: 100%; margin: 0; }
  .hero-image-frame::before { background: linear-gradient(180deg, var(--ink) 0%, rgba(18,24,29,.74) 14%, rgba(18,24,29,.06) 48%, rgba(18,24,29,.18) 100%); }
  .hero-image-frame img { height: 100%; max-height: none; object-fit: cover; object-position: 62% center; }
  .hero-status { right: 20px; bottom: 20px; }
  .service-strip-inner { justify-content: center; }
  .service-strip-inner span:nth-of-type(n+3), .service-strip-inner i:nth-of-type(n+2) { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .g2v2-inner { grid-template-columns: 300px 1fr; gap: 6%; }
  .why-grid { grid-template-columns: 1fr; gap: 55px; }
  .why-copy { position: static; }
  .locations-grid, .posts-grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 30px); }
  body { font-size: 15px; }
  .brand img, .brand .custom-logo { width: 50px; height: 50px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .hero-inner { padding-top: 55px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions, .g2v2-actions, .contact-cta-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof li { min-width: 0; padding-inline: 12px; }
  .hero-proof li:first-child { padding-left: 0; }
  .hero-proof strong { font-size: 18px; }
  .hero-proof span { font-size: 8px; }
  .hero-visual { width: calc(100% + 30px); min-height: 315px; margin: 0 0 0 -15px; }
  .hero-status { right: 15px; bottom: 15px; width: 250px; }
  .service-strip-inner { min-height: 50px; font-size: 8px; letter-spacing: .08em; }
  .section { padding-block: 75px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .why-copy h2 { font-size: 38px; }
  .service-card { min-height: 0; grid-template-columns: 1fr; }
  .service-image { padding: 50px 18px 0; }
  .service-image img { height: 180px; }
  .service-content { padding: 24px 25px 28px; }
  .service-icon-large { padding: 65px 20px 5px; }
  .g2v2-section { padding-block: 75px; }
  .g2v2-inner { grid-template-columns: 1fr; gap: 45px; }
  .g2v2-badge { width: 240px; margin-inline: auto; }
  .g2v2-copy h2 { font-size: 43px; }
  .why-item { grid-template-columns: 42px 1fr; gap: 17px; padding: 25px 0; }
  .locations-grid, .posts-grid, .archive-grid { grid-template-columns: 1fr; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .contact-cta { padding-block: 70px; }
  .contact-cta h2 { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .mobile-call { position: fixed; z-index: 90; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 17px; color: #fff; background: var(--red); border-radius: 99px; box-shadow: 0 12px 35px rgba(0,0,0,.3); font-size: 12px; font-weight: 800; text-transform: uppercase; }
  .mobile-call svg { width: 17px; }
  .page-hero { padding-block: 70px 58px; }
  .page-hero h1 { font-size: 45px; }
  .entry-content { font-size: 16px; }
  .entry-content h2 { font-size: 33px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .article-featured { width: calc(100% - 30px); }
}
