:root {
    --red: #d71920;
    --red-bright: #ef2028;
    --black: #050505;
    --white: #f7f7f7;
    --gray: #b9b9b9;
    --line: rgba(255, 255, 255, .17);
    --container: 1240px;
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
    --body: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: #111;
    background: #050505;
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: white;
    background: var(--red);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 104px;
    color: white;
    transition: background-color .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
    height: 82px;
    background: rgba(3, 3, 3, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.nav-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 270px 1fr 170px;
    align-items: center;
    width: min(calc(100% - 48px), 1320px);
    height: 100%;
    margin-inline: auto;
}

.brand {
    width: 230px;
}

.brand img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 4vw, 58px);
    height: 100%;
}

.desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--red);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.desktop-nav a.active {
    color: var(--red-bright);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover img,
.button:focus-visible img {
    transform: translateX(4px);
}

.button-red {
    color: white;
    background: linear-gradient(105deg, #c71017, #e01a21);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
}

.button-red:hover,
.button-red:focus-visible {
    background: var(--red-bright);
    box-shadow: 0 9px 24px rgba(215, 25, 32, .25);
}

.header-book {
    justify-self: end;
    width: 160px;
}

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 13px 11px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 2px;
    color: white;
    background: rgba(0, 0, 0, .35);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transform-origin: center;
    transition: transform .35s ease, opacity .25s ease, background-color .25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: none;
    color: white;
    background:
        linear-gradient(125deg, rgba(3, 3, 3, .96), rgba(3, 3, 3, .92)),
        url("/assets/images/texture-dark.png") center / 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu::after {
    position: absolute;
    right: -80px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    content: "";
    border: 70px solid rgba(215, 25, 32, .06);
    transform: rotate(30deg);
}

.mobile-menu-inner {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(calc(100% - 48px), 600px);
    height: 100%;
    flex-direction: column;
    justify-content: center;
    margin-inline: auto;
    padding-top: 70px;
}

.mobile-menu nav {
    display: grid;
    gap: 2px;
}

.mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: var(--display);
    font-size: clamp(31px, 9vw, 52px);
    font-style: italic;
    letter-spacing: .02em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-30px);
    transition: color .25s ease, opacity .35s ease, transform .35s ease;
}

.mobile-menu.open nav a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open nav a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: .12s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: .16s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: .20s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: .24s; }

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
    color: var(--red-bright);
}

.mobile-menu nav span {
    color: var(--red-bright);
    font-family: var(--body);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.mobile-book {
    width: 100%;
    margin-top: 26px;
}

.mobile-menu-inner > p {
    margin: 20px 0 0;
    color: #777;
    font-size: 11px;
    letter-spacing: .15em;
    text-align: center;
    text-transform: uppercase;
}

.hero {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    overflow: hidden;
    color: white;
    background-color: #020202;
    background-image: url("/assets/images/hero-night-shop.png");
    background-position: center center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .78) 28%, rgba(0, 0, 0, .25) 57%, rgba(0,0,0,.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 95px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 22px;
    color: #c9c9c9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 34px;
    height: 3px;
    background: var(--red-bright);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(68px, 7vw, 108px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: .01em;
    line-height: .83;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .55);
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 strong {
    color: var(--red);
    font-weight: inherit;
}

.hero-copy {
    max-width: 440px;
    margin: 28px 0 26px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-actions .button {
    min-width: 180px;
}

.button-outline {
    color: white;
    border-color: rgba(255, 255, 255, .58);
    background: rgba(0, 0, 0, .35);
}

.button-outline:hover,
.button-outline:focus-visible {
    border-color: white;
    background: rgba(255, 255, 255, .08);
}

.section-light {
    background-color: #f1f0ed;
    background-image: linear-gradient(rgba(247,247,245,.86), rgba(247,247,245,.86)), url("/assets/images/texture-light.png");
    background-size: auto, 600px;
}

.section-dark {
    color: white;
    background-color: #070707;
    background-image:
        radial-gradient(circle at center, rgba(255,255,255,.05), transparent 48%),
        linear-gradient(rgba(5,5,5,.91), rgba(5,5,5,.95)),
        url("/assets/images/texture-dark.png");
    background-size: auto, auto, 600px;
}

.services {
    padding: 34px 0 54px;
}

.section-heading {
    margin-bottom: 28px;
    text-align: center;
    text-transform: uppercase;
}

.section-heading p,
.small-title {
    margin: 0 0 5px;
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.section-heading h2,
.fleet-content h2,
.booking-layout h2 {
    margin: 0;
    font-family: var(--display);
    font-style: italic;
    font-weight: 900;
    letter-spacing: .015em;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: clamp(30px, 3.2vw, 40px);
}

.section-heading > span {
    display: block;
    width: 44px;
    height: 2px;
    margin: 12px auto 0;
    background: var(--red);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 4px;
    color: white;
    background: #070707;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.service-photo,
.service-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-photo {
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
}

.service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .04) 15%, rgba(0, 0, 0, .22) 43%, rgba(0, 0, 0, .96) 86%);
}

.service-card:hover .service-photo {
    filter: saturate(1.1);
    transform: scale(1.045);
}

.service-content {
    position: absolute;
    z-index: 1;
    right: 22px;
    bottom: 20px;
    left: 22px;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    object-fit: contain;
}

.service-card h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.service-card p {
    max-width: 210px;
    min-height: 54px;
    margin: 0;
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.42;
}

.service-card a {
    position: absolute;
    right: -4px;
    bottom: -3px;
    width: 30px;
    height: 30px;
}

.service-card a img {
    width: 100%;
    height: 100%;
}

.portfolio {
    padding: 34px 0 28px;
}

.section-heading-dark h2 {
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr 1.12fr;
    gap: 18px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1.65 / 1;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    background: #111;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.portfolio-item:hover img {
    transform: scale(1.035);
}

.portfolio-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.portfolio-item figcaption span {
    padding: 8px 10px;
    text-shadow: 0 2px 5px #000;
}

.portfolio-item figcaption strong {
    padding: 8px 13px;
    background: var(--red);
    font-weight: inherit;
}

.portfolio-button {
    display: flex;
    width: 270px;
    min-height: 34px;
    margin: 14px auto 0;
    padding: 0 54px;
    border-color: rgba(255, 255, 255, .35);
    color: white;
    background: rgba(0, 0, 0, .45);
    font-size: 10px;
}

.portfolio-button:hover,
.portfolio-button:focus-visible {
    border-color: white;
}

.fleet {
    padding: 32px 0;
}

.fleet-layout {
    display: grid;
    grid-template-columns: 1.45fr .7fr;
    align-items: center;
    gap: 54px;
}

.fleet-image {
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .13);
}

.fleet-image img {
    width: 100%;
    aspect-ratio: 2.45 / 1;
    object-fit: cover;
}

.fleet-content h2 {
    margin: 6px 0 10px;
    font-size: clamp(34px, 4vw, 50px);
}

.red-rule {
    display: block;
    width: 45px;
    height: 3px;
    margin: 12px 0 16px;
    background: var(--red);
}

.fleet-content > p:not(.small-title) {
    max-width: 390px;
    margin: 0 0 19px;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
}

.button-small {
    min-height: 38px;
    padding: 0 22px;
    font-size: 10px;
}

.booking-strip {
    position: relative;
    color: white;
    background:
        linear-gradient(105deg, #060606 0%, #090909 68%, #111 100%),
        url("/assets/images/texture-dark.png");
    border-bottom: 1px solid var(--line);
}

.booking-strip::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28%;
    content: "";
    opacity: .13;
    background: repeating-linear-gradient(120deg, transparent 0 16px, #555 17px 19px);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.booking-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 220px 1px 1fr 250px;
    align-items: center;
    gap: 42px;
    min-height: 118px;
}

.booking-layout h2 {
    font-size: 34px;
}

.booking-layout h2 strong {
    color: var(--red);
    font-weight: inherit;
}

.booking-divider {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, .22);
}

.booking-info > p {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
}

.booking-info > div {
    display: flex;
    gap: 34px;
}

.booking-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d6d6d6;
    font-size: 14px;
}

.booking-info img,
.footer-contact img {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

.booking-button {
    min-width: 230px;
    min-height: 56px;
    font-size: 15px;
}

.site-footer {
    padding: 28px 0 0;
    color: #999;
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .9fr 1.2fr .9fr;
    gap: 48px;
    padding-bottom: 28px;
}

.footer-brand > a {
    display: block;
    width: 185px;
    max-width: 100%;
}

.footer-brand > a > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 19 / 6;
    object-fit: contain;
}

.footer-brand p {
    margin: 10px 0 0;
    font-size: 11px;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #e6e6e6;
    font-size: 11px;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li,
.site-footer a,
.footer-contact p {
    font-size: 11px;
    line-height: 1.65;
}

.site-footer li a:hover,
.site-footer li a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: white;
}

.footer-contact > a,
.footer-contact > p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 4px;
}

.footer-contact img {
    width: 16px;
    height: 16px;
    margin-top: 1px;
}

.footer-social > div {
    display: flex;
    gap: 8px;
}

.footer-social a,
.footer-social > div > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    transition: background-color .25s ease, transform .25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background: var(--red);
    transform: translateY(-2px);
}

.footer-social img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: #666;
    font-size: 10px;
}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-bottom > div span {
    width: 1px;
    height: 13px;
    background: #444;
}

/* Interior pages */

.interior-header {
    background: rgba(3, 3, 3, .92);
}

.interior-hero {
    position: relative;
    display: flex;
    min-height: 445px;
    align-items: center;
    overflow: hidden;
    color: white;
    background-color: #050505;
    background-position: center;
    background-size: cover;
}

.interior-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: .65;
}

.interior-hero-services {
    background-image: url("/assets/images/service-vinyl-wrap.png");
    background-position: center 53%;
}

.interior-hero-portfolio {
    background-image: url("/assets/images/portfolio-neon-coupe.png");
    background-position: center 54%;
}

.interior-hero-about {
    background-image: url("/assets/images/portfolio-black-truck.png");
    background-position: center 57%;
}

.interior-hero-contact {
    background-image: url("/assets/images/fleet-banner.png");
    background-position: center 48%;
}

.interior-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .74) 44%, rgba(0, 0, 0, .2) 100%),
        linear-gradient(0deg, rgba(0,0,0,.42), transparent 50%);
}

.interior-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 92px;
}

.interior-hero h1,
.page-intro h2,
.service-detail-copy h2,
.faq-layout h2,
.case-study-copy h2,
.about-story-copy h2,
.quality-copy h2,
.why-grid h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-style: italic;
    font-weight: 900;
    letter-spacing: .015em;
    line-height: .95;
    text-transform: uppercase;
}

.interior-hero h1 {
    max-width: 760px;
    font-size: clamp(58px, 7vw, 94px);
}

.interior-hero h1 strong {
    color: var(--red);
    font-weight: inherit;
}

.interior-hero-content > p:last-child {
    max-width: 570px;
    margin: 22px 0 0;
    color: #d2d2d2;
    font-size: 16px;
    line-height: 1.5;
}

.page-intro {
    padding: 64px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 90px;
}

.page-intro h2 {
    font-size: clamp(40px, 4.6vw, 62px);
}

.intro-copy {
    padding-top: 7px;
    border-left: 3px solid var(--red);
    padding-left: 34px;
}

.intro-copy p {
    margin: 0 0 16px;
    color: #343434;
    font-size: 15px;
    line-height: 1.7;
}

.intro-copy p:last-child {
    margin-bottom: 0;
}

.service-detail-list {
    padding: 76px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    padding: 68px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    scroll-margin-top: 95px;
}

.service-detail:first-child {
    padding-top: 0;
}

.service-detail:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.service-detail:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 4px;
    background: #111;
}

.service-detail-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, transparent 52%, rgba(0, 0, 0, .56));
}

.service-detail-image > img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.service-detail-image > span {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 5px;
    color: rgba(255, 255, 255, .16);
    font-family: var(--display);
    font-size: 92px;
    font-style: italic;
    line-height: 1;
}

.service-detail-copy {
    max-width: 520px;
}

.service-detail-copy h2,
.faq-layout h2,
.case-study-copy h2,
.about-story-copy h2,
.quality-copy h2,
.contact-copy h2 {
    font-size: clamp(38px, 4vw, 55px);
}

.service-detail-copy > p:not(.small-title),
.faq-layout > div:first-child > p:not(.small-title),
.case-study-copy > p:not(.small-title),
.about-story-copy > p:not(.small-title),
.quality-copy > p:not(.small-title),
.why-points p,
.contact-copy > p:not(.small-title) {
    color: #bcbcbc;
    font-size: 15px;
    line-height: 1.65;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
    margin: 25px 0 28px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    color: #e5e5e5;
    font-size: 13px;
    line-height: 1.4;
}

.feature-list li::before {
    position: absolute;
    top: .48em;
    left: 0;
    width: 7px;
    height: 2px;
    content: "";
    background: var(--red);
}

.process-section,
.faq-section,
.project-gallery,
.project-types,
.values-section,
.contact-steps,
.contact-faq {
    padding: 70px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-grid article {
    position: relative;
    min-height: 205px;
    padding: 30px 26px;
    overflow: hidden;
    border-top: 3px solid var(--red);
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.process-grid article > span,
.values-grid article > span {
    position: absolute;
    top: 10px;
    right: 15px;
    color: rgba(215, 25, 32, .13);
    font-family: var(--display);
    font-size: 64px;
    font-style: italic;
    line-height: 1;
}

.process-grid h3,
.type-grid h3,
.values-grid h3 {
    position: relative;
    margin: 42px 0 10px;
    font-family: var(--display);
    font-size: 25px;
    font-style: italic;
    text-transform: uppercase;
}

.process-grid p,
.type-grid p,
.values-grid p {
    position: relative;
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.55;
}

.faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: start;
}

.faq-layout > div:first-child > p:not(.small-title) {
    margin-bottom: 26px;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.faq-list details {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.faq-list summary {
    position: relative;
    padding: 23px 44px 23px 0;
    color: white;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 19px;
    right: 3px;
    content: "+";
    color: var(--red);
    font-size: 25px;
    font-weight: 300;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -5px 50px 23px 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

.project-gallery {
    padding-top: 60px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 20px;
}

.project-card {
    position: relative;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    background: #111;
}

.project-card-wide {
    grid-column: span 2;
}

.project-card > img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
}

.project-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent 58%);
}

.project-card:hover > img {
    filter: saturate(1.1);
    transform: scale(1.035);
}

.project-card figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 22px;
    left: 24px;
}

.project-card figcaption p {
    margin: 0 0 5px;
    color: var(--red-bright);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.project-card figcaption h2 {
    margin: 0;
    color: white;
    font-family: var(--display);
    font-size: 26px;
    font-style: italic;
    text-transform: uppercase;
}

.case-study {
    padding: 75px 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
}

.case-study-image {
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .14);
}

.case-study-image img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.case-study-copy > p:not(.small-title) {
    color: #3f3f3f;
}

.feature-list-dark li {
    color: #333;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.type-grid article {
    position: relative;
    min-height: 220px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .025);
}

.type-grid article > strong {
    color: var(--red);
    font-size: 11px;
}

.type-grid h3 {
    margin-top: 40px;
    color: white;
}

.type-grid p {
    color: #aaa;
}

.about-story {
    padding: 75px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-story-image {
    position: relative;
}

.about-story-image > img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.about-story-image > div {
    position: absolute;
    right: -25px;
    bottom: 28px;
    min-width: 245px;
    padding: 22px 28px;
    color: white;
    background: var(--red);
}

.about-story-image strong,
.about-story-image span {
    display: block;
    text-transform: uppercase;
}

.about-story-image strong {
    font-family: var(--display);
    font-size: 27px;
    font-style: italic;
}

.about-story-image span {
    margin-top: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.about-story-copy > p:not(.small-title) {
    color: #3b3b3b;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.values-grid article {
    position: relative;
    min-height: 230px;
    padding: 32px 26px;
    overflow: hidden;
    border-bottom: 3px solid var(--red);
    background: rgba(255, 255, 255, .045);
}

.values-grid h3 {
    margin-top: 55px;
    color: white;
}

.values-grid p {
    color: #aaa;
}

.quality-section {
    padding: 75px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.quality-copy > p:not(.small-title) {
    color: #3c3c3c;
}

.quality-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: quality;
}

.quality-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #d2d2d2;
    counter-increment: quality;
}

.quality-list li strong {
    color: #111;
    font-family: var(--display);
    font-size: 19px;
    font-style: italic;
    text-transform: uppercase;
}

.quality-list li strong::before {
    margin-right: 9px;
    color: var(--red);
    content: "0" counter(quality);
    font-family: var(--body);
    font-size: 9px;
    font-style: normal;
}

.quality-list li span {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.quality-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quality-images img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 3px;
}

.quality-images img:last-child {
    margin-top: 40px;
}

.why-section {
    padding: 70px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.why-grid h2 {
    color: white;
    font-size: clamp(40px, 4vw, 58px);
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-points p {
    margin: 0;
    padding: 0 0 20px 20px;
    border-left: 2px solid var(--red);
}

.why-points strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.contact-main {
    padding: 75px 0;
    scroll-margin-top: 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 75px;
}

.contact-copy > p:not(.small-title) {
    color: #444;
}

.contact-methods {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-methods > a,
.contact-methods > div {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 68px;
    padding: 12px 15px;
    border: 1px solid #d3d3d3;
    background: rgba(255, 255, 255, .55);
}

.contact-methods img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-methods span {
    color: #222;
    font-size: 13px;
    font-weight: 700;
}

.contact-methods small {
    display: block;
    margin-bottom: 3px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-note {
    margin-top: 25px;
    padding: 20px;
    color: white;
    background: #111;
}

.contact-note strong {
    color: var(--red-bright);
    font-family: var(--display);
    font-size: 18px;
    font-style: italic;
    text-transform: uppercase;
}

.contact-note p {
    margin: 7px 0 0;
    color: #bbb;
    font-size: 12px;
    line-height: 1.55;
}

.quote-form-wrap {
    padding: 36px;
    color: white;
    background:
        linear-gradient(rgba(7,7,7,.96), rgba(7,7,7,.96)),
        url("/assets/images/texture-dark.png") center / 500px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.quote-form label {
    display: block;
    margin-bottom: 18px;
}

.quote-form label > span {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #333;
    border-radius: 2px;
    outline: 0;
    color: white;
    background: #121212;
    font: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.quote-form input,
.quote-form select {
    height: 49px;
    padding: 0 14px;
}

.quote-form textarea {
    min-height: 155px;
    padding: 14px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(215, 25, 32, .16);
}

.quote-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #aaa 50%), linear-gradient(135deg, #aaa 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
    background-repeat: no-repeat;
    background-size: 5px 5px;
}

.form-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-disclaimer {
    margin: 14px 0 0;
    color: #777;
    font-size: 10px;
    line-height: 1.5;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-status {
    margin-bottom: 22px;
    padding: 18px 20px;
    border-left: 3px solid;
    font-size: 13px;
    line-height: 1.55;
}

.form-error {
    border-color: var(--red);
    color: #f0c8c8;
    background: rgba(215, 25, 32, .12);
}

.form-error ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.form-success {
    margin: 0;
    padding: 38px;
    border-color: #50b76b;
    color: #ddd;
    background: rgba(80, 183, 107, .08);
}

.form-success h2 {
    margin: 0 0 12px;
    color: white;
    font-family: var(--display);
    font-size: 38px;
    font-style: italic;
    text-transform: uppercase;
}

.form-success .button {
    margin-top: 16px;
}

.process-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.contact-steps .process-grid article {
    color: white;
    background: rgba(255, 255, 255, .045);
    box-shadow: none;
}

.contact-steps .process-grid h3 {
    color: white;
}

.contact-steps .process-grid p {
    color: #aaa;
}

.faq-layout-light .faq-list {
    border-color: #ccc;
}

.faq-layout-light .faq-list details {
    border-color: #ccc;
}

.faq-layout-light .faq-list summary {
    color: #111;
}

.faq-layout-light .faq-list details p {
    color: #555;
}

@media (max-width: 1050px) {
    .nav-shell {
        grid-template-columns: 220px 1fr 140px;
    }

    .brand {
        width: 195px;
    }

    .desktop-nav {
        gap: 24px;
    }

    .header-book {
        width: 140px;
    }

    .service-grid {
        gap: 15px;
    }

    .booking-layout {
        grid-template-columns: 190px 1px 1fr 190px;
        gap: 24px;
    }

    .booking-info > div {
        gap: 16px;
    }

    .booking-button {
        min-width: 185px;
    }

    .footer-grid {
        gap: 24px;
    }

    .service-detail,
    .case-study-grid,
    .about-story-grid,
    .quality-grid,
    .contact-layout {
        gap: 42px;
    }

    .intro-grid,
    .faq-layout,
    .why-grid {
        gap: 55px;
    }

    .service-detail-image,
    .service-detail-image > img {
        min-height: 390px;
    }

    .project-card,
    .project-card > img {
        min-height: 290px;
    }

    .process-grid,
    .values-grid {
        gap: 14px;
    }

    .process-grid article,
    .values-grid article {
        padding-inline: 20px;
    }
}

@media (max-width: 820px) {
    .site-header,
    .site-header.scrolled,
    .site-header.menu-active {
        height: 76px;
    }

    .nav-shell {
        grid-template-columns: 1fr auto;
        width: min(calc(100% - 32px), 720px);
    }

    .brand {
        width: 175px;
    }

    .desktop-nav,
    .header-book {
        display: none;
    }

    .menu-toggle,
    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: 680px;
        background-position: 58% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .56) 68%, rgba(0,0,0,.25));
    }

    .hero-content {
        padding-top: 72px;
    }

    .hero h1 {
        font-size: clamp(62px, 14vw, 90px);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        min-height: 390px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-item:first-child {
        grid-column: 1 / -1;
    }

    .fleet-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fleet-content {
        max-width: 520px;
    }

    .booking-layout {
        grid-template-columns: 180px 1fr;
        gap: 24px;
        padding: 25px 0;
    }

    .booking-divider {
        display: none;
    }

    .booking-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-contact,
    .footer-social {
        margin-top: 10px;
    }

    .interior-hero {
        min-height: 390px;
    }

    .interior-hero-content {
        padding-top: 76px;
    }

    .interior-hero h1 {
        font-size: clamp(55px, 11vw, 78px);
    }

    .intro-grid,
    .service-detail,
    .case-study-grid,
    .about-story-grid,
    .quality-grid,
    .why-grid,
    .contact-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .intro-copy {
        padding-top: 0;
    }

    .service-detail {
        gap: 32px;
    }

    .service-detail:nth-child(even) .service-detail-image {
        order: initial;
    }

    .service-detail-copy {
        max-width: none;
    }

    .process-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-card-wide {
        grid-column: span 2;
    }

    .case-study-image img {
        min-height: 360px;
    }

    .about-story-image {
        max-width: 650px;
    }

    .about-story-image > img {
        min-height: 440px;
    }

    .why-points {
        max-width: 720px;
    }

    .contact-copy {
        max-width: 700px;
    }

    .process-grid-three {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .hero {
        min-height: 700px;
        align-items: flex-end;
        background-position: 61% center;
    }

    .hero-shade {
        background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.47) 37%, rgba(0,0,0,.96) 80%);
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 54px;
    }

    .eyebrow {
        gap: 10px;
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: .12em;
    }

    .eyebrow span {
        width: 24px;
    }

    .hero h1 {
        font-size: clamp(57px, 19vw, 78px);
    }

    .hero-copy {
        margin: 22px 0;
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-actions .button {
        min-width: 0;
        padding: 0 14px;
        gap: 12px;
        font-size: 11px;
    }

    .services,
    .portfolio {
        padding: 38px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 410px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item:first-child {
        grid-column: auto;
    }

    .portfolio-button {
        width: 100%;
    }

    .fleet {
        padding: 38px 0;
    }

    .fleet-image img {
        min-height: 195px;
    }

    .booking-layout {
        display: block;
        padding: 28px 0;
    }

    .booking-layout h2 {
        margin-bottom: 20px;
    }

    .booking-info > div {
        display: grid;
        gap: 10px;
    }

    .booking-button {
        margin-top: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
        justify-content: start;
        padding: 14px 0;
    }

    .interior-hero {
        min-height: 350px;
        align-items: flex-end;
    }

    .interior-hero-services {
        background-position: 59% center;
    }

    .interior-hero-portfolio {
        background-position: 61% center;
    }

    .interior-hero-about {
        background-position: 57% center;
    }

    .interior-hero-contact {
        background-position: 35% center;
    }

    .interior-hero-shade {
        background: linear-gradient(to bottom, rgba(0,0,0,.24), rgba(0,0,0,.94) 82%);
    }

    .interior-hero-content {
        padding-top: 105px;
        padding-bottom: 38px;
    }

    .interior-hero h1 {
        font-size: clamp(49px, 16vw, 65px);
    }

    .interior-hero-content > p:last-child {
        margin-top: 14px;
        font-size: 13px;
    }

    .page-intro,
    .service-detail-list,
    .process-section,
    .faq-section,
    .project-gallery,
    .project-types,
    .values-section,
    .quality-section,
    .why-section,
    .contact-main,
    .contact-steps,
    .contact-faq,
    .case-study,
    .about-story {
        padding: 48px 0;
    }

    .page-intro h2,
    .service-detail-copy h2,
    .faq-layout h2,
    .case-study-copy h2,
    .about-story-copy h2,
    .quality-copy h2,
    .contact-copy h2 {
        font-size: 36px;
    }

    .intro-grid,
    .faq-layout,
    .why-grid {
        gap: 30px;
    }

    .intro-copy {
        padding-left: 20px;
    }

    .service-detail {
        padding: 48px 0;
    }

    .service-detail-image,
    .service-detail-image > img {
        min-height: 350px;
    }

    .service-detail-image > span {
        font-size: 70px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .process-grid-three,
    .values-grid,
    .type-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .process-grid article,
    .values-grid article,
    .type-grid article {
        min-height: 190px;
    }

    .project-card-wide {
        grid-column: auto;
    }

    .project-card,
    .project-card > img {
        min-height: 280px;
    }

    .case-study-image img {
        min-height: 280px;
    }

    .about-story-image > img {
        min-height: 360px;
    }

    .about-story-image > div {
        right: 0;
        bottom: 15px;
        min-width: 210px;
        padding: 17px 20px;
    }

    .quality-list li {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .quality-images img {
        min-height: 330px;
    }

    .why-points {
        grid-template-columns: 1fr;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-form-wrap {
        padding: 24px 18px;
    }

    .contact-methods > a,
    .contact-methods > div {
        padding-inline: 12px;
    }

    .contact-methods span {
        overflow-wrap: anywhere;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
