
/* =========================================================
   COLD LAKE MOVERS PAGE
   ========================================================= */

.coldlake-page {
    --cl-red: #da0032;
    --cl-red-dark: #a90027;
    --cl-red-light: #fff1f4;
    --cl-black: #08090b;
    --cl-dark: #111317;
    --cl-gray: #6d727b;
    --cl-light: #f6f7f8;
    --cl-white: #ffffff;
    --cl-border: #e6e7e9;

    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;

    color: var(--cl-black);
    background: #fff;
    overflow: hidden;
}

.coldlake-page * {
    box-sizing: border-box;
}

.coldlake-page a {
    text-decoration: none;
}


/* =========================================================
   HERO
   ========================================================= */

.cl-hero {
    position: relative;
    min-height: 720px;
    background: var(--cl-black);
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cl-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: var(--cl-red);
    border-radius: 50%;
    filter: blur(120px);
    opacity: .22;
    right: -180px;
    top: -180px;
}

.cl-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ffffff;
    border-radius: 50%;
    filter: blur(180px);
    opacity: .04;
    left: -200px;
    bottom: -200px;
}

.cl-hero-inner {
    width: min(1240px, 92%);
    margin: auto;

    display: grid;

    /* More space for the image */
    grid-template-columns: .92fr 1.08fr;

    gap: 45px;
    align-items: center;

    position: relative;
    z-index: 2;
}

.cl-hero-content {
    max-width: 650px;
}

.cl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.cl-eyebrow span {
    width: 42px;
    height: 2px;
    background: var(--cl-red);
    display: inline-block;
}

.cl-hero h1 {
    font-size: clamp(48px, 6vw, 86px);
    line-height: .94;
    letter-spacing: -4px;

    margin: 0 0 30px;

    /* Slightly lighter than before */
    font-weight: 750;
}

.cl-hero h1 em {
    color: var(--cl-red);
    font-style: normal;
}

.cl-hero-text {
    color: #c5c8ce;
    font-size: 18px;
    line-height: 1.8;

    max-width: 600px;
    margin-bottom: 38px;
}

.cl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cl-btn-primary {
    background: var(--cl-red);
    color: #fff;

    padding: 16px 25px;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .7px;

    transition: .3s ease;
}

.cl-btn-primary:hover {
    background: #fff;
    color: var(--cl-black);
    transform: translateY(-3px);
}

.cl-btn-outline {
    color: #fff;

    border: 1px solid rgba(255,255,255,.3);

    padding: 16px 25px;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .7px;

    transition: .3s ease;
}

.cl-btn-outline:hover {
    background: #fff;
    color: var(--cl-black);
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.cl-hero-visual {
    position: relative;
    min-height: 540px;

    /* Prevent unnecessary empty space */
    width: 100%;
}

.cl-hero-image {
    position: absolute;

    /* CHANGED:
       Image now fills the complete visual area */
    width: 100%;
    height: 500px;

    right: 0;
    left: 0;
    top: 20px;

    border-radius: 8px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.15);
}

.cl-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

.cl-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0,0,0,.55)
    );
}

.cl-hero-number {
    position: absolute;

    left: -18px;
    bottom: 5px;

    width: 180px;
    height: 180px;

    background: var(--cl-red);
    color: #fff;

    z-index: 4;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cl-hero-number strong {
    font-size: 55px;
    line-height: 1;

    /* Less heavy */
    font-weight: 750;
}

.cl-hero-number span {
    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-top: 8px;
}


/* =========================================================
   INTRO STRIP
   ========================================================= */

.cl-intro-strip {
    background: var(--cl-red);
    color: #fff;
    padding: 30px 0;
}

.cl-intro-inner {
    width: min(1240px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;
    gap: 40px;
}

.cl-intro-inner p {
    margin: 0;

    font-size: 18px;
    line-height: 1.7;

    font-weight: 500;
}

.cl-intro-label {
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 2px;

    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   COMMON
   ========================================================= */

.cl-section {
    padding: 110px 0;
}

.cl-container {
    width: min(1240px, 92%);
    margin: auto;
}

.cl-section-heading {
    max-width: 750px;
    margin-bottom: 65px;
}

.cl-section-heading .small {
    color: var(--cl-red);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.cl-section-heading h2 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1;

    letter-spacing: -2.5px;

    margin: 0 0 20px;

    /* Changed from 900 */
    font-weight: 700;
}

.cl-section-heading p {
    color: var(--cl-gray);

    font-size: 17px;
    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   CHECKLIST INTRO
   ========================================================= */

.cl-checklist-intro {
    background: var(--cl-light);
}

.cl-checklist-layout {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 90px;
    align-items: start;
}

.cl-sticky-title {
    position: sticky;
    top: 100px;
}

.cl-sticky-title .number {
    font-size: 100px;
    line-height: .8;

    font-weight: 800;

    color: var(--cl-red);

    letter-spacing: -8px;

    margin-bottom: 25px;
}


/* =========================================================
   CHECKLIST TITLE - SOFTER FONT
   ========================================================= */

.cl-sticky-title h2 {
    font-size: 45px;
    line-height: 1;

    /* CHANGED:
       Much lighter than the previous 900 */
    font-weight: 650;

    letter-spacing: -1.5px;

    margin: 0 0 20px;

    max-width: 390px;
}

.cl-sticky-title p {
    color: var(--cl-gray);

    line-height: 1.8;

    max-width: 390px;
}


/* =========================================================
   CHECKLIST CARDS
   ========================================================= */

.cl-checklist {
    position: relative;
}

.cl-check-item {
    position: relative;

    display: grid;
    grid-template-columns: 80px 1fr;

    gap: 25px;

    padding: 0 0 55px;
}

.cl-check-item:last-child {
    padding-bottom: 0;
}

.cl-check-item::before {
    content: "";

    position: absolute;

    left: 39px;
    top: 80px;
    bottom: 0;

    width: 1px;

    background: #d7d9dc;
}

.cl-check-item:last-child::before {
    display: none;
}

.cl-check-number {
    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: var(--cl-black);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    font-weight: 700;

    position: relative;
    z-index: 2;

    transition: .3s ease;
}

.cl-check-item:hover .cl-check-number {
    background: var(--cl-red);
    transform: scale(1.08);
}

.cl-check-content {
    background: #fff;

    border: 1px solid var(--cl-border);

    padding: 30px 32px;

    transition: .3s ease;
}

.cl-check-item:hover .cl-check-content {
    border-color: var(--cl-red);
    transform: translateX(5px);
}

.cl-check-content h3 {
    margin: 0 0 13px;

    font-size: 24px;

    letter-spacing: -.5px;

    font-weight: 700;
}

.cl-check-content p {
    margin: 0;

    color: var(--cl-gray);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   MOVING DAY SECTION
   ========================================================= */

.cl-moving-day {
    background: var(--cl-black);
    color: #fff;
}

.cl-moving-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: center;
}

.cl-moving-image {
    height: 600px;

    overflow: hidden;

    position: relative;
}

.cl-moving-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cl-moving-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        0deg,
        rgba(0,0,0,.5),
        transparent 60%
    );
}

.cl-moving-content .small {
    color: var(--cl-red);

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 12px;
    font-weight: 800;
}

.cl-moving-content h2 {
    font-size: clamp(40px, 5vw, 68px);

    line-height: .98;

    letter-spacing: -3px;

    margin: 18px 0 25px;

    font-weight: 700;
}

.cl-moving-content > p {
    color: #aeb3bb;

    font-size: 17px;
    line-height: 1.8;
}

.cl-moving-list {
    margin-top: 35px;

    display: grid;
    gap: 15px;
}

.cl-moving-list div {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    color: #e7e9ec;

    line-height: 1.6;
}

.cl-moving-list span {
    width: 24px;
    height: 24px;

    min-width: 24px;

    background: var(--cl-red);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   FINALIZING SECTION
   ========================================================= */

.cl-finalizing {
    background: #fff;
}

.cl-finalizing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.cl-final-card {
    min-height: 280px;

    border: 1px solid var(--cl-border);

    padding: 35px;

    position: relative;

    transition: .3s ease;
}

.cl-final-card:nth-child(2) {
    background: var(--cl-black);
    color: #fff;
}

.cl-final-card:nth-child(2) p {
    color: #aeb3bb;
}

.cl-final-card:hover {
    transform: translateY(-8px);
    border-color: var(--cl-red);
}

.cl-final-card .icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--cl-red);
    color: #fff;

    font-weight: 700;

    margin-bottom: 30px;
}

.cl-final-card h3 {
    margin: 0 0 15px;

    font-size: 24px;

    font-weight: 700;
}

.cl-final-card p {
    margin: 0;

    color: var(--cl-gray);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CONCLUSION
   ========================================================= */

.cl-conclusion {
    background: var(--cl-red);
    color: #fff;

    padding: 90px 0;
}

.cl-conclusion-inner {
    width: min(1000px, 92%);

    margin: auto;

    text-align: center;
}

.cl-conclusion-inner .quote-mark {
    font-size: 100px;
    line-height: .5;

    font-weight: 700;

    opacity: .25;
}

.cl-conclusion-inner h2 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -3px;

    margin: 25px 0;

    font-weight: 700;
}

.cl-conclusion-inner p {
    font-size: 17px;

    line-height: 1.9;

    max-width: 850px;

    margin: auto;

    color: rgba(255,255,255,.88);
}


/* =========================================================
   FAQ
   ========================================================= */

.cl-faq {
    background: var(--cl-light);
}

.cl-faq-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 80px;

    align-items: start;
}

.cl-faq-intro h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    margin: 0 0 20px;

    font-weight: 700;
}

.cl-faq-intro p {
    color: var(--cl-gray);
    line-height: 1.8;
}

.cl-faq-list {
    display: grid;
    gap: 12px;
}

.cl-faq-item {
    background: #fff;

    border: 1px solid var(--cl-border);
}

.cl-faq-item summary {
    list-style: none;

    cursor: pointer;

    padding: 25px 28px;

    font-size: 17px;

    font-weight: 700;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.cl-faq-item summary::-webkit-details-marker {
    display: none;
}

.cl-faq-item summary::after {
    content: "+";

    font-size: 26px;

    font-weight: 400;

    color: var(--cl-red);
}

.cl-faq-item[open] summary::after {
    content: "−";
}

.cl-faq-answer {
    padding: 0 28px 27px;

    color: var(--cl-gray);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   PROJECTS CAROUSEL
   ========================================================= */

.cl-projects {
    background: #fff;

    padding-bottom: 100px;
}

.cl-projects-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.cl-projects-header h2 {
    margin: 0;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .95;

    letter-spacing: -3px;

    font-weight: 700;
}

.cl-projects-header p {
    max-width: 450px;

    margin: 0;

    color: var(--cl-gray);

    line-height: 1.7;
}

.cl-carousel {
    position: relative;

    overflow: hidden;
}

.cl-carousel-track {
    display: flex;

    transition: transform .65s cubic-bezier(.22,.61,.36,1);
}

.cl-slide {
    min-width: 100%;

    height: 620px;

    position: relative;

    overflow: hidden;
}

.cl-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.cl-slide-overlay {
    position: absolute;

    inset: auto 0 0;

    padding: 80px 50px 40px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );

    color: #fff;
}

.cl-slide-overlay span {
    color: #fff;

    background: var(--cl-red);

    padding: 8px 12px;

    font-size: 11px;

    text-transform: uppercase;

    font-weight: 700;

    letter-spacing: 1px;
}

.cl-slide-overlay h3 {
    font-size: 30px;

    margin: 15px 0 0;

    font-weight: 650;
}

.cl-carousel-controls {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 20px;
}

.cl-carousel-arrows {
    display: flex;
    gap: 10px;
}

.cl-carousel-btn {
    width: 52px;
    height: 52px;

    border: 1px solid #d9dade;

    background: #fff;

    cursor: pointer;

    font-size: 22px;

    transition: .3s ease;
}

.cl-carousel-btn:hover {
    background: var(--cl-red);

    color: #fff;

    border-color: var(--cl-red);
}

.cl-dots {
    display: flex;
    gap: 8px;
}

.cl-dot {
    width: 35px;
    height: 4px;

    background: #d7d8db;

    cursor: pointer;

    transition: .3s ease;
}

.cl-dot.active {
    background: var(--cl-red);
}


/* =========================================================
   CTA
   ========================================================= */

.cl-cta {
    background: var(--cl-black);

    color: #fff;

    padding: 100px 0;

    position: relative;

    overflow: hidden;
}

.cl-cta::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -200px;

    background: var(--cl-red);

    border-radius: 50%;

    filter: blur(100px);

    opacity: .2;
}

.cl-cta-inner {
    width: min(1000px, 92%);

    margin: auto;

    text-align: center;

    position: relative;

    z-index: 2;
}

.cl-cta-inner .small {
    color: var(--cl-red);

    text-transform: uppercase;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.cl-cta h2 {
    font-size: clamp(42px, 6vw, 76px);

    line-height: .95;

    letter-spacing: -4px;

    margin: 20px 0 25px;

    font-weight: 700;
}

.cl-cta p {
    color: #aeb3bb;

    max-width: 650px;

    margin: 0 auto 35px;

    line-height: 1.8;
}

.cl-cta .cl-btn-primary {
    display: inline-block;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .cl-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .cl-hero-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cl-hero-visual {
        min-height: 500px;
    }

    .cl-hero-image {
        width: 100%;
        height: 480px;
    }

    .cl-checklist-layout,
    .cl-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cl-sticky-title {
        position: static;
    }

    .cl-moving-layout {
        grid-template-columns: 1fr;
    }

    .cl-moving-image {
        height: 450px;
    }

    .cl-finalizing-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .cl-section {
        padding: 75px 0;
    }

    .cl-hero {
        padding: 80px 0;
    }

    .cl-hero h1 {
        letter-spacing: -2px;
    }

    .cl-hero-text {
        font-size: 16px;
    }

    .cl-hero-visual {
        min-height: 370px;
    }

    .cl-hero-image {
        position: relative;

        width: 100%;
        height: 350px;

        top: 0;
        left: 0;
    }

    .cl-hero-number {
        width: 125px;
        height: 125px;

        left: -8px;
        bottom: 0;

        padding: 18px;
    }

    .cl-hero-number strong {
        font-size: 38px;
    }

    .cl-intro-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cl-intro-inner p {
        font-size: 15px;
    }

    .cl-check-item {
        grid-template-columns: 55px 1fr;
        gap: 15px;
    }

    .cl-check-item::before {
        left: 27px;
        top: 55px;
    }

    .cl-check-number {
        width: 55px;
        height: 55px;

        font-size: 16px;
    }

    .cl-check-content {
        padding: 22px;
    }

    .cl-check-content h3 {
        font-size: 20px;
    }

    .cl-sticky-title h2 {
        font-size: 38px;
        font-weight: 650;
    }

    .cl-finalizing-grid {
        grid-template-columns: 1fr;
    }

    .cl-projects-header {
        display: block;
    }

    .cl-projects-header p {
        margin-top: 20px;
    }

    .cl-slide {
        height: 430px;
    }

    .cl-slide-overlay {
        padding: 60px 25px 25px;
    }

    .cl-slide-overlay h3 {
        font-size: 22px;
    }

    .cl-carousel-controls {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .cl-cta {
        padding: 75px 0;
    }

    .cl-cta h2 {
        letter-spacing: -2px;
    }
}


@media (max-width: 480px) {

    .cl-container,
    .cl-hero-inner,
    .cl-intro-inner {
        width: 90%;
    }

    .cl-hero-buttons {
        flex-direction: column;
    }

    .cl-btn-primary,
    .cl-btn-outline {
        text-align: center;
        width: 100%;
    }

    .cl-moving-image {
        height: 330px;
    }

    .cl-faq-item summary {
        padding: 20px;
        font-size: 15px;
    }

    .cl-faq-answer {
        padding: 0 20px 20px;
    }
}

