:root {
    /* Z-index layers */
    --z-below: -1;
    /* Background / decorative elements behind content */
    --z-default: 1;
    /* Default text boxes, static layout */
    --z-nav: 101;
    /* Fixed headers, dropdowns, sidebars */
    --z-overlay: 1000;
    /* Modals, popups, mobile drawer menus */
    --z-top: 10000;
    /* Tooltips, notifications / toasts */

    /* Colors */
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-text-gray: #828286;
    --color-body-bg: #0a0a0a;
    --color-transparent: transparent;
    --color-hover-border: rgba(255, 255, 255, 0.25);
    --color-nav-link: rgba(255, 255, 255, 0.75);
    --color-card-bg: #161616;

    /* Surfaces & hairlines — one ladder of elevation so every dark panel on the
       site reads as the same material instead of a slightly different grey. */
    --color-surface-1: #121212;
    --color-surface-2: #171717;
    --color-border-subtle: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(255, 255, 255, 0.16);
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
    --shadow-lift: 0 20px 44px rgba(0, 0, 0, 0.55);

    /* Typography */
    --main-font: 'Geist', sans-serif;
    /* Fluid font sizes: scale between a 375px and 1440px viewport, then hold steady past those bounds */
    --font-size-body-sm: clamp(13px, calc(12.65px + 0.094vw), 14px);
    --font-size-body-md: clamp(14px, calc(13.3px + 0.188vw), 16px);
    --font-size-body-lg: clamp(15px, calc(13.94px + 0.282vw), 18px);
    --font-size-body-xl: clamp(16px, calc(14.59px + 0.376vw), 20px);
    --font-size-body-2xl: clamp(17px, calc(15.24px + 0.469vw), 22px);
    --font-size-body-3xl: clamp(18px, calc(15.89px + 0.563vw), 24px);
    --font-size-body-4xl: clamp(19px, calc(16.89px + 0.563vw), 25px);
    --font-size-body-5xl: clamp(22px, calc(18.48px + 0.939vw), 32px);
    --font-size-body-6xl: clamp(28px, calc(20.96px + 1.878vw), 48px);
    --font-size-body-7xl: clamp(34px, calc(23.44px + 2.817vw), 64px);
    --font-size-body-8xl: clamp(40px, calc(23.1px + 4.507vw), 88px);
    --line-height-body: 1.4;
    --letter-spacing-body: normal;

    /* Spacing */
    --spacing-4xs: 2px;
    --spacing-3xs: 4px;
    --spacing-2xs: 6px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 28px;
    --spacing-2xl: 36px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;
    --spacing-5xl: 80px;
    --spacing-6xl: 96px;

    /* Misc */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-pill: 999px;
    --transition-fast: 0.25s ease;
    --transition-mid: 0.35s ease;
    --transition-slow: 0.6s ease;
    --transition-btn: 0.2s ease;
    --backdrop-glass: blur(20px);
    --modal-overlay-gradient: rgba(0, 0, 0, 0.6);
}

/***** Common Style *****/
body.lock-scroll {
    overflow: hidden;
}

body {
    position: relative;
    background: var(--color-body-bg);
    font-family: var(--main-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* Keyboard focus ring — the site had none, so tabbing through it was invisible.
   :focus-visible keeps it off for mouse clicks. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
    border-radius: var(--border-radius-sm);
}

/* Dark scrollbar so the browser chrome doesn't break the dark canvas. */
* {
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.18);
    border: 3px solid var(--color-black);
    border-radius: var(--border-radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Shared section label style */
.section-label {
    display: inline-block;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: var(--spacing-sm);
}

/***** End Common Style *****/

/***** Modal/Dialog *****/
.modal-overlay {
    display: flex;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-overlay);
    background: var(--modal-overlay-gradient);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/***** End Modal/Dialog *****/

/***** Navbar *****/
header {
    position: fixed;
    z-index: var(--z-nav);
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: var(--transition-mid);
}

header.--scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    transition: background-color 0.6s ease, backdrop-filter 0.6s ease;
    pointer-events: none;
}

header.--scrolled {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header__left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xs);
    text-decoration: none;
}

/* The logo is a raster file rendered at 3x for HiDPI, so it needs an explicit
   display height — unlike the previous SVG, its intrinsic size is not the
   size we want on screen. */
.header__logo img,
.navbar__mobile-logo img {
    height: 26px;
    width: auto;
    display: block;
}

.header__logo-icon {
    color: var(--color-white);
    flex-shrink: 0;
}

.header__logo-text {
    color: var(--color-white);
    font-size: var(--font-size-body-xl);
    font-weight: 700;
    letter-spacing: 0.2px;
}

header .navbar>ul {
    flex-flow: row wrap;
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

header .navbar>ul>li {
    position: relative;
}

/* Shared nav link base */
header .navbar>ul>li>button:not(.special-btn),
header .navbar>ul>li>a:not(.special-btn) {
    color: var(--color-nav-link);
    font-weight: 500;
    line-height: var(--line-height-body);
    letter-spacing: var(--letter-spacing-body);
    cursor: pointer;
    display: inline-flex;
    gap: var(--spacing-2xs);
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-btn);
    text-decoration: none;
    min-height: 35px;
    padding: var(--spacing-3xs) var(--spacing-sm);
    font-size: var(--font-size-body-lg);
    border: 1px solid var(--color-transparent);
    background-color: var(--color-transparent);
}

header .navbar>ul>li>button:not(.special-btn):hover,
header .navbar>ul>li>a:not(.special-btn):hover,
header .navbar>ul>li>a.active {
    border-color: var(--color-hover-border);
    color: var(--color-white);
}

header .navbar>ul>li>a.active {
    font-weight: 700;
}

header .navbar>ul>li.dropdown>a i,
header .header__lang>a i {
    font-size: var(--font-size-body-md);
    transition: transform var(--transition-fast);
}

header .navbar>ul>li.dropdown.open>a i,
header .header__lang.open>a i {
    transform: rotate(180deg);
}

header .navbar .dropdown>ul,
header .header__lang>ul {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    margin: 0;
    padding: var(--spacing-2xs);
    list-style: none;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: var(--backdrop-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    z-index: var(--z-nav);
}

header .navbar .dropdown>ul::before,
header .header__lang>ul::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(10, 10, 10, 0.95);
    z-index: 1;
}

/* Invisible bridge over the 14px gap between the trigger and the panel: without
   it the pointer leaves the dropdown on the way down and the panel closes. */
header .navbar .dropdown>ul::after,
header .header__lang>ul::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

header .navbar .dropdown.open>ul,
header .header__lang.open>ul {
    display: flex;
    flex-direction: column;
}

header .navbar .dropdown>ul li,
header .header__lang>ul li {
    list-style: none;
}

header .navbar .dropdown>ul li>a,
header .header__lang>ul li>a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--color-nav-link);
    font-size: var(--font-size-body-md);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    transition: var(--transition-btn);
}

header .navbar .dropdown>ul li>a:hover,
header .header__lang>ul li>a:hover {
    color: var(--color-black);
    background-color: var(--color-white);
}

/* ---- Second-level submenu: categories -> services -------------------------- */
header .navbar .dropdown-sub {
    position: relative;
}

/* Category row behaves like a normal dropdown link but reserves room for the
   side chevron and keeps it pushed to the far edge. */
header .navbar .dropdown-sub>.dropdown-sub__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    cursor: pointer;
}

header .navbar .dropdown-sub>.dropdown-sub__toggle i {
    font-size: var(--font-size-body-md);
    transition: transform var(--transition-fast);
}

/* Second-level list — hidden until the category gets the .open class. Opening
   is driven from JS (hover intent on desktop, tap on mobile) rather than by
   :hover, so the pointer can cross a neighbouring category on its way to the
   flyout without the flyout being swapped out from under it. */
header .navbar .dropdown-sub__menu {
    display: none;
    position: absolute;
    top: calc(-1 * var(--spacing-2xs));
    left: 100%;
    min-width: 210px;
    margin: 0;
    padding: var(--spacing-2xs);
    list-style: none;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: var(--backdrop-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    z-index: var(--z-nav);
}

header .navbar .dropdown-sub.open>.dropdown-sub__menu {
    display: flex;
    flex-direction: column;
}

/* Must match the plain :hover treatment of its siblings — the old rule set only
   the colour to white and left the white hover background, so the label of the
   category you were pointing at turned invisible. */
header .navbar .dropdown-sub.open>.dropdown-sub__toggle {
    color: var(--color-black);
    background-color: var(--color-white);
}

header .navbar .dropdown-sub__menu li {
    list-style: none;
}

header .navbar .dropdown-sub__menu li>a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--color-nav-link);
    font-size: var(--font-size-body-md);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    transition: var(--transition-btn);
}

header .navbar .dropdown-sub__menu li>a:hover {
    color: var(--color-black);
    background-color: var(--color-white);
}

.header__lang {
    position: relative;
    min-width: 60px;
}

header .header__lang>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xs);
    cursor: pointer;
    transition: var(--transition-btn);
    min-height: unset;
    padding: var(--spacing-sm);
    font-size: var(--font-size-body-md);
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    background-color: var(--color-black);
    border: 2px solid var(--color-white);
    color: var(--color-white) !important;
}

header .header__lang>a:hover,
header .header__lang.open>a {
    opacity: 0.85;
    background-color: var(--color-black);
    border-color: var(--color-white);
    color: var(--color-white);
}

.header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    border: none;
    background-color: var(--color-white);
    color: var(--color-black);
    cursor: pointer;
    transition: var(--transition-btn);
}

.header__icon-btn:hover {
    opacity: 0.85;
}

header .special-btn {
    padding: var(--spacing-sm);
}

.special-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
    font-size: var(--font-size-body-md);
    letter-spacing: 0.2px;
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    /* Lift + shadow instead of a flat opacity fade — reads as a physical
       control rather than a link that dims. */
    transition: transform var(--transition-btn), box-shadow var(--transition-btn),
        background-color var(--transition-btn), color var(--transition-btn),
        border-color var(--transition-btn);
}

.special-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.special-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.special-btn i {
    color: currentColor;
}

.special-btn--reverse {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-border-strong);
    backdrop-filter: var(--backdrop-glass);
}

.special-btn--reverse:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.navbar__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.navbar__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar__burger.--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__burger.--active span:nth-child(2) {
    opacity: 0;
}

.navbar__burger.--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xs);
    text-decoration: none;
}

/***** End Navbar *****/

/***** Hero *****/
.hero {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: var(--z-below);
    width: 100%;
    height: 100%;
    /* Fill the hero on any viewport; without it the <video> letterboxes
       (black side bars) whenever the hero's ratio drifts from 16:9. */
    object-fit: cover;
    pointer-events: none;
}

/* Cinematic double scrim. A single top-to-bottom wash let the video's colour
   bleed through the copy (the footage is a red car, so the headline sat on
   pink). Layering a left-side scrim darkens only the text column and leaves
   the right side of the frame readable as image. */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: var(--z-default);
    background:
        linear-gradient(to right,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.72) 38%,
            rgba(10, 10, 10, 0.28) 70%,
            rgba(10, 10, 10, 0.35) 100%),
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0.65) 0%,
            rgba(10, 10, 10, 0.25) 32%,
            rgba(10, 10, 10, 0.9) 82%,
            var(--color-black) 100%);
    pointer-events: none;
}

/* Hairline rule that ties the hero into the section below it. */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    z-index: 3;
    background: linear-gradient(to right,
            var(--color-transparent),
            rgba(255, 255, 255, 0.18) 22%,
            rgba(255, 255, 255, 0.18) 78%,
            var(--color-transparent));
}

/* ---- Hero composition -----------------------------------------------------
   Everything below is scoped to .hero: the .section-text block is shared with
   the "get a quote" band, which stays centred. */

.hero .section-text {
    max-width: 760px;
    align-items: flex-start;
    text-align: left;
    padding: var(--spacing-5xl) var(--spacing-lg) clamp(72px, 9vh, 120px) clamp(20px, 7vw, 104px) !important;
    gap: var(--spacing-md);
}

/* Eyebrow: short rule + micro-caps, the standard editorial opener. */
.hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    opacity: 1;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: var(--spacing-2xs);
}

.hero .section-label::before {
    content: '';
    width: 34px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.45);
}

.hero .section-text__title {
    /* Big display type needs tighter leading and negative tracking, otherwise
       it reads as body text that happened to be scaled up. */
    line-height: 0.94;
    letter-spacing: -0.03em;
    text-wrap: balance;
    max-width: 15ch;
}

.hero .section-text__desc {
    margin: 0;
    max-width: 54ch;
    /* Stepped back from pure white so the headline keeps the hierarchy. */
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.hero .section-text__btn-group {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

/* Stats: individual hairline dividers instead of one bar on the far left. */
.hero .section-text__stats {
    margin: 0;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg) 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.hero .section-text__counter {
    padding: 0 clamp(var(--spacing-lg), 3vw, var(--spacing-2xl));
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    gap: var(--spacing-3xs);
}

.hero .section-text__counter:first-child {
    padding-left: 0;
    border-left: none;
}

.hero .section-text__counter-group {
    font-weight: 800;
    font-size: var(--font-size-body-5xl);
    letter-spacing: -0.02em;
    /* Tabular figures keep the three numbers optically aligned. */
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.hero .section-text__counter-decoration {
    color: rgba(255, 255, 255, 0.45);
}

.hero .section-text__counter-label {
    max-width: 14ch;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
}

/* Scroll cue: a thin line that keeps travelling down. */
.hero__scroll {
    position: absolute;
    right: clamp(20px, 4vw, 56px);
    bottom: 0;
    z-index: 3;
    width: 1px;
    height: clamp(60px, 10vh, 104px);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.14);
}

.hero__scroll-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-transparent), var(--color-white));
    animation: hero-scroll-cue 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes hero-scroll-cue {
    0% {
        transform: translateY(-100%);
    }

    60%,
    100% {
        transform: translateY(100%);
    }
}

/* Staggered entrance so the hero resolves rather than just appearing. */
.hero .section-text>* {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero .section-text>*:nth-child(1) { animation-delay: 0.05s; }
.hero .section-text>*:nth-child(2) { animation-delay: 0.14s; }
.hero .section-text>*:nth-child(3) { animation-delay: 0.23s; }
.hero .section-text>*:nth-child(4) { animation-delay: 0.32s; }
.hero .section-text>*:nth-child(5) { animation-delay: 0.41s; }

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.section-text {
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: var(--spacing-5xl) var(--spacing-lg) 60px !important;
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
}

.section-text__label {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-md);
}

.section-text__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-8xl);
}

.section-text__sub-title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
}

.section-text__desc {
    color: var(--color-white);
    font-size: var(--font-size-body-lg);
    margin: 0 15%;
    line-height: var(--line-height-body);
}

.section-text__btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
}

.section-text__stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin: 0 auto;
    margin-top: var(--spacing-lg);
    padding: 0 var(--spacing-xl);
    border-left: 2px solid var(--color-white);
}

.section-text__counter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: var(--spacing-xs);
    text-align: start;
}

.section-text__counter-group {
    font-size: var(--font-size-body-6xl);
    font-weight: 700;
}

.section-text__counter-label {
    max-width: 80%;
    line-height: 1.2;
    font-weight: 400;
    font-size: var(--font-size-body-lg);
    color: var(--color-text-gray);
    text-transform: capitalize;
}

/***** End Hero *****/

/***** Page Banner *****/
.page-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    max-height: 560px;
    overflow: hidden;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-below);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.05);
}

/* Gradient scrim rather than a flat 65% wash: it keeps the photo readable at
   the top and fades to solid black at the bottom so the banner melts into the
   page body instead of ending on a hard seam. (A `::after` on the <img> itself
   never rendered — replaced properly here.) */
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: var(--z-default);
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.75) 0%,
            rgba(10, 10, 10, 0.55) 45%,
            rgba(10, 10, 10, 0.98) 100%);
    pointer-events: none;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.page-banner__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xs);
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-body-sm);
    color: var(--color-text-gray);
}

.page-banner__breadcrumbs i {
    font-size: 11px;
}

.page-banner__breadcrumbs a {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: var(--transition-btn);
}

.page-banner__breadcrumbs a:hover {
    color: var(--color-white);
}

.page-banner__breadcrumbs span[aria-current] {
    color: var(--color-white);
}

.page-banner__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-7xl);
}

/***** End Page Banner *****/

/***** Get A Quote *****/
.get-a-quote {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55vh;
    min-height: 300px;
    overflow: hidden;
}

.get-a-quote__video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: var(--z-below);
    width: 100vw;
    height: 56.25vw;
    /* 16:9 */
    min-height: 100%;
    min-width: 177.78vh;
    /* 16:9 */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.get-a-quote::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: var(--z-default);
    background: rgba(10, 10, 10, 0.55);
    pointer-events: none;
}

.get-a-quote .section-text {
    padding: 0 20px;
}

/***** End Get A Quote *****/

/* Fluid vertical rhythm: sections used to be a flat 56px everywhere, which
   crowds the content on wide screens where a premium layout wants air. */
.section-spacing {
    padding: clamp(56px, 6vw, 104px) 20px;
}

/***** Our Services *****/

.our-service__slider-wrap {
    position: relative;
}

.our-service-slider {
    width: 100%;
    padding-bottom: var(--spacing-xl);
    /* room for the dots */
}

/* Arrows overlay the slider edges; centred on the cards, so the dots strip
   below is excluded from the vertical midpoint. */
.our-service-slider__nav {
    position: absolute;
    top: calc(50% - var(--spacing-xl) / 2);
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    z-index: var(--z-default);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.our-service-slider-prev,
.our-service-slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-btn);
}

.our-service-slider-prev:hover,
.our-service-slider-next:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.our-service-slider .swiper-pagination {
    bottom: 0;
}

.our-service-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: var(--transition-btn);
}

.our-service-slider .swiper-pagination-bullet-active {
    background-color: var(--color-white);
}

.service-card {
    position: relative;
    display: block;
    width: 100%;
    height: 400px;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.service-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-lift);
}

.service-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.15) 55%, rgba(10, 10, 10, 0) 100%);
}

.service-card__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.service-card:hover .service-card__overlay::after {
    opacity: 1;
}

.service-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--spacing-lg);
    color: var(--color-white);
}

.service-card__title {
    font-weight: 800;
    font-size: var(--font-size-body-2xl);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

.service-card__desc {
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body);
    color: rgba(255, 255, 255, 0.85);
}

/***** End Our Services *****/

/***** Additional Details *****/

.additional-details__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: var(--spacing-xl);
}

.additional-details__list-card {
    /* position: sticky; */
    /* top: 120px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    width: 100%;
    min-height: 220px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    padding: var(--spacing-2xl) var(--spacing-3xl);
    transition: var(--transition-slow);
    text-decoration: none;
}

.additional-details__list-card:hover {
    min-height: 320px;
}

.additional-details__list-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-details__list-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.6) 100%);
}

.additional-details__list-card-content {
    position: relative;
    z-index: var(--z-default);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.additional-details__list-card-title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.additional-details__list-card-price {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-lg);
    text-transform: uppercase;
}

.additional-details__list-card-btn {
    align-self: flex-start;
    margin-top: var(--spacing-md);
    opacity: 0;
    transition: var(--transition-slow);
}

.additional-details__list-card:hover .additional-details__list-card-btn {
    opacity: 1;
}

.additional-details__list-card-features {
    position: relative;
    z-index: var(--z-default);
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    transition: var(--transition-slow);
    opacity: 0;
}

.additional-details__list-card:hover .additional-details__list-card-features {
    opacity: 1;
}

.additional-details__list-card-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: var(--font-size-body-md);
    font-weight: 500;
    /* Was nowrap: longer feature lines (Russian especially) ran past the card
       and were cut off by its overflow:hidden. */
    line-height: 1.4;
}

.additional-details__list-card-features i {
    color: var(--color-white);
    font-size: var(--font-size-body-lg);
    flex-shrink: 0;
    line-height: 1.3;
}

/* Touch devices have no hover, so the opacity:0 → :hover reveal above meant
   the feature list was never visible on a phone at all. Show it by default
   wherever hovering isn't available. */
@media (hover: none) {

    .additional-details__list-card-features,
    .additional-details__list-card-btn {
        opacity: 1;
    }
}

/***** End Additional Details *****/

/***** What We Do *****/

.what-we-do,
.service-areas,
.more-info {
    overflow: hidden;
}

.what-we-do__inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.what-we-do__video {
    position: relative;
    display: block;
    width: 100%;
    flex: 1;
    aspect-ratio: 3 / 2;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.what-we-do__video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.35);
    transition: var(--transition-fast);
}

.what-we-do__video:hover .what-we-do__video-overlay {
    background: rgba(10, 10, 10, 0.5);
}

.what-we-do__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: var(--font-size-body-5xl);
    transition: var(--transition-btn);
}

.what-we-do__video-play i {
    margin-left: 4px;
}

.what-we-do__video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.what-we-do__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    color: var(--color-white);
}

.what-we-do__label {
    font-weight: 700;
    font-size: var(--font-size-body-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.what-we-do__title {
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.15;
}

.what-we-do__subtitle {
    font-weight: 700;
    font-size: var(--font-size-body-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.what-we-do__desc {
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
    color: var(--color-text-gray);
}

.what-we-do__btn-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

/***** End What We Do *****/

/***** Why Choose Us *****/

.why-choose-us__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.why-choose-us__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: var(--spacing-xs);
}

/* flex-shrink:0 with two nowrap buttons pushed this ~369px wide block past the
   edge of a 375px phone. Wrapping lets the second button drop instead. */
.why-choose-us__header-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.why-choose-us__card {
    height: 100%;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-2xl);
    transition: transform var(--transition-mid), border-color var(--transition-mid),
        box-shadow var(--transition-mid);
}

.why-choose-us__card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
}

.why-choose-us__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-body-2xl);
    color: var(--color-black);
}

.why-choose-us__card-title {
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--font-size-body-xl);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.why-choose-us__card-desc {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
}

/***** End Why Choose Us *****/

/***** More Info / Before-After *****/

.more-info__inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.more-info__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    color: var(--color-white);
}

.more-info__title {
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.15;
}

.more-info__desc {
    font-size: var(--font-size-body-md);
    /* Long-form copy needs more leading than the 1.4 UI default. */
    line-height: 1.75;
    color: var(--color-text-gray);
}

/* Service descriptions arrive as raw multi-paragraph HTML, but the reset zeroes
   every margin — so the paragraphs ran together as one wall of text. */
.more-info__desc>p+p {
    margin-top: var(--spacing-md);
}

.more-info__btn-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

.more-info__list-title {
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--font-size-body-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.more-info__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.more-info__list li {
    display: flex;
    align-items: flex-start;
    justify-items: center;
    gap: var(--spacing-md);
}

.more-info__list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: var(--font-size-body-lg);
}

.more-info__list p {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
}

.more-info__list strong {
    color: var(--color-white);
}

.more-info__compare {
    flex: 1;
}

.more-info__image {
    flex: 1;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.more-info__image img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.before-after {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    user-select: none;
}

.before-after__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.before-after__before-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.before-after__tag {
    position: absolute;
    top: var(--spacing-lg);
    z-index: var(--z-default);
    padding: var(--spacing-2xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    background: rgba(10, 10, 10, 0.55);
    color: var(--color-white);
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.before-after:hover .before-after__tag {
    opacity: 1;
}

/* Without hover the Before/After labels never showed on a phone, leaving the
   comparison unlabelled. The --hidden modifier (set by the drag handler when a
   label would sit under the divider) still wins via !important. */
@media (hover: none) {
    .before-after__tag {
        opacity: 1;
    }
}

.before-after__tag--hidden {
    opacity: 0 !important;
}

.before-after__tag--before {
    left: var(--spacing-lg);
}

.before-after__tag--after {
    right: var(--spacing-lg);
}

.before-after__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 44px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-default);
}

.before-after__divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-white);
    transform: translateX(-50%);
}

.before-after__handle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(10, 10, 10, 0.4);
    cursor: ew-resize;
    touch-action: none;
}

/***** End More Info / Before-After *****/

/***** Journey *****/

.journey{
    overflow: hidden;
}

.journey__header {
    max-width: 800px;
    margin: 0 auto var(--spacing-4xl);
    text-align: center;
}

.journey__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.journey__desc {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
}

.journey__desc strong {
    color: var(--color-white);
}

.journey__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.journey__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--color-hover-border);
    transform: translateX(-50%);
}

.journey__item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.journey__dot {
    grid-column: 2;
    justify-self: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px var(--color-body-bg), 0 0 0 5px var(--color-hover-border);
    z-index: 1;
}

.journey__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-hover-border);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xl);
}

.journey__item--left .journey__card {
    grid-column: 1;
}

.journey__item--right .journey__card {
    grid-column: 3;
}

.journey__year {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-2xl);
    text-transform: uppercase;
    margin-bottom: var(--spacing-2xs);
}

.journey__text {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
}

/***** End Journey *****/

/***** Gallery *****/
.gallery__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: var(--spacing-xs);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.gallery__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
}

.gallery__slider-wrap {
    position: relative;
}

.gallery-slider {
    overflow: hidden;
}

.gallery__item {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 2px solid var(--color-transparent);
    padding: 0;
    background-color: var(--color-transparent);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-btn);
}

.gallery__item--active {
    border-color: var(--color-white);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-mid);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.05);
}

.gallery__nav {
    position: absolute;
    top: 50%;
    left: calc(var(--spacing-2xl) * -1);
    right: calc(var(--spacing-2xl) * -1);
    z-index: var(--z-default);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.gallery-prev,
.gallery-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-btn);
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.gallery-prev.swiper-button-disabled,
.gallery-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.gallery-modal .modal-dialog {
    margin: 0;
}

.gallery-modal .modal-content {
    height: 100%;
    background: var(--modal-overlay-gradient);
    border: none;
    border-radius: 0;
}

.gallery-modal .modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-4xl) var(--spacing-3xl);
}

.gallery-modal__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 3;
    opacity: 1;
}

.gallery-modal-slider {
    width: 100%;
    height: 100%;
}

.gallery-modal-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-slider img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-modal__nav {
    position: absolute;
    top: 50%;
    left: var(--spacing-xl);
    right: var(--spacing-xl);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.gallery-modal-prev,
.gallery-modal-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-btn);
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.gallery-modal-prev.swiper-button-disabled,
.gallery-modal-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/***** End Gallery *****/

/***** Project Video *****/

.project-video__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: var(--spacing-xs);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.project-video__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
}

.project-video__frame {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--color-surface-1);
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-card);
}

.project-video__trigger {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.project-video__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-video__trigger:hover .project-video__poster {
    transform: scale(1.03);
}

/* A flat wash over the whole photo greys the paint out — which is the one thing
   a detailing shop cannot afford. Darken only where the eye needs contrast:
   a pool behind the play button and a foot at the bottom edge. */
.project-video__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0) 42%),
        linear-gradient(to top, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0) 45%);
}

.project-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: var(--font-size-body-5xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform var(--transition-btn), box-shadow var(--transition-btn);
}

.project-video__play i {
    margin-left: 4px;
}

.project-video__trigger:hover .project-video__play {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
}

.project-video__trigger:focus-visible .project-video__play {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Replaces the whole facade once the visitor clicks play. */
.project-video__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 575px) {
    .project-video__frame {
        border-radius: var(--border-radius-sm);
    }

    .project-video__play {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-body-3xl);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    }
}

/***** End Project Video *****/

/***** What We Do Video Modal *****/

.what-we-do-modal .modal-dialog {
    margin: 0;
}

.what-we-do-modal .modal-content {
    height: 100%;
    background: var(--modal-overlay-gradient);
    border: none;
    border-radius: 0;
}

.what-we-do-modal .modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-xl) var(--spacing-xl);
}

.what-we-do-modal__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 3;
    opacity: 1;
}

.what-we-do-modal__video-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.what-we-do-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/***** End What We Do Video Modal *****/

/***** Reviews *****/

.reviews {
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: var(--z-below);
    background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.reviews::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: var(--z-below);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.65) 0%, var(--color-body-bg) 100%);
}

.reviews__header {
    position: relative;
    z-index: var(--z-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.reviews__label {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reviews__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.1;
}

.reviews__slider-wrap {
    position: relative;
    z-index: var(--z-default);
    margin-bottom: var(--spacing-2xl);
}

.reviews-slider {
    overflow: hidden;
}

.reviews-slider .swiper-wrapper {
    align-items: stretch;
}

.reviews-slider .swiper-slide {
    height: auto;
}

.review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xl);
    transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.review-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.review-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
    font-size: var(--font-size-body-lg);
}

.review-card__avatar--purple {
    background-color: #8a63d2;
    color: var(--color-white);
}

.review-card__avatar--red {
    background-color: #e05d5d;
    color: var(--color-white);
}

.review-card__avatar--gray {
    background-color: #4a4a4e;
    color: var(--color-white);
}

.review-card__avatar--blue {
    background-color: #4a7ddb;
    color: var(--color-white);
}

.review-card__meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.review-card__name {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-md);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card__time {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
}

.review-card__google {
    display: flex;
    flex-shrink: 0;
}

.review-card__google i {
    font-size: 18px;
    color: #4285F4;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    color: var(--color-white);
    font-size: var(--font-size-body-sm);
}

.review-card__verified {
    display: flex;
    color: #4a90e2;
    font-size: var(--font-size-body-lg);
}

.review-card__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
}

.review-card__text-stars {
    color: var(--color-white);
    font-size: 11px;
    margin-right: 2px;
}

.review-card__more {
    align-self: flex-start;
    margin-top: calc(var(--spacing-md) * -1);
    padding: 0;
    background: none;
    border: none;
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
    text-decoration: underline;
    cursor: pointer;
}

.reviews-slider__nav {
    position: absolute;
    top: 50%;
    left: calc(var(--spacing-2xl) * -1);
    right: calc(var(--spacing-2xl) * -1);
    z-index: var(--z-default);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.reviews-slider-prev,
.reviews-slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-btn);
}

.reviews-slider-prev:hover,
.reviews-slider-next:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.reviews__cta {
    position: relative;
    z-index: var(--z-default);
    display: flex;
    justify-content: center;
}

/***** End Reviews *****/

/***** FAQ *****/

.special-btn--gold {
    background-color: var(--color-white);
    color: var(--color-black);
}

.special-btn--gold i {
    color: var(--color-black);
}

.faq__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.faq__intro {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.faq__label {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.faq__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.1;
}

.faq__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.faq__columns {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3xl);
}

.faq__accordion {
    flex: 1 1 0;
    min-width: 0;
}

.faq-item {
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item__btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    background: none;
    color: var(--color-white);
    line-height: 1.3;
    font-weight: 700;
    font-size: var(--font-size-body-md);
    text-transform: uppercase;
    box-shadow: none;
}

.faq-item__btn:focus {
    box-shadow: none;
}

.faq-item__btn::after {
    display: none;
}

.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-left: auto;
}

.faq-item__icon-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-white);
    transition: transform 0.3s ease;
}

.faq-item__icon-bar--h {
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-item__icon-bar--v {
    width: 2px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__btn.collapsed .faq-item__icon-bar--v {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__body {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
    padding: 0 0 var(--spacing-lg);
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-black);
    color: var(--color-white);
    box-shadow: unset;
}

/***** End FAQ *****/

/***** Service Areas *****/

.service-areas__inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.service-areas__content {
    flex: 1 1 0;
    min-width: 0;
}

.service-areas__title {
    color: var(--color-white);
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xl);
}

.service-areas__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.service-areas__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-areas__list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: var(--font-size-body-md);
}

.service-areas__list i {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
}

.service-areas__btn-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.service-areas__map {
    flex: 1 1 0;
    min-width: 0;
    align-self: stretch;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.service-areas__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: grayscale(1);
    transition: var(--transition-mid);
}

.service-areas__map:hover iframe {
    filter: grayscale(0);
}


/***** End Service Areas *****/

/***** Contact Us / Get A Quote *****/

.contact-us {
    position: relative;
    overflow: hidden;
}

.contact-us-slider {
    position: absolute;
    inset: 0;
    z-index: var(--z-below);
}

.contact-us__slide-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-body-bg);
}

.contact-us__slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: var(--z-default);
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.25) 100%);
    pointer-events: none;
}

.contact-us__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.contact-us__content {
    flex: 1 1 0;
    min-width: 0;
    color: var(--color-white);
}

.contact-us__title {
    font-weight: 900;
    font-size: var(--font-size-body-6xl);
    text-transform: uppercase;
    line-height: 1.15;
    margin: var(--spacing-xs) 0 var(--spacing-lg);
}

.contact-us__desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--font-size-body-lg);
    line-height: var(--line-height-body);
    margin-bottom: var(--spacing-lg);
}

.contact-us__note {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
}

.contact-us__info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-us__info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-us__info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-hover-border);
    color: var(--color-white);
    font-size: var(--font-size-body-xl);
}

.contact-us__info-text {
    display: flex;
    flex-direction: column;
}

.contact-us__info-text a {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-lg);
    text-decoration: unset;
}

.contact-us__info-text a:hover {
    opacity: 0.8;
}

.contact-us__info-text span {
    margin-top: var(--spacing-xs);
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
}

.contact-us__socials {
    display: flex;
    gap: var(--spacing-sm);
}

.contact-us__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--color-hover-border);
    color: var(--color-white);
    transition: var(--transition-btn);
}

.contact-us__socials a:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.contact-us__form-wrap {
    flex: 1 1 0;
    min-width: 0;
}

.contact-us__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid var(--color-hover-border);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-2xl);
    backdrop-filter: var(--backdrop-glass);
}

.contact-us__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-us__field {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
}

.contact-us__field label {
    color: var(--color-white);
    font-size: var(--font-size-body-sm);
    font-weight: 600;
}

.contact-us__field input,
.contact-us__field select,
.contact-us__field textarea {
    width: 100%;
    background-color: var(--color-transparent);
    border: 1px solid var(--color-hover-border);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-white);
    font-size: var(--font-size-body-md);
    transition: var(--transition-btn);
}

.contact-us__field input::placeholder,
.contact-us__field textarea::placeholder {
    color: var(--color-text-gray);
}

.contact-us__field select {
    appearance: none;
    background-color: var(--color-transparent);
    color: var(--color-nav-link);
    font-weight: 500;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23828286' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-lg) center;
    padding-right: var(--spacing-2xl);
}

.contact-us__field select:hover {
    color: var(--color-white);
}

.contact-us__field select option {
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: rgba(10, 10, 10, 0.95);
    color: var(--color-nav-link);
    font-size: var(--font-size-body-md);
}

.contact-us__field select option:hover,
.contact-us__field select option:checked {
    color: var(--color-black) !important;
    background-color: var(--color-white) !important;
}

.contact-us__field select:invalid,
.contact-us__field select option[value=""] {
    color: var(--color-text-gray);
}

.contact-us__field textarea {
    min-height: 90px;
    resize: vertical;
}

.contact-us__field input:focus,
.contact-us__field select:focus,
.contact-us__field textarea:focus {
    outline: none;
    border-color: var(--color-white);
}

.contact-us__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
    font-size: var(--font-size-body-md);
    text-transform: uppercase;
    border: none;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition-btn);
}

.contact-us__submit:hover {
    opacity: 0.85;
}

/***** End Get A Quote *****/

/***** Footer *****/

footer {
    padding-bottom: var(--spacing-lg) !important;
}

.footer__brand {
    display: inline-block;
    width: fit-content;
}

.footer__brand img {
    height: 30px;
    width: auto;
    display: block;
}

.footer__heading {
    color: var(--color-text-gray);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer__list a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--font-size-body-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    line-height: 1.3;
}

.footer__list a:hover {
    opacity: 0.75;
}

.footer__list i {
    color: var(--color-white);
    font-size: var(--font-size-body-lg);
    flex-shrink: 0;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xs) var(--spacing-sm);
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-hover-border);
    text-align: center;
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
}

.footer__bottom a {
    color: var(--color-white);
    text-decoration: none;
}

.footer__bottom a:hover {
    text-decoration: underline;
}

/***** End Footer *****/

/***** End Contact Us / Get A Quote *****/

/***** Pricing *****/

.pricing__header {
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
    text-align: center;
}

.pricing__caption {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    margin-top: var(--spacing-xs);
}

.pricing__grid {
    display: grid;
    /* Three packages, so three columns — the old 1fr 1fr left an orphan card
       on its own row. */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    align-items: stretch;
}

.pricing__card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-2xl);
    text-align: left;
    /* Clips the optional package photo to the card's corners. */
    overflow: hidden;
    transition: transform var(--transition-mid), border-color var(--transition-mid),
        box-shadow var(--transition-mid);
}

/* Optional package photo. Bleeds to the card edges, so it cancels the card
   padding; cards without one simply start at the title. */
.pricing__image {
    position: relative;
    display: block;
    width: auto;
    margin: calc(var(--spacing-2xl) * -1) calc(var(--spacing-2xl) * -1) var(--spacing-xl);
    padding: 0;
    border: none;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--color-surface-1);
    cursor: pointer;
}

.pricing__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.pricing__card:hover .pricing__image img {
    transform: scale(1.04);
}

/* Says "this opens" without covering the photo — appears on hover, and stays
   visible on touch where there is no hover to reveal it. */
.pricing__image-zoom {
    position: absolute;
    right: var(--spacing-sm);
    bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: var(--backdrop-glass);
    color: var(--color-white);
    font-size: var(--font-size-body-sm);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.pricing__image:hover .pricing__image-zoom,
.pricing__image:focus-visible .pricing__image-zoom {
    opacity: 1;
}

@media (hover: none) {
    .pricing__image-zoom {
        opacity: 1;
    }
}

.pricing__card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
}

/* Highlighted tier: a lighter surface plus a top accent rule, instead of the
   near-identical grey it used before. */
.pricing__card--alt {
    position: relative;
    background-color: var(--color-surface-2);
    border-color: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.pricing__card--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-transparent), var(--color-white), var(--color-transparent));
}

.pricing__title {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.pricing__price {
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--font-size-body-5xl);
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border-subtle);
}

/* The package contents arrive as a raw <ul> from the DB. reset.css strips list
   styling and sets no colour, so the items rendered near-black on a near-black
   card, with zero spacing — the lines ran into each other and under the
   button. */
.pricing__card ul {
    list-style: none;
    margin: 0 0 var(--spacing-xl);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    /* Push the footer to the bottom so every card is the same height. */
    flex: 1;
}

.pricing__card li {
    position: relative;
    padding-left: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--font-size-body-md);
    line-height: 1.5;
}

.pricing__card li::before {
    content: '\F26E';
    /* bootstrap-icons check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.pricing__card--alt li::before {
    color: var(--color-white);
}

.pricing__price-currency {
    font-size: var(--font-size-body-lg);
    font-weight: 700;
    vertical-align: top;
    position: relative;
    top: 6px;
}

/* Was a black box floating inside the card; now just the CTA, full width and
   anchored to the bottom edge of every card. */
.pricing__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-md);
    margin-top: auto;
}

.pricing__footer .special-btn {
    justify-content: center;
}

.pricing__card:not(.pricing__card--alt) .pricing__footer .special-btn {
    background-color: var(--color-transparent);
    color: var(--color-white);
    border-color: var(--color-border-strong);
}

.pricing__card:not(.pricing__card--alt) .pricing__footer .special-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.pricing__protection {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: var(--font-size-body-md);
    font-weight: 600;
}

.pricing__protection i {
    color: var(--color-text-gray);
}

.pricing__disclaimer {
    max-width: 700px;
    margin: var(--spacing-2xl) auto 0;
    text-align: center;
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body);
}

/* Package photo lightbox — mirrors the gallery modal so both full-screen
   viewers on the site behave identically. */
.pricing-modal .modal-dialog {
    margin: 0;
}

.pricing-modal .modal-content {
    height: 100%;
    background: var(--modal-overlay-gradient);
    border: none;
    border-radius: 0;
}

.pricing-modal .modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-4xl) var(--spacing-3xl);
}

.pricing-modal__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 3;
    opacity: 1;
}

.pricing-modal__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
}

/***** End Pricing *****/

/***** Portfolio Grid *****/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.portfolio-grid__item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: transform var(--transition-mid), box-shadow var(--transition-mid),
        border-color var(--transition-mid);
}

.portfolio-grid__item:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-lift);
}

.portfolio-grid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-grid__item:hover .portfolio-grid__img {
    transform: scale(1.06);
}

/* Full-width scrim caption. The old version was a white slab pinned to
   `right: 30%`, which sliced into the photo and changed height with every
   title length, leaving the grid visibly ragged. */
.portfolio-grid__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: var(--spacing-2xs);
    padding: var(--spacing-4xl) var(--spacing-lg) var(--spacing-lg);
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.65) 45%,
            rgba(10, 10, 10, 0) 100%);
}

.portfolio-grid__title {
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--font-size-body-lg);
    text-transform: uppercase;
    line-height: 1.3;
}

/* Category sits above the title as a pill tag. */
.portfolio-grid__category {
    display: inline-block;
    padding: var(--spacing-4xs) var(--spacing-xs);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--border-radius-pill);
    backdrop-filter: var(--backdrop-glass);
}

/***** End Portfolio Grid *****/

/***** Portfolio Details *****/
.portfolio-details__image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.portfolio-details__image img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-details__desc {
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
    color: var(--color-text-gray);
}

.portfolio-details__desc+.portfolio-details__desc {
    margin-top: var(--spacing-md);
}

.portfolio-details__desc strong {
    color: var(--color-black);
}

.portfolio-detail-block {
    margin-top: var(--spacing-3xl);
}

.portfolio-detail-block__title {
    color: var(--color-black);
    font-weight: 900;
    font-size: var(--font-size-body-5xl);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
}

.portfolio-detail-block__image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.portfolio-detail-block__image img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-detail-block__desc {
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
    color: var(--color-text-gray);
}

.portfolio-detail-block__desc+.portfolio-detail-block__desc {
    margin-top: var(--spacing-md);
}

.portfolio-detail-block .more-info__list {
    margin: var(--spacing-md) 0;
}

/***** End Portfolio Details *****/

/***** Portfolio Pagination *****/
.portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
}

.portfolio-pagination__arrow,
.portfolio-pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-btn);
}

.portfolio-pagination__arrow:hover,
.portfolio-pagination__link:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.portfolio-pagination__link--active {
    background-color: var(--color-white);
    color: var(--color-black);
}

/***** End Portfolio Pagination *****/

/***** Project Nav *****/
.project-nav {
    background-color: var(--color-black);
    padding: var(--spacing-xl) 0;
}

.project-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

/* Project titles can be long ("Polish & Wax — Volkswagen Golf GTI") and
   .special-btn is nowrap, so the buttons used to run straight off the side of
   the screen. Cap their width and let the label ellipsise; the arrow icon is
   never allowed to shrink away. */
.project-nav__link {
    max-width: calc(50% - var(--spacing-sm) / 2);
    min-width: 0;
    overflow: hidden;
}

.project-nav__link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.project-nav__link i {
    flex-shrink: 0;
}

/* Only one neighbour (first/last project): keep it on its own side. */
.project-nav__inner>.project-nav__link:only-child {
    max-width: 100%;
}

/***** End Project Nav *****/

/***** Legal Content *****/
.legal-content__inner {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content__updated {
    color: var(--color-white);
    opacity: 0.5;
    font-size: var(--font-size-body-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-2xl);
}

.legal-content__block {
    margin-bottom: var(--spacing-2xl);
}

.legal-content__block:last-child {
    margin-bottom: 0;
}

.legal-content__block h2 {
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--font-size-body-2xl);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.legal-content__block p {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
}

.legal-content__block p+p {
    margin-top: var(--spacing-md);
}

.legal-content__block ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xs);
    margin-top: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.legal-content__block ul li {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    line-height: var(--line-height-body);
    list-style: disc;
}

.legal-content__block a {
    color: var(--color-white);
    text-decoration: underline;
}

/***** End Legal Content *****/

/***** Search Modal *****/
.search-modal .modal-dialog {
    max-width: 700px;
    margin: 110px auto 0;
}

.search-modal .modal-content {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-hover-border);
    border-radius: 20px;
    padding: var(--spacing-2xl) var(--spacing-md);
}

.search-modal__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
}

.search-modal__title {
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--font-size-body-3xl);
}

.search-modal__subtitle {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    margin-top: var(--spacing-3xs);
}

.search-modal__input-wrap {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--color-hover-border);
    background-color: rgba(255, 255, 255, 0.04);
    transition: var(--transition-fast);
}

.search-modal__input-wrap:focus-within {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.06);
}

.search-modal__input-wrap i {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-lg);
}

.search-modal__input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    color: var(--color-white);
    font-size: var(--font-size-body-md);
}

/* The wrapper already lights up its border on :focus-within, so the global
   keyboard focus ring would draw a second outline inside the pill. */
.search-modal__input:focus-visible {
    outline: none;
}

.search-modal__input::placeholder {
    color: var(--color-text-gray);
}

.search-modal__results {
    margin-top: var(--spacing-lg);
    max-height: 360px;
    overflow-y: auto;
}

.search-modal__hint {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-md);
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.search-modal__group+.search-modal__group {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-hover-border);
}

.search-modal__group-label {
    color: var(--color-text-gray);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: var(--spacing-2xs);
}

.search-modal__item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-2xs);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.search-modal__item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.search-modal__item-img {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

/* Icon placeholder for results without an image (static pages). */
.search-modal__item-img--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-body-2xl);
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-modal__item-text {
    flex: 1;
    min-width: 0;
}

.search-modal__item-title {
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--font-size-body-md);
}

.search-modal__item-desc {
    color: var(--color-text-gray);
    font-size: var(--font-size-body-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: var(--spacing-xs);
}

/***** End Search Modal *****/

/***** End Pricing *****/
/***** Error Page (404 & co.) *****/

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* Equal top/bottom padding keeps the block dead-centre in the viewport. */
    padding: 100px var(--spacing-lg);
}

.error-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 640px;
    text-align: center;
    color: var(--color-white);
}

/* Oversized outlined status code, matching the heavy display headings. */
.error-page__code {
    font-weight: 900;
    font-size: clamp(120px, 22vw, 240px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
    user-select: none;
}

.error-page__title {
    font-weight: 800;
    font-size: var(--font-size-body-4xl);
    color: var(--color-white);
}

.error-page__desc {
    color: var(--color-text-gray);
    line-height: var(--line-height-body);
}

.error-page__btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

/***** End Error Page *****/
