:root {
  --bg: #05070b;
  --bg-2: #0b1018;
  --surface: #111823;
  --surface-2: #171f2d;
  --text: #f5f7fb;
  --muted: #b9c2d0;
  --muted-2: #8d98aa;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d64037;
  --red-2: #ff5b4f;
  --blue: #61b7ff;
  --steel: #c8d2df;
  --gold: #d6a85c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1280px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(214, 64, 55, 0.18), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(97, 183, 255, 0.14), transparent 28rem),
    linear-gradient(135deg, #05070b 0%, #080c12 38%, #0d1118 100%);
  line-height: 1.6;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: white; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
::selection { background: var(--red); color: white; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 880px); }
.section { padding: clamp(3.5rem, 7vw, 6.75rem) 0; position: relative; }
.surface { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); border-block: 1px solid var(--line); }
.skip-link { position: fixed; left: 1rem; top: 1rem; transform: translateY(-150%); z-index: 9999; background: white; color: #06111f; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.muted { color: var(--muted); }

.top-strip { background: #020407; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: .86rem; }
.top-strip-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.top-strip a { color: var(--steel); font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(5, 7, 11, 0.86); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-shell { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; }
.brand { display: inline-flex; align-items: center; min-width: max-content; padding: .46rem .62rem; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 14px 38px rgba(0,0,0,.25); }
.brand:hover { color: inherit; transform: translateY(-1px); }
.brand-logo { width: clamp(184px, 18vw, 252px); height: auto; max-height: 66px; object-fit: contain; filter: none; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: .2rem; }
.nav-item { color: var(--muted); padding: .65rem .75rem; border-radius: 999px; font-size: .91rem; font-weight: 700; white-space: nowrap; }
.nav-item:hover, .nav-item.is-active { color: white; background: rgba(255,255,255,0.07); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { list-style: none; display: flex; align-items: center; gap: .25rem; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary > a { color: inherit; }
.dropdown-panel { position: absolute; left: 50%; top: calc(100% + .75rem); transform: translateX(-50%); width: min(88vw, 360px); display: grid; gap: .25rem; padding: .8rem; border: 1px solid var(--line); background: rgba(10, 15, 23, .98); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.dropdown-panel a { color: var(--muted); padding: .7rem .8rem; border-radius: .8rem; }
.dropdown-panel a:hover, .dropdown-panel a[aria-current="page"] { background: rgba(214,64,55,.16); color: white; }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.phone-chip { color: white; font-weight: 800; font-size: .9rem; padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: .9rem; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: white; margin: 4px auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 44px; padding: .72rem 1.05rem; border-radius: 999px; border: 1px solid transparent; font-weight: 900; line-height: 1; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #a91e18); color: white; box-shadow: 0 16px 40px rgba(214,64,55,.24); }
.btn-primary:hover { color: white; background: linear-gradient(135deg, var(--red-2), var(--red)); }
.btn-ghost { border-color: var(--line); color: white; background: rgba(255,255,255,.045); }
.btn-ghost:hover { background: rgba(255,255,255,.085); }
.btn-large { min-height: 52px; padding-inline: 1.25rem; }
.btn-sm { min-height: 38px; padding: .55rem .85rem; font-size: .88rem; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(214,64,55,.9), transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.2rem; padding: clamp(3rem, 7vw, 7rem) 0; align-items: center; }
.hero-home .hero-grid { min-height: 680px; }
.hero-copy h1 { margin: .4rem 0 1rem; font-size: clamp(2.65rem, 8vw, 6.4rem); line-height: .9; letter-spacing: -.06em; max-width: 900px; }
.hero-internal .hero-copy h1 { font-size: clamp(2.4rem, 7vw, 4.9rem); }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .18em; font-weight: 950; font-size: .78rem; margin: 0 0 .85rem; }
.hero-kicker { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 760px; margin: 0 0 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.3rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .65rem; color: var(--steel); }
.trust-row span { padding: .45rem .7rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); font-size: .86rem; font-weight: 800; }
.hero-media { position: relative; border-radius: calc(var(--radius) + 8px); overflow: hidden; min-height: 360px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); box-shadow: var(--shadow); isolation: isolate; transform: translateZ(0); }
.hero-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(97,183,255,.20), transparent 22rem), linear-gradient(180deg, rgba(5,7,11,.03), rgba(5,7,11,.52)); z-index: 1; pointer-events: none; }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: linear-gradient(115deg, transparent 0%, transparent 44%, rgba(255,255,255,.15) 48%, transparent 52%, transparent 100%); transform: translateX(-70%); transition: transform .7s ease; }
.hero-media:hover::after { transform: translateX(70%); }
.hero-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center; filter: saturate(1.04) contrast(1.05); }
.hero-badge { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; background: rgba(5,7,11,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; padding: .85rem 1rem; backdrop-filter: blur(12px); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.hero-badge strong { display: block; font-size: 1.35rem; }
.hero-badge span { color: var(--muted); font-size: .83rem; }

.breadcrumbs { padding-top: 1.1rem; font-size: .88rem; color: var(--muted-2); }
.breadcrumbs ol { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .5rem; color: rgba(255,255,255,.3); }
.breadcrumbs a { color: var(--muted); }

.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading h2, .copy-block h2, .cta-inner h2, .tool-panel h2, .quote-intro h2 { margin: 0 0 .75rem; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -.04em; }
.section-heading p, .copy-block p, .tool-panel p, .quote-intro p { color: var(--muted); }
.copy-block { padding: clamp(1.2rem, 3vw, 2.1rem); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); margin-bottom: 1.25rem; box-shadow: 0 20px 70px rgba(0,0,0,.18); }
.copy-block h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.copy-block p { font-size: 1.02rem; }
.copy-block p:last-child { margin-bottom: 0; }

.card-grid, .product-grid, .industry-grid, .case-grid, .testimonial-grid, .download-grid, .gallery-grid { display: grid; gap: 1rem; }
.card-grid, .product-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.product-card, .resource-card, .industry-card, .case-card, .testimonial, .download-card, .contact-card, .faq { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032)); border-radius: var(--radius); box-shadow: 0 22px 80px rgba(0,0,0,.18); }
.product-card, .resource-card { position: relative; overflow: hidden; padding: .85rem; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.product-card::before, .resource-card::before { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: radial-gradient(circle at 25% 0%, rgba(214,64,55,.22), transparent 18rem); transition: opacity .22s ease; }
.product-card:hover, .resource-card:hover { transform: translateY(-6px); border-color: rgba(214,64,55,.55); background: rgba(255,255,255,.07); }
.product-card:hover::before, .resource-card:hover::before { opacity: 1; }
.photo-wrap { position: relative; overflow: hidden; border-radius: calc(var(--radius) - 8px); background: #080c12; border: 1px solid rgba(255,255,255,.1); }
.photo-wrap::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(5,7,11,.48)); }
.card-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: calc(var(--radius) - 8px); background: var(--surface); transition: transform .3s ease; }
.product-card:hover .card-img, .resource-card:hover .card-img { transform: scale(1.045); }
.product-card h3, .resource-card h3 { margin: 1rem .35rem .35rem; font-size: 1.18rem; }
.product-card p, .resource-card p { margin: 0 .35rem .75rem; color: var(--muted); }
.card-arrow { position: absolute; top: 1.2rem; right: 1.2rem; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: rgba(5,7,11,.78); border: 1px solid rgba(255,255,255,.18); }

.industry-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.industry-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 32%); gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.industry-card { padding: 1.4rem; scroll-snap-align: start; }
.industry-card h3 { margin: .35rem 0 .5rem; }
.industry-card p { color: var(--muted); margin: 0; }
.industry-icon { color: var(--red-2); }

.tool-panel { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: center; border: 1px solid rgba(214,64,55,.24); border-radius: calc(var(--radius) + 6px); padding: clamp(1.2rem, 3vw, 2rem); background: linear-gradient(135deg, rgba(214,64,55,.13), rgba(97,183,255,.08)); box-shadow: var(--shadow); }
.selector-ui { display: grid; gap: .9rem; }
label { color: var(--steel); font-weight: 800; }
input, select, textarea { width: 100%; margin-top: .35rem; color: var(--text); background: #090e15; border: 1px solid rgba(255,255,255,.16); border-radius: .85rem; padding: .85rem .95rem; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #7c8798; }
.recommendation { display: grid; gap: .25rem; padding: 1rem; border: 1px solid rgba(97,183,255,.25); border-radius: var(--radius-sm); background: rgba(97,183,255,.08); }
.recommendation span { color: white; }


.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.gallery-item { position: relative; border: 0; padding: 0; background: transparent; border-radius: var(--radius); overflow: hidden; }
.gallery-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); transition: transform .25s ease, filter .25s ease; filter: contrast(1.03) saturate(1.04); background: #090e15; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-item span { position: absolute; right: .8rem; bottom: .8rem; padding: .4rem .7rem; border-radius: 999px; background: rgba(0,0,0,.72); color: white; font-weight: 800; font-size: .85rem; }
.image-modal { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,.88); display: grid; place-items: center; padding: 2rem; }
.image-modal[hidden] { display: none; }
.image-modal img { max-height: 82vh; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.modal-close { position: fixed; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.1); color: white; font-size: 2rem; }

.faq-list { display: grid; gap: .8rem; }
.faq { padding: 1rem 1.15rem; }
.faq summary { font-weight: 900; cursor: pointer; }
.faq p { color: var(--muted); margin-bottom: 0; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.filter-bar button { border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.04); border-radius: 999px; padding: .6rem .9rem; font-weight: 800; }
.filter-bar button.is-active, .filter-bar button:hover { background: rgba(214,64,55,.18); color: white; border-color: rgba(214,64,55,.45); }
.case-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.case-card { overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.case-card:hover { transform: translateY(-5px); border-color: rgba(97,183,255,.42); }
.case-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: contrast(1.04) saturate(1.04); }
.case-card > div { padding: 1.15rem; }
.case-card p, .case-card li { color: var(--muted); }
.case-card ul { padding-left: 1.1rem; }
.pill { display: inline-flex; padding: .35rem .55rem; border-radius: 999px; background: rgba(214,64,55,.18); color: white; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.testimonial-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.testimonial { padding: 1.5rem; margin: 0; }
.testimonial blockquote { margin: 0 0 1rem; color: var(--steel); font-size: 1.05rem; }
.testimonial figcaption { color: var(--blue); font-weight: 900; }
.proof-card span { color: var(--red-2); font-size: 1.25rem; }
.proof-card h3 { margin: .5rem 0 .55rem; }
.proof-card p { color: var(--muted); margin: 0; }
.download-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.download-card { padding: 1.3rem; transition: transform .2s ease, border-color .2s ease; }
.download-card:hover { transform: translateY(-4px); border-color: rgba(97,183,255,.45); }
.download-card span { color: var(--gold); font-size: 1.4rem; }
.download-card p { color: var(--muted); }
.text-link { color: var(--blue); font-weight: 900; margin: .35rem; display: inline-block; }

.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.timeline li { padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.timeline span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 999px; background: var(--red); font-weight: 950; margin-bottom: 1rem; }
.timeline p { color: var(--muted); }

.quote-layout { display: grid; gap: 1.5rem; align-items: start; }
.quote-intro { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.quote-photo { margin: 1.25rem 0 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: #080c12; }
.quote-photo-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.quote-photo figcaption { padding: .75rem .9rem; color: var(--muted); font-size: .86rem; }
.check-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.check-list li { color: var(--steel); }
.check-list li::before { content: "✓"; color: var(--red-2); margin-right: .55rem; font-weight: 950; }
.quote-form { border: 1px solid rgba(255,255,255,.16); border-radius: calc(var(--radius) + 6px); padding: clamp(1rem, 3vw, 1.5rem); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.span-2 { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.file-upload { display: grid; padding: 1rem; border: 1px dashed rgba(97,183,255,.38); border-radius: var(--radius-sm); background: rgba(97,183,255,.06); }
.file-upload input { margin-top: .7rem; }
.file-upload span { color: var(--muted); font-weight: 700; margin-top: .55rem; }
.checkbox { display: flex; align-items: flex-start; gap: .75rem; }
.checkbox input { width: auto; margin: .25rem 0 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.1rem; }
.form-note { color: var(--muted); }
.form-note a { color: var(--blue); font-weight: 900; }

.contact-cards { display: grid; gap: 1rem; }
.contact-card { padding: 1.5rem; }
.contact-card address { color: var(--muted); font-style: normal; }
.contact-card a { color: var(--blue); font-weight: 900; }
.map-frame { min-height: 360px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.25) contrast(1.05); }

.cta-band { padding: clamp(2.5rem, 6vw, 4rem) 0; background: linear-gradient(135deg, rgba(214,64,55,.18), rgba(97,183,255,.1)); border-top: 1px solid rgba(214,64,55,.24); }
.cta-inner { display: grid; gap: 1.25rem; align-items: center; }
.cta-inner h2 { max-width: 760px; }
.cta-inner p { color: var(--muted); margin: 0; max-width: 760px; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.flash { padding: .85rem 0; }
.flash-success { background: rgba(29, 185, 84, .16); border-bottom: 1px solid rgba(29,185,84,.3); }
.flash-error { background: rgba(214,64,55,.16); border-bottom: 1px solid rgba(214,64,55,.3); }
.flash p { margin: .2rem 0; font-weight: 800; }

.site-footer { background: #020407; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; gap: 2rem; }
.footer-logo { width: min(280px, 82vw); height: auto; margin-bottom: 1rem; padding: .75rem; border-radius: 18px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 18px 48px rgba(0,0,0,.24); }
.footer-brand h2 { margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-links a, .site-footer a { color: var(--muted); }
.footer-links a:hover, .site-footer a:hover { color: white; }
.site-footer address { font-style: normal; color: var(--muted); }
.cert-note { padding: .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); background: rgba(255,255,255,.04); font-size: .9rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--muted-2); border-top: 1px solid var(--line); margin-top: 2.5rem; padding: 1.2rem 0; font-size: .9rem; }

.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2000; display: none; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,7,11,.94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { color: var(--muted); margin: 0; }
.cookie-banner div { display: flex; gap: .5rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
[data-tilt-card] { transform-style: preserve-3d; }
[data-portfolio] [hidden] { display: none !important; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); }
  .hero-media, .hero-img { min-height: 520px; }
  .tool-panel { grid-template-columns: 1fr minmax(300px, 420px); }
  .quote-layout { grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: minmax(260px, .55fr) 1fr; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr 1.1fr; }
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: 117px 1rem auto 1rem; display: none; max-height: calc(100vh - 140px); overflow: auto; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,7,11,.98); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .nav-item { width: 100%; border-radius: .9rem; }
  .nav-dropdown summary { justify-content: space-between; }
  .dropdown-panel { position: static; transform: none; width: 100%; box-shadow: none; margin-top: .5rem; }
  .header-actions { display: none; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 1.1rem, var(--container)); }
  .hide-sm { display: none; }
  .top-strip-inner { justify-content: center; flex-wrap: wrap; padding: .35rem 0; }
  .brand-logo { width: min(74vw, 230px); max-height: 58px; }
  .hero-home .hero-grid { min-height: auto; }
  .hero-copy h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .industry-track { grid-auto-columns: 86%; }
  .cookie-banner { grid-template-columns: 1fr; }
}

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


.photo-story {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, rgba(5,7,11,.88), rgba(11,16,24,.95)),
    radial-gradient(circle at 16% 30%, rgba(214,64,55,.18), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(97,183,255,.12), transparent 22rem);
  border-bottom: 1px solid var(--line);
}
.photo-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background: linear-gradient(90deg, transparent, rgba(214,64,55,.36), transparent);
  height: 1px;
}
.photo-story-head { max-width: 860px; margin-bottom: 1.6rem; }
.photo-story-head h2 { margin: 0 0 .75rem; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1; letter-spacing: -.045em; }
.photo-story-head p:last-child { color: var(--muted); max-width: 760px; }
.photo-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.photo-story-card {
  position: relative;
  margin: 0;
  min-height: 325px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: #070b11;
  box-shadow: 0 26px 80px rgba(0,0,0,.34);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.photo-story-card:nth-child(1) { grid-column: span 2; }
.photo-story-card:hover { transform: translateY(-6px); border-color: rgba(214,64,55,.55); box-shadow: 0 32px 98px rgba(0,0,0,.48); }
.photo-story-img { width: 100%; height: 100%; min-height: 325px; object-fit: cover; filter: saturate(1.04) contrast(1.06); }
.photo-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.86));
  pointer-events: none;
}
.photo-story-card figcaption {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .85rem;
}
.photo-story-card figcaption strong { color: #fff; font-size: 1.05rem; line-height: 1.1; }
.photo-story-card figcaption span { color: var(--steel); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; text-align: right; }
.product-card .photo-wrap,
.resource-card .card-img,
.gallery-item,
.case-card { box-shadow: 0 18px 58px rgba(0,0,0,.22); }
.product-card .photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.35));
}
.case-card .case-img { min-height: 210px; }
@media (max-width: 980px) {
  .photo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-story-card:nth-child(1) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-story-card, .photo-story-img { min-height: 270px; }
  .photo-story-card figcaption { align-items: start; flex-direction: column; }
  .photo-story-card figcaption span { text-align: left; }
}


:root { --container: 1340px; }

.btn,
.phone-chip,
.header-actions a,
.nav-item { white-space: nowrap; }
.btn { text-align: center; }
.header-actions { flex-shrink: 0; min-width: max-content; }
.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  line-height: 1;
  letter-spacing: -.01em;
}
.header-actions .btn-sm { min-width: 128px; padding-inline: 1rem; }
.brand { padding: .38rem .48rem; border-radius: 15px; }
.brand-logo { width: clamp(178px, 15.2vw, 230px); max-height: 58px; }
.nav-shell { min-height: 72px; gap: .85rem; }
.primary-nav { gap: .06rem; }
.nav-item { padding-inline: .64rem; font-size: .9rem; }
.top-strip-inner { min-height: 34px; }

.hero-grid { gap: clamp(2rem, 5vw, 4rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; }
.hero-media { display: grid; place-items: center; }
.hero-media::before {
  background:
    radial-gradient(circle at 70% 20%, rgba(97,183,255,.12), transparent 22rem),
    linear-gradient(180deg, rgba(5,7,11,.02), rgba(5,7,11,.36));
}
.hero-home .hero-grid { min-height: 640px; }
.hero-home .hero-media {
  aspect-ratio: 1400 / 960;
  min-height: 0;
  align-self: center;
}
.hero-home .hero-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: clamp(.35rem, .9vw, .75rem);
}
.hero-internal .hero-media {
  aspect-ratio: 16 / 10;
  min-height: 0;
}
.hero-internal .hero-img {
  height: 100%;
  min-height: 0;
}
.hero-badge { max-width: min(220px, calc(100% - 2rem)); }

.img-fit-contain { object-fit: contain !important; }
.img-focus-center { object-position: center center; }
.img-focus-right-center { object-position: 62% 50%; }
.img-focus-center-top { object-position: 50% 30%; }
.img-focus-center-lower { object-position: 50% 62%; }
.img-focus-left-center { object-position: 36% 50%; }

.card-img,
.case-img,
.gallery-img,
.quote-photo-img,
.photo-story-img {
  object-position: var(--image-x, 50%) var(--image-y, 50%);
}
.photo-wrap,
.resource-card .card-img,
.gallery-item,
.case-img,
.quote-photo-img {
  background: #090e15;
}
.product-card .card-img { min-height: 190px; }
.product-card h3 { line-height: 1.08; }
.product-card p { font-size: .96rem; }
.photo-story-card { min-height: 300px; }
.photo-story-img { min-height: 300px; }
.photo-story-card:nth-child(1) .photo-story-img { object-position: 52% 58%; }
.photo-story-card:nth-child(2) .photo-story-img { object-position: 62% 50%; }
.photo-story-card:nth-child(3) .photo-story-img { object-position: 50% 50%; }
.photo-story-card:nth-child(4) .photo-story-img { object-position: 50% 50%; }

.copy-block { width: 100%; }
.content-sections .narrow { max-width: 980px; }
.copy-block h2 { text-wrap: balance; }
.section-heading h2,
.hero-copy h1,
.cta-inner h2,
.quote-intro h2 { text-wrap: balance; }

.quote-intro p,
.copy-block p,
.case-card p,
.download-card p,
.product-card p,
.industry-card p { color: #c4ccd8; }
.quote-photo-img { object-position: 50% 47%; }
.form-note { max-width: 56ch; }
.cert-note strong { color: var(--steel); }
.footer-bottom p:last-child { max-width: 680px; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr); }
}

@media (max-width: 1240px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: 108px 1rem auto 1rem; display: none; max-height: calc(100vh - 130px); overflow: auto; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,7,11,.98); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .nav-item { width: 100%; border-radius: .9rem; white-space: normal; }
  .nav-dropdown summary { justify-content: space-between; }
  .dropdown-panel { position: static; transform: none; width: 100%; box-shadow: none; margin-top: .5rem; }
  .header-actions { display: none; }
}

@media (max-width: 760px) {
  .top-strip a { white-space: nowrap; }
  .brand { max-width: calc(100vw - 6rem); }
  .nav-shell { min-height: 78px; }
  .primary-nav { inset: 112px 1rem auto 1rem; }
  .hero-grid { padding: clamp(2.25rem, 9vw, 4rem) 0; gap: 2rem; }
  .hero-home .hero-grid { min-height: auto; }
  .hero-home .hero-media,
  .hero-internal .hero-media { aspect-ratio: 16 / 11; }
  .hero-copy h1 { letter-spacing: -.055em; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: auto; }
  .trust-row span { font-size: .84rem; }
  .photo-story-card,
  .photo-story-img { min-height: 250px; }
  .product-card .card-img { min-height: 180px; }
  .cta-actions .btn { flex: 1 1 100%; }
  .footer-logo { width: min(240px, 78vw); }
}

@media (max-width: 420px) {
  .top-strip-inner { justify-content: space-between; gap: .55rem; }
  .top-strip-inner span:first-child { max-width: 20ch; line-height: 1.15; }
  .brand-logo { width: min(61vw, 205px); }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .hero-kicker { font-size: 1.05rem; }
  .hero-actions { gap: .65rem; }
  .hero-badge { right: .75rem; bottom: .75rem; padding: .7rem .85rem; }
  .hero-badge strong { font-size: 1.15rem; }
  .section-heading h2,
  .photo-story-head h2 { font-size: clamp(1.85rem, 10vw, 2.55rem); }
}


@media (min-width: 981px) {
  .photo-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .photo-story-card:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 420px) {
  .top-strip-inner span:first-child {
    max-width: none;
    white-space: nowrap;
    font-size: .78rem;
    letter-spacing: -.01em;
  }
  .top-strip-inner a { font-size: .82rem; }
}


img { max-width: 100%; height: auto; display: block; }


.top-strip-inner { flex-wrap: nowrap; }
.top-strip a,
.phone-chip,
.header-actions a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 154px;
  padding-inline: 1.02rem;
  line-height: 1;
  letter-spacing: -.01em;
  text-align: center;
}
.header-actions { min-width: max-content; flex: 0 0 auto; gap: .6rem; }
.header-actions .btn-sm { flex: 0 0 auto; min-width: 130px; }
.nav-shell { grid-template-columns: auto minmax(0, 1fr) auto; }
.primary-nav { min-width: 0; }


.img-focus-center { --image-x: 50%; --image-y: 50%; }
.img-focus-right-center { --image-x: 62%; --image-y: 50%; }
.img-focus-center-top { --image-x: 50%; --image-y: 30%; }
.img-focus-center-lower { --image-x: 50%; --image-y: 62%; }
.img-focus-left-center { --image-x: 36%; --image-y: 50%; }
.img-fit-contain { object-fit: contain !important; }


.product-grid {
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: .95rem;
}
.product-card .photo-wrap {
  aspect-ratio: 3 / 2;
  min-height: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 18%, rgba(214,64,55,.18), transparent 20rem),
    radial-gradient(circle at 80% 10%, rgba(97,183,255,.14), transparent 18rem),
    #070b11;
}
.product-card .card-img {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: var(--image-x, 50%) var(--image-y, 50%);
  border-radius: 20px;
  padding: 0;
}
.product-card h3 { margin-top: 1rem; font-size: clamp(1.14rem, 1.35vw, 1.34rem); line-height: 1.08; }
.product-card p { margin-top: .45rem; margin-bottom: 0; }
.product-card .card-arrow { top: 1.35rem; right: 1.35rem; }


.gallery-item { aspect-ratio: 3 / 2; }
.gallery-img,
.case-img,
.photo-story-img,
.hero-img {
  object-position: var(--image-x, 50%) var(--image-y, 50%);
}
.gallery-img {
  height: 100% !important;
  min-height: 0 !important;
}
.case-img {
  height: clamp(210px, 19vw, 285px) !important;
  min-height: 0 !important;
}
.quote-photo-img {
  height: auto !important;
  aspect-ratio: 16 / 10;
}

@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1241px) and (max-width: 1410px) {
  .brand-logo { width: clamp(174px, 14vw, 204px); }
  .nav-item { font-size: .84rem; padding-inline: .5rem; }
  .phone-chip { min-width: 148px; font-size: .86rem; padding-inline: .86rem; }
  .header-actions .btn-sm { min-width: 120px; padding-inline: .85rem; }
  .nav-shell { gap: .65rem; }
}
@media (max-width: 520px) {
  .top-strip-inner { gap: .45rem; }
  .top-strip a { font-size: .82rem; }
  .product-card .photo-wrap { border-radius: 17px; }
  .product-card .card-img { border-radius: 17px; }
}
@media (max-width: 360px) {
  .top-strip-inner span:first-child { font-size: .72rem; }
  .top-strip a { font-size: .78rem; }
}


img { max-width: 100%; height: auto; display: block; }

.top-strip-inner { flex-wrap: nowrap; overflow: hidden; }
.top-strip-inner span,
.top-strip-inner a { min-width: 0; }
.top-strip-inner span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-strip a,
.phone-chip,
.phone-cta,
.cta-actions .btn,
.header-actions .btn { white-space: nowrap !important; word-break: keep-all !important; overflow-wrap: normal !important; }
.phone-chip {
  flex: 0 0 auto;
  min-width: 10.25rem;
  padding-inline: 1.05rem;
  text-align: center;
}
.header-actions { flex: 0 0 auto; }


.product-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(.9rem, 1.4vw, 1.1rem);
}
.product-card .photo-wrap {
  aspect-ratio: 70 / 46;
  width: 100%;
  height: auto;
  min-height: 0;
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(135deg, #070b11, #111925);
}
.product-card .photo-wrap::after {
  background: linear-gradient(180deg, transparent 68%, rgba(5,7,11,.18));
}
.product-card .card-img {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.03);
}
.product-card h3 { margin-top: 1.05rem; font-size: clamp(1.18rem, 1.45vw, 1.38rem); }
.product-card p { margin-bottom: .2rem; max-width: 58ch; }
.card-arrow { top: 1.45rem; right: 1.45rem; }

.resource-card .card-img,
.gallery-img,
.case-img,
.quote-photo-img {
  height: auto;
  min-height: 0 !important;
}
.resource-card .card-img { aspect-ratio: 16 / 10; object-fit: cover; }
.gallery-item { aspect-ratio: 16 / 10; }
.gallery-img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.case-img { aspect-ratio: 16 / 9; object-fit: cover; }
.quote-photo-img { aspect-ratio: 16 / 10; object-fit: cover; }
.hero-img { height: 100%; }
.photo-story-card { height: clamp(280px, 23vw, 350px); min-height: 0; }
.photo-story-img { height: 100%; min-height: 0; }
.image-modal img { width: auto; height: auto; max-width: 92vw; max-height: 82vh; }

.cookie-banner {
  left: auto;
  width: min(620px, calc(100vw - 2rem));
  grid-template-columns: 1fr auto;
}

@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1241px) and (max-width: 1320px) {
  .brand-logo { width: 198px; }
  .nav-item { padding-inline: .54rem; font-size: .86rem; }
  .header-actions .btn-sm { min-width: 118px; padding-inline: .86rem; }
  .phone-chip { min-width: 9.7rem; padding-inline: .85rem; font-size: .86rem; }
}

@media (max-width: 760px) {
  .cookie-banner { grid-template-columns: 1fr; }
  .top-strip-inner { gap: .7rem; }
  .top-strip a { flex: 0 0 auto; }
  .product-card .photo-wrap { aspect-ratio: 4 / 3; }
}

@media (max-width: 420px) {
  .top-strip-inner span:first-child { max-width: calc(100vw - 142px); }
  .top-strip a { font-size: .78rem; }
}

section,
[id] { scroll-margin-top: 126px; }


.product-family-section { overflow: clip; }
.product-family-heading { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.product-family-layout { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)) !important; gap: clamp(1rem, 1.8vw, 1.4rem) !important; }
.product-family-tile {
  position: relative;
  isolation: isolate;
  min-width: 0;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.product-family-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 18% 0%, rgba(214,64,55,.22), transparent 17rem);
  transition: opacity .22s ease;
}
.product-family-tile:hover,
.product-family-tile:focus-visible { transform: translateY(-6px); border-color: rgba(214,64,55,.52) !important; }
.product-family-tile:hover::before,
.product-family-tile:focus-visible::before { opacity: 1; }
.product-family-visual {
  min-height: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 18px 58px rgba(0,0,0,.22);
}
.product-family-img {
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: contrast(1.05) saturate(1.04);
  transform-origin: center center;
  transition: transform .25s ease, filter .25s ease;
}
.product-family-tile:hover .product-family-img { transform: scale(1.025); filter: contrast(1.08) saturate(1.06); }
.product-family-body { min-width: 0; }
.product-family-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .35rem;
  color: var(--red-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
}
.product-family-index::after {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: rgba(214,64,55,.55);
}
.product-family-body h3 {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1.14rem, 1.45vw, 1.38rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.product-family-body h3 span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,7,11,.72);
  color: var(--steel);
  font-size: 1rem;
}
.product-family-body p { margin: 0; color: var(--muted); line-height: 1.55; }


.header-actions,
.header-call,
.header-call span,
.header-quote,
.top-strip a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.header-actions { min-width: max-content; flex: 0 0 auto; gap: .72rem; }
.header-call { font-size: clamp(.82rem, .82vw, .92rem); }
.header-quote { padding-inline: 1.05rem !important; }
.nav-shell { grid-template-columns: auto minmax(0, 1fr) auto; }
.primary-nav { min-width: 0; }
@media (min-width: 1321px) {
  .nav-shell { gap: clamp(.75rem, 1.1vw, 1.25rem); }
}
@media (max-width: 1480px) {
  .brand-logo { width: clamp(190px, 14vw, 224px); }
  .nav-item { padding-inline: .55rem; font-size: .86rem; }
  .header-call { padding-inline: .78rem !important; font-size: .82rem; }
  .header-quote { padding-inline: .86rem !important; }
}
@media (max-width: 1360px) {
  .header-call { display: none !important; }
  .brand-logo { width: clamp(184px, 16vw, 216px); }
}
@media (max-width: 1120px) {
  .primary-nav { justify-content: flex-start; }
}
@media (max-width: 980px) {
  .product-family-layout { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .product-family-visual { aspect-ratio: 4 / 3 !important; }
}
@media (max-width: 640px) {
  .product-family-layout { grid-template-columns: 1fr !important; }
  .product-family-tile { border-radius: 20px !important; }
  .product-family-visual { border-radius: 16px !important; padding: .55rem !important; }
  .product-family-body h3 { font-size: 1.18rem; }
}


html,
body {
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding-block: clamp(3.1rem, 6vw, 5.9rem);
}


.header-call,
.header-call span,
.header-quote,
.top-strip a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  flex-shrink: 0 !important;
}

.header-call {
  min-height: 40px !important;
  padding-inline: 1.05rem !important;
  letter-spacing: -.01em;
}

@media (max-width: 1420px) {
  .header-call { display: none !important; }
}


.home-story-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 10% 5%, rgba(214,64,55,.18), transparent 28rem),
    radial-gradient(circle at 92% 38%, rgba(97,183,255,.12), transparent 30rem),
    linear-gradient(180deg, rgba(5,7,11,.72), rgba(11,16,24,.92));
  border-block: 1px solid rgba(255,255,255,.095);
}

.home-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 28% 18%, black, transparent 70%);
}

.home-story-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.home-story-lead {
  position: sticky;
  top: 138px;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 12% 0%, rgba(214,64,55,.2), transparent 18rem);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.home-story-lead h2 {
  margin: 0 0 .85rem;
  max-width: 11ch;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  line-height: .95;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.home-story-lead p {
  margin: 0;
  color: #c7d0dc;
  font-size: 1.03rem;
}

.home-story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.35rem;
}

.home-story-stats span {
  display: grid;
  gap: .1rem;
  min-height: 84px;
  align-content: center;
  padding: .85rem .7rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(5,7,11,.42);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-story-stats strong {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1;
}

.home-story-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.15rem);
}

.home-story-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.15rem, 2vw, 1.6rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.072), rgba(255,255,255,.028)),
    #090e15;
  box-shadow: 0 22px 72px rgba(0,0,0,.2);
}

.home-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 34%, transparent 74%, rgba(214,64,55,.1));
  opacity: .7;
}

.home-story-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--red-2);
  font-weight: 950;
  letter-spacing: .14em;
  font-size: .76rem;
}

.home-story-number::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: rgba(214,64,55,.55);
}

.home-story-card h3 {
  position: relative;
  z-index: 1;
  margin: .75rem 0 .85rem;
  color: #fff;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.home-story-card p {
  position: relative;
  z-index: 1;
  margin: .72rem 0 0;
  color: #c3ccd8;
  font-size: clamp(.95rem, 1.05vw, 1.01rem);
  line-height: 1.68;
}


.editorial-sections {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
}

.editorial-shell {
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: start;
}

.editorial-rail {
  position: sticky;
  top: 138px;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    radial-gradient(circle at 0% 0%, rgba(97,183,255,.12), transparent 17rem);
  box-shadow: 0 18px 58px rgba(0,0,0,.18);
}

.editorial-rail h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.editorial-rail p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.editorial-list {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.11);
}

.editorial-row {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: clamp(.9rem, 2.2vw, 1.6rem);
  padding: clamp(1.45rem, 3vw, 2.6rem) 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.editorial-number {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  border: 1px solid rgba(214,64,55,.48);
  background: rgba(214,64,55,.12);
  color: #fff;
  font-weight: 950;
  font-size: .86rem;
  letter-spacing: .06em;
}

.editorial-copy h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.editorial-copy p {
  margin: .72rem 0 0;
  max-width: 86ch;
  color: #c4ccd8;
  font-size: clamp(.98rem, 1.18vw, 1.07rem);
  line-height: 1.75;
}


.industries-luxury-section {
  position: relative;
  overflow: clip;
}

.industry-track,
.industry-track.is-carousel {
  display: grid !important;
  grid-auto-flow: row !important;
  grid-auto-columns: unset !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
  scroll-snap-type: none !important;
}

.industry-showcase {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.industry-showcase-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.028)),
    radial-gradient(circle at 16% 10%, rgba(214,64,55,.2), transparent 18rem),
    #080d14;
  box-shadow: 0 28px 86px rgba(0,0,0,.24);
}

.industry-showcase-copy::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(97,183,255,.16), transparent 62%);
}

.industry-showcase-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 .85rem;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.industry-showcase-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c5ceda;
}

.text-link-inline {
  position: relative;
  z-index: 1;
  margin: 1.1rem 0 0 !important;
  padding: 0 !important;
}

.industry-luxury-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  min-width: 0;
}

.industry-lux-card,
.industry-card {
  min-width: 0;
  scroll-snap-align: unset !important;
}

.industry-lux-card {
  position: relative;
  overflow: hidden;
  min-height: 185px;
  padding: clamp(1rem, 1.35vw, 1.25rem);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026)),
    #090e15;
  box-shadow: 0 18px 58px rgba(0,0,0,.18);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.industry-lux-card:hover {
  transform: translateY(-4px);
  border-color: rgba(97,183,255,.38);
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
    #0b111a;
}

.industry-lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background: radial-gradient(circle at 18% 0%, rgba(214,64,55,.18), transparent 12rem);
}

.industry-number {
  position: relative;
  z-index: 1;
  color: var(--red-2);
  font-weight: 950;
  font-size: .75rem;
  letter-spacing: .13em;
}

.industry-lux-card h3 {
  position: relative;
  z-index: 1;
  margin: .6rem 0 .45rem;
  color: #fff;
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.industry-lux-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c3ccd8;
  font-size: .94rem;
  line-height: 1.55;
}

.industry-icon { display: none; }


.product-family-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.033), rgba(255,255,255,.012)),
    radial-gradient(circle at 80% 10%, rgba(97,183,255,.08), transparent 22rem);
}

.product-family-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.6vw, 1.25rem) !important;
}

.product-family-tile {
  border-radius: 26px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    #090e15 !important;
  padding: clamp(.9rem, 1.2vw, 1.05rem) !important;
  box-shadow: 0 26px 82px rgba(0,0,0,.22) !important;
}

.product-family-visual {
  aspect-ratio: 16 / 10 !important;
  border-radius: 20px !important;
  padding: .7rem !important;
  background:
    radial-gradient(circle at 15% 12%, rgba(214,64,55,.16), transparent 17rem),
    radial-gradient(circle at 90% 6%, rgba(97,183,255,.12), transparent 18rem),
    linear-gradient(135deg, #070b11, #111925) !important;
}

.product-family-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.product-family-body {
  padding-top: .95rem !important;
}


.tool-panel,
.quote-form,
.quote-intro,
.contact-card,
.download-card,
.testimonial,
.faq,
.case-card,
.resource-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    #090e15;
  border-color: rgba(255,255,255,.13);
}

.tool-panel {
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(214,64,55,.14), rgba(97,183,255,.08)),
    #090e15;
}


.case-grid,
.download-grid,
.testimonial-grid,
.gallery-grid,
.card-grid {
  gap: clamp(.95rem, 1.6vw, 1.25rem);
}

.case-card,
.download-card,
.testimonial,
.resource-card {
  border-radius: 24px;
}

.gallery-item,
.gallery-img {
  border-radius: 24px;
}

.cta-band {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 22%, rgba(214,64,55,.28), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(97,183,255,.13), transparent 26rem),
    linear-gradient(135deg, #11161f, #080c12);
}

.cta-inner {
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 88px rgba(0,0,0,.18);
}

@media (max-width: 1180px) {
  .home-story-shell,
  .editorial-shell,
  .industry-showcase {
    grid-template-columns: 1fr;
  }

  .home-story-lead,
  .editorial-rail {
    position: relative;
    top: auto;
  }

  .home-story-lead h2 {
    max-width: 14ch;
  }

  .industry-luxury-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-family-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .home-story-cards,
  .home-story-stats,
  .industry-luxury-grid,
  .industry-grid,
  .product-family-layout {
    grid-template-columns: 1fr !important;
  }

  .editorial-row {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .editorial-number {
    width: 2.7rem;
    height: 2.7rem;
  }

  .home-story-lead,
  .home-story-card,
  .industry-showcase-copy,
  .industry-lux-card,
  .editorial-rail {
    border-radius: 20px;
  }

  .product-family-visual {
    aspect-ratio: 4 / 3 !important;
  }
}


:root { --container: 1360px; }
html, body { overflow-x: clip; }
.site-header, .top-strip { width: 100%; }
.top-strip-inner,
.header-actions,
.header-call,
.header-call span,
.header-quote,
.top-strip a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.header-actions { min-width: max-content; }
.header-call { min-width: max-content !important; }
@media (max-width: 1440px) { .header-call { display: none !important; } }


.hero-internal .hero-grid {
  min-height: clamp(430px, 50vw, 620px);
  padding-top: clamp(3rem, 6vw, 5.8rem);
  padding-bottom: clamp(2.4rem, 5.4vw, 5rem);
}
.hero-internal .hero-media {
  background:
    radial-gradient(circle at 12% 8%, rgba(214,64,55,.16), transparent 18rem),
    radial-gradient(circle at 90% 10%, rgba(97,183,255,.12), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
}
.hero-internal .hero-img { object-fit: contain; padding: clamp(.35rem, 1vw, .75rem); }

.interior-overview {
  padding-block: clamp(2.4rem, 5vw, 4.9rem);
  background:
    radial-gradient(circle at 3% 16%, rgba(214,64,55,.16), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.interior-overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(1.15rem, 3.4vw, 3rem);
  align-items: stretch;
}
.interior-overview-media {
  position: relative;
  min-height: clamp(315px, 32vw, 470px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 10%, rgba(214,64,55,.18), transparent 19rem),
    radial-gradient(circle at 88% 10%, rgba(97,183,255,.13), transparent 20rem),
    linear-gradient(135deg, #070b11, #121a26);
  box-shadow: 0 30px 96px rgba(0,0,0,.28);
}
.interior-overview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.72));
}
.interior-overview-img {
  width: 100%;
  height: 100% !important;
  min-height: inherit;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(.55rem, 1.3vw, 1rem);
  filter: saturate(1.06) contrast(1.05);
}
.interior-overview-media figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(1rem, 2vw, 1.4rem);
  right: clamp(1rem, 2vw, 1.4rem);
  bottom: clamp(1rem, 2vw, 1.4rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .85rem;
}
.interior-overview-media figcaption span {
  color: var(--blue);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.interior-overview-media figcaption strong {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.05;
  text-align: right;
}
.interior-overview-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.2rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.082), rgba(255,255,255,.028)),
    radial-gradient(circle at 6% 0%, rgba(97,183,255,.12), transparent 18rem),
    #090e15;
  box-shadow: 0 28px 88px rgba(0,0,0,.22);
}
.interior-overview-copy h2 {
  margin: 0 0 .9rem;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.interior-overview-copy > p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0;
  color: #c9d2de;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}
.overview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.35rem;
}
.overview-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .72rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--steel);
  font-size: .82rem;
  font-weight: 850;
}
.overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.45rem;
}

.snapshot-section {
  padding-block: clamp(1.8rem, 4vw, 3.6rem);
  background: rgba(255,255,255,.012);
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 1.6vw, 1.1rem);
}
.snapshot-card {
  min-height: 168px;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.026)),
    #090e15;
  box-shadow: 0 22px 70px rgba(0,0,0,.17);
}
.snapshot-card span { color: var(--red-2); font-weight: 950; }
.snapshot-card h3 {
  margin: .75rem 0 .45rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.snapshot-card p { margin: 0; color: #c5ceda; font-size: .94rem; line-height: 1.58; }


.luxury-detail-section {
  overflow: clip;
  background:
    radial-gradient(circle at 10% 0%, rgba(214,64,55,.13), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(97,183,255,.09), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.006));
}
.luxury-detail-section .editorial-shell {
  grid-template-columns: minmax(275px, .38fr) minmax(0, 1fr);
}
.luxury-detail-section .editorial-rail {
  top: 126px;
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.085), rgba(255,255,255,.027)),
    radial-gradient(circle at 4% 0%, rgba(214,64,55,.18), transparent 18rem),
    #090e15;
}
.luxury-detail-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.95rem, 1.8vw, 1.2rem);
  border-top: 0 !important;
}
.luxury-detail-card {
  display: grid !important;
  grid-template-columns: 3.45rem minmax(0, 1fr) !important;
  gap: clamp(.8rem, 1.4vw, 1rem) !important;
  align-content: start;
  padding: clamp(1.1rem, 2vw, 1.5rem) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    #090e15;
  box-shadow: 0 22px 72px rgba(0,0,0,.18);
}
.luxury-detail-card .editorial-number {
  width: 2.75rem;
  height: 2.75rem;
}
.luxury-detail-card .editorial-copy h2 {
  font-size: clamp(1.35rem, 1.9vw, 2.05rem);
  line-height: 1.06;
}
.luxury-detail-card .editorial-copy p {
  font-size: clamp(.95rem, 1.03vw, 1rem);
  line-height: 1.66;
}


.compact-services {
  background:
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.012)),
    radial-gradient(circle at 88% 10%, rgba(97,183,255,.08), transparent 24rem);
}
.compact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.15rem);
}
.compact-service-card {
  min-height: 100%;
  padding: clamp(1.05rem, 1.8vw, 1.45rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.026)),
    #090e15;
  box-shadow: 0 22px 72px rgba(0,0,0,.18);
}
.compact-service-card h3 {
  margin: 0 0 .55rem;
  color: #fff;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.07;
  letter-spacing: -.035em;
}
.compact-service-card p { margin: 0 0 .85rem; color: #c5ceda; font-size: .95rem; }
.compact-service-card span { color: var(--red-2); font-weight: 900; }


.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-item {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 20% 10%, rgba(214,64,55,.12), transparent 16rem),
    #080d14;
}
.gallery-img { object-fit: contain !important; padding: .45rem; }
.case-card { overflow: hidden; }
.case-card .case-img { object-fit: contain !important; padding: .55rem; background: #080d14; }
.resource-card .card-img { object-fit: contain !important; padding: .65rem; background: #080d14; }
.quote-layout { align-items: start; }
.quote-intro, .quote-form { border-radius: 30px; }
.map-frame, .map-frame iframe { border-radius: 28px; }

@media (max-width: 1180px) {
  .interior-overview-grid,
  .luxury-detail-section .editorial-shell {
    grid-template-columns: 1fr;
  }
  .luxury-detail-section .editorial-rail { position: relative; top: auto; }
  .snapshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .luxury-detail-grid,
  .compact-service-grid {
    grid-template-columns: 1fr;
  }
  .interior-overview-media { min-height: 300px; }
  .interior-overview-media figcaption { align-items: start; flex-direction: column; }
  .interior-overview-media figcaption strong { text-align: left; }
}
@media (max-width: 640px) {
  .snapshot-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .luxury-detail-card { grid-template-columns: 1fr !important; }
  .interior-overview-copy h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .overview-actions .btn { width: 100%; }
  .hero-internal .hero-grid { min-height: auto; }
  .top-strip-inner { gap: .5rem; }
  .top-strip-inner .hide-sm { display: none !important; }
}

html, body { overflow-x: hidden; }
.top-phone, .header-call, .header-call span, .header-quote { white-space: nowrap !important; word-break: keep-all !important; overflow-wrap: normal !important; hyphens: none !important; }
.nav-shell { position: relative; width: min(100% - 2rem, 1460px); }
.primary-nav { gap: clamp(.05rem, .45vw, .42rem); }
.nav-mega { position: static; padding: 0; border-radius: 999px; }
.nav-mega > summary { list-style: none; display: inline-flex; align-items: center; justify-content: center; gap: .32rem; min-height: 44px; padding: .65rem .78rem; border-radius: 999px; color: var(--muted); font-size: .91rem; font-weight: 850; cursor: pointer; white-space: nowrap; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.nav-mega > summary::-webkit-details-marker { display: none; }
.nav-mega > summary:hover, .nav-mega[open] > summary, .nav-mega.is-active > summary { color: #fff; background: rgba(255,255,255,.075); }
.nav-caret { font-size: .72rem; opacity: .78; transform: translateY(1px); transition: transform .2s ease; }
.nav-mega[open] .nav-caret { transform: rotate(180deg) translateY(-1px); }
.mega-panel { position: absolute; top: calc(100% + .72rem); left: 50%; z-index: 1200; width: min(calc(100vw - 2rem), 1180px); transform: translateX(-50%); padding: .7rem; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: linear-gradient(145deg, rgba(8,12,18,.985), rgba(13,19,28,.975)); box-shadow: 0 38px 120px rgba(0,0,0,.62); backdrop-filter: blur(22px); overflow: hidden; }
.mega-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 12% 8%, rgba(214,64,55,.20), transparent 22rem), radial-gradient(circle at 88% 10%, rgba(97,183,255,.16), transparent 24rem), linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent); }
.mega-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(280px, .78fr) 1.55fr; gap: .9rem; }
.mega-feature { display: grid; align-content: end; min-height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.028)); padding: 1rem; position: relative; }
.mega-feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; filter: saturate(1.05) contrast(1.08); }
.mega-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,11,.08), rgba(5,7,11,.90)); pointer-events: none; }
.mega-feature > div, .mega-feature > h2, .mega-feature > p, .mega-feature > .eyebrow { position: relative; z-index: 1; }
.mega-feature h2 { margin: .25rem 0 .65rem; font-size: clamp(1.65rem, 2.2vw, 2.35rem); line-height: .98; letter-spacing: -.045em; }
.mega-feature p:not(.eyebrow) { color: var(--steel); margin: 0 0 .95rem; }
.mega-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.mega-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
.mega-column { border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.045); padding: .95rem; }
.mega-column h3 { margin: 0 0 .85rem; color: #fff; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; }
.mega-column ul { display: grid; gap: .42rem; list-style: none; padding: 0; margin: 0; }
.mega-column a { display: grid; gap: .17rem; padding: .7rem .75rem; border-radius: 15px; border: 1px solid transparent; color: var(--steel); background: rgba(255,255,255,.026); transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.mega-column a:hover, .mega-column a[aria-current="page"] { color: #fff; transform: translateX(3px); border-color: rgba(214,64,55,.42); background: linear-gradient(135deg, rgba(214,64,55,.18), rgba(97,183,255,.07)); }
.mega-column a span { font-weight: 925; line-height: 1.15; }
.mega-column a small { color: var(--muted); line-height: 1.35; font-size: .78rem; }
.location-mega-shell { grid-template-columns: minmax(290px, .65fr) 1fr; }
.location-feature { min-height: auto; }
.location-feature::after { display: none; }
.location-feature .mega-feature-img { display: none; }
.mega-location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .65rem; }
.mega-location-grid a { display: grid; gap: .24rem; min-height: 102px; padding: .85rem; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028)); color: var(--steel); }
.mega-location-grid a:hover, .mega-location-grid a[aria-current="page"] { color: #fff; border-color: rgba(97,183,255,.38); transform: translateY(-2px); }
.mega-location-grid span { font-weight: 925; }
.mega-location-grid small { color: var(--muted); font-size: .78rem; line-height: 1.35; }
.header-actions { min-width: max-content; }
.header-call { display:inline-flex; align-items:center; justify-content:center; gap:.45rem; flex:0 0 auto; min-width:max-content; padding:.62rem .95rem; border:1px solid rgba(255,255,255,.16); border-radius:999px; background:rgba(255,255,255,.055); color:#fff; font-weight:900; line-height:1; }
.header-call:hover { background: rgba(255,255,255,.095); color: #fff; }
.header-quote { white-space:nowrap!important; min-width:max-content; flex:0 0 auto; }
.product-family-layout { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)) !important; }
.product-family-tile h3 { font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.06; }
.product-family-tile p { font-size: .95rem; }
.interior-overview, .content-sections, .gallery-grid, .tool-panel, .quote-form, .case-card, .download-card, .testimonial { border-color: rgba(255,255,255,.14); }

@media (min-width: 1081px) {
  .nav-mega:hover > .mega-panel { display: block; }
  .nav-mega:not([open]):not(:hover) > .mega-panel { display: none; }
  .nav-mega:hover > summary { color: #fff; background: rgba(255,255,255,.075); }
}

@media (max-width: 1235px) and (min-width: 1081px) {
  .brand-logo { width: 205px; }
  .nav-mega > summary, .nav-item { font-size: .84rem; padding-inline: .55rem; }
  .header-call { padding-inline: .72rem; font-size: .86rem; }
  .header-quote { padding-inline: .72rem; }
}

@media (max-width: 1080px) {
  .nav-shell { width: min(100% - 1.3rem, 1460px); position: relative; }
  .primary-nav { gap: .42rem; }
  .nav-mega, .nav-item { width: 100%; }
  .nav-mega > summary { width: 100%; justify-content: space-between; min-height: 48px; padding: .75rem .85rem; border-radius: .9rem; background: rgba(255,255,255,.04); }
  .mega-panel { position: static; width: 100%; transform: none; padding: .65rem; margin-top: .55rem; border-radius: 18px; box-shadow: none; }
  .mega-shell, .location-mega-shell { grid-template-columns: 1fr; }
  .mega-feature { min-height: auto; padding: 1rem; }
  .mega-feature-img { display: none; }
  .mega-feature::after { display: none; }
  .mega-columns { grid-template-columns: 1fr; }
  .mega-location-grid { grid-template-columns: 1fr; }
  .mega-column a:hover, .mega-column a[aria-current="page"] { transform: none; }
}

@media (max-width: 680px) {
  .product-family-layout { grid-template-columns: 1fr !important; }
  .mega-column { padding: .75rem; }
  .mega-column a small { display: none; }
  .top-strip-inner .top-phone { flex: 0 0 auto; }
}

.mega-panel, .mega-panel * { white-space: normal !important; word-break: normal !important; overflow-wrap: anywhere; hyphens: none; }
.mega-panel { width: min(calc(100vw - 1.5rem), 1320px); }
.mega-shell { grid-template-columns: minmax(260px, .62fr) minmax(0, 1.58fr); }
.mega-column h3 { line-height: 1.2; letter-spacing: .1em; }
.mega-column a { overflow: hidden; }
.mega-column a span, .mega-location-grid span { overflow-wrap: break-word; }
.mega-column a small { display: block; max-width: 100%; }
.header-call { display: inline-flex !important; white-space: nowrap !important; }
.header-call *, .top-phone { white-space: nowrap !important; overflow-wrap: normal !important; word-break: keep-all !important; }
@media (max-width: 1320px) and (min-width: 1081px) {
  .header-call { display: none !important; }
  .mega-feature { min-height: 390px; }
  .mega-columns { gap: .55rem; }
  .mega-column { padding: .75rem; }
  .mega-column a { padding: .62rem; }
}

@media (max-width: 1080px) {
  .primary-nav { overflow-x: hidden; }
  .mega-panel { position: static !important; left: auto !important; top: auto !important; transform: none !important; width: 100% !important; max-width: 100% !important; margin-top: .55rem; padding: .62rem; }
  .mega-shell, .location-mega-shell { display: grid !important; grid-template-columns: 1fr !important; gap: .65rem !important; }
  .mega-feature { display: none !important; }
  .mega-columns, .mega-location-grid { display: grid !important; grid-template-columns: 1fr !important; gap: .6rem !important; }
  .mega-column { min-width: 0; width: 100%; padding: .72rem; border-radius: 16px; }
  .mega-column h3 { font-size: .78rem; }
  .mega-column a { width: 100%; padding: .68rem; }
  .mega-column a small { display: block; }
}

body { overflow-x: hidden; }
.hero-home .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr); min-height: 720px; }
.hero-home .hero-copy h1 { max-width: 1040px; }
.hero-home .hero-kicker { max-width: 850px; }
.hero-home .hero-media { min-height: 520px; }
.hero-home .hero-img { object-fit: contain !important; padding: clamp(.75rem, 1.6vw, 1.25rem); background: radial-gradient(circle at 55% 15%, rgba(97,183,255,.12), transparent 18rem), #080d14; }
.hero-badge strong { letter-spacing: -.03em; }
.trust-row span { border-color: rgba(97,183,255,.22); background: linear-gradient(135deg, rgba(97,183,255,.09), rgba(255,255,255,.035)); }

.nav-shell { grid-template-columns: auto minmax(0,1fr) auto; }
.primary-nav { min-width: 0; }
.nav-mega > summary, .nav-item { font-size: clamp(.78rem, .68vw, .91rem); }
.header-call { letter-spacing: -.01em; }
.header-call span:last-child { font-variant-numeric: tabular-nums; }

.mega-cnc-panel::before { background: radial-gradient(circle at 12% 8%, rgba(97,183,255,.22), transparent 22rem), radial-gradient(circle at 88% 10%, rgba(214,64,55,.14), transparent 24rem), linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent); }
.mega-marking-panel::before { background: radial-gradient(circle at 12% 8%, rgba(214,64,55,.22), transparent 22rem), radial-gradient(circle at 88% 10%, rgba(97,183,255,.14), transparent 24rem), linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent); }
.mega-feature-img.img-fit-contain { object-fit: cover !important; padding: 0 !important; }

.photo-story { padding: clamp(2.8rem, 6vw, 5.5rem) 0; }
.photo-story-head { max-width: 920px; }
.photo-story-head h2 { font-size: clamp(2rem, 4.5vw, 4.15rem); line-height: .96; letter-spacing: -.055em; margin: 0 0 .75rem; }
.photo-story-head p { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.photo-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(.85rem,1.4vw,1.1rem); }
.photo-story-card { position: relative; min-height: 290px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; overflow: hidden; background: #080d14; box-shadow: 0 24px 80px rgba(0,0,0,.24); }
.photo-story-img { width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: contain !important; padding: .55rem; filter: contrast(1.06) saturate(1.03); }
.photo-story-card figcaption { position: absolute; inset: auto .8rem .8rem .8rem; display: grid; gap: .1rem; padding: .7rem .85rem; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(5,7,11,.78); backdrop-filter: blur(12px); }
.photo-story-card figcaption strong { color: #fff; line-height: 1; }
.photo-story-card figcaption span { color: var(--muted); font-size: .82rem; }

.capability-section { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.capability-group + .capability-group { margin-top: clamp(2.25rem, 4.5vw, 4rem); }
.capability-group-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.capability-group-head h3 { margin: 0; font-size: clamp(1.35rem, 2.5vw, 2.25rem); line-height: 1.02; letter-spacing: -.045em; }
.capability-grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: clamp(.9rem, 1.5vw, 1.2rem) !important; align-items: stretch; }
.capability-tile { display: grid !important; grid-template-rows: auto 1fr; min-height: 100%; text-decoration: none; color: inherit; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028)); padding: .85rem; overflow: hidden; box-shadow: 0 28px 86px rgba(0,0,0,.22); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.capability-tile:hover { transform: translateY(-5px); border-color: rgba(97,183,255,.36); background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.036)); color: #fff; }
.capability-tile.is-featured { border-color: rgba(97,183,255,.25); background: radial-gradient(circle at 12% 0%, rgba(97,183,255,.12), transparent 16rem), linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.032)); }
.capability-group-marking .capability-tile.is-featured { border-color: rgba(214,64,55,.28); background: radial-gradient(circle at 12% 0%, rgba(214,64,55,.14), transparent 16rem), linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.032)); }
.capability-visual { margin: 0; display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 10; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: radial-gradient(circle at 20% 10%, rgba(97,183,255,.11), transparent 16rem), #070c13; overflow: hidden; }
.capability-visual img { display: block; width: 100%; height: 100%; object-fit: contain !important; object-position: center center !important; padding: .5rem; border-radius: 18px; }
.capability-body { display: grid; gap: .35rem; padding: .95rem .15rem .2rem; }
.capability-body .product-family-index { color: var(--blue); font-weight: 950; font-size: .78rem; letter-spacing: .16em; }
.capability-group-marking .capability-body .product-family-index { color: var(--red-2); }
.capability-type { margin: 0; color: var(--muted-2) !important; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem !important; font-weight: 900; }
.capability-body h3 { display: flex; align-items: start; justify-content: space-between; gap: .4rem; margin: 0; color: #fff; font-size: clamp(1.02rem, 1.2vw, 1.26rem); line-height: 1.08; letter-spacing: -.035em; }
.capability-body h3 span { color: var(--blue); }
.capability-body p:last-child { margin: 0; color: #c3ccd8; font-size: .94rem; line-height: 1.52; }

.home-story-section { background: radial-gradient(circle at 10% 0%, rgba(97,183,255,.13), transparent 22rem), #060a10; border-block: 1px solid rgba(255,255,255,.1); }
.home-story-shell { grid-template-columns: minmax(280px,.82fr) 1.38fr; }
.home-story-lead { background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.027)); border: 1px solid rgba(255,255,255,.13); border-radius: 32px; padding: clamp(1.25rem, 2.6vw, 2rem); box-shadow: 0 28px 90px rgba(0,0,0,.24); }
.home-story-lead h2 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: .95; letter-spacing: -.06em; margin: 0 0 .8rem; }
.home-story-lead p { color: var(--steel); }
.home-story-stats { display: grid; gap: .7rem; margin-top: 1.3rem; }
.home-story-stats span { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .85rem .95rem; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.045); color: var(--muted); font-weight: 800; }
.home-story-stats strong { color: #fff; font-size: 1.2rem; }
.home-story-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.home-story-card { padding: clamp(1.05rem, 1.8vw, 1.45rem); border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026)); box-shadow: 0 22px 80px rgba(0,0,0,.18); }
.home-story-number { color: var(--blue); font-weight: 950; letter-spacing: .16em; font-size: .78rem; }
.home-story-card h3 { margin: .6rem 0 .65rem; font-size: clamp(1.22rem, 1.8vw, 1.7rem); line-height: 1.03; letter-spacing: -.04em; }
.home-story-card p { margin: 0 0 .75rem; color: var(--muted); }

.snapshot-card span { color: var(--blue); }
.editorial-copy h2 { text-wrap: balance; }
.editorial-copy p { color: #c3ccd8; }
.product-family-section + .home-story-section { margin-top: 0; }

.quote-intro .quote-photo-img { object-fit: contain !important; padding: .55rem; background: #080d14; }
.gallery-img, .case-card .case-img, .resource-card .card-img { object-fit: contain !important; }

@media (max-width: 1320px) and (min-width: 1081px) {
  .primary-nav { justify-content: flex-end; }
  .header-call { display: none !important; }
  .brand-logo { width: 210px; }
}
@media (max-width: 1160px) and (min-width: 1081px) {
  .header-quote { display: none; }
  .nav-mega > summary, .nav-item { padding-inline: .5rem; }
}
@media (max-width: 1180px) {
  .hero-home .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-home .hero-media { min-height: 380px; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .photo-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-story-shell { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .capability-grid, .home-story-cards, .photo-strip { grid-template-columns: 1fr !important; }
  .capability-group-head { align-items: start; flex-direction: column; }
  .hero-home .hero-media { min-height: 300px; }
  .hero-home .hero-img { min-height: 300px; }
  .photo-story-card { min-height: 250px; }
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}
.split-heading > div { max-width: 880px; }

.home-gallery-preview {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(97,183,255,.13), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(214,64,55,.13), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.008));
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .82fr .82fr;
  grid-auto-rows: clamp(190px, 16vw, 260px);
  gap: clamp(.85rem, 1.4vw, 1.1rem);
}
.home-gallery-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  color: #fff;
  text-align: left;
  background: #080d14;
  box-shadow: 0 28px 88px rgba(0,0,0,.25);
}
.home-gallery-card:first-child,
.home-gallery-card:nth-child(6) { grid-row: span 2; }
.home-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  filter: contrast(1.06) saturate(1.04);
  transition: transform .28s ease, filter .28s ease;
}
.home-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.88));
  pointer-events: none;
}
.home-gallery-card:hover .home-gallery-img { transform: scale(1.045); filter: contrast(1.09) saturate(1.07); }
.home-gallery-card span,
.home-gallery-card strong {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
}
.home-gallery-card span {
  bottom: 3.15rem;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.home-gallery-card strong {
  bottom: 1rem;
  display: block;
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.gallery-page-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(214,64,55,.12), transparent 27rem),
    radial-gradient(circle at 88% 16%, rgba(97,183,255,.10), transparent 30rem),
    rgba(255,255,255,.01);
}
.gallery-filter-bar { margin-bottom: 1.5rem; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 1.5vw, 1.15rem);
}
.gallery-masonry-item {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: .35rem;
  min-width: 0;
  padding: .7rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  color: inherit;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    #080d14;
  box-shadow: 0 24px 78px rgba(0,0,0,.20);
  transition: transform .22s ease, border-color .22s ease;
}
.gallery-masonry-item:hover { transform: translateY(-5px); border-color: rgba(97,183,255,.40); }
.gallery-masonry-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain !important;
  padding: .35rem;
  border-radius: 20px;
  background: radial-gradient(circle at 18% 10%, rgba(97,183,255,.10), transparent 14rem), #060a10;
}
.gallery-masonry-item span {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: .5rem;
}
.gallery-masonry-item strong {
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.gallery-masonry-item em {
  color: var(--muted);
  font-style: normal;
  font-size: .9rem;
}

.blog-preview-section,
.blog-index-section {
  position: relative;
  overflow: clip;
}
.blog-card-grid,
.blog-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(.95rem, 1.6vw, 1.25rem);
}
.blog-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    #080d14;
  box-shadow: 0 26px 86px rgba(0,0,0,.23);
  transition: transform .22s ease, border-color .22s ease;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(214,64,55,.42); }
.blog-card a { display: grid; height: 100%; color: inherit; }
.blog-card-media { margin: 0; background: #060a10; }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  filter: contrast(1.05) saturate(1.04);
}
.blog-card-body { display: grid; gap: .55rem; padding: clamp(1rem, 1.7vw, 1.35rem); }
.blog-card-body span {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.blog-card-body h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.22rem, 1.7vw, 1.65rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.blog-card-body p { margin: 0; color: #c5ceda; }
.blog-card-body strong { color: var(--red-2); }
.blog-card-featured { grid-column: span 2; }
.blog-card-featured a { grid-template-columns: minmax(280px, .9fr) 1fr; }
.blog-card-featured .blog-card-img { height: 100%; min-height: 360px; aspect-ratio: auto; }
.blog-article-shell {
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}
.blog-article-meta {
  position: sticky;
  top: 126px;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.027)),
    #090e15;
  box-shadow: 0 22px 74px rgba(0,0,0,.20);
}
.blog-article-meta h2 { margin: 0 0 .75rem; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.02; letter-spacing: -.045em; }
.blog-article-meta p:not(.eyebrow) { color: var(--muted); }
.blog-article-copy {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    #090e15;
  box-shadow: 0 28px 88px rgba(0,0,0,.20);
}
.blog-article-copy p {
  max-width: 82ch;
  margin: 0 0 1.15rem;
  color: #d4dbe5;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.82;
}
.blog-article-copy p:last-child { margin-bottom: 0; }

.nav-resources .mega-feature-img { object-fit: cover !important; padding: 0 !important; }
.resources-columns { grid-template-columns: repeat(3, minmax(0,1fr)); }

@media (max-width: 1180px) {
  .split-heading { align-items: start; flex-direction: column; }
  .home-gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-gallery-card:first-child,
  .home-gallery-card:nth-child(6) { grid-row: span 1; }
  .gallery-masonry { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .blog-card-grid,
  .blog-feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .blog-card-featured { grid-column: span 2; }
  .blog-article-shell { grid-template-columns: 1fr; }
  .blog-article-meta { position: relative; top: auto; }
}
@media (max-width: 760px) {
  .home-gallery-grid,
  .gallery-masonry,
  .blog-card-grid,
  .blog-feature-grid { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-auto-rows: minmax(240px, auto); }
  .blog-card-featured { grid-column: span 1; }
  .blog-card-featured a { grid-template-columns: 1fr; }
  .blog-card-featured .blog-card-img { min-height: 0; aspect-ratio: 16 / 10; }
}
.home-gallery-img {
  object-fit: contain !important;
  padding: .45rem;
  background: radial-gradient(circle at 50% 12%, rgba(97,183,255,.10), transparent 18rem), #060a10;
}

.home-capability-showcase {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(97,183,255,.12), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(214,64,55,.10), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.012));
}
.home-capability-shell {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
}
.home-capability-lead,
.home-capability-feature,
.home-marking-panel {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.028)), #080d14;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}
.home-capability-lead {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}
.home-capability-lead h2,
.home-marking-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 4.75rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.home-marking-panel h2 { font-size: clamp(1.8rem, 3.4vw, 3.15rem); }
.home-capability-lead p:not(.eyebrow),
.home-marking-panel p {
  margin: 0;
  color: #c7d0dc;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}
.home-capability-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .35rem; }
.home-capability-feature {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: minmax(300px, .98fr) auto;
  overflow: hidden;
}
.home-capability-feature figure { margin: 0; min-height: 0; background: #060a10; }
.home-capability-feature-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: contain !important;
  padding: clamp(.7rem, 1.6vw, 1.15rem);
  background: radial-gradient(circle at 50% 10%, rgba(97,183,255,.13), transparent 22rem), #060a10;
}
.home-capability-feature > div { padding: clamp(1rem, 2vw, 1.55rem); display: grid; gap: .45rem; }
.home-capability-feature span,
.home-capability-card p {
  margin: 0;
  color: var(--blue);
  font-weight: 950;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.home-capability-feature h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.home-capability-feature p { margin: 0; color: var(--muted); }
.home-capability-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.85rem, 1.5vw, 1.1rem);
}
.home-capability-card {
  display: grid;
  grid-template-columns: minmax(112px, .42fr) minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  padding: .78rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.024)), #080d14;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.home-capability-card:hover,
.home-capability-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(97,183,255,.4);
  color: #fff;
}
.home-capability-card figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 12%, rgba(97,183,255,.12), transparent 12rem), #060a10;
  overflow: hidden;
}
.home-capability-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: .42rem;
}
.home-capability-card div { display: grid; gap: .25rem; min-width: 0; }
.home-capability-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.42vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.home-capability-card span:last-child { color: var(--red-2); font-weight: 900; }
.home-marking-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2.6vw, 2.1rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(214,64,55,.15), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.028)),
    #080d14;
}
.home-marking-panel > div:first-child { display: grid; gap: .85rem; align-content: center; }
.home-marking-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .75rem;
}
.home-marking-links a {
  display: grid;
  gap: .35rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  color: inherit;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease;
}
.home-marking-links a:hover { transform: translateY(-3px); border-color: rgba(214,64,55,.45); color: #fff; }
.home-marking-links span { color: #fff; font-weight: 950; letter-spacing: -.02em; }
.home-marking-links small { color: var(--muted); line-height: 1.5; }
.gallery-masonry-item,
.home-gallery-card { min-width: 0; }
.gallery-masonry-img,
.home-gallery-img {
  object-fit: contain !important;
  object-position: center center !important;
  background: radial-gradient(circle at 50% 10%, rgba(97,183,255,.10), transparent 18rem), #060a10;
}
.admin-alert-error:empty { display: none; }
@media (max-width: 1180px) {
  .home-capability-shell,
  .home-marking-panel { grid-template-columns: 1fr; }
  .home-capability-feature { grid-column: auto; grid-row: auto; }
  .home-capability-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .home-capability-grid,
  .home-marking-links { grid-template-columns: 1fr; }
  .home-capability-card { grid-template-columns: 96px minmax(0,1fr); border-radius: 20px; }
  .home-capability-feature-img { min-height: 280px; }
  .home-capability-lead h2 { font-size: clamp(2rem, 12vw, 3rem); }
}

.trust-row {
  align-items: center;
  gap: 0;
  color: #c7d0dc;
}
.trust-row span {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .01em;
}
.trust-row span + span::before {
  content: "•";
  display: inline-block;
  margin: 0 .75rem;
  color: var(--red-2);
  font-weight: 950;
}
.hero-badge {
  border-radius: 0 !important;
  border: 0 !important;
  border-left: 3px solid var(--red-2) !important;
  background: rgba(5,7,11,.72) !important;
  box-shadow: none !important;
}
.header-quote,
.cta-actions .btn-primary,
.hero-actions .btn-primary {
  box-shadow: 0 18px 46px rgba(214,64,55,.28);
}
#quote-form {
  scroll-margin-top: 118px;
}
.quote-form {
  outline: 1px solid rgba(214,64,55,.16);
}

.serving-search-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(97,183,255,.12), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(214,64,55,.14), transparent 24rem);
}
.serving-search-shell {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1fr);
  align-items: stretch;
}
.serving-search-copy,
.serving-search-card,
.city-service-copy,
.city-service-panel,
.serving-featured-card,
.state-directory-card,
.city-capability-card {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 22px 90px rgba(0,0,0,.22);
}
.serving-search-copy,
.serving-search-card {
  padding: clamp(1.15rem, 3vw, 2rem);
}
.serving-search-copy h2 {
  max-width: 820px;
}
.serving-proof {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}
.serving-proof span {
  color: #fff;
  padding: .48rem .72rem;
  border: 1px solid rgba(97,183,255,.23);
  border-radius: .8rem;
  background: rgba(97,183,255,.075);
  font-size: .88rem;
  font-weight: 900;
}
.serving-search-card label {
  display: block;
  margin-bottom: .6rem;
  color: #fff;
  font-size: 1.05rem;
}
.serving-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
}
.serving-search-box input {
  min-height: 54px;
  margin: 0;
  font-size: 1rem;
}
.serving-search-hint {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.serving-results {
  display: grid;
  gap: .65rem;
  max-height: 390px;
  overflow: auto;
  margin-top: 1rem;
  padding-right: .25rem;
}
.serving-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: .85rem .9rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: inherit;
  background: rgba(255,255,255,.045);
}
.serving-result-card:hover,
.serving-featured-card:hover,
.city-capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,64,55,.42);
  background: linear-gradient(135deg, rgba(214,64,55,.14), rgba(97,183,255,.06));
}
.serving-result-card strong {
  color: #fff;
  font-size: 1.03rem;
}
.serving-result-card span,
.serving-result-card em {
  color: var(--muted);
  font-style: normal;
  font-size: .86rem;
}
.serving-featured-grid,
.city-capability-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.serving-featured-card,
.city-capability-card {
  display: grid;
  align-content: start;
  gap: .45rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: inherit;
  min-height: 190px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.serving-featured-card span,
.city-capability-card span {
  color: var(--red-2);
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .75rem;
}
.serving-featured-card h3,
.city-capability-card h3 {
  margin: .15rem 0;
}
.serving-featured-card p,
.city-capability-card p,
.city-service-panel p,
.city-service-copy p {
  color: var(--muted);
}
.state-directory-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.state-directory-card {
  padding: .95rem 1rem;
}
.state-directory-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}
.state-directory-card summary::-webkit-details-marker { display: none; }
.state-directory-card small {
  color: var(--muted);
  font-size: .8rem;
}
.state-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  margin-top: .85rem;
}
.state-city-links a {
  color: var(--steel);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: .7rem;
  padding: .42rem .58rem;
  background: rgba(255,255,255,.035);
  font-size: .88rem;
  font-weight: 800;
}
.state-city-links a:hover { color: #fff; border-color: rgba(97,183,255,.38); }
.city-service-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  align-items: start;
}
.city-service-copy,
.city-service-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.city-service-panel ul {
  display: grid;
  gap: .65rem;
  padding-left: 1.1rem;
  color: var(--steel);
}
.city-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.city-capability-card {
  min-height: 210px;
}
@media (max-width: 980px) {
  .serving-search-shell,
  .city-service-grid { grid-template-columns: 1fr; }
  .serving-featured-grid,
  .city-capability-grid,
  .state-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .serving-search-box { grid-template-columns: 1fr; }
  .serving-featured-grid,
  .city-capability-grid,
  .state-directory-grid { grid-template-columns: 1fr; }
  .trust-row span { font-size: .84rem; }
  .trust-row span + span::before { margin: 0 .5rem; }
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 5000 !important;
  background: rgba(5, 7, 11, 0.92) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.96) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.34), 0 1px 0 rgba(255,255,255,.08);
}
.site-header .top-strip-inner > span:first-child,
.site-header .top-strip-inner > .hide-sm {
  white-space: nowrap;
}
#quote-form,
:target {
  scroll-margin-top: 132px;
}
@media (max-width: 1080px) {
  .site-header { position: sticky !important; }
  #quote-form,
  :target { scroll-margin-top: 118px; }
}
@media (max-width: 720px) {
  .site-header .top-strip-inner > .hide-sm { display: none !important; }
  .site-header .top-strip-inner { justify-content: space-between; }
}

:root { --site-header-height: 108px; }
html { scroll-padding-top: calc(var(--site-header-height, 108px) + 20px); }
body[data-layout] { padding-top: var(--site-header-height, 108px); }
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  transform: none !important;
  width: 100% !important;
  background: rgba(4, 6, 10, 0.94) !important;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .28);
  will-change: box-shadow;
}
.site-header.is-scrolled {
  background: rgba(4, 6, 10, 0.985) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .48), 0 1px 0 rgba(255,255,255,.08);
}
.site-header .top-strip-inner,
.site-header .nav-shell { min-width: 0; }
.hero,
.hero-grid,
.hero-copy,
.hero-media,
.hero-img { min-width: 0 !important; max-width: 100% !important; }
.hero { overflow: clip !important; }
.hero-grid { width: min(100% - 2rem, var(--container)); }
.hero-home .hero-grid {
  grid-template-columns: minmax(0, .98fr) minmax(0, .82fr) !important;
  min-height: min(720px, calc(100svh - var(--site-header-height, 108px))) !important;
  padding-top: clamp(3.2rem, 5.4vw, 5.2rem) !important;
  padding-bottom: clamp(3.2rem, 5.4vw, 5.2rem) !important;
}
.hero-home .hero-media {
  width: min(100%, 610px) !important;
  justify-self: end !important;
  min-height: 0 !important;
  aspect-ratio: 1.12 / 1 !important;
  max-height: min(560px, calc(100svh - var(--site-header-height, 108px) - 4rem)) !important;
}
.hero-home .hero-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(.55rem, 1.15vw, 1rem) !important;
}
.hero-copy h1 { text-wrap: balance; }
.hero-home .hero-copy h1 {
  font-size: clamp(3.2rem, 6.55vw, 6.15rem) !important;
  line-height: .92 !important;
  max-width: 880px !important;
}
.hero-badge {
  right: .85rem !important;
  bottom: .85rem !important;
  max-width: min(188px, calc(100% - 1.7rem)) !important;
  pointer-events: none;
}
.hero-badge strong { font-size: clamp(1rem, 1.4vw, 1.25rem) !important; }
.hero-badge span { display: block; line-height: 1.3; }
#quote-form { scroll-margin-top: calc(var(--site-header-height, 108px) + 24px); }
@media (max-width: 1380px) {
  .hero-home .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .72fr) !important; }
  .hero-home .hero-media { width: min(100%, 500px) !important; }
  .hero-home .hero-copy h1 { font-size: clamp(3rem, 6.25vw, 5.65rem) !important; }
}
@media (max-width: 1180px) {
  :root { --site-header-height: 108px; }
  .hero-home .hero-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .hero-home .hero-media { width: 100% !important; justify-self: stretch !important; max-height: none !important; aspect-ratio: 16 / 10 !important; }
}
@media (max-width: 760px) {
  :root { --site-header-height: 110px; }
  body[data-layout] { padding-top: var(--site-header-height, 110px); }
  .site-header .top-strip { font-size: .75rem; }
  .site-header .top-strip-inner { min-height: 32px; padding: .25rem 0; }
  .site-header .nav-shell { min-height: 76px; }
  .hero-home .hero-grid { padding-top: clamp(2.2rem, 10vw, 3.5rem) !important; padding-bottom: clamp(2.2rem, 10vw, 3.5rem) !important; }
  .hero-home .hero-copy h1 { font-size: clamp(2.5rem, 13vw, 4.25rem) !important; }
  .hero-home .hero-media { aspect-ratio: 4 / 3 !important; }
  .hero-badge { position: static !important; margin: .8rem; justify-self: start; align-self: end; max-width: none !important; }
}


:root {
  --sss-header-height: 112px;
  --container: 1360px;
}
html {
  overflow-x: hidden;
  scroll-padding-top: calc(var(--sss-header-height, 112px) + 22px);
}
body {
  padding-top: var(--sss-header-height, 112px);
  overflow-x: hidden;
}
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9000 !important;
  transform: translateZ(0);
  will-change: transform;
  background: rgba(5, 7, 11, .94) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}
.site-header.is-scrolled {
  background: rgba(5, 7, 11, .975) !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.42), 0 1px 0 rgba(255,255,255,.09);
}
.site-header .container,
.nav-shell,
.top-strip-inner {
  max-width: min(100% - 2rem, 1460px);
}
main {
  overflow-x: clip;
}
section,
[id],
#quote-form,
:target {
  scroll-margin-top: calc(var(--sss-header-height, 112px) + 24px) !important;
}
.hero {
  overflow: clip;
}
.hero-home .hero-grid {
  width: min(100% - 2rem, 1360px);
  max-width: 1360px;
  margin-inline: auto;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 535px) !important;
  min-height: clamp(560px, calc(100vh - var(--sss-header-height, 112px)), 690px) !important;
  padding-top: clamp(2.6rem, 5vw, 5.35rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 5rem) !important;
  gap: clamp(1.25rem, 3vw, 3rem) !important;
}
.hero-home .hero-copy h1 {
  max-width: 850px !important;
  font-size: clamp(3.05rem, 5.9vw, 5.65rem) !important;
  line-height: .91 !important;
  letter-spacing: -.062em !important;
}
.hero-home .hero-kicker {
  max-width: 780px !important;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem) !important;
}
.hero-home .hero-media {
  justify-self: end;
  width: min(100%, 535px) !important;
  max-width: 535px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  aspect-ratio: 1.08 / 1 !important;
  align-self: center;
}
.hero-home .hero-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(.45rem, .9vw, .8rem) !important;
}
.hero-home .hero-badge {
  right: clamp(.75rem, 1vw, 1rem) !important;
  bottom: clamp(.75rem, 1vw, 1rem) !important;
  max-width: min(230px, calc(100% - 2rem)) !important;
}
.trust-row {
  max-width: 100%;
}
.trust-row span {
  white-space: normal;
}
.header-call,
.header-call span,
.header-quote,
.top-phone {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
@media (min-width: 1081px) {
  .primary-nav { justify-content: center; }
}
@media (max-width: 1320px) and (min-width: 1081px) {
  .header-call { display: none !important; }
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 470px) !important;
  }
  .hero-home .hero-media {
    width: min(100%, 470px) !important;
    max-width: 470px !important;
  }
}
@media (max-width: 1180px) {
  body { padding-top: var(--sss-header-height, 112px); }
  .hero-home .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-home .hero-media {
    justify-self: start;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    aspect-ratio: 16 / 10 !important;
  }
}
@media (max-width: 1080px) {
  .primary-nav {
    position: fixed !important;
    top: calc(var(--sss-header-height, 112px) + .65rem) !important;
    left: 1rem !important;
    right: 1rem !important;
    bottom: auto !important;
    max-height: calc(100vh - var(--sss-header-height, 112px) - 1.4rem) !important;
  }
}
@media (max-width: 760px) {
  .site-header .container,
  .nav-shell,
  .top-strip-inner { max-width: min(100% - 1.1rem, 1460px); }
  .top-strip-inner { gap: .5rem; }
  .top-strip-inner > span:first-child { font-size: .78rem; }
  .hero-home .hero-grid {
    padding-top: clamp(2rem, 8vw, 3rem) !important;
    padding-bottom: clamp(2rem, 8vw, 3rem) !important;
  }
  .hero-home .hero-copy h1 {
    font-size: clamp(2.7rem, 13.2vw, 4.25rem) !important;
  }
  .hero-home .hero-media {
    width: 100% !important;
    aspect-ratio: 16 / 11 !important;
  }
  .hero-home .hero-img { padding: .4rem !important; }
  .hero-actions .btn { width: 100%; }
  .trust-row { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .trust-row span + span::before { content: none !important; }
}
@media (max-width: 420px) {
  :root { --sss-header-height: 106px; }
  .brand-logo { width: min(60vw, 198px) !important; }
  .nav-shell { min-height: 70px !important; }
  .top-strip-inner > span:first-child { max-width: calc(100vw - 140px); }
}


:root {
  --site-header-height: 116px;
}
html {
  scroll-padding-top: calc(var(--site-header-height) + 1rem);
}
body {
  padding-top: var(--site-header-height) !important;
  overflow-x: hidden !important;
}
.site-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  z-index: 99990 !important;
  transform: translateZ(0);
  background: rgba(5, 7, 11, 0.94) !important;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.975) !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.40), 0 1px 0 rgba(255,255,255,.08);
}
.top-strip,
.nav-shell {
  flex-shrink: 0;
}
.nav-shell {
  min-height: 76px;
}
.hero {
  overflow: hidden !important;
}
.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 590px) !important;
  min-height: min(690px, calc(100svh - var(--site-header-height))) !important;
  align-items: center !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  padding-top: clamp(2.2rem, 4.5vw, 4.8rem) !important;
  padding-bottom: clamp(2.6rem, 5vw, 5.2rem) !important;
}
.hero-home .hero-copy {
  min-width: 0;
}
.hero-home .hero-copy h1 {
  max-width: 790px !important;
  font-size: clamp(3.25rem, 5.55vw, 5.9rem) !important;
  line-height: .91 !important;
}
.hero-home .hero-kicker {
  max-width: 770px !important;
}
.hero-home .hero-media {
  width: 100% !important;
  max-width: 590px !important;
  justify-self: end !important;
  align-self: center !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 11 !important;
  overflow: hidden !important;
}
.hero-home .hero-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: clamp(.65rem, 1.2vw, 1rem) !important;
}
.hero-badge {
  pointer-events: none;
}
.trust-row {
  align-items: center;
  gap: 0 !important;
  color: var(--steel);
}
.trust-row span {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--steel) !important;
  font-size: .92rem !important;
  font-weight: 850 !important;
  line-height: 1.4;
}
.trust-row span + span::before {
  content: "•";
  display: inline-block;
  margin: 0 .75rem;
  color: var(--red-2);
}
.header-actions,
.header-call,
.header-call span,
.header-quote,
.top-phone {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}
.header-call {
  line-height: 1 !important;
}
#quote-form,
:target {
  scroll-margin-top: calc(var(--site-header-height) + 1rem) !important;
}
@media (max-width: 1360px) and (min-width: 1081px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 510px) !important;
  }
  .hero-home .hero-media {
    max-width: 510px !important;
  }
  .hero-home .hero-copy h1 {
    font-size: clamp(3rem, 5.25vw, 5.2rem) !important;
  }
}
@media (max-width: 1180px) {
  .hero-home .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-home .hero-media {
    justify-self: start !important;
    max-width: min(100%, 720px) !important;
  }
}
@media (max-width: 1080px) {
  .primary-nav {
    position: fixed !important;
    inset: calc(var(--site-header-height) + .75rem) 1rem auto 1rem !important;
    max-height: calc(100svh - var(--site-header-height) - 1.5rem) !important;
  }
  .nav-shell {
    min-height: 76px;
  }
}
@media (max-width: 760px) {
  body {
    padding-top: var(--site-header-height) !important;
  }
  .top-strip-inner {
    min-height: 34px;
  }
  .hero-home .hero-grid {
    padding-top: clamp(2rem, 8vw, 3.25rem) !important;
  }
  .hero-home .hero-copy h1 {
    font-size: clamp(2.75rem, 12vw, 4rem) !important;
  }
  .hero-home .hero-media {
    aspect-ratio: 4 / 3 !important;
  }
  .trust-row {
    display: block;
  }
  .trust-row span {
    display: inline;
  }
}
@media (max-width: 430px) {
  .brand-logo {
    width: min(59vw, 205px) !important;
  }
  .nav-shell {
    min-height: 72px;
  }
  .top-strip-inner span:first-child {
    max-width: calc(100vw - 142px);
  }
}

/* Client revision pass: non-clickable proof text should not look like button pills. */
.trust-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .35rem 0 !important;
  align-items: center !important;
}
.trust-row span {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #cbd4df !important;
  font-weight: 800 !important;
}
.trust-row span + span::before {
  content: "•" !important;
  display: inline-block !important;
  margin: 0 .72rem !important;
  color: var(--red-2) !important;
}
.overview-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .68rem 1rem !important;
  margin-top: 1.25rem !important;
}
.overview-chips span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 0 !important;
  padding: 0 0 0 .7rem !important;
  border: 0 !important;
  border-left: 2px solid rgba(214,64,55,.75) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #d7e0ec !important;
  font-size: .86rem !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}
.hero-badge {
  border-radius: 0 !important;
  pointer-events: none !important;
}
.pill,
.gallery-item span,
.filter-bar button {
  border-radius: .55rem !important;
}
.optional {
  color: var(--muted-2);
  font-size: .82rem;
  font-weight: 800;
}
.quote-form-simple .form-grid {
  gap: 1rem;
}
.quote-form-simple textarea {
  min-height: 190px;
}
.quote-layout-simple .check-list li {
  color: #d3dce8;
}
@media (max-width: 640px) {
  .trust-row { display: block !important; }
  .trust-row span { display: inline !important; }
  .trust-row span + span::before { margin: 0 .5rem !important; }
}
