/* =========================================================
   HIGH RIVER MOVERS PAGE
   UNIQUE CLASS PREFIX: hvr-
   ========================================================= */

.hvr-page {
    --hvr-red: #C71111;
    --hvr-red-dark: #a40e0e;
    --hvr-black: #151515;
    --hvr-text: #464646;
    --hvr-muted: #777;
    --hvr-light: #f7f7f7;
    --hvr-border: #e6e6e6;
    --hvr-white: #fff;

    width: 100%;
    overflow: hidden;
    background: #fff;
    color: var(--hvr-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
}

.hvr-page *,
.hvr-page *::before,
.hvr-page *::after {
    box-sizing: border-box;
}

.hvr-page h1,
.hvr-page h2,
.hvr-page h3,
.hvr-page h4 {
    margin: 0;
    color: var(--hvr-black);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: -0.018em;
}

.hvr-page p {
    margin: 0 0 18px;
    font-size: 15.5px;
}

.hvr-page a {
    text-decoration: none;
}

.hvr-container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.hvr-hero {
    position: relative;
    min-height: 455px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12,12,12,.94) 0%, rgba(12,12,12,.78) 52%, rgba(12,12,12,.42) 100%),
        url("/images/locations/movers-in-high-river/moving-company-high-river-ab-05.jpg")
        center/cover no-repeat;
}

.hvr-hero-inner {
    max-width: 730px;
    padding: 70px 0;
}

.hvr-hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hvr-hero-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--hvr-red);
}

.hvr-hero h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.12;
    font-weight: 600;
    margin-bottom: 18px;
}

.hvr-hero-description {
    max-width: 660px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.7;
}

.hvr-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 27px;
}

.hvr-main-btn,
.hvr-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 0 23px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.hvr-main-btn {
    background: var(--hvr-red);
    color: #fff !important;
}

.hvr-main-btn:hover {
    background: var(--hvr-red-dark);
    transform: translateY(-2px);
}

.hvr-outline-btn {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.45);
}

.hvr-outline-btn:hover {
    background: #fff;
    color: var(--hvr-black) !important;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.hvr-introduction {
    padding: 88px 0 78px;
}

.hvr-intro-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 65px;
    align-items: start;
}

.hvr-intro-label {
    position: sticky;
    top: 90px;
}

.hvr-small-title {
    color: var(--hvr-red);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hvr-intro-label h2 {
    font-size: 31px;
    line-height: 1.25;
}

.hvr-red-line {
    width: 42px;
    height: 3px;
    margin-top: 20px;
    background: var(--hvr-red);
}

.hvr-intro-copy p {
    color: var(--hvr-text);
}

.hvr-intro-note {
    display: grid;
    grid-template-columns: 6px 1fr;
    margin-top: 27px;
    background: #fafafa;
    border: 1px solid var(--hvr-border);
}

.hvr-intro-note-bar {
    background: var(--hvr-red);
}

.hvr-intro-note-content {
    padding: 21px 24px;
}

.hvr-intro-note-content strong {
    display: block;
    color: var(--hvr-black);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hvr-intro-note-content span {
    display: block;
    color: var(--hvr-muted);
    font-size: 14px;
}


/* =========================================================
   TEAM / PROCESS
   ========================================================= */

.hvr-process {
    padding: 78px 0;
    background: var(--hvr-light);
}

.hvr-process-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.hvr-process-header h2 {
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.2;
}

.hvr-process-header p {
    margin-top: 14px;
    color: var(--hvr-muted);
}

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

.hvr-process-card {
    position: relative;
    padding: 30px 27px 28px;
    background: #fff;
    border: 1px solid var(--hvr-border);
}

.hvr-process-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(199,17,17,.3);
    color: var(--hvr-red);
    font-size: 13px;
    font-weight: 600;
}

.hvr-process-card h3 {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 11px;
}

.hvr-process-card p {
    color: var(--hvr-muted);
    font-size: 14px;
    margin: 0;
}


/* =========================================================
   PRECISION SECTION
   ========================================================= */

.hvr-precision {
    padding: 90px 0;
}

.hvr-precision-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 65px;
    align-items: center;
}

.hvr-precision-image {
    position: relative;
}

.hvr-precision-image img {
    display: block;
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.hvr-image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    max-width: 245px;
    padding: 18px 20px;
    background: var(--hvr-red);
    color: #fff;
}

.hvr-image-caption strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.hvr-image-caption span {
    font-size: 12px;
    opacity: .9;
}

.hvr-precision-content h2 {
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.2;
    margin-bottom: 17px;
}

.hvr-precision-content > p {
    color: var(--hvr-muted);
}

.hvr-detail-list {
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.hvr-detail-list li {
    position: relative;
    padding: 14px 0 14px 29px;
    border-bottom: 1px solid var(--hvr-border);
    font-size: 14.5px;
}

.hvr-detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--hvr-red);
    font-weight: 600;
}


/* =========================================================
   MOVING DETAILS
   ========================================================= */

.hvr-details {
    padding: 78px 0;
    background: #151515;
}

.hvr-details-inner {
    max-width: 930px;
    margin: 0 auto;
}

.hvr-details-heading {
    margin-bottom: 35px;
}

.hvr-details-heading .hvr-small-title {
    color: #e03a3a;
}

.hvr-details-heading h2 {
    color: #fff;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.hvr-detail-block {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.hvr-detail-block:last-child {
    border-bottom: 0;
}

.hvr-detail-block h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hvr-detail-block p {
    color: rgba(255,255,255,.67);
    font-size: 14.5px;
    margin: 0;
}


/* =========================================================
   FAQ
   ========================================================= */

.hvr-questions {
    padding: 85px 0;
}

.hvr-faq-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 65px;
    align-items: start;
}

.hvr-faq-heading h2 {
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.2;
}

.hvr-faq-heading p {
    margin-top: 14px;
    color: var(--hvr-muted);
}

.hvr-faq-list {
    border-top: 1px solid var(--hvr-border);
}

.hvr-faq-row {
    border-bottom: 1px solid var(--hvr-border);
}

.hvr-faq-trigger {
    position: relative;
    width: 100%;
    padding: 20px 40px 20px 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    color: var(--hvr-black);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.hvr-faq-trigger::after {
    content: "+";
    position: absolute;
    right: 3px;
    top: 15px;
    color: var(--hvr-red);
    font-size: 23px;
    font-weight: 400;
}

.hvr-faq-row.hvr-open .hvr-faq-trigger::after {
    content: "−";
}

.hvr-faq-response {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.hvr-faq-response p {
    padding: 0 35px 21px 0;
    margin: 0;
    color: var(--hvr-muted);
    font-size: 14px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.hvr-work {
    padding: 85px 0;
    background: var(--hvr-light);
}

.hvr-work-heading {
    margin-bottom: 35px;
}

.hvr-work-heading .hvr-small-title {
    margin-bottom: 8px;
}

.hvr-work-heading h2 {
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.2;
}

.hvr-gallery {
    position: relative;
    overflow: hidden;
}

.hvr-gallery-track {
    display: flex;
    transition: transform .55s ease;
}

.hvr-gallery-item {
    min-width: 100%;
    position: relative;
}

.hvr-gallery-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hvr-gallery-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 70px 35px 28px;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.76)
    );
}

.hvr-gallery-info span {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hvr-gallery-info h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-top: 4px;
}

.hvr-gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--hvr-black);
    font-size: 23px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.16);
    transition: .2s ease;
}

.hvr-gallery-control:hover {
    background: var(--hvr-red);
    color: #fff;
}

.hvr-gallery-prev {
    left: 18px;
}

.hvr-gallery-next {
    right: 18px;
}

.hvr-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.hvr-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: .25s ease;
}

.hvr-gallery-dot.hvr-selected {
    width: 25px;
    border-radius: 6px;
    background: var(--hvr-red);
}


/* =========================================================
   CTA
   ========================================================= */

.hvr-final {
    padding: 65px 0 75px;
}

.hvr-final-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 58px;
    overflow: hidden;
    background: var(--hvr-red);
}

.hvr-final-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -140px;
    border: 55px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.hvr-final-text {
    position: relative;
    z-index: 2;
}

.hvr-final-text h2 {
    color: #fff;
    font-size: clamp(27px, 3vw, 37px);
    line-height: 1.2;
    font-weight: 600;
}

.hvr-final-text p {
    color: rgba(255,255,255,.82);
    margin: 9px 0 0;
    font-size: 14.5px;
}

.hvr-final-link {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 4px;
    background: #fff;
    color: var(--hvr-red) !important;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.hvr-final-link:hover {
    background: var(--hvr-black);
    color: #fff !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .hvr-intro-layout,
    .hvr-precision-layout,
    .hvr-faq-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hvr-intro-label {
        position: static;
    }

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

    .hvr-precision-image img {
        height: 450px;
    }

    .hvr-faq-heading {
        max-width: 600px;
    }

    .hvr-final-box {
        padding: 43px;
    }
}

@media (max-width: 650px) {

    .hvr-container {
        width: min(100% - 28px, 1160px);
    }

    .hvr-hero {
        min-height: 420px;
    }

    .hvr-hero-inner {
        padding: 60px 0;
    }

    .hvr-hero h1 {
        font-size: 36px;
    }

    .hvr-hero-description {
        font-size: 15.5px;
    }

    .hvr-hero-actions {
        flex-direction: column;
    }

    .hvr-main-btn,
    .hvr-outline-btn {
        width: 100%;
    }

    .hvr-introduction,
    .hvr-process,
    .hvr-precision,
    .hvr-details,
    .hvr-questions,
    .hvr-work {
        padding: 62px 0;
    }

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

    .hvr-precision-image img {
        height: 350px;
    }

    .hvr-image-caption {
        left: 12px;
        bottom: 12px;
    }

    .hvr-gallery-item img {
        height: 330px;
    }

    .hvr-gallery-info {
        padding: 55px 20px 22px;
    }

    .hvr-gallery-info h3 {
        font-size: 19px;
    }

    .hvr-gallery-control {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .hvr-gallery-prev {
        left: 9px;
    }

    .hvr-gallery-next {
        right: 9px;
    }

    .hvr-final {
        padding: 45px 0;
    }

    .hvr-final-box {
        display: block;
        padding: 38px 25px;
    }

    .hvr-final-link {
        margin-top: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hvr-gallery-track,
    .hvr-faq-response,
    .hvr-main-btn,
    .hvr-outline-btn {
        transition: none;
    }
}
