/* =========================================================
   STRATHMORE MOVERS PAGE
   Unique page classes
   Theme: #da0032
========================================================= */

:root {
    --str-red: #da0032;
    --str-red-dark: #b50029;
    --str-black: #101114;
    --str-dark: #181a1f;
    --str-text: #34363b;
    --str-muted: #72757b;
    --str-light: #f6f6f4;
    --str-white: #ffffff;
    --str-border: #e5e5e5;
}


/* =========================================================
   GLOBAL
========================================================= */

.strathmore-page {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--str-text);
    background: #fff;
    overflow: hidden;
}

.strathmore-page * {
    box-sizing: border-box;
}

.strathmore-page a {
    text-decoration: none;
}

.strathmore-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.strathmore-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--str-red);
    margin-bottom: 14px;
}

.strathmore-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--str-red);
}

.strathmore-title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: var(--str-black);
}

.strathmore-heading {
    margin: 0 0 16px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -.5px;
    color: var(--str-black);
}

.strathmore-subheading {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--str-black);
}

.strathmore-copy {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--str-text);
}

.strathmore-copy:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HERO
========================================================= */

.strathmore-hero {
    position: relative;
    padding: 85px 0 75px;
    background: var(--str-light);
}

.strathmore-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 590px;
    align-items: stretch;
}

.strathmore-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 55px 55px 0;
}

.strathmore-hero-content .strathmore-title {
    max-width: 620px;
}

.strathmore-hero-intro {
    max-width: 590px;
    font-size: 17px;
    line-height: 1.85;
    color: #55585e;
    margin: 0 0 28px;
}

.strathmore-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.strathmore-primary-btn,
.strathmore-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.strathmore-primary-btn {
    color: #fff;
    background: var(--str-red);
}

.strathmore-primary-btn:hover {
    background: var(--str-red-dark);
    color: #fff;
    transform: translateY(-2px);
}

.strathmore-secondary-btn {
    color: var(--str-black);
    border: 1px solid #d3d3d3;
    background: #fff;
}

.strathmore-secondary-btn:hover {
    border-color: var(--str-black);
    color: var(--str-black);
}

.strathmore-hero-visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
}

.strathmore-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    display: block;
}

.strathmore-hero-tag {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 270px;
    padding: 20px 22px;
    background: rgba(16, 17, 20, .94);
    color: #fff;
}

.strathmore-hero-tag strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.strathmore-hero-tag span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: #d9d9d9;
}


/* =========================================================
   INTRO STRIP
========================================================= */

.strathmore-intro-band {
    background: var(--str-red);
    color: #fff;
    padding: 28px 0;
}

.strathmore-intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.strathmore-intro-row p {
    margin: 0;
    max-width: 820px;
    font-size: 16px;
    line-height: 1.65;
}

.strathmore-intro-number {
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.strathmore-intro-number small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   WHY SECTION
========================================================= */

.strathmore-why {
    padding: 100px 0;
    background: #fff;
}

.strathmore-why-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.strathmore-why-left {
    position: sticky;
    top: 100px;
}

.strathmore-why-left p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--str-muted);
}

.strathmore-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--str-border);
}

.strathmore-benefit {
    padding: 28px 25px 30px 0;
    border-bottom: 1px solid var(--str-border);
}

.strathmore-benefit:nth-child(odd) {
    border-right: 1px solid var(--str-border);
    padding-right: 35px;
}

.strathmore-benefit:nth-child(even) {
    padding-left: 35px;
}

.strathmore-benefit-index {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--str-red);
}

.strathmore-benefit h3 {
    margin: 0 0 9px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--str-black);
}

.strathmore-benefit p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--str-muted);
}


/* =========================================================
   SERVICES
========================================================= */

.strathmore-services {
    padding: 90px 0;
    background: var(--str-light);
}

.strathmore-services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.strathmore-services-head > div:last-child {
    max-width: 440px;
}

.strathmore-services-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--str-muted);
}

.strathmore-service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.strathmore-service-card {
    min-height: 260px;
    padding: 32px 30px;
    background: #fff;
    border: 1px solid #e9e9e9;
    transition: .25s ease;
}

.strathmore-service-card:hover {
    border-color: var(--str-red);
    transform: translateY(-4px);
}

.strathmore-service-card:nth-child(2),
.strathmore-service-card:nth-child(5) {
    background: var(--str-black);
    color: #fff;
}

.strathmore-service-card:nth-child(2) h3,
.strathmore-service-card:nth-child(5) h3 {
    color: #fff;
}

.strathmore-service-card:nth-child(2) p,
.strathmore-service-card:nth-child(5) p {
    color: #c9c9c9;
}

.strathmore-service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: var(--str-red);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.strathmore-service-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--str-black);
}

.strathmore-service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--str-muted);
}


/* =========================================================
   PROCESS
========================================================= */

.strathmore-process {
    padding: 100px 0;
    background: #fff;
}

.strathmore-process-intro {
    max-width: 650px;
    margin-bottom: 50px;
}

.strathmore-process-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--str-muted);
}

.strathmore-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--str-border);
    border-bottom: 1px solid var(--str-border);
}

.strathmore-step {
    position: relative;
    padding: 35px 28px 40px;
    border-right: 1px solid var(--str-border);
}

.strathmore-step:last-child {
    border-right: 0;
}

.strathmore-step-num {
    margin-bottom: 35px;
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    color: #dedede;
}

.strathmore-step h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--str-black);
}

.strathmore-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--str-muted);
}


/* =========================================================
   FEATURE IMAGE / STORY
========================================================= */

.strathmore-story {
    padding: 0 0 100px;
}

.strathmore-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 510px;
}

.strathmore-story-image {
    overflow: hidden;
}

.strathmore-story-image img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    display: block;
}

.strathmore-story-content {
    display: flex;
    align-items: center;
    padding: 60px;
    background: var(--str-black);
    color: #fff;
}

.strathmore-story-content .strathmore-eyebrow {
    color: #fff;
}

.strathmore-story-content .strathmore-eyebrow::before {
    background: var(--str-red);
}

.strathmore-story-content .strathmore-heading {
    color: #fff;
}

.strathmore-story-content p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.85;
    color: #d0d0d0;
}

.strathmore-story-note {
    display: inline-block;
    margin-top: 8px;
    padding: 9px 13px;
    background: var(--str-red);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}


/* =========================================================
   FAQ
========================================================= */

.strathmore-faq {
    padding: 100px 0;
    background: var(--str-light);
}

.strathmore-faq-layout {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 80px;
}

.strathmore-faq-intro p {
    max-width: 340px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--str-muted);
}

.strathmore-faq-list {
    border-top: 1px solid #dcdcdc;
}

.strathmore-faq-item {
    border-bottom: 1px solid #dcdcdc;
}

.strathmore-faq-item summary {
    position: relative;
    padding: 23px 45px 23px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--str-black);
}

.strathmore-faq-item summary::-webkit-details-marker {
    display: none;
}

.strathmore-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 19px;
    font-size: 23px;
    font-weight: 400;
    color: var(--str-red);
}

.strathmore-faq-item[open] summary::after {
    content: "−";
}

.strathmore-faq-answer {
    padding: 0 45px 23px 0;
}

.strathmore-faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--str-muted);
}


/* =========================================================
   PROJECT GALLERY
========================================================= */

.strathmore-gallery {
    padding: 100px 0 90px;
    background: #fff;
}

.strathmore-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.strathmore-gallery-head p {
    max-width: 430px;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--str-muted);
}

.strathmore-carousel {
    position: relative;
    overflow: hidden;
}

.strathmore-track {
    display: flex;
    transition: transform .55s ease;
}

.strathmore-slide {
    flex: 0 0 100%;
    position: relative;
    height: 570px;
    overflow: hidden;
}

.strathmore-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.strathmore-slide-caption {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 14px 18px;
    background: rgba(16, 17, 20, .9);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.strathmore-carousel-control {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 0;
    cursor: pointer;
    background: #fff;
    color: var(--str-black);
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    transition: .2s ease;
}

.strathmore-carousel-control:hover {
    background: var(--str-red);
    color: #fff;
}

.strathmore-prev {
    left: 20px;
}

.strathmore-next {
    right: 20px;
}

.strathmore-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.strathmore-dot {
    width: 28px;
    height: 3px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #d5d5d5;
    transition: .25s ease;
}

.strathmore-dot.active {
    width: 45px;
    background: var(--str-red);
}


/* =========================================================
   FINAL CTA
========================================================= */

.strathmore-final {
    padding: 75px 0;
    background: var(--str-red);
    color: #fff;
}

.strathmore-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.strathmore-final .strathmore-eyebrow {
    color: #fff;
}

.strathmore-final .strathmore-eyebrow::before {
    background: #fff;
}

.strathmore-final h2 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(27px, 3.5vw, 42px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -.7px;
}

.strathmore-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    background: #fff;
    color: var(--str-black);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: .25s ease;
}

.strathmore-final-btn:hover {
    background: var(--str-black);
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .strathmore-hero-grid {
        grid-template-columns: 1fr;
    }

    .strathmore-hero-content {
        padding: 30px 0 45px;
    }

    .strathmore-hero-visual,
    .strathmore-hero-visual img {
        min-height: 470px;
    }

    .strathmore-why-grid,
    .strathmore-faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .strathmore-why-left {
        position: static;
    }

    .strathmore-why-left p,
    .strathmore-faq-intro p {
        max-width: 650px;
    }

    .strathmore-service-list {
        grid-template-columns: 1fr 1fr;
    }

    .strathmore-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .strathmore-step:nth-child(2) {
        border-right: 0;
    }

    .strathmore-step:nth-child(-n+2) {
        border-bottom: 1px solid var(--str-border);
    }

    .strathmore-story-layout {
        grid-template-columns: 1fr;
    }

    .strathmore-story-image img {
        min-height: 420px;
    }

    .strathmore-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 700px) {

    .strathmore-wrap {
        width: min(100% - 28px, 1180px);
    }

    .strathmore-hero {
        padding: 55px 0 50px;
    }

    .strathmore-title {
        font-size: 32px;
    }

    .strathmore-heading {
        font-size: 27px;
    }

    .strathmore-hero-content {
        padding: 15px 0 35px;
    }

    .strathmore-hero-intro {
        font-size: 15px;
        line-height: 1.75;
    }

    .strathmore-hero-visual,
    .strathmore-hero-visual img {
        min-height: 370px;
    }

    .strathmore-hero-tag {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .strathmore-intro-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .strathmore-intro-number {
        font-size: 27px;
    }

    .strathmore-why,
    .strathmore-services,
    .strathmore-process,
    .strathmore-faq,
    .strathmore-gallery {
        padding: 65px 0;
    }

    .strathmore-benefits {
        grid-template-columns: 1fr;
    }

    .strathmore-benefit:nth-child(odd) {
        border-right: 0;
        padding-right: 0;
    }

    .strathmore-benefit:nth-child(even) {
        padding-left: 0;
    }

    .strathmore-service-list {
        grid-template-columns: 1fr;
    }

    .strathmore-service-card {
        min-height: auto;
    }

    .strathmore-services-head,
    .strathmore-gallery-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .strathmore-process-grid {
        grid-template-columns: 1fr;
    }

    .strathmore-step,
    .strathmore-step:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--str-border);
    }

    .strathmore-step:last-child {
        border-bottom: 0;
    }

    .strathmore-story-content {
        padding: 45px 25px;
    }

    .strathmore-story-image img {
        min-height: 320px;
    }

    .strathmore-slide {
        height: 390px;
    }

    .strathmore-carousel-control {
        width: 42px;
        height: 42px;
    }

    .strathmore-prev {
        left: 10px;
    }

    .strathmore-next {
        right: 10px;
    }

    .strathmore-final {
        padding: 55px 0;
    }

    .strathmore-final h2 {
        font-size: 29px;
    }

    .strathmore-final-btn {
        width: 100%;
    }
}
