/* Hero: text straight on the photo, no card */
.hero {
    position: relative;
    min-height: clamp(620px, 86vh, 860px);
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.hero .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 40%;
}
.hero .bg { object-position: 50% 42%; }
.hero .scrim {
    position: absolute;
    inset: 0;
    /* neutral scrim so the photo's own colors stay true (a tinted one made the exterior shot go muddy) */
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, .05) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .22) 50%, rgba(0, 0, 0, .03) 100%);
}
.hero .wrap {
    position: relative;
    width: 100%;
    padding-top: 200px;
    padding-bottom: 72px;
}
.hero .copy {
    max-width: 720px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2), 0 10px 36px rgba(0, 0, 0, .22);
}
.hero .copy h1 {
    color: #fff;
}
.hero .copy .lead {
    color: rgba(255, 255, 255, .92);
    margin-bottom: 26px;
}
.hero .btn {
    text-shadow: none;
}
.hero .btn.alt {
    color: #fff;
    border-color: rgba(255, 255, 255, .85);
}
.hero .btn.alt:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* Welcome: the photo runs the full height of the section */
.intro-sec {
    padding: 0;
}
.intro {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: stretch;
}
.intro .pic {
    position: relative;
}
.intro .pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
}
.intro .txt {
    padding: 96px 0;
    align-self: center;
}

/* Services bands: each photo fills its row and touches the one above */
.bands {
    padding: 0;
}
.bands .row2 {
    margin: 0;
    align-items: stretch;
}
.bands .pic {
    position: relative;
}
.bands .pic img,
.bands .pic .ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 0;
}
.bands .pic .ph {
    background: var(--ph);
    border: 0;
}
.bands .txt {
    padding: 88px 0;
    align-self: center;
}

/* Reviews: compact header, one row of cards that scrolls */
.revs {
    padding: 56px 0 60px;
}
.revhead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.revhead h2 {
    font-size: clamp(23px, 2vw, 28px);
    margin: 0 0 4px;
}
.revhead .score {
    margin: 0;
    color: var(--ink2);
    font-size: 15px;
}
.revhead .score .stars {
    display: inline;
    margin: 0 10px 0 0;
    font-size: 14px;
    letter-spacing: 2px;
}
.revctl {
    display: flex;
    align-items: center;
    gap: 10px;
}
.revctl .link {
    margin-right: 10px;
}
.arrow {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--ink);
    background: transparent;
    color: var(--ink);
    border-radius: var(--r);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.arrow:hover {
    background: var(--ink);
    color: #fff;
}
.revtrack {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: max(32px, calc((100% - 1136px) / 2));
    padding: 4px max(32px, calc((100% - 1136px) / 2)) 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.revtrack::-webkit-scrollbar {
    display: none;
}
.revcard {
    flex: 0 0 300px;
    scroll-snap-align: start;
    margin: 0;
    padding: 20px 22px 18px;
    background: var(--bg);
    border-radius: var(--rimg);
    display: flex;
    flex-direction: column;
}
.revcard .stars {
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 2px;
}
.revcard blockquote {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}
.revcard figcaption {
    font-weight: 600;
    font-size: 14px;
}
.revcard figcaption span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: var(--ink2);
    margin-top: 2px;
}

@media (max-width: 980px) {
    .hero {
        min-height: clamp(600px, 86vh, 760px);
    }
    .hero .wrap {
        padding-top: 150px;
        padding-bottom: 56px;
    }
    .intro,
    .bands .row2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .intro .pic,
    .bands .pic {
        aspect-ratio: 4 / 3;
        margin: 0 -32px;
    }
    .intro .txt {
        padding: 44px 0 64px;
    }
    .bands .txt {
        padding: 40px 0 56px;
    }
    .revs {
        padding: 48px 0;
    }
    .revcard {
        flex-basis: 260px;
    }
}
@media (max-width: 600px) {
    .intro .pic,
    .bands .pic {
        margin: 0 -22px;
    }
    .revtrack {
        padding-left: 22px;
        padding-right: 22px;
        scroll-padding-left: 22px;
    }
    .revcard {
        flex-basis: 78%;
    }
}
