:root {
    --dudley-black: #000;
    --dudley-panel: #171717;
    --dudley-panel-soft: #202020;
    --dudley-orange: #f15a24;
    --dudley-orange-dark: #c63d0b;
    --dudley-white: #fff;
    --dudley-muted: #b8b8b8;
    --dudley-line: rgba(241, 90, 36, .72);
    --dudley-radius-lg: 40px;
    --dudley-radius-md: 20px;
    --dudley-radius-sm: 10px;
    --dudley-shadow: 0 22px 70px rgba(0, 0, 0, .42);
    /* Conthrax/Skyer require client-supplied commercial webfont licences. */
    --font-display: "Arial Black", "Segoe UI Black", "Segoe UI", sans-serif;
    --font-technical: "Arial Narrow", "Segoe UI", sans-serif;
    --font-body: Inter, "Segoe UI", Arial, sans-serif;
    --header-contact-height: 76px;
    --focus-ring: 0 0 0 3px var(--dudley-black), 0 0 0 6px var(--dudley-orange);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body { min-width: 320px; margin: 0; overflow-x: clip; color: var(--dudley-white); background: var(--dudley-black); font: 400 16px/1.55 var(--font-body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
img, svg, video, iframe { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: calc(100% - 48px); max-width: 1200px; padding-inline: 0; }
/* Bootstrap helpers used above the fold while the complete framework is preloaded. */
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
@media (min-width: 1200px) { .gap-xl-4 { gap: 1.5rem !important; } }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 2000; top: 12px; left: 16px; padding: 12px 18px; color: var(--dudley-black); background: var(--dudley-white); border-radius: var(--dudley-radius-sm); transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: none; }
:where(a, button, input, textarea, select, summary):focus-visible { outline: 3px solid var(--dudley-orange); outline-offset: 4px; box-shadow: 0 0 0 2px var(--dudley-black); }
::selection { color: var(--dudley-black); background: var(--dudley-orange); }

h1, h2, h3, h4 { margin-top: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.12; letter-spacing: .015em; }
h1, h2, h3 { text-transform: uppercase; }
p { margin-top: 0; }
.eyebrow { display: inline-block; margin-bottom: 14px; color: var(--dudley-orange); font-family: var(--font-technical); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section { position: relative; padding-block: 96px; }
.section-compact { padding-block: 52px; }
.section-heading { margin-bottom: 38px; }
.section-heading h2 { margin: 0; color: var(--dudley-white); font-size: clamp(1.75rem, 3vw, 2.15rem); }
.section-heading p { max-width: 680px; margin: 14px 0 0; color: var(--dudley-muted); }
.section-heading-center { max-width: 760px; margin-inline: auto; text-align: center; }

/* Header and accessible menu */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; color: var(--dudley-white); }
.site-contact-bar { height: var(--header-contact-height); border-bottom: 1px solid var(--dudley-orange); }
.site-contact-bar .container { height: 100%; }
.header-contact { display: inline-flex; min-height: 44px; align-items: center; gap: 5px; color: var(--dudley-white); font-family: var(--font-technical); font-size: .75rem; letter-spacing: .01em; transition: color .2s ease; }
.header-contact img { flex: 0 0 30px; width: 30px; height: 30px; }
.header-contact:hover { color: var(--dudley-orange); }
.header-main { display: flex; min-height: 152px; align-items: flex-start; justify-content: space-between; gap: 30px; padding-top: 40px; }
.brand { position: relative; z-index: 1; display: block; width: min(386px, 50vw); flex-shrink: 0; overflow: visible; }
.brand img { display: block; width: 100%; height: auto; max-height: none; aspect-ratio: 386 / 109; object-fit: contain; object-position: left center; }
.nav-toggle { display: grid; flex: 0 0 48px; width: 48px; height: 48px; padding: 0; place-items: center; color: inherit; background: transparent; border: 0; border-radius: 8px; transition: transform .2s ease, background .2s ease; }
.nav-toggle:hover { background: rgba(255, 255, 255, .08); transform: translateY(-2px); }
.nav-toggle img { width: 48px; height: 48px; }
.site-header.is-scrolled { position: fixed; background: rgba(0, 0, 0, .94); box-shadow: 0 12px 36px rgba(0, 0, 0, .35); backdrop-filter: blur(12px); animation: header-in .28s ease both; }
.site-header.is-scrolled .site-contact-bar { display: none; }
.site-header.is-scrolled .header-main { min-height: 84px; align-items: center; padding-top: 0; }
.site-header.is-scrolled .brand { width: 210px; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: none; } }
.menu-panel { position: fixed; z-index: 2010; top: 0; right: 0; bottom: 0; width: min(460px, 100%); height: 100vh; height: 100dvh; max-height: 100dvh; padding: 32px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; color: var(--dudley-white); background: var(--dudley-panel); border-left: 2px solid var(--dudley-orange); box-shadow: -22px 0 80px rgba(0, 0, 0, .56); transform: translateX(100%); }
.menu-panel.is-open { transform: none; }
.menu-panel-inner { min-height: 100%; display: flex; flex-direction: column; justify-content: center; }
.menu-title { color: var(--dudley-orange); font: 800 1.15rem/1 var(--font-display); text-transform: uppercase; }
.menu-close { min-height: 44px; padding: 8px 14px; color: var(--dudley-white); background: transparent; border: 1px solid rgba(255, 255, 255, .48); border-radius: var(--dudley-radius-sm); }
.menu-close:hover { color: var(--dudley-black); background: var(--dudley-white); }
.menu-list { margin: 0; padding: 0; list-style: none; }
.menu-list li { border-bottom: 1px solid rgba(255, 255, 255, .13); }
.menu-list a { display: flex; min-height: 58px; align-items: center; justify-content: space-between; font: 800 clamp(1.25rem, 3vw, 1.7rem)/1.2 var(--font-display); text-transform: uppercase; transition: color .2s ease, padding-left .2s ease; }
.menu-list a::after { content: "→"; color: var(--dudley-orange); font-family: var(--font-body); }
.menu-list a:hover { padding-left: 8px; color: var(--dudley-orange); }
.menu-backdrop { position: fixed; z-index: 2005; inset: 0; height: 100vh; height: 100dvh; background: rgba(0, 0, 0, .7); opacity: 0; }
.menu-backdrop.is-open { opacity: 1; }
body.menu-open { overflow: hidden; }

/* Feedback, buttons and shared surfaces */
.messages { position: fixed; z-index: 1100; top: 96px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.message { width: min(620px, 100%); margin: 8px auto; padding: 15px 18px; color: var(--dudley-white); background: var(--dudley-panel); border: 1px solid var(--dudley-orange); border-radius: var(--dudley-radius-sm); box-shadow: var(--dudley-shadow); pointer-events: auto; }
.message-error { color: #fff; border-color: #ff6b6b; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 12px 18px; font-size: .9rem; font-weight: 700; line-height: 1.15; border: 1px solid transparent; border-radius: var(--dudley-radius-sm); cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button img, .text-link img { flex: 0 0 18px; width: 18px; height: 14px; transition: transform .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:hover img, .text-link:hover img { transform: translateX(3px); }
.button-primary { color: #111; background: var(--dudley-orange); box-shadow: 0 12px 30px rgba(241, 90, 36, .16); }
.button-primary:hover { color: #000; background: #ff7040; }
.button-outline { color: var(--dudley-white); background: rgba(0, 0, 0, .25); border-color: var(--dudley-white); }
.button-outline:hover { color: var(--dudley-black); background: var(--dudley-white); }
.button-light { color: var(--dudley-orange-dark); background: var(--dudley-white); }
.button-light:hover { color: var(--dudley-black); background: #f2f2f2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; color: var(--dudley-orange); font-family: var(--font-display); font-size: .78rem; text-transform: uppercase; }
.cta-strip { display: flex; min-height: 111px; align-items: center; justify-content: space-between; gap: 34px; padding: 25px 30px; color: var(--dudley-black); background: var(--dudley-orange); border-radius: var(--dudley-radius-md); }
.cta-strip h2 { margin: 0; color: var(--dudley-black); font-size: clamp(1.35rem, 2.5vw, 1.65rem); text-transform: none; }
.cta-strip p { margin: 4px 0 0; color: #151515; }
.empty-state { width: 100%; padding: 54px 28px; color: var(--dudley-muted); text-align: center; background: var(--dudley-panel); border: 1px solid var(--dudley-line); border-radius: var(--dudley-radius-lg); }
.empty-state h2 { color: var(--dudley-white); font-size: 1.25rem; }
.empty-state-small { padding: 30px; border-radius: var(--dudley-radius-md); }

/* Home */
.hero-carousel { position: relative; height: 990px; overflow: hidden; background: var(--dudley-black); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .55s ease, visibility .55s step-end; }
.hero-slide.is-active { visibility: visible; opacity: 1; transition: opacity .55s ease, visibility 0s; }
.hero-media { position: absolute; top: 209px; left: 50%; width: min(1316px, calc(100% - 48px)); height: 708px; object-fit: cover; border-radius: var(--dudley-radius-lg); transform: translateX(-50%); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .88) 4%, rgba(0, 0, 0, .5) 42%, rgba(0, 0, 0, .05) 76%), linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 36%); }
.hero-copy { position: relative; z-index: 2; padding-top: 270px; }
.hero-copy h1 { width: min(500px, 100%); margin: 0; color: var(--dudley-white); font-size: clamp(2rem, 3.15vw, 2.65rem); }
.hero-copy h1 span { display: block; color: var(--dudley-orange); }
.hero-copy > p { width: min(430px, 100%); margin: 16px 0 0; color: var(--dudley-white); font-size: 1rem; }
.hero-control { position: absolute; z-index: 5; top: 50%; width: 54px; height: 70px; padding: 7px; color: var(--dudley-white); background: rgba(0, 0, 0, .26); border: 0; border-radius: var(--dudley-radius-sm); transform: translateY(-50%); transition: background .2s ease, transform .2s ease; }
.hero-control:hover { background: rgba(0, 0, 0, .7); transform: translateY(-50%) scale(1.04); }
.hero-control-prev { left: max(16px, calc((100vw - 1440px) / 2 + 62px)); }
.hero-control-next { right: max(16px, calc((100vw - 1440px) / 2 + 42px)); }
.hero-pause { position: absolute; z-index: 5; right: max(24px, calc((100vw - 1200px) / 2)); bottom: 38px; min-height: 44px; padding: 8px 13px; color: var(--dudley-white); background: rgba(0, 0, 0, .74); border: 1px solid rgba(255, 255, 255, .56); border-radius: var(--dudley-radius-sm); font-size: .78rem; }
.hero-pause:hover { color: var(--dudley-black); background: var(--dudley-white); }
.hero-dots { position: absolute; z-index: 5; bottom: 50px; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); }
.hero-dot { width: 32px; height: 8px; padding: 0; background: rgba(255, 255, 255, .48); border: 0; border-radius: 99px; transition: width .2s ease, background .2s ease; }
.hero-dot.is-active { width: 54px; background: var(--dudley-orange); }
.home-impact { padding: 80px 0 100px; background: var(--dudley-black); }
.impact-grid { display: grid; grid-template-columns: 3fr 2fr; }
.pillars-panel { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 111px; align-items: stretch; overflow: hidden; background: var(--dudley-panel); border-radius: var(--dudley-radius-md) 0 0 var(--dudley-radius-md); }
.pillar-item { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 0; padding: 20px 10px; }
.pillar-item:not(:last-child) { border-right: 1px solid var(--dudley-orange); }
.pillar-icon { width: 64px; height: 64px; padding: 2px; }
.pillar-icon img { width: 100%; height: 100%; object-fit: contain; }
.pillar-item h2 { margin: 0; color: var(--dudley-orange); font-size: .82rem; white-space: nowrap; }
.pillar-item p { margin: 3px 0 0; color: var(--dudley-white); font-size: .65rem; line-height: 1.35; }
.indicators-panel { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 111px; align-items: center; padding-inline: 22px; color: var(--dudley-black); background: var(--dudley-orange); border-radius: 0 var(--dudley-radius-md) var(--dudley-radius-md) 0; }
.indicator-item { padding: 8px; text-align: center; }
.indicator-item strong { display: block; font: 800 clamp(1.6rem, 3vw, 2rem)/1 var(--font-display); white-space: nowrap; }
.indicator-item span { display: block; margin-top: 7px; font-size: .68rem; font-style: italic; line-height: 1.15; text-transform: uppercase; }
.video-section { padding-top: 22px; padding-bottom: 92px; }
.video-frame { position: relative; width: min(904px, 100%); aspect-ratio: 904 / 509; margin-inline: auto; overflow: hidden; background: var(--dudley-panel); border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); box-shadow: var(--dudley-shadow); }
.video-frame video, .video-frame iframe, .video-frame > img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-pending { position: absolute; inset: auto 20px 20px; padding: 10px 14px; color: var(--dudley-white); background: rgba(0, 0, 0, .8); border-radius: var(--dudley-radius-sm); text-align: center; }
.newsletter-section { padding: 30px 0 72px; }
.newsletter-box { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; padding: 28px 32px; background: var(--dudley-panel); border: 1px solid var(--dudley-line); border-radius: var(--dudley-radius-md); }
.newsletter-box h2 { margin: 0 0 6px; font-size: 1.35rem; }
.newsletter-box p { margin: 0; color: var(--dudley-muted); }
.newsletter-form > label:first-of-type { display: block; margin-bottom: 6px; font-weight: 700; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input { min-width: 0; flex: 1; min-height: 48px; padding: 11px 14px; color: var(--dudley-black); background: var(--dudley-white); border: 2px solid transparent; border-radius: var(--dudley-radius-sm); }
.newsletter-row button, .cookie-notice button { min-height: 48px; padding: 10px 16px; color: var(--dudley-black); background: var(--dudley-orange); border: 0; border-radius: var(--dudley-radius-sm); font-weight: 700; }
.checkbox-row { display: flex; align-items: flex-start; gap: 9px; margin-top: 10px; color: var(--dudley-muted); font-size: .76rem; }
.checkbox-row input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; accent-color: var(--dudley-orange); }

/* Shared Figma heroes */
.page-hero, .contact-hero, .detail-hero, .generic-hero { position: relative; isolation: isolate; overflow: hidden; background-color: var(--dudley-black); background-image: var(--page-hero-image); background-position: center; background-size: cover; }
.page-hero { min-height: 963px; }
.page-hero::before, .detail-hero::before, .generic-hero::before { content: ""; position: absolute; z-index: -1; top: 76px; left: -829px; width: 915px; height: 915px; background: url("../img/figma/pattern-grid.png") center / contain no-repeat; opacity: .92; pointer-events: none; }
.page-hero-shade, .detail-hero-shade, .generic-hero-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .54) 40%, rgba(0, 0, 0, .08) 74%), linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 34%); }
.page-hero-copy { position: relative; z-index: 2; padding-top: 270px; }
.page-hero-copy h1 { width: min(470px, 100%); margin: 0; color: var(--dudley-white); font-size: clamp(2rem, 3.2vw, 2.65rem); }
.page-hero-copy h1 span { display: block; color: var(--dudley-orange); }
.page-hero-copy > p { width: min(440px, 100%); margin: 18px 0 0; color: var(--dudley-white); font-size: 1rem; }

/* About */
.about-hero { background-position: 62% center; }
.about-story { padding-top: 0; }
.about-story .container { display: grid; gap: 44px; }
.about-copy { padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.about-copy h2 { color: var(--dudley-orange); font-size: 1.9rem; }
.values-section { padding-top: 28px; }
.value-card { height: 100%; min-height: 333px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px 36px; text-align: center; border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.value-card:hover { background: var(--dudley-panel); box-shadow: 0 18px 45px rgba(241, 90, 36, .12); transform: translateY(-5px); }
.value-icon { width: 144px; height: 136px; margin-bottom: 38px; }
.value-icon img { width: 100%; height: 100%; object-fit: contain; }
.value-card h3 { width: 100%; margin: 0 0 17px; color: var(--dudley-orange); font-size: 1.16rem; }
.value-card p { margin: 0; color: var(--dudley-white); font-family: var(--font-technical); font-size: .96rem; line-height: 1.45; text-transform: uppercase; }
.trajectory-heading { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.trajectory-heading h2 { font-size: clamp(1.8rem, 3.5vw, 2.25rem); }
.trajectory-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 86px 0 0; list-style: none; }
.trajectory-list::before { content: ""; position: absolute; top: 34px; right: 8%; left: 8%; height: 2px; background: var(--dudley-orange); }
.trajectory-item { position: relative; }
.trajectory-year { position: absolute; top: -86px; left: 50%; display: grid; width: 70px; height: 70px; place-items: center; color: var(--dudley-white); background: var(--dudley-black); border: 2px solid var(--dudley-orange); border-radius: 50%; font: 800 .82rem/1 var(--font-display); transform: translateX(-50%); }
.trajectory-card { min-height: 228px; height: 100%; padding: 28px 24px 22px; text-align: center; border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); }
.trajectory-icon { width: 64px; height: 64px; margin: -4px auto 12px; }
.trajectory-icon img { width: 100%; height: 100%; object-fit: contain; }
.trajectory-card h3 { margin: 0 0 14px; padding-bottom: 10px; color: var(--dudley-white); border-bottom: 1px solid var(--dudley-orange); font-size: 1rem; }
.trajectory-card p { margin: 0; font-size: .83rem; line-height: 1.42; }
.quote-section { padding-top: 50px; }
.quote-section blockquote { display: flex; max-width: 720px; align-items: flex-start; gap: 12px; margin: 0 auto; text-align: center; }
.quote-section img { flex: 0 0 68px; width: 68px; height: 59px; }
.quote-section p { margin: 8px 0 0; font-size: 1rem; }
.quote-section footer { color: var(--dudley-orange); }

/* Services and solutions */
.listing-section { padding-top: 0; }
.offer-card { min-height: 219px; height: 100%; display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 10px; padding: 20px; overflow: hidden; border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.offer-card:hover { background: var(--dudley-panel); box-shadow: 0 18px 50px rgba(241, 90, 36, .11); transform: translateY(-4px); }
.offer-icon { display: grid; width: 160px; height: 175px; place-items: center; }
.offer-icon img { width: 100%; height: 100%; object-fit: contain; }
.offer-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.offer-copy h3 { margin: 0 0 12px; color: var(--dudley-white); font-size: clamp(1.1rem, 2vw, 1.4rem); }
.offer-copy h3 a::after { content: ""; position: absolute; }
.offer-copy p { margin: 0 0 6px; color: var(--dudley-white); font-size: .9rem; line-height: 1.45; }
.solution-cta-image { position: relative; min-height: 420px; display: flex; align-items: flex-start; padding-top: 112px; background: linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .82)), var(--cta-image) center / cover no-repeat; }

/* Cases */
.cases-hero { min-height: 790px; }
.case-indicators { position: relative; z-index: 4; margin-top: -115px; padding-bottom: 72px; }
.case-indicators .impact-grid { grid-template-columns: 3fr 2fr; }
.case-indicators .pillars-panel { border-radius: var(--dudley-radius-md) 0 0 var(--dudley-radius-md); }
.case-indicators .indicators-panel { border-radius: 0 var(--dudley-radius-md) var(--dudley-radius-md) 0; }
.cases-listing { padding-top: 0; }
.case-card, .article-card { position: relative; height: 100%; overflow: hidden; background: var(--dudley-black); border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); transition: transform .25s ease, box-shadow .25s ease; }
.case-card:hover, .article-card:hover { box-shadow: 0 22px 50px rgba(241, 90, 36, .13); transform: translateY(-5px); }
.case-media, .article-media, .featured-media { position: relative; overflow: hidden; }
.case-media { height: 247px; }
.case-media > img, .article-media > img, .featured-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.case-card:hover .case-media > img, .article-card:hover .article-media > img, .featured-article:hover .featured-media > img { transform: scale(1.025); }
.tag { position: absolute; top: 30px; left: 28px; padding: 8px 10px; color: var(--dudley-black); background: var(--dudley-orange); border-radius: var(--dudley-radius-sm); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.tag-inline { position: static; display: inline-flex; margin: 18px 0 0; }
.case-metrics { position: absolute; right: 18px; bottom: 16px; left: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px; background: rgba(0, 0, 0, .78); border-radius: var(--dudley-radius-md); backdrop-filter: blur(6px); }
.case-metric { min-width: 0; display: flex; align-items: center; gap: 6px; }
.case-metric > img { flex: 0 0 32px; width: 32px; height: 32px; }
.case-metric span { min-width: 0; }
.case-metric strong, .case-metric small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.case-metric strong { font-size: .78rem; }
.case-metric small { font-size: .56rem; }
.case-copy, .article-copy { padding: 20px 22px 26px; }
.case-copy h3, .article-copy h3 { margin: 0 0 10px; font-size: 1rem; }
.case-copy p, .article-copy p { margin: 0; color: var(--dudley-white); font-size: .86rem; }
.stretched-card-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 10px; color: var(--dudley-orange); font-weight: 700; }

/* Contact */
.contact-hero { min-height: 1068px; background-image: var(--contact-hero-image); background-position: center; background-size: cover; }
.contact-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 74px; padding-top: 274px; }
.contact-intro h1 { max-width: 420px; margin: 0; font-size: clamp(2rem, 3.3vw, 2.65rem); }
.contact-intro h1 span { display: block; color: var(--dudley-orange); }
.contact-intro p { max-width: 440px; margin: 18px 0 0; }
.contact-form { padding: 45px 48px 38px; background: rgba(0, 0, 0, .84); border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); box-shadow: var(--dudley-shadow); }
.form-field { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--dudley-white); font-size: .95rem; }
.form-control { width: 100%; min-height: 58px; padding: 12px 15px; color: var(--dudley-black); background: var(--dudley-white); border: 2px solid transparent; border-radius: var(--dudley-radius-sm); }
textarea.form-control { min-height: 150px; resize: vertical; }
.form-control:focus { color: var(--dudley-black); background: var(--dudley-white); border-color: var(--dudley-orange); box-shadow: 0 0 0 3px rgba(241, 90, 36, .25); }
.has-error .form-control, .has-error input[type="checkbox"] { border-color: #ff8787; }
.field-errors, .form-errors { margin-top: 7px; color: #ffb0b0; font-size: .84rem; }
.field-errors span { display: block; }
.form-consent { margin: 2px 0 18px; }
.form-consent label { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; }
.form-consent input { width: 19px; height: 19px; flex: 0 0 19px; accent-color: var(--dudley-orange); }
.contact-submit { width: 100%; min-height: 60px; color: var(--dudley-black); background: var(--dudley-orange); border: 0; border-radius: var(--dudley-radius-sm); font-size: 1.1rem; font-weight: 700; transition: background .2s ease, transform .2s ease; }
.contact-submit:hover { background: #ff7040; transform: translateY(-2px); }
.contact-details { padding-top: 58px; }
.contact-card, .location-card { height: 100%; padding: 28px; border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); }
.contact-card { display: grid; gap: 30px; }
.contact-card-row { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 20px; }
.contact-card-row img { width: 92px; height: 92px; object-fit: contain; }
.contact-card h3, .location-card h3 { margin: 0 0 8px; color: var(--dudley-orange); font-size: 1.25rem; }
.contact-card p, .location-card p { margin: 0; }
.contact-card a { text-decoration: underline; text-underline-offset: 4px; }
.location-title { display: flex; align-items: center; gap: 12px; }
.location-title h3 { margin: 0; }
.location-card > p { margin: 28px 0; font-size: 1.05rem; }
.map-section { width: 100%; height: 520px; overflow: hidden; background: var(--dudley-panel); border-block: 2px solid var(--dudley-orange); }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* Blog */
.blog-hero { min-height: 897px; background-position: center; }
.featured-article-section { z-index: 4; margin-top: -164px; padding-top: 0; }
.featured-article { display: grid; grid-template-columns: 1fr 1.12fr; min-height: 366px; overflow: hidden; background: rgba(0, 0, 0, .96); border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); }
.featured-media { min-height: 362px; }
.featured-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 36px 48px; }
.featured-copy h3 { margin: 0 0 16px; font-size: 1.3rem; }
.featured-copy p { display: -webkit-box; margin: 0 0 24px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 7; color: var(--dudley-white); font-size: .9rem; }
.blog-listing { padding-top: 0; }
.listing-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.listing-heading .section-heading { margin: 0; }
.category-filter { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.category-filter a { min-height: 40px; padding: 9px 13px; color: var(--dudley-white); border: 1px solid rgba(255, 255, 255, .42); border-radius: 99px; font-size: .78rem; }
.category-filter a:hover, .category-filter a[aria-current="page"] { color: var(--dudley-black); background: var(--dudley-orange); border-color: var(--dudley-orange); }
.article-media { height: 245px; }
.article-copy time { display: block; margin-bottom: 8px; color: var(--dudley-orange); font-size: .76rem; }
.materials-section { padding-top: 18px; }
.material-card { height: 100%; display: grid; grid-template-columns: 58px 1fr; gap: 14px; padding: 20px; border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-md); transition: transform .2s ease, background .2s ease; }
.material-card:hover { background: var(--dudley-panel); transform: translateY(-3px); }
.material-card > img { width: 56px; height: 56px; object-fit: contain; }
.material-card h3 { margin: 0 0 8px; font-size: .9rem; }
.material-card p { margin: 0 0 8px; color: var(--dudley-muted); font-size: .78rem; }
.material-card a { display: inline-flex; min-height: 36px; align-items: center; color: var(--dudley-orange); font-size: .78rem; font-weight: 700; text-transform: uppercase; }

/* Details and editorial pages */
.detail-hero { min-height: 720px; background-image: var(--detail-image); background-position: center; background-size: cover; }
.detail-hero-copy { position: relative; z-index: 2; padding-top: 265px; }
.back-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--dudley-orange); font-weight: 700; }
.detail-hero h1, .article-detail-heading h1 { max-width: 900px; margin: 14px 0; font-size: clamp(2.1rem, 4.6vw, 4rem); }
.detail-hero-copy > p { max-width: 650px; font-size: 1.1rem; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr); align-items: start; gap: 80px; }
.detail-aside { position: sticky; top: 120px; padding: 28px; background: var(--dudley-panel); border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-md); }
.detail-aside h2 { color: var(--dudley-orange); font-size: 1.2rem; }
.detail-aside p { color: var(--dudley-muted); }
.prose { color: var(--dudley-white); font-size: 1.05rem; line-height: 1.75; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 1.8em 0 .65em; color: var(--dudley-orange); font-size: 1.7rem; }
.prose h3 { margin: 1.6em 0 .6em; font-size: 1.25rem; }
.prose a { color: #ff8258; text-decoration: underline; text-underline-offset: 3px; }
.prose img { width: auto; height: auto; margin-block: 28px; border-radius: var(--dudley-radius-md); }
.prose table { width: 100%; margin-block: 28px; border-collapse: collapse; }
.prose th, .prose td { padding: 10px; border: 1px solid rgba(255, 255, 255, .28); }
.related-section { background: var(--dudley-panel); }
.simple-card { display: block; height: 100%; min-height: 210px; padding: 28px; background: var(--dudley-black); border: 1px solid var(--dudley-orange); border-radius: var(--dudley-radius-md); transition: transform .2s ease, border-color .2s ease; }
.simple-card:hover { border-color: var(--dudley-white); transform: translateY(-4px); }
.simple-card h3 { font-size: 1rem; }
.simple-card p { color: var(--dudley-muted); }
.simple-card span { color: var(--dudley-orange); font-weight: 700; }
.detail-metrics { position: relative; z-index: 4; margin-top: -54px; }
.detail-metric { display: flex; min-height: 108px; flex-direction: column; align-items: center; justify-content: center; padding: 16px; color: var(--dudley-black); background: var(--dudley-orange); border-radius: var(--dudley-radius-md); text-align: center; }
.detail-metric strong { font: 800 1.7rem/1 var(--font-display); }
.detail-metric span { margin-top: 8px; font-size: .76rem; text-transform: uppercase; }
.case-detail-sections { display: grid; gap: 62px; }
.detail-rich .eyebrow { margin-bottom: 18px; }
.article-detail-hero { padding: 230px 0 0; }
.article-detail-heading { text-align: center; }
.article-detail-heading .back-link { justify-content: center; }
.article-detail-heading h1 { margin-inline: auto; }
.article-detail-heading > p { max-width: 760px; margin: 18px auto; color: var(--dudley-muted); }
.article-meta { display: flex; justify-content: center; gap: 18px; color: var(--dudley-muted); }
.article-cover { max-width: 1200px; margin-top: 48px; overflow: hidden; border: 2px solid var(--dudley-orange); border-radius: var(--dudley-radius-lg); }
.article-cover img { width: 100%; max-height: 680px; object-fit: cover; }
.article-prose { max-width: 840px; }
.generic-hero { min-height: 580px; background-image: var(--generic-image); background-position: center; background-size: cover; }
.generic-hero .container { position: relative; z-index: 2; padding-top: 260px; }
.generic-hero h1 { max-width: 900px; font-size: clamp(2.2rem, 5vw, 4rem); }
.generic-hero p { max-width: 650px; color: var(--dudley-muted); }
.generic-hero-compact { min-height: 490px; }
.faq-list { max-width: 900px; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, .25); }
.faq-item summary { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; list-style: none; cursor: pointer; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item small { display: block; margin-bottom: 5px; color: var(--dudley-orange); font: 700 .7rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; }
.faq-item summary > span:last-child { color: var(--dudley-orange); transition: transform .2s ease; }
.faq-item[open] summary > span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 50px 28px 0; color: var(--dudley-muted); }
.error-page { min-height: 76vh; display: grid; place-items: center; padding: 230px 0 100px; text-align: center; }
.error-code { display: block; color: var(--dudley-orange); font: 800 clamp(6rem, 18vw, 13rem)/.8 var(--font-display); opacity: .34; }
.error-page h1 { margin: 24px 0 12px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.error-page p { color: var(--dudley-muted); }

/* Footer */
.site-footer { position: relative; min-height: 390px; overflow: hidden; padding: 54px 0 26px; color: var(--dudley-white); background: var(--dudley-black); border-top: 1px solid var(--dudley-orange); }
.footer-shape { position: absolute; bottom: -220px; left: -24px; width: 531px; height: 531px; pointer-events: none; }
.footer-main { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr .72fr 1fr 1.25fr; gap: 38px; padding-bottom: 46px; }
.footer-intro { min-width: 0; padding-right: 48px; }
.footer-brand { display: block; width: min(240px, 100%); }
.footer-brand img { width: 100%; height: auto; }
.footer-intro p { max-width: 350px; margin: 20px 0 0; color: var(--dudley-muted); font-size: .83rem; }
.footer-column h2 { margin: 0 0 13px; color: var(--dudley-orange); font-size: .85rem; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { min-height: 24px; display: flex; align-items: center; margin: 4px 0; font-family: var(--font-technical); font-size: .8rem; line-height: 1.35; text-transform: uppercase; }
.footer-column a { display: inline-flex; min-height: 24px; align-items: center; transition: color .2s ease; }
.footer-column a:hover { color: var(--dudley-orange); }
.footer-contact li { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 8px; text-transform: none; }
.footer-contact img { width: 18px; height: 18px; object-fit: contain; }
.footer-newsletter { position: relative; z-index: 2; margin-bottom: 30px; }
.footer-newsletter details { max-width: 680px; margin-left: auto; padding: 0 18px; background: rgba(23, 23, 23, .78); border: 1px solid rgba(241, 90, 36, .68); border-radius: var(--dudley-radius-sm); }
.footer-newsletter summary { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--dudley-white); font: 800 .84rem/1.2 var(--font-display); text-transform: uppercase; cursor: pointer; list-style: none; }
.footer-newsletter summary::-webkit-details-marker { display: none; }
.footer-newsletter summary::after { content: "+"; color: var(--dudley-orange); font: 500 1.7rem/1 var(--font-body); transition: transform .2s ease; }
.footer-newsletter details[open] summary::after { transform: rotate(45deg); }
.footer-newsletter-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding: 0 0 18px; }
.footer-newsletter-content > p { margin: 5px 0 0; color: var(--dudley-muted); font-size: .82rem; }
.footer-newsletter .newsletter-form > label:first-of-type { display: block; margin-bottom: 6px; font-size: .78rem; font-weight: 700; }
.footer-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(241, 90, 36, .72); color: var(--dudley-muted); font-size: .72rem; }
.footer-legals { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.footer-bottom a:hover { color: var(--dudley-white); }
.social-links { display: flex; flex: 0 0 auto; gap: 7px; }
.social-links a { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 6px; transition: background .2s ease, transform .2s ease; }
.social-links a:hover { background: rgba(241, 90, 36, .2); transform: translateY(-2px); }
.social-links img { width: 20px; height: 20px; object-fit: contain; }
.cookie-notice { position: fixed; z-index: 1200; right: 18px; bottom: 18px; width: min(400px, calc(100% - 36px)); padding: 22px; color: var(--dudley-white); background: var(--dudley-panel); border: 1px solid var(--dudley-orange); border-radius: var(--dudley-radius-md); box-shadow: var(--dudley-shadow); }
.cookie-notice h2 { margin: 0 0 8px; color: var(--dudley-orange); font-size: 1rem; }
.cookie-notice p { margin: 0 0 14px; color: var(--dudley-muted); font-size: .85rem; }

/* Modern motion is progressive and never required to understand content. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
    html.reveal-ready .reveal { transition: opacity .65s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.2, .72, .25, 1) var(--reveal-delay, 0ms); will-change: opacity, transform; }
    html.reveal-ready .reveal:not(.is-visible) { opacity: 0; transform: translate3d(0, 28px, 0); }
    html.reveal-ready .reveal-left:not(.is-visible) { transform: translate3d(-34px, 12px, 0); }
    html.reveal-ready .reveal-right:not(.is-visible) { transform: translate3d(34px, 12px, 0); }
    html.reveal-ready .reveal-scale:not(.is-visible) { transform: translate3d(0, 18px, 0) scale(.975); }
    html.reveal-ready .reveal.is-visible { will-change: auto; }
    .hero-slide.is-active .hero-media { animation: hero-breathe 9s ease-out both; }
    @keyframes hero-breathe { from { transform: translateX(-50%) scale(1.012); } to { transform: translateX(-50%) scale(1); } }
}

/* Desktop and tablet scaling */
@media (min-width: 1600px) {
    .hero-media { width: min(1440px, calc(100% - 96px)); }
    .page-hero-copy, .contact-hero-grid { max-width: 1200px; }
}
@media (max-width: 1199.98px) {
    .container { width: calc(100% - 56px); }
    .brand { width: 330px; }
    .pillar-item { grid-template-columns: 52px 1fr; }
    .pillar-icon { width: 52px; height: 52px; }
    .pillar-item h2 { font-size: .68rem; }
    .pillar-item p { font-size: .58rem; }
    .offer-card { grid-template-columns: 155px minmax(0, 1fr); }
    .offer-icon { width: 145px; }
    .contact-hero-grid { gap: 44px; }
    .contact-form { padding-inline: 34px; }
    .footer-main { grid-template-columns: 1.15fr .7fr .9fr 1.2fr; gap: 26px; }
    .footer-intro { padding-right: 18px; }
}
@media (max-width: 991.98px) {
    :root { --header-contact-height: 65px; }
    .container { width: calc(100% - 40px); }
    .header-email { display: none; }
    .header-main { min-height: 122px; padding-top: 26px; }
    .brand { width: min(280px, calc(100% - 76px)); }
    .hero-carousel { height: 850px; }
    .hero-media { top: 176px; width: calc(100% - 32px); height: 620px; }
    .hero-copy { padding-top: 240px; }
    .hero-control-prev { left: 18px; }
    .hero-control-next { right: 18px; }
    .home-impact { padding-top: 54px; }
    .impact-grid { grid-template-columns: 1fr; gap: 0; }
    .case-indicators .impact-grid { grid-template-columns: 1fr; }
    .pillars-panel { border-radius: var(--dudley-radius-md) var(--dudley-radius-md) 0 0; }
    .indicators-panel { border-radius: 0 0 var(--dudley-radius-md) var(--dudley-radius-md); }
    .case-indicators .pillars-panel { border-radius: var(--dudley-radius-md) var(--dudley-radius-md) 0 0; }
    .case-indicators .indicators-panel { border-radius: 0 0 var(--dudley-radius-md) var(--dudley-radius-md); }
    .page-hero { min-height: 820px; }
    .page-hero-copy { padding-top: 235px; }
    .trajectory-list { grid-template-columns: repeat(2, 1fr); row-gap: 104px; padding-top: 86px; }
    .trajectory-list::before { display: none; }
    .contact-hero { min-height: auto; padding-bottom: 80px; }
    .contact-hero-grid { grid-template-columns: 1fr; gap: 38px; padding-top: 230px; }
    .contact-intro h1 { max-width: 650px; }
    .detail-layout { grid-template-columns: 1fr; gap: 44px; }
    .detail-aside { position: static; }
    .footer-main { grid-template-columns: repeat(3, 1fr); }
    .footer-intro { grid-column: 1 / -1; max-width: 520px; }
    .footer-newsletter details { max-width: none; }
    .footer-shape { opacity: .55; }
}
@media (max-width: 767.98px) {
    .container { width: calc(100% - 28px); }
    .section { padding-block: 72px; }
    .section-compact { padding-block: 38px; }
    .header-contact { font-size: .7rem; }
    .header-contact img { width: 24px; height: 24px; flex-basis: 24px; }
    .brand { width: min(235px, calc(100% - 70px)); }
    .nav-toggle, .nav-toggle img { width: 44px; height: 44px; }
    .menu-panel { padding: 24px 20px; }
    .hero-carousel { height: 790px; }
    .hero-media { top: 160px; width: calc(100% - 20px); height: 588px; border-radius: 26px; }
    .hero-shade { background: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .32)), linear-gradient(180deg, rgba(0, 0, 0, .64), transparent 34%); }
    .hero-copy { padding-top: 235px; }
    .hero-copy h1 { max-width: 88%; font-size: clamp(1.75rem, 8vw, 2.45rem); }
    .hero-copy > p { max-width: 82%; font-size: .9rem; }
    .hero-control { top: auto; bottom: 78px; width: 44px; height: 54px; transform: none; }
    .hero-control:hover { transform: scale(1.04); }
    .hero-control-prev { left: 18px; }
    .hero-control-next { right: 18px; }
    .hero-pause { right: 50%; bottom: 24px; transform: translateX(50%); }
    .hero-dots { bottom: 94px; }
    .pillars-panel { grid-template-columns: 1fr; }
    .pillar-item { grid-template-columns: 64px 1fr; padding: 17px 20px; }
    .pillar-item:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--dudley-orange); }
    .pillar-icon { width: 58px; height: 58px; }
    .pillar-item h2 { font-size: .8rem; }
    .pillar-item p { font-size: .7rem; }
    .indicators-panel { padding: 14px 6px; }
    .indicator-item strong { font-size: 1.35rem; }
    .indicator-item span { font-size: .58rem; }
    .newsletter-box { grid-template-columns: 1fr; gap: 24px; }
    .page-hero { min-height: 740px; background-position: 62% center; }
    .page-hero-copy { padding-top: 220px; }
    .page-hero-copy h1 { font-size: clamp(1.8rem, 8vw, 2.45rem); }
    .value-card { min-height: 300px; }
    .trajectory-list { grid-template-columns: 1fr; row-gap: 106px; }
    .trajectory-card { min-height: 210px; }
    .offer-card { min-height: 0; grid-template-columns: 116px minmax(0, 1fr); border-radius: 28px; }
    .offer-icon { width: 106px; height: 148px; }
    .offer-copy h3 { font-size: 1rem; }
    .offer-copy p { font-size: .82rem; }
    .cta-strip { flex-direction: column; align-items: flex-start; }
    .cases-hero { min-height: 700px; }
    .case-indicators { margin-top: -74px; }
    .indicators-panel-wide { margin-inline: auto; }
    .contact-form { padding: 30px 24px; border-radius: 28px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-card-row { grid-template-columns: 70px 1fr; }
    .contact-card-row img { width: 70px; height: 70px; }
    .map-section { height: 430px; }
    .blog-hero { min-height: 760px; }
    .featured-article-section { margin-top: -90px; }
    .featured-article { grid-template-columns: 1fr; }
    .featured-media { min-height: 280px; }
    .featured-copy { padding: 28px; }
    .listing-heading { align-items: flex-start; flex-direction: column; }
    .category-filter { justify-content: flex-start; }
    .detail-hero { min-height: 650px; }
    .detail-hero-copy { padding-top: 225px; }
    .article-detail-hero { padding-top: 210px; }
    .article-meta { flex-direction: column; gap: 4px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-intro { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-legals { justify-content: flex-start; }
}
@media (max-width: 575.98px) {
    :root { --header-contact-height: 58px; }
    .site-contact-bar .container { justify-content: center !important; }
    .header-contact { min-height: 40px; }
    .header-main { min-height: 108px; padding-top: 22px; }
    .hero-carousel { height: 740px; }
    .hero-media { top: 142px; height: 560px; }
    .hero-copy { padding-top: 210px; }
    .hero-copy > p { max-width: 94%; }
    .hero-actions { gap: 10px; }
    .button { width: 100%; }
    .hero-copy .button, .page-hero-copy .button { width: auto; }
    .home-impact { padding: 42px 0 70px; }
    .indicators-panel { grid-template-columns: 1fr; gap: 4px; padding: 18px; }
    .indicator-item { display: grid; grid-template-columns: 104px 1fr; align-items: center; text-align: left; }
    .indicator-item span { margin-top: 0; }
    .video-frame { border-radius: 24px; }
    .newsletter-row { flex-direction: column; }
    .newsletter-row button { width: 100%; }
    .footer-newsletter-content { grid-template-columns: 1fr; }
    .page-hero { min-height: 700px; }
    .page-hero-copy { padding-top: 200px; }
    .page-hero-copy > p { font-size: .9rem; }
    .about-story { padding-top: 0; }
    .quote-section blockquote { align-items: center; flex-direction: column; }
    .offer-card { grid-template-columns: 1fr; padding: 24px; }
    .offer-icon { width: 120px; height: 120px; margin-inline: auto; }
    .offer-copy { align-items: center; text-align: center; }
    .case-media { height: 260px; }
    .case-metrics { gap: 4px; }
    .case-metric { flex-direction: column; text-align: center; }
    .case-metric > img { width: 28px; height: 28px; }
    .contact-hero-grid { padding-top: 205px; }
    .contact-form { padding: 26px 18px; }
    .contact-card, .location-card { padding: 22px; border-radius: 28px; }
    .contact-card-row { grid-template-columns: 54px 1fr; gap: 14px; }
    .contact-card-row img { width: 54px; height: 54px; }
    .featured-media { min-height: 235px; }
    .generic-hero { min-height: 520px; }
    .generic-hero .container { padding-top: 220px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-intro, .footer-contact { grid-column: auto; }
    .footer-shape { bottom: -175px; left: -160px; opacity: .38; }
}
@media (max-width: 419.98px) {
    .header-phone { display: none; }
    .site-contact-bar .container { justify-content: flex-end !important; }
    .brand { width: 205px; }
    .hero-copy h1, .page-hero-copy h1 { max-width: 100%; font-size: 1.72rem; }
    .hero-copy .button, .page-hero-copy .button { width: 100%; }
    .hero-dots { display: none; }
    .case-media { height: 245px; }
}

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