@font-face { font-family: "Archivo"; font-weight: 400; font-style: normal; font-display: swap;
src: url(/assets/fonts/archivo-normal-400-latin.woff2) format("woff2"); }
@font-face { font-family: "Archivo"; font-weight: 900; font-style: normal; font-display: swap;
src: url(/assets/fonts/archivo-normal-900-latin.woff2) format("woff2"); }
@font-face { font-family: "Archivo"; font-weight: 900; font-style: italic; font-display: swap;
src: url(/assets/fonts/archivo-italic-900-latin.woff2) format("woff2"); }
:root {
--ink: #12151c;
--panel: #191d26;
--panel-2: #202531;
--red: #e01000;
--red-bright: #ff3b2a;
--red-deep: #b30d00;
--paper: #eef0f3;
--white: #fafaf7;
--body-on-dark: #d9d8d2;
--mute-on-dark: #a3a29b;
--line-on-dark: #313747;
--line-on-paper: #ddd8cc;
--sans: "Archivo", ui-sans-serif, system-ui, -apple-system, sans-serif;
--shadow: 0 18px 50px rgba(0,0,0,.42);
--radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
margin: 0; background: var(--ink); color: var(--body-on-dark);
font-family: var(--sans); font-size: 1.05rem; line-height: 1.62;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 74rem; margin: 0 auto; padding: 0 1.25rem; }
a { color: var(--red-bright); }
a:hover { color: var(--white); }
h1, h2, .display {
font-weight: 900; letter-spacing: -0.015em; line-height: 1.02;
color: var(--white); text-wrap: balance; margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); text-transform: uppercase; }
h3 { font-weight: 900; font-size: 1.18rem; color: var(--white); margin: 0 0 .45rem; }
.kicker {
font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
color: var(--red-bright); margin: 0 0 .9rem;
}
.swipe { position: relative; display: inline-block; }
.swipe::after {
content: ""; position: absolute; left: 2%; right: 6%; bottom: -0.12em; height: .13em;
background: var(--red); border-radius: 999px; transform: skewY(-.6deg);
}
.nav {
position: sticky; top: .8rem; z-index: 50;
display: flex; align-items: center; gap: .25rem;
max-width: 71rem; margin: .8rem auto 0; padding: .45rem .55rem .45rem .9rem;
background: rgba(18,21,28,.84); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
border: 1px solid var(--line-on-dark); border-radius: 999px;
width: calc(100% - 2.5rem);
}
.nav .brand { margin-right: auto; display: flex; align-items: center; }
.nav .brand img { width: 126px; height: 58px; background: #fff; border-radius: 9px; padding: 5px 9px; box-sizing: content-box; }
.nav a.link {
color: var(--white); text-decoration: none; font-weight: 400; font-size: .95rem;
padding: .55rem .8rem; border-radius: 999px; white-space: nowrap;
}
.nav a.link:hover { background: var(--panel-2); }
.btn {
display: inline-block; font-weight: 900; text-decoration: none; text-align: center;
border-radius: 999px; padding: .8rem 1.55rem; font-size: 1rem; border: 0; cursor: pointer;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-bright); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(250,250,247,.5); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.nav .btn { padding: .62rem 1.25rem; }
.nav-toggle { display: none; }
.nav .links { display: flex; align-items: center; gap: .1rem; }
@media (max-width: 60rem) {
.nav { flex-wrap: wrap; border-radius: 22px; }
.nav .links {
display: none; flex-basis: 100%; flex-direction: column; padding-top: .4rem;
}
.nav.open .links { display: flex; }
.nav-toggle {
display: inline-flex; background: none; border: 0; color: var(--white);
font-size: 1.6rem; padding: .3rem .6rem; cursor: pointer;
}
}
.hero {
position: relative; min-height: min(92vh, 860px);
display: flex; align-items: center;
margin-top: -6.1rem;
padding: 8rem 0 4.5rem;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 68% 50%; }
.hero-media::after {
content: ""; position: absolute; inset: 0;
background: linear-gradient(168deg, rgba(18,21,28,.28) 6%, rgba(18,21,28,.62) 46%, rgba(18,21,28,.95) 86%);
}
.hero .wrap {
position: relative; z-index: 2; width: 100%;
display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(21rem, .85fr);
gap: 3rem; align-items: center;
}
.hero .lede { font-size: 1.22rem; color: var(--white); max-width: 32rem; margin: 1.4rem 0 1.8rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-proof {
margin-top: 1.4rem; font-size: .88rem; color: var(--body-on-dark);
display: flex; flex-wrap: wrap; gap: .35rem 1.1rem;
}
.hero-proof span::before { content: "\2713\00a0"; color: var(--red-bright); font-weight: 900; }
.quote-panel {
background: rgba(25,29,38,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
border: 1px solid var(--line-on-dark); border-radius: var(--radius);
padding: 1.5rem 1.5rem 1.2rem; box-shadow: var(--shadow);
}
.quote-panel > .qp-head { margin: 0 0 .35rem; font-weight: 900; font-size: 1.35rem; color: var(--white); text-transform: uppercase; }
.quote-panel > .qp-sub { margin: 0 0 1rem; font-size: .92rem; color: var(--mute-on-dark); }
@media (max-width: 60rem) {
.hero { min-height: 0; padding: 7.5rem 0 3rem; }
.hero .wrap { grid-template-columns: 1fr; gap: 2.2rem; }
.hero-media img { object-position: 62% 50%; }
}
.strip { border-top: 3px solid var(--red); background: var(--panel); }
.strip .wrap {
display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
gap: 0; padding: 0;
}
.strip .stat { padding: 1.15rem 1.4rem; border-left: 1px solid var(--line-on-dark); }
.strip .stat:first-child { border-left: 0; }
.strip .stat b { display: block; color: var(--white); font-weight: 900; font-size: 1.02rem; }
.strip .stat span { font-size: .84rem; color: var(--mute-on-dark); }
section { padding: 4.6rem 0; }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; gap: 1rem 2rem; justify-content: space-between; margin-bottom: 2.2rem; }
.sec-head p { max-width: 34rem; margin: .8rem 0 0; }
.tabs-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr)); gap: 1.1rem;
}
.tabs-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 56rem) { .tabs-3 { grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr)); } }
.bars-even .ptab .bar { min-height: calc(3.24em + 1.4rem); }
.ptab {
position: relative; display: block; text-decoration: none;
border-radius: var(--radius); overflow: hidden; background: var(--panel);
border: 1px solid var(--line-on-dark);
transition: transform .18s ease, box-shadow .18s ease;
}
.ptab img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ptab .bar {
display: flex; align-items: center; justify-content: space-between; gap: .5rem;
background: var(--red); color: var(--white);
font-weight: 900; font-size: .95rem; text-transform: uppercase; letter-spacing: .02em;
padding: .7rem .9rem;
}
a.ptab .bar::after { content: "\2192"; font-weight: 900; }
.ptab:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ptab:hover .bar { background: var(--red-bright); }
.ba-band { background: var(--paper); color: #2a2721; }
.ba-band h2, .ba-band h3 { color: var(--ink); }
.ba-band .kicker { color: var(--red-deep); }
.ba-band p { color: #55503f; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); gap: 1.4rem; }
.ba {
position: relative; border-radius: var(--radius); overflow: hidden;
box-shadow: 0 10px 34px rgba(20,22,26,.18); user-select: none;
}
.ba img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; pointer-events: none; }
.ba .after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--cut, 50%)); }
.ba .handle {
position: absolute; top: 0; bottom: 0; left: var(--cut, 50%); width: 3px;
background: var(--white); box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}
.ba .handle::after {
content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--red); color: var(--white);
display: grid; place-items: center; font-weight: 900; font-size: 1.05rem;
}
.ba input[type="range"] {
position: absolute; inset: 0; width: 100%; height: 100%;
opacity: 0; cursor: ew-resize; margin: 0;
}
.ba .tag {
position: absolute; bottom: .7rem; font-size: .74rem; font-weight: 900; letter-spacing: .06em;
text-transform: uppercase; color: var(--white); background: rgba(20,22,26,.72);
padding: .28rem .6rem; border-radius: 999px; pointer-events: none;
}
.ba .tag.before { left: .7rem; }
.ba .tag.after-tag { right: .7rem; }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 1.2rem; }
.quote {
background: var(--panel); border: 1px solid var(--line-on-dark); border-radius: var(--radius);
padding: 1.4rem 1.5rem;
}
.quote p { margin: 0 0 .8rem; color: var(--body-on-dark); }
.quote cite { font-style: normal; font-weight: 900; color: var(--white); font-size: .9rem; }
.quote .stars { color: var(--red-bright); letter-spacing: .12em; margin-bottom: .55rem; font-size: .85rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 56rem) { .split { grid-template-columns: 1fr; } }
.cta-band { background: linear-gradient(120deg, var(--red-deep), var(--red)); }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.cta-band h2 { color: var(--white); }
.cta-band .btn-ghost { border-color: rgba(250,250,247,.75); }
.cta-band p { color: #ffd9d4; margin: .6rem 0 0; }
.enquiry { display: grid; gap: .9rem; max-width: 34rem; }
.enquiry label { display: grid; gap: .3rem; font-size: .8rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; color: var(--mute-on-dark); }
.enquiry input, .enquiry textarea {
font-family: var(--sans); font-size: 1rem; color: var(--white);
background: var(--panel-2); border: 1px solid var(--line-on-dark); border-radius: 9px;
padding: .72rem .85rem; width: 100%;
}
.enquiry input:focus, .enquiry textarea:focus { outline: 2px solid var(--red-bright); outline-offset: 1px; }
.enquiry .hp { position: absolute; left: -6000px; }
[data-lead-success] { color: #7fd97f; font-weight: 900; }
[data-lead-error] { color: var(--red-bright); font-weight: 900; }
footer { background: #0e1013; border-top: 1px solid var(--line-on-dark); padding: 3rem 0 2.4rem; font-size: .92rem; }
footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
footer h4 { color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .7rem; }
footer a { color: var(--body-on-dark); text-decoration: none; display: inline-block; padding: .14rem 0; }
footer a:hover { color: var(--white); }
footer .legal { grid-column: 1 / -1; border-top: 1px solid var(--line-on-dark); margin-top: 1.6rem; padding-top: 1.2rem; color: var(--mute-on-dark); font-size: .82rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
@media (max-width: 46rem) { footer .wrap { grid-template-columns: 1fr 1fr; } }
.page-hero { padding: 7.5rem 0 3rem; margin-top: -4.6rem; position: relative; }
.page-hero.has-media { min-height: 46vh; display: flex; align-items: end; }
.page-hero .crumbs { font-size: .84rem; color: var(--mute-on-dark); margin-bottom: 1rem; }
.page-hero .crumbs a { color: var(--mute-on-dark); }
.svc-detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; padding: 3.4rem 0; border-top: 1px solid var(--line-on-dark); }
.svc-detail:first-of-type { border-top: 0; }
.svc-detail img { border-radius: var(--radius); }
.svc-detail.flip { direction: rtl; } .svc-detail.flip > * { direction: ltr; }
@media (max-width: 56rem) { .svc-detail { grid-template-columns: 1fr; gap: 1.6rem; } }
@media (prefers-reduced-motion: no-preference) {
.rise { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.rise.in { opacity: 1; transform: none; }
}
.quote-panel .iw-step h3 { color: var(--white); }
.quote-panel [data-intake-flow] { --iw-accent: var(--red); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; counter-reset: step; }
.step {
background: var(--panel); border: 1px solid var(--line-on-dark); border-radius: var(--radius);
padding: 1.5rem 1.5rem 1.3rem; counter-increment: step; position: relative;
}
.step::before {
content: counter(step, decimal-leading-zero);
font-weight: 900; font-size: 2.2rem; color: var(--red-bright); display: block; margin-bottom: .5rem;
}
.warranty {
border-left: 4px solid var(--red); background: var(--panel-2);
border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.4rem; margin-top: 1.4rem;
}
.warranty b { color: var(--white); }
.band { padding: 3.6rem 0; }
.band-dark { background: var(--ink); }
.band-paper, .band-paper-2 { background: var(--paper); color: #2b2e35; }
.band-paper h2, .band-paper-2 h2, .band-paper h3, .band-paper-2 h3 { color: #171a21; }
.band-paper p, .band-paper-2 p, .band-paper li, .band-paper-2 li { color: #4a4e58; }
.rule-top { border-top: 1px solid var(--line-on-dark); }
.page-head { padding: 7.2rem 0 2.6rem; margin-top: -4.6rem; }
.measure { max-width: 44rem; }
.lede { font-size: 1.18rem; color: var(--body-on-dark); }
.band-paper .lede, .band-paper-2 .lede { color: #4a4e58; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.board { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); margin: 1.6rem 0; }
.card { background: var(--panel); border: 1px solid var(--line-on-dark); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.band-paper .card, .band-paper-2 .card { background: #fff; border-color: var(--line-on-paper); }
.ant-rule, .ant-track { border: 0; height: 3px; background: var(--red); border-radius: 2px; opacity: .85; }
.reveal { opacity: 1; }
footer a.fb { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--panel-2); color: var(--white); margin-top: .4rem; }
footer a.fb:hover { background: var(--red); color: var(--white); }
[data-intake-flow] .iw-back { color: var(--white); border-color: rgba(250,250,247,.5); }
[data-intake-flow] .iw-back:hover { border-color: var(--white); }
@media (max-width: 700px) {
.nav { width: calc(100% - 2.2rem); padding-left: .8rem; }
}
.hero-media img.img-darkened { filter: brightness(.4) saturate(.85); }