@font-face {
font-family: 'Anton';
src: url('/assets/fonts/anton-400.woff2') format('woff2');
font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
font-family: 'Barlow Semi Condensed';
src: url('/assets/fonts/barlow-semi-condensed-500.woff2') format('woff2');
font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
font-family: 'Barlow Semi Condensed';
src: url('/assets/fonts/barlow-semi-condensed-800.woff2') format('woff2');
font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/inter-variable.woff2') format('woff2');
font-weight: 400 800; font-style: normal; font-display: swap;
}
:root {
--h-black: #0B0D0E;
--h-panel: #15191B;
--h-bone: #E7E5DF;
--h-muted: #C6C7C4;
--h-cyan: #08A9DD;
--h-cyan-dark: #087EA4;
--bl-cyan-ink: #0A6382;
--h-mark: #27AAE1;
--slab-contact: 0 4px 10px rgba(6, 8, 9, .74);
--slab-ambient: 0 22px 44px rgba(6, 8, 9, .58);
--us-rule: #4C4C4B;
--hdr-h: 72px;
--us-h: 38px;
--h-gutter: 5%;
--hero-copy-top: 33px;
--hero-copy-bottom: 56px;
--sticky-h: 0px;
--cta-bg: #0A6E8F;
--cta-bg-hover: #0C7EA3;
}
@media (max-width: 1199px) and (min-width: 900px) { :root { --hdr-h: 68px; --us-h: 36px; } }
@media (max-width: 899px)  { :root { --hdr-h: 64px; --us-h: 34px; } }
@media (max-width: 560px)  { :root { --hdr-h: 60px; --us-h: 32px; } }
@media (max-width: 899px) {
:root {
--slab-contact: 0 3px 8px rgba(6, 8, 9, .74);
--slab-ambient: 0 15px 30px rgba(6, 8, 9, .58);
}
}
.lockup {
--lk-word: 58.5px;
--lk-cap: calc(var(--lk-word) * .70);
display: inline-grid;
grid-template-columns: auto auto;
grid-template-rows: auto auto;
align-items: center;
justify-items: start;
column-gap: calc(var(--lk-cap) * .412);
row-gap: calc(var(--lk-cap) * .368);
text-decoration: none;
line-height: 1;
color: #fff;
}
.lockup:hover { text-decoration: none; }
.lockup-mark {
grid-column: 1; grid-row: 1;
height: calc(var(--lk-cap) * 1.382);
width: auto;
display: block;
}
.lockup-word {
grid-column: 2; grid-row: 1;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800;
font-size: var(--lk-word);
line-height: .78;
letter-spacing: .028em;
color: #fff;
}
.lockup-sub {
grid-column: 1 / -1; grid-row: 2;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 500;
font-size: max(9px, calc(var(--lk-word) * .25));
letter-spacing: var(--lk-sub-track, .294em);
margin-right: calc(-1 * var(--lk-sub-track, .294em));
color: var(--h-muted);
white-space: nowrap;
}
.lockup--header { --lk-word: 35px; --lk-sub-track: .288em; }
.lockup--footer { --lk-word: 30.5px; --lk-sub-track: .187em; }
.lockup--footer .lockup-mark { filter: brightness(0) invert(1); }
@media (max-width: 1023px) {
.lockup--header { --lk-word: 33px; --lk-sub-track: .243em; }
}
@media (max-width: 899px) {
.lockup--header { --lk-word: 31px; --lk-sub-track: .199em; }
.lockup--footer { --lk-word: 28px; --lk-sub-track: .18em; }
}
@media (max-width: 560px) {
.lockup--header { --lk-word: 28px; --lk-sub-track: .132em; }
.lockup--footer { --lk-word: 25.5px; --lk-sub-track: .13em; }
}
.utility-strip {
background: var(--h-black);
border-bottom: 1px solid var(--us-rule);
position: relative;
z-index: 201;
isolation: isolate;
}
.utility-strip::before {
content: ''; position: absolute; inset: 0; pointer-events: none;
background-image: url('/assets/img/hero/concrete.webp'), url('/assets/img/hero/grain.webp');
background-size: 420px 420px, 128px 128px;
background-repeat: repeat, repeat;
background-blend-mode: normal, overlay;
opacity: .12;
mix-blend-mode: screen;
z-index: 0;
}
.utility-strip-inner {
position: relative; z-index: 1;
height: var(--us-h);
padding: 0 calc(var(--h-gutter) + 14px) 0 var(--h-gutter);
display: flex; align-items: center; justify-content: flex-end;
gap: 18px;
}
.us-item {
display: inline-flex; align-items: center; gap: 7px;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 500; font-size: 14.5px; letter-spacing: .1em;
color: var(--h-muted); text-decoration: none; white-space: nowrap;
text-transform: uppercase;
}
.us-item:hover { color: #fff; text-decoration: none; }
.us-phone { letter-spacing: .07em; }
.us-sep { width: 1px; height: 14px; background: rgba(231,229,223,.18); flex: 0 0 auto; }
.site-header {
position: sticky; top: 0; z-index: 200;
height: var(--hdr-h);
background-color: var(--h-black);
transition: background-color .28s ease, box-shadow .28s ease;
}
@media (min-width: 900px) {
body.page-home .site-header { background-color: transparent; }
}
.site-header.is-stuck,
body.page-home .site-header.is-stuck {
background-color: var(--h-black);
box-shadow: 0 1px 0 rgba(231,229,223,.10), 0 12px 34px rgba(0,0,0,.42);
}
@media (prefers-reduced-motion: reduce) { .site-header { transition: none; } }
.hdr-nav {
height: 100%;
padding: 0 40px 0 var(--h-gutter);
display: flex; align-items: center;
gap: clamp(44px, 4.4vw, 72px);
}
.lockup--header { margin-right: auto; }
.hdr-nav-list {
display: flex; align-items: center;
gap: clamp(30px, 3.2vw, 54px);
list-style: none; margin: 0; padding: 0;
}
.hdr-nav-list a {
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-size: 17px; font-weight: 500; color: #fff; text-decoration: none;
letter-spacing: .004em; white-space: nowrap;
padding: 4px 2px; display: block;
}
.hdr-nav-list a:hover { color: var(--h-cyan); text-decoration: none; }
.hdr-nav-list a[aria-current='page'] { color: var(--h-cyan); }
.hdr-cta {
display: inline-flex; align-items: center; justify-content: center;
height: 44px; padding: 0 26px;
background: var(--cta-bg);
color: #FFFFFF;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 17px; letter-spacing: .11em;
text-decoration: none; white-space: nowrap;
border: 0; flex: 0 0 auto;
}
.hdr-nav-item--menu { position: relative; --hdr-menu-w: 268px; }
.hdr-nav-toggle {
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-size: 17px; font-weight: 500; color: #fff;
letter-spacing: .004em; white-space: nowrap;
padding: 4px 2px; display: inline-flex; align-items: center; gap: 8px;
background: none; border: 0; margin: 0; cursor: pointer;
line-height: inherit;
}
.hdr-nav-toggle:hover { color: var(--h-cyan); }
.hdr-nav-toggle.is-section { color: var(--h-cyan); }
.hdr-nav-caret {
width: 8px; height: 8px; flex: 0 0 auto;
border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
transform: translateY(-2px) rotate(45deg);
transition: transform .18s ease;
}
.hdr-nav-toggle[aria-expanded='true'] .hdr-nav-caret { transform: translateY(1px) rotate(225deg); }
@media (prefers-reduced-motion: reduce) { .hdr-nav-caret { transition: none; } }
.hdr-nav-item--split { display: flex; align-items: center; gap: 2px; }
.hdr-nav-menu-label.is-section { color: var(--h-cyan); }
.hdr-nav-toggle--caret { padding: 4px 2px; gap: 0; }
.hdr-nav-menu[hidden] { display: none; }
.hdr-nav-menu {
position: absolute; top: calc(100% + 14px); left: -18px;
z-index: 1;
min-width: var(--hdr-menu-w);
max-height: calc(100vh - var(--hdr-h) - 40px);
overflow-y: auto;
margin: 0; padding: 8px 0; list-style: none;
background: var(--h-black);
border: 1px solid rgba(231, 229, 223, .14);
box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}
.hdr-nav-toggle[aria-expanded='true']::after {
content: '';
position: absolute;
z-index: 1;
left: -18px;
width: var(--hdr-bridge-w, var(--hdr-menu-w));
top: 100%;
height: 15px;
}
.hdr-nav-menu a {
display: block; padding: 9px 22px;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-size: 16px; font-weight: 500; color: var(--h-bone);
letter-spacing: .01em; white-space: nowrap; text-decoration: none;
}
.hdr-nav-menu a:hover { color: var(--h-cyan); background: rgba(231, 229, 223, .06); text-decoration: none; }
.hdr-nav-menu a[aria-current='page'] { color: var(--h-cyan); }
.hdr-menu-toggle { display: none; }
.site-header a:focus-visible,
.site-header button:focus-visible,
.utility-strip a:focus-visible {
outline: 3px solid #7fdcff;
outline-offset: 3px;
}
@media (max-width: 1199px) and (min-width: 900px) {
.hdr-nav { gap: 40px; padding-right: 36px; }
.hdr-nav-list { gap: 30px; }
.hdr-nav-list a, .hdr-nav-toggle { font-size: 15px; }
.hdr-cta { height: 42px; padding: 0 18px; font-size: 16px; }
}
@media (max-width: 1023px) and (min-width: 900px) {
.hdr-nav { gap: 28px; }
.hdr-nav-list { gap: 22px; }
}
@media (max-width: 899px) {
.hdr-nav { gap: 16px; padding: 0 var(--h-gutter); }
.hdr-nav-list { display: none; }
.hdr-menu-toggle {
display: inline-flex; align-items: center; justify-content: center; gap: 10px;
margin-left: auto;
height: 44px; padding: 0 16px;
background: transparent; border: 1px solid rgba(231,229,223,.4);
color: var(--h-bone); cursor: pointer;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 15px; letter-spacing: .14em; text-transform: uppercase;
}
.hdr-menu-toggle .bars { display: block; width: 18px; height: 12px; position: relative; }
.hdr-menu-toggle .bars::before,
.hdr-menu-toggle .bars::after {
content: ''; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
}
.hdr-menu-toggle .bars::before { top: 0; box-shadow: 0 5px 0 currentColor; }
.hdr-menu-toggle .bars::after { bottom: 0; }
.utility-strip-inner { justify-content: center; gap: 14px; padding: 0 16px; }
.us-item { font-size: 13px; letter-spacing: .08em; }
}
@media (max-width: 560px) {
.hdr-menu-toggle { height: 40px; padding: 0 12px; font-size: 13px; }
.us-item { font-size: 12px; gap: 5px; }
.utility-strip-inner { gap: 10px; }
}
@media (max-width: 380px) {
.us-login,
.us-sep:last-of-type { display: none; }
}
.hdr-menu[hidden] { display: none; }
.hdr-menu {
position: fixed;
inset: 0;
z-index: 9999;
display: flex; flex-direction: column;
background: rgba(7,9,10,.97);
color: var(--h-bone, #E7E5DF);
font-family: 'Inter', Helvetica, Arial, sans-serif;
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
overflow-y: auto;
}
.hdr-menu-head {
display: flex; align-items: center; justify-content: flex-end;
padding: 18px 22px;
padding-top: max(18px, env(safe-area-inset-top));
}
.hdr-menu-close {
background: transparent; border: 1px solid rgba(231,229,223,.4);
color: #E7E5DF; height: 44px; padding: 0 16px; cursor: pointer;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 15px; letter-spacing: .14em; text-transform: uppercase;
}
.hdr-menu ul { list-style: none; margin: 0; padding: 8px 22px 32px; }
.hdr-menu li + li { border-top: 1px solid rgba(231,229,223,.12); }
.hdr-menu a {
display: block; padding: 18px 2px; color: #E7E5DF; text-decoration: none;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 26px; letter-spacing: .06em; text-transform: uppercase;
}
.hdr-menu a:hover { color: #08A9DD; text-decoration: none; }
.hdr-menu .is-cta { color: #08A9DD; }
.hdr-menu :focus-visible { outline: 3px solid #7fdcff; outline-offset: 3px; }
.hdr-menu .hdr-nav-toggle {
display: flex; align-items: center; justify-content: space-between; gap: 12px;
width: 100%; text-align: left;
padding: 18px 2px; color: #E7E5DF;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 26px; letter-spacing: .06em; text-transform: uppercase;
}
.hdr-menu .hdr-nav-toggle:hover,
.hdr-menu .hdr-nav-toggle.is-section { color: #08A9DD; }
.hdr-menu .hdr-nav-caret { width: 11px; height: 11px; border-width: 3px; }
.hdr-menu .hdr-nav-toggle[aria-expanded='true']::after { content: none; }
.hdr-menu .hdr-nav-menu {
position: static; min-width: 0;
max-height: none; overflow-y: visible;
background: none; border: 0; box-shadow: none;
margin: 0 0 10px; padding: 0 0 0 18px;
border-left: 2px solid rgba(231, 229, 223, .16);
}
.hdr-menu .hdr-nav-menu li + li { border-top: 1px solid rgba(231, 229, 223, .08); }
.hdr-menu .hdr-nav-menu a {
padding: 13px 2px;
font-size: 17px; font-weight: 500; letter-spacing: .05em;
}
.hdr-menu .hdr-nav-item--split { display: flex; flex-wrap: wrap; align-items: center; }
.hdr-menu .hdr-nav-item--split > .hdr-nav-menu-label { flex: 1 1 auto; min-width: 0; }
.hdr-menu .hdr-nav-toggle--caret {
flex: 0 0 auto; width: auto;
padding: 18px 2px 18px 16px;
}
.hdr-menu .hdr-nav-item--split > .hdr-nav-menu { flex: 1 0 100%; }
.site-footer {
position: relative;
isolation: isolate;
background-color: var(--h-black);
color: var(--h-muted);
font-family: 'Inter', Helvetica, Arial, sans-serif;
padding: 0;
--ft-tear: 96px;
--ft-gutter: 5.6%;
overflow: hidden;
}
.site-footer::before {
content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
background-image: url('/assets/img/hero/concrete.webp'), url('/assets/img/hero/grain.webp');
background-size: 420px 420px, 128px 128px;
background-repeat: repeat, repeat;
background-blend-mode: normal, overlay;
opacity: .055;
mix-blend-mode: screen;
}
.footer-tear {
position: absolute; z-index: 2;
top: -2px; left: -4%; width: 108%;
height: var(--ft-tear);
display: none;
pointer-events: none;
}
.site-footer::after { content: none; }
.footer-band {
position: relative; z-index: 4;
padding: 18px var(--ft-gutter) 40px;
display: flex; align-items: center;
gap: 64px;
border-bottom: 1px solid rgba(231,229,223,.14);
}
.footer-tagline {
margin: 0;
font-size: 19px; line-height: 1.45;
color: var(--h-muted);
max-width: 30em;
min-width: 0;
}
.footer-inner {
position: relative; z-index: 4;
padding: 52px var(--ft-gutter) 0;
display: grid;
grid-template-columns: 0.8fr 1.15fr 0.72fr 1.38fr;
gap: 56px 64px;
}
.footer-social { display: flex; gap: 12px; list-style: none; margin: 30px 0 0; padding: 0; }
.footer-social a {
display: flex; align-items: center; justify-content: center;
width: 40px; height: 40px;
border: 1px solid rgba(231,229,223,.22);
color: var(--h-muted);
}
.footer-social a:hover { color: var(--h-cyan); border-color: var(--h-cyan); text-decoration: none; }
.footer-social svg { width: 21px; height: 21px; display: block; }
.footer-col { min-width: 0; }
.footer-col-title {
margin: 0 0 26px;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 20px; letter-spacing: .13em; text-transform: uppercase;
color: #fff; line-height: 1;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: 18px; }
.footer-links a,
.footer-address a {
color: var(--h-muted); text-decoration: none; font-size: 17px;
border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.footer-links a:hover,
.footer-address a:hover { color: #fff; border-bottom-color: var(--h-cyan); text-decoration: none; }
.footer-address { margin: 0; font-size: 17px; line-height: 1.65; }
.footer-hours-title { margin-top: 30px; }
.footer-hours {
margin: 0;
display: grid; grid-template-columns: auto 1fr; gap: 6px 14px;
font-size: 16px; line-height: 1.5;
}
.footer-hours dt { color: var(--h-muted); }
.footer-hours dd { margin: 0; color: var(--h-muted); }
.footer-cta {
display: inline-flex; align-items: center; gap: 14px;
margin-top: 30px;
height: 56px; padding: 0 26px;
border: 1px solid var(--cta-bg);
background: var(--cta-bg);
color: #FFFFFF;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 19px; letter-spacing: .13em;
text-decoration: none; white-space: nowrap;
}
.footer-cta:hover { background: var(--cta-bg-hover); border-color: var(--cta-bg-hover); color: #FFFFFF; text-decoration: none; }
.footer-cta svg { width: 26px; height: 9px; flex: 0 0 auto; }
.footer-bottom {
position: relative; z-index: 4;
margin-top: 54px;
padding: 30px var(--ft-gutter) 40px;
border-top: 1px solid rgba(231,229,223,.14);
}
.footer-disclaimer {
margin: 0;
font-size: 19px; line-height: 1.72;
color: #8D8F8E;
max-width: 108ch;
}
.footer-baseline {
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 12px 28px;
margin-top: 24px;
}
.footer-copyright { margin: 0; font-size: 14.5px; color: var(--h-muted); }
.footer-legal-links {
display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
list-style: none; margin: 0; padding: 0;
}
.footer-legal-links li { display: flex; align-items: center; gap: 18px; }
.footer-legal-links li + li::before {
content: ''; width: 3px; height: 3px; border-radius: 50%;
background: rgba(231,229,223,.4); flex: 0 0 auto; margin-left: -9px;
}
.footer-legal-links a { color: #8D8F8E; font-size: 14.5px; text-decoration: none; }
.footer-legal-links a:hover { color: var(--h-cyan); text-decoration: none; }
.staging-note { margin: 20px 0 0; font-size: 13px; color: #6C6E6D; }
.site-footer a:focus-visible { outline: 3px solid #7fdcff; outline-offset: 3px; }
@media (max-width: 1099px) {
.footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 56px; }
.footer-band { gap: 32px; }
.footer-office .footer-address { max-width: 30ch; }
}
@media (max-width: 899px) {
.site-footer { --ft-tear: 70px; }
.footer-inner { gap: 44px 32px; }
.footer-band { flex-wrap: wrap; gap: 24px 32px; padding-bottom: 32px; }
.footer-tagline { order: 3; flex-basis: 100%; max-width: none; }
.footer-hours { max-width: 320px; }
}
@media (max-width: 620px) {
.site-footer { --ft-tear: 52px; --ft-gutter: 22px; }
.footer-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 36px; }
.footer-band { gap: 20px 24px; padding-bottom: 28px; }
.footer-tagline { font-size: 17px; }
.footer-col-title { font-size: 18px; margin-bottom: 16px; }
.footer-cta { width: 100%; justify-content: space-between; }
.footer-baseline { flex-direction: column; align-items: flex-start; }
.footer-disclaimer { font-size: 18px; }
}
.sticky-cta {
position: fixed;
left: 0; right: 0; bottom: 0;
z-index: 400;
display: none;
background: var(--cta-bg);
padding-bottom: env(safe-area-inset-bottom, 0px);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .18s ease, visibility 0s linear .18s;
}
.sticky-cta.is-on {
opacity: 1;
visibility: visible;
pointer-events: auto;
transition: opacity .18s ease, visibility 0s linear 0s;
}
.sticky-cta-btn {
display: flex; align-items: center; justify-content: center;
height: var(--sticky-h);
padding: 0 22px;
background: var(--cta-bg);
color: #FFFFFF;
font-family: 'Barlow Semi Condensed', 'Inter', sans-serif;
font-weight: 800; font-size: 18.5px; letter-spacing: .14em;
text-transform: uppercase; text-decoration: none; white-space: nowrap;
border-radius: 0;
}
.sticky-cta-btn:hover { background: #0C7EA3; color: #FFFFFF; text-decoration: none; }
.sticky-cta-btn:focus-visible { outline: 3px solid #FFFFFF; outline-offset: -5px; }
@media (max-width: 899px) {
:root {
--sticky-h: 66px;
}
.hdr-cta { display: none; }
.sticky-cta { display: block; }
.has-sticky-cta .site-footer {
padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}
}
@media (prefers-reduced-motion: reduce) {
.sticky-cta { transition: none; }
}
.sticky-cta.is-menu-open { opacity: 0; visibility: hidden; pointer-events: none; }
