/* =========================================================
   ST. ALBERT MOVERS PAGE
   Unique page-specific classes
========================================================= */

:root {
    --stal-red: #da0032;
    --stal-red-dark: #b50029;
    --stal-red-soft: #fff1f4;
    --stal-black: #101114;
    --stal-dark: #17191d;
    --stal-text: #44474d;
    --stal-muted: #73767c;
    --stal-light: #f6f6f6;
    --stal-border: #e6e6e6;
    --stal-white: #ffffff;
}

/* Reset only page elements */
.stalbert-page,
.stalbert-page * {
    box-sizing: border-box;
}

.stalbert-page {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--stal-text);
    background: #fff;
    line-height: 1.75;
}

.stalbert-page img {
    max-width: 100%;
    display: block;
}

.stalbert-page a {
    color: inherit;
}

/* =========================================================
   HERO
========================================================= */

.stalbert-hero {
    background: var(--stal-black);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 7% 90px;
}

.stalbert-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    right: -150px;
    top: -150px;
}

.stalbert-hero-grid {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stalbert-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.stalbert-hero-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--stal-red);
}

.stalbert-hero h1 {
    font-size: clamp(42px, 4vw, 72px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -2px;
    margin: 0 0 28px;
    color: #fff;
}

.stalbert-hero h1 span {
    color: var(--stal-red);
}

.stalbert-hero-description {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    margin: 0 0 34px;
}

.stalbert-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stalbert-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--stal-red);
    color: #fff !important;
    padding: 14px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: .3s ease;
}

.stalbert-primary-btn:hover {
    background: #fff;
    color: var(--stal-black) !important;
}

.stalbert-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff !important;
    padding: 13px 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: .3s ease;
}

.stalbert-outline-btn:hover {
    border-color: #fff;
    background: #fff;
    color: var(--stal-black) !important;
}

.stalbert-hero-visual {
    position: relative;
}

.stalbert-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.stalbert-image-tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #fff;
    color: var(--stal-black);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
}

.stalbert-image-tag span {
    display: block;
    color: var(--stal-red);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* =========================================================
   TITLE INTRO
========================================================= */

.stalbert-intro {
    padding: 95px 7%;
    background: #fff;
}

.stalbert-intro-inner {
    max-width: 1240px;
    margin: auto;
}

.stalbert-kicker {
    color: var(--stal-red);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 14px;
}

.stalbert-intro h2 {
    max-width: 850px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 500;
    color: var(--stal-black);
    margin: 0 0 30px;
    letter-spacing: -1px;
}

.stalbert-intro-copy {
    max-width: 920px;
    font-size: 17px;
    color: var(--stal-text);
}

.stalbert-intro-copy p {
    margin: 0 0 20px;
}

/* =========================================================
   SERVICE INTRO
========================================================= */

.stalbert-services {
    background: var(--stal-light);
    padding: 100px 7%;
}

.stalbert-services-wrap {
    max-width: 1240px;
    margin: auto;
}

.stalbert-services-head {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    margin-bottom: 55px;
}

.stalbert-services-head h2 {
    margin: 0;
    color: var(--stal-black);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
}

.stalbert-services-head p {
    margin: 0;
    font-size: 17px;
    color: var(--stal-text);
}

.stalbert-service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stalbert-service-card {
    background: #fff;
    padding: 32px 26px;
    min-height: 285px;
    border-top: 3px solid transparent;
    transition: .3s ease;
}

.stalbert-service-card:hover {
    border-top-color: var(--stal-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.07);
}

.stalbert-service-number {
    font-size: 13px;
    color: var(--stal-red);
    font-weight: 600;
    margin-bottom: 28px;
}

.stalbert-service-card h3 {
    margin: 0 0 15px;
    color: var(--stal-black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.stalbert-service-card p {
    margin: 0;
    color: var(--stal-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   ACCESS SECTION
========================================================= */

.stalbert-access {
    padding: 100px 7%;
    background: #fff;
}

.stalbert-access-grid {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.stalbert-access-photo {
    position: relative;
}

.stalbert-access-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stalbert-access-badge {
    position: absolute;
    right: -25px;
    bottom: 25px;
    width: 150px;
    height: 150px;
    background: var(--stal-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.stalbert-access-content .stalbert-kicker {
    margin-bottom: 12px;
}

.stalbert-access-content h2 {
    margin: 0 0 25px;
    color: var(--stal-black);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
}

.stalbert-access-content p {
    margin: 0 0 20px;
}

.stalbert-access-note {
    border-left: 3px solid var(--stal-red);
    background: var(--stal-red-soft);
    padding: 20px 24px;
    margin-top: 28px;
    color: var(--stal-black);
    font-weight: 500;
}

/* =========================================================
   WHY US
========================================================= */

.stalbert-trust {
    background: var(--stal-dark);
    color: #fff;
    padding: 100px 7%;
}

.stalbert-trust-inner {
    max-width: 1240px;
    margin: auto;
}

.stalbert-trust-top {
    max-width: 780px;
    margin-bottom: 55px;
}

.stalbert-trust-top .stalbert-kicker {
    color: #ff5577;
}

.stalbert-trust-top h2 {
    color: #fff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 20px;
}

.stalbert-trust-top p {
    color: rgba(255,255,255,.68);
    margin: 0;
}

.stalbert-trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.stalbert-trust-item {
    padding: 35px 25px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.stalbert-trust-item:last-child {
    border-right: none;
}

.stalbert-trust-item strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stalbert-trust-item p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   SEAMLESS MOVE SECTION
========================================================= */

.stalbert-story {
    padding: 100px 7%;
    background: var(--stal-red-soft);
}

.stalbert-story-layout {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.stalbert-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stalbert-story-copy h2 {
    color: var(--stal-black);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 25px;
}

.stalbert-story-copy p {
    margin: 0 0 18px;
}

.stalbert-story-link {
    display: inline-flex;
    margin-top: 15px;
    color: var(--stal-red) !important;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--stal-red);
    padding-bottom: 4px;
}

/* =========================================================
   FAQ
========================================================= */

.stalbert-faq {
    padding: 100px 7%;
    background: #fff;
}

.stalbert-faq-wrap {
    max-width: 1000px;
    margin: auto;
}

.stalbert-faq-heading {
    text-align: center;
    margin-bottom: 50px;
}

.stalbert-faq-heading .stalbert-kicker {
    margin-bottom: 10px;
}

.stalbert-faq-heading h2 {
    margin: 0;
    color: var(--stal-black);
    font-size: 44px;
    font-weight: 500;
}

.stalbert-question {
    border-top: 1px solid var(--stal-border);
}

.stalbert-question:last-child {
    border-bottom: 1px solid var(--stal-border);
}

.stalbert-question summary {
    list-style: none;
    cursor: pointer;
    padding: 25px 5px;
    color: var(--stal-black);
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding-right: 45px;
}

.stalbert-question summary::-webkit-details-marker {
    display: none;
}

.stalbert-question summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 22px;
    color: var(--stal-red);
    font-size: 25px;
    font-weight: 400;
}

.stalbert-question[open] summary::after {
    content: "−";
}

.stalbert-answer {
    padding: 0 45px 25px 5px;
    color: var(--stal-muted);
    font-size: 15px;
}

/* =========================================================
   GALLERY
========================================================= */

.stalbert-gallery {
    background: var(--stal-black);
    padding: 100px 0 0;
    color: #fff;
}

.stalbert-gallery-heading {
    max-width: 1240px;
    margin: 0 auto 45px;
    padding: 0 7%;
}

.stalbert-gallery-heading .stalbert-kicker {
    color: #ff5577;
}

.stalbert-gallery-heading h2 {
    margin: 0 0 15px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 500;
}

.stalbert-gallery-heading p {
    max-width: 700px;
    color: rgba(255,255,255,.62);
    margin: 0;
}

.stalbert-carousel {
    position: relative;
    overflow: hidden;
}

.stalbert-track {
    display: flex;
    transition: transform .65s cubic-bezier(.22,.61,.36,1);
}

.stalbert-slide {
    min-width: 100%;
    position: relative;
}

.stalbert-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.stalbert-slide-caption {
    position: absolute;
    left: 7%;
    bottom: 40px;
    background: rgba(16,17,20,.9);
    border-left: 4px solid var(--stal-red);
    padding: 17px 24px;
    color: #fff;
    font-size: 14px;
}

.stalbert-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor: pointer;
    z-index: 4;
    font-size: 22px;
    transition: .25s ease;
}

.stalbert-carousel-btn:hover {
    background: var(--stal-red);
    border-color: var(--stal-red);
}

.stalbert-prev {
    left: 25px;
}

.stalbert-next {
    right: 25px;
}

.stalbert-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 25px 0 35px;
}

.stalbert-dot {
    width: 30px;
    height: 3px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.3);
    cursor: pointer;
}

.stalbert-dot.active {
    background: var(--stal-red);
}

/* =========================================================
   FINAL CTA
========================================================= */

.stalbert-final {
    padding: 90px 7%;
    background: var(--stal-red);
    color: #fff;
}

.stalbert-final-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.stalbert-final h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
}

.stalbert-final p {
    margin: 0;
    color: rgba(255,255,255,.8);
}

.stalbert-final-btn {
    display: inline-flex;
    white-space: nowrap;
    background: #fff;
    color: var(--stal-black) !important;
    padding: 15px 27px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.stalbert-final-btn:hover {
    background: var(--stal-black);
    color: #fff !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .stalbert-hero-grid,
    .stalbert-access-grid,
    .stalbert-story-layout {
        grid-template-columns: 1fr;
    }

    .stalbert-hero {
        padding: 75px 6%;
    }

    .stalbert-hero-image {
        height: 430px;
    }

    .stalbert-services-head {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stalbert-service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .stalbert-trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .stalbert-trust-item:nth-child(2) {
        border-right: none;
    }

    .stalbert-trust-item:nth-child(1),
    .stalbert-trust-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .stalbert-slide img {
        height: 500px;
    }

    .stalbert-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {

    .stalbert-hero {
        padding: 60px 20px;
    }

    .stalbert-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .stalbert-hero-description {
        font-size: 15px;
    }

    .stalbert-intro,
    .stalbert-services,
    .stalbert-access,
    .stalbert-trust,
    .stalbert-story,
    .stalbert-faq {
        padding: 70px 20px;
    }

    .stalbert-service-list {
        grid-template-columns: 1fr;
    }

    .stalbert-service-card {
        min-height: auto;
    }

    .stalbert-access-photo img,
    .stalbert-story-image img {
        height: 380px;
    }

    .stalbert-access-badge {
        right: 15px;
        bottom: 15px;
        width: 120px;
        height: 120px;
        font-size: 12px;
    }

    .stalbert-trust-items {
        grid-template-columns: 1fr;
    }

    .stalbert-trust-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .stalbert-trust-item:last-child {
        border-bottom: none;
    }

    .stalbert-slide img {
        height: 380px;
    }

    .stalbert-slide-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .stalbert-carousel-btn {
        width: 42px;
        height: 42px;
    }

    .stalbert-prev {
        left: 12px;
    }

    .stalbert-next {
        right: 12px;
    }

    .stalbert-final {
        padding: 70px 20px;
    }

    .stalbert-final h2 {
        font-size: 32px;
    }
}
