/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #222222;
    --color-grey: #bdbcbc;
    --color-greyDark: #686363;
    --color-greyLight: #ebeaea;
    --color-blue: #1b4f72;
    --color-white: #fff;
    --color-navy: #0b1e3d;
    --color-cyan: #4fc3e0;
    --color-coral: #ff6b4a;
    --color-ice: #f5f8fa;
    --color-charcoal: #1a2530;
    --color-line: #dce6ea;
    --scrollbar-size: 0.375rem;
    --scrollbar-minlength: 1.5rem; /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
    --scrollbar-ff-width: thin; /* FF-only accepts auto, thin, none */
    --scrollbar-track-color: rgba(0, 0, 0, 0.1);
    --scrollbar-color: rgba(0, 0, 0, 0.3);
    --scrollbar-color-hover: rgba(0, 0, 0, 0.4);
    --scrollbar-color-active: rgb(0, 0, 0);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Geologica', sans-serif;
    --font-label: 'Geologica', sans-serif;
}

/* Use .layout-scrollbar-obtrusive to only use overflow if scrollbars don’t overlay */
.scrollbar-test,
.layout-cell {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: var(--scrollbar-ff-width);
}

/* This class controls what elements have the new fancy scrollbar CSS */
.layout-scrollbar {
    scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color);
}

/* Only apply height/width to ::-webkit-scrollbar if is obtrusive */
.layout-scrollbar-obtrusive::-webkit-scrollbar {
    width: var(--scrollbar-size);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: var(--scrollbar-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-color-hover);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:active {
    background-color: var(--scrollbar-color-active);
}

.scrollbar-test::-webkit-scrollbar-thumb:vertical,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:vertical {
    min-height: var(--scrollbar-minlength);
}

.scrollbar-test::-webkit-scrollbar-thumb:horizontal,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:horizontal {
    min-width: var(--scrollbar-minlength);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
General
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: clip !important;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    position: relative;
    overflow-x: clip !important;
    width: 100% !important;
    cursor: auto;
    font-family: var(--font-main);
    color: var(--color-charcoal);
    background: var(--color-ice);
    line-height: 1.55;
    font-size: 18px;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

::selection {
    background-color: rgba(79, 195, 224, 0.35);
    color: var(--color-navy);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.12;
    letter-spacing: -0.01em;
    text-align: left;
}

.mono {
    font-family: var(--font-label);
    font-weight: 300;
}

@media (max-width: 767px) {
    .mobileHide {
        display: none !important;
    }

    img.leftPic,
    img.rightPic {
        width: 70%;
        margin: 0 15% 2vh 15%;
    }
}

@media (min-width: 768px) {
    .mainHide {
        display: none !important;
    }

    img.leftPic {
        float: left;
        width: 40%;
        margin: 1.5vh 1vw 0 0;
    }

    img.rightPic {
        float: right;
        width: 40%;
        margin: 1.5vh 0 0 1vw;
    }
}

#upHigh {
    visibility: hidden;
}

[data-xcloak] {
    display: none !important;
}

[data-theme=light] .site-nav {
    z-index: 99999999999;
    background-color: var(--color-white);
}

[data-theme=dark] .site-nav {
    z-index: 99999999999;
    background-color: var(--color-black);
}

.fade-from-left {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-50%);
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: var(--color-black);
    color: var(--color-white) !important;
    font-weight: bold !important;
    opacity: 0;
}

.skip-to-main-content-link:focus {
    top: 10%;
    left: 50% !important;
    opacity: 1;
    transform: translateX(-50%);
}

select:focus-visible {
    border: 2px dashed crimson;
    border-radius: 3px;
    outline: none;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
HVAC Design System — layout & UI utilities
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.wrap {
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-family: var(--font-label);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-coral);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-coral);
    display: inline-block;
}

section {
    padding: 88px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-coral {
    background: var(--color-coral) !important;
    color: var(--color-white) !important;
    border: solid thin var(--color-coral) !important;
}

.btn-coral:hover {
    background: var(--color-white) !important;
    color: var(--color-coral) !important;
}

.btn-navy {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-ghost {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-navy);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

@media (max-width: 900px) {
    section {
        padding: 30px 0;
    }

    .wrap {
        padding: 0;
    }
}
