/* =========================================================
   REGAL — SLIDING WINDOWS
   NEW / DISTINCT VISUAL SYSTEM
   Main section only
========================================================= */

.sliding-modern {
    --swm-red: #ed2d35;
    --swm-red-dark: #c91f28;
    --swm-black: #080a0c;
    --swm-black-2: #111417;
    --swm-paper: #f5f4ef;
    --swm-white: #ffffff;
    --swm-text: #171918;
    --swm-muted: #737875;
    --swm-line: rgba(20,22,21,.13);

    --swm-max: 1316px;
    --swm-side: 22px;

    font-family: "Inter", sans-serif;
    color: var(--swm-text);
    background: var(--swm-paper);

    width: 100%;
    overflow: hidden;
}

.sliding-modern *,
.sliding-modern *::before,
.sliding-modern *::after {
    box-sizing: border-box;
}

.sliding-modern h1,
.sliding-modern h2,
.sliding-modern h3,
.sliding-modern p {
    margin: 0;
}

.sliding-modern img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.sliding-modern a {
    text-decoration: none;
}

.swm-rail {
    width: min(var(--swm-max), calc(100% - (var(--swm-side) * 2)));
    margin-inline: auto;
}

/* =========================================================
   LABEL
========================================================= */

.swm-label {
    width: max-content;

    color: var(--swm-muted);

    font-size: 9px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.swm-label::before {
    content: "";
    display: inline-block;

    width: 28px;
    height: 1px;

    margin: 0 12px 3px 0;

    background: var(--swm-red);
}

.swm-label.light {
    color: rgba(255,255,255,.62);
}

/* =========================================================
   HERO — COMPLETELY DIFFERENT COMPOSITION
========================================================= */

.swm-hero {
    position: relative;
    min-height: 820px;

    overflow: hidden;
    background: var(--swm-black);
    color: #fff;
}

.swm-hero-photo {
    position: absolute;
    inset: 0 0 0 27%;
    overflow: hidden;
}

.swm-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.03);
}

.swm-photo-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,12,.95) 0%,
            rgba(8,10,12,.45) 25%,
            rgba(8,10,12,.08) 72%
        );
}

.swm-hero-red {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 27%;

    background: var(--swm-red);
}

.swm-hero-content {
    position: relative;
    z-index: 3;

    min-height: 820px;

    display: flex;
    align-items: center;
}

.swm-hero-copy {
    width: 53%;
    padding-left: 4.5%;
}

.swm-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 32px;

    color: rgba(255,255,255,.72);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.swm-eyebrow b {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    background: #fff;
    color: var(--swm-red);

    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    font-weight: 400;
}

.swm-hero-copy h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(105px, 11vw, 165px);
    font-weight: 400;
    line-height: .69;

    letter-spacing: -.5px;
    text-transform: uppercase;
}

.swm-hero-copy h1 span {
    color: var(--swm-red);
}

.swm-hero-copy p {
    max-width: 510px;
    margin-top: 38px;

    color: rgba(255,255,255,.73);

    font-size: 14px;
    line-height: 1.85;
}

.swm-circle-link {
    width: 105px;
    height: 105px;

    margin-top: 42px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;

    color: #fff !important;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.swm-circle-link i {
    color: var(--swm-red);
    font-size: 12px;
}

.swm-circle-link:hover {
    border-color: var(--swm-red);
    background: var(--swm-red);
    transform: rotate(5deg);
}

.swm-circle-link:hover i {
    color: #fff;
}

.swm-hero-caption {
    position: absolute;
    right: 22px;
    bottom: 28px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;

    text-align: right;
}

.swm-hero-caption span {
    color: rgba(255,255,255,.45);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.swm-hero-caption strong {
    color: #fff;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.swm-hero-mark {
    position: absolute;
    right: 4%;
    top: 42px;

    color: rgba(255,255,255,.08);

    font-family: "Bebas Neue", sans-serif;
    font-size: 190px;
    line-height: .7;
}

/* =========================================================
   INTRO
========================================================= */

.swm-intro {
    padding: 125px 0 135px;
    background: var(--swm-paper);
}

.swm-intro-top {
    display: grid;
    grid-template-columns: 90px 1fr .62fr;

    gap: 35px;
    align-items: end;

    margin-bottom: 75px;
}

.swm-section-number {
    align-self: start;

    padding-top: 5px;

    color: var(--swm-red);

    font-family: "Bebas Neue", sans-serif;
    font-size: 52px;
    line-height: 1;
}

.swm-intro-top h2 {
    max-width: 700px;
    margin-top: 23px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(72px, 7.5vw, 112px);
    font-weight: 400;
    line-height: .74;

    text-transform: uppercase;
}

.swm-intro-top h2 span {
    display: block;
    color: var(--swm-red);
}

.swm-intro-top > p {
    max-width: 390px;
    margin-bottom: 4px;

    color: #626765;

    font-size: 13px;
    line-height: 1.85;
}

.swm-intro-layout {
    display: grid;
    grid-template-columns: 1.42fr .58fr;

    gap: 24px;
    align-items: start;
}

.swm-intro-main-image {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.swm-intro-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swm-intro-main-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        0deg,
        rgba(0,0,0,.35),
        transparent 40%
    );
}

.swm-intro-main-image > span {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 22px;

    color: #fff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.swm-intro-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.swm-mini-image {
    height: 310px;
    overflow: hidden;
}

.swm-mini-image img {
    height: 100%;
    object-fit: cover;
}

.swm-quote {
    position: relative;

    min-height: 315px;
    padding: 40px 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: var(--swm-red);
    color: #fff;
}

.swm-quote > span {
    position: absolute;
    top: 22px;
    left: 26px;

    font-family: Georgia, serif;
    font-size: 75px;
    line-height: .6;
}

.swm-quote p {
    max-width: 300px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 39px;
    line-height: .9;

    text-transform: uppercase;
}

.swm-quote small {
    margin-top: 24px;

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

/* =========================================================
   RANGE
========================================================= */

.swm-range {
    padding: 125px 0 140px;

    background: var(--swm-black);
    color: #fff;
}

.swm-range-head {
    position: relative;

    display: grid;
    grid-template-columns: .35fr 1fr .2fr;

    gap: 30px;
    align-items: end;

    margin-bottom: 70px;
}

.swm-range-head h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(78px, 8vw, 120px);
    font-weight: 400;
    line-height: .72;

    text-transform: uppercase;
}

.swm-range-head h2 span {
    display: block;
    color: var(--swm-red);
}

.swm-range-arrow {
    align-self: end;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;

    color: rgba(255,255,255,.5);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.swm-range-arrow i {
    color: var(--swm-red);
    font-size: 20px;
}

.swm-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr .72fr;
    gap: 18px;
    align-items: start;
}

.swm-range-card {
    position: relative;
    overflow: hidden;

    background: #171a1d;
}

.swm-range-card-tall {
    margin-top: 0;
}

.swm-range-card-offset {
    margin-top: 80px;
}

.swm-card-photo {
    height: 385px;
    overflow: hidden;
}

.swm-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.swm-range-card:hover .swm-card-photo img {
    transform: scale(1.05);
}

.swm-card-info {
    padding: 27px 27px 32px;
}

.swm-card-info > span {
    color: var(--swm-red);

    font-family: "Bebas Neue", sans-serif;
    font-size: 29px;
}

.swm-card-info h3,
.swm-range-card-red h3 {
    margin-top: 15px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 49px;
    font-weight: 400;
    line-height: .78;

    text-transform: uppercase;
}

.swm-card-info p,
.swm-range-card-red p {
    max-width: 390px;
    margin-top: 23px;

    color: #9ca2a4;

    font-size: 12px;
    line-height: 1.75;
}

.swm-card-info a,
.swm-range-card-red a {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 28px;

    color: #fff !important;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.swm-card-info a i,
.swm-range-card-red a i {
    color: var(--swm-red);
}

.swm-range-card-red {
    min-height: 630px;
    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: var(--swm-red);
}

.swm-card-number {
    position: absolute;
    top: 28px;
    left: 30px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 45px;
}

.swm-red-icon {
    width: 66px;
    height: 66px;

    margin-bottom: 25px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
}

.swm-red-icon i {
    font-size: 19px;
}

.swm-range-card-red p {
    color: rgba(255,255,255,.82);
}

.swm-range-card-red a {
    width: max-content;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.65);
}

/* =========================================================
   STATEMENT
========================================================= */

.swm-statement {
    position: relative;
    min-height: 780px;

    display: flex;
    align-items: center;

    overflow: hidden;
    background: #080a0c;
    color: #fff;
}

.swm-statement-bg {
    position: absolute;
    inset: 0;

    background:
        url("../images/open-windows.jpg")
        center / cover no-repeat;

    transform: scale(1.02);
}

.swm-statement-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,12,.92) 0%,
            rgba(8,10,12,.70) 48%,
            rgba(8,10,12,.25) 100%
        );
}

.swm-statement-inner {
    position: relative;
    z-index: 2;

    padding: 120px 0;
}

.swm-statement-word {
    margin-top: 42px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(135px, 16vw, 245px);
    line-height: .63;

    text-transform: uppercase;
}

.swm-statement-word span,
.swm-statement-word em {
    display: block;
    font-style: normal;
}

.swm-statement-word span {
    color: #fff;
}

.swm-statement-word em {
    margin-left: 13%;
    color: var(--swm-red);
}

.swm-statement-bottom {
    max-width: 800px;

    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;

    margin-top: 55px;
}

.swm-statement-bottom p {
    max-width: 430px;

    color: rgba(255,255,255,.7);

    font-size: 14px;
    line-height: 1.85;
}

.swm-vertical-note {
    color: rgba(255,255,255,.4);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;

    writing-mode: vertical-rl;
}

/* =========================================================
   FEATURES
========================================================= */

.swm-features {
    padding: 125px 0 140px;
    background: #fff;
}

.swm-feature-intro {
    display: grid;
    grid-template-columns: .35fr 1fr;

    gap: 35px;

    margin-bottom: 65px;
}

.swm-feature-intro h2 {
    max-width: 850px;

    margin-top: -5px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(80px, 8vw, 122px);
    font-weight: 400;
    line-height: .72;

    text-transform: uppercase;
}

.swm-feature-intro h2 span {
    display: block;
    color: var(--swm-red);
}

.swm-feature-list {
    border-top: 1px solid var(--swm-line);
}

.swm-feature-row {
    min-height: 150px;

    display: grid;
    grid-template-columns: 75px 85px 1fr 50px;

    gap: 20px;
    align-items: center;

    border-bottom: 1px solid var(--swm-line);

    transition:
        background .3s ease,
        padding .3s ease;
}

.swm-feature-row:hover {
    padding-left: 20px;
    background: var(--swm-paper);
}

.swm-feature-row > strong {
    color: var(--swm-red);

    font-family: "Bebas Neue", sans-serif;
    font-size: 31px;
    font-weight: 400;
}

.swm-feature-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border: 1px solid var(--swm-line);
    border-radius: 50%;

    color: var(--swm-text);
}

.swm-feature-row h3 {
    margin-bottom: 7px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: .9;

    text-transform: uppercase;
}

.swm-feature-row p {
    max-width: 530px;

    color: #737875;

    font-size: 11px;
    line-height: 1.65;
}

.swm-feature-symbol {
    justify-self: end;

    color: var(--swm-red);

    font-size: 28px;
    font-weight: 300;
}

/* =========================================================
   IMAGE BAND
========================================================= */

.swm-image-band {
    width: 100%;
    overflow: hidden;
    background: var(--swm-red);
}

.swm-band-track {
    min-height: 340px;

    display: grid;
    grid-template-columns: 1.15fr .72fr .8fr .8fr;

    gap: 0;
}

.swm-band-image {
    overflow: hidden;
    background: #222;
}

.swm-band-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;

    transition: transform .7s ease;
}

.swm-band-image:hover img {
    transform: scale(1.05);
}

.swm-band-text {
    padding: 45px 32px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--swm-red);
    color: #fff;
}

.swm-band-text span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.swm-band-text strong {
    margin-top: 25px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: .78;
}

.swm-band-text i {
    margin-top: 30px;
    font-size: 18px;
}

/* =========================================================
   APPLICATIONS
========================================================= */

.swm-applications {
    padding: 125px 0 140px;
    background: var(--swm-black);
    color: #fff;
}

.swm-app-top {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 65px;
}

.swm-app-top h2 {
    max-width: 850px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(80px, 8vw, 122px);
    font-weight: 400;
    line-height: .72;

    text-align: right;
    text-transform: uppercase;
}

.swm-app-top h2 span {
    display: block;
    color: var(--swm-red);
}

.swm-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.swm-app-item {
    position: relative;

    padding: 0 0 28px;

    border-bottom: 1px solid rgba(255,255,255,.17);
}

.swm-app-item > span {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;

    color: #fff;

    font-family: "Bebas Neue", sans-serif;
    font-size: 29px;
}

.swm-app-photo {
    height: 370px;
    overflow: hidden;
}

.swm-app-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.swm-app-item:hover .swm-app-photo img {
    transform: scale(1.045);
}

.swm-app-item h3 {
    margin-top: 23px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: .8;

    text-transform: uppercase;
}

.swm-app-item p {
    margin-top: 11px;

    color: #979da0;

    font-size: 11px;
    line-height: 1.6;
}

/* =========================================================
   DETAIL SPLIT
========================================================= */

.swm-detail {
    min-height: 750px;

    display: grid;
    grid-template-columns: 1.02fr .98fr;

    background: var(--swm-black-2);
    color: #fff;
}

.swm-detail-image {
    min-height: 750px;
    overflow: hidden;
}

.swm-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swm-detail-copy {
    align-self: center;

    max-width: 600px;
    padding: 100px 8vw 100px 7vw;
}

.swm-detail-copy h2 {
    margin-top: 28px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(75px, 7.5vw, 112px);
    font-weight: 400;
    line-height: .72;

    text-transform: uppercase;
}

.swm-detail-copy h2 span {
    display: block;
    color: var(--swm-red);
}

.swm-detail-copy > p {
    max-width: 500px;
    margin-top: 32px;

    color: #aab0b2;

    font-size: 14px;
    line-height: 1.85;
}

.swm-detail-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 45px;

    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.swm-detail-points > div {
    padding: 19px 12px 19px 0;

    border-right: 1px solid rgba(255,255,255,.15);
}

.swm-detail-points > div:not(:first-child) {
    padding-left: 15px;
}

.swm-detail-points > div:last-child {
    border-right: 0;
}

.swm-detail-points b {
    display: block;

    color: var(--swm-red);

    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    font-weight: 400;
}

.swm-detail-points span {
    display: block;
    margin-top: 7px;

    color: #c1c5c6;

    font-size: 8px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.swm-line-button {
    display: inline-flex;
    align-items: center;
    gap: 24px;

    margin-top: 42px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255,255,255,.6);

    color: #fff !important;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.swm-line-button i {
    color: var(--swm-red);
}

/* =========================================================
   FINAL
========================================================= */

.swm-final {
    position: relative;
    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #080a0c;
    color: #fff;
}

.swm-final-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,10,12,.96) 0%,
            rgba(8,10,12,.72) 46%,
            rgba(8,10,12,.20) 100%
        ),
        url("../images/sliding-windows.jpg")
        center / cover no-repeat;
}

.swm-final-inner {
    position: relative;
    z-index: 2;

    padding: 110px 0;
}

.swm-final-small {
    color: rgba(255,255,255,.48);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.swm-final h2 {
    max-width: 850px;
    margin-top: 28px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(95px, 10vw, 155px);
    font-weight: 400;
    line-height: .68;

    text-transform: uppercase;
}

.swm-final h2 span {
    display: block;
    color: var(--swm-red);
}

.swm-final p {
    max-width: 540px;
    margin-top: 38px;

    color: rgba(255,255,255,.68);

    font-size: 14px;
    line-height: 1.85;
}

.swm-final-button {
    display: inline-flex;
    align-items: center;
    gap: 30px;

    margin-top: 35px;
    padding: 18px 20px;

    background: var(--swm-red);
    color: #fff !important;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;

    transition:
        background .3s ease,
        transform .3s ease;
}

.swm-final-button:hover {
    background: var(--swm-red-dark);
    transform: translateY(-3px);
}

.swm-final-button i {
    font-size: 10px;
}

.swm-final-code {
    position: absolute;
    right: 22px;
    bottom: 24px;

    color: rgba(255,255,255,.28);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

/* =========================================================
   1100
========================================================= */

@media (max-width: 1100px) {

    .swm-hero-photo,
    .swm-hero-red {
        width: 31%;
    }

    .swm-hero-photo {
        left: 31%;
        right: 0;
    }

    .swm-hero-copy {
        width: 63%;
        padding-left: 5%;
    }

    .swm-intro-top {
        grid-template-columns: 65px 1fr .75fr;
    }

    .swm-range-grid {
        grid-template-columns: 1fr 1fr;
    }

    .swm-range-card-red {
        grid-column: 1 / -1;
        min-height: 330px;
    }

    .swm-range-card-offset {
        margin-top: 60px;
    }

    .swm-band-track {
        grid-template-columns: 1fr .8fr 1fr;
    }

    .swm-band-image:last-child {
        display: none;
    }
}

/* =========================================================
   900
========================================================= */

@media (max-width: 900px) {

    .swm-hero,
    .swm-hero-content {
        min-height: 730px;
    }

    .swm-hero-photo {
        left: 0;
        width: 100%;
    }

    .swm-hero-red {
        width: 0;
    }

    .swm-photo-shade {
        background:
            linear-gradient(
                90deg,
                rgba(8,10,12,.93) 0%,
                rgba(8,10,12,.66) 52%,
                rgba(8,10,12,.20) 100%
            );
    }

    .swm-hero-copy {
        width: 72%;
        padding-left: 0;
    }

    .swm-intro-top {
        grid-template-columns: 60px 1fr;
    }

    .swm-intro-top > p {
        grid-column: 2;
        max-width: 550px;
    }

    .swm-intro-layout {
        grid-template-columns: 1fr;
    }

    .swm-intro-main-image {
        height: 580px;
    }

    .swm-intro-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .swm-mini-image,
    .swm-quote {
        height: 310px;
        min-height: 310px;
    }

    .swm-range-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .swm-range-arrow {
        align-items: flex-start;
    }

    .swm-range-grid {
        grid-template-columns: 1fr 1fr;
    }

    .swm-range-card-red {
        grid-column: auto;
        min-height: 600px;
    }

    .swm-range-card-offset {
        margin-top: 50px;
    }

    .swm-feature-intro {
        grid-template-columns: 1fr;
    }

    .swm-app-top {
        display: block;
    }

    .swm-app-top h2 {
        margin-top: 28px;
        text-align: left;
    }

    .swm-detail {
        grid-template-columns: 1fr;
    }

    .swm-detail-image {
        min-height: 560px;
    }

    .swm-detail-copy {
        max-width: none;
        padding: 85px 8%;
    }
}

/* =========================================================
   650
========================================================= */

@media (max-width: 650px) {

    .sliding-modern {
        --swm-side: 16px;
    }

    .swm-rail {
        width: calc(100% - 32px);
    }

    .swm-hero,
    .swm-hero-content {
        min-height: 690px;
    }

    .swm-hero-copy {
        width: 100%;
    }

    .swm-hero-copy h1 {
        font-size: clamp(78px, 21vw, 120px);
    }

    .swm-hero-copy p {
        max-width: 390px;
        margin-top: 28px;
        font-size: 13px;
    }

    .swm-hero-mark {
        top: 20px;
        right: 10px;
        font-size: 120px;
    }

    .swm-hero-caption {
        right: 16px;
        bottom: 18px;
    }

    .swm-intro,
    .swm-range,
    .swm-features,
    .swm-applications {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .swm-intro-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .swm-section-number {
        font-size: 42px;
    }

    .swm-intro-top > p {
        grid-column: auto;
    }

    .swm-intro-top h2,
    .swm-range-head h2,
    .swm-feature-intro h2,
    .swm-app-top h2 {
        font-size: clamp(62px, 17vw, 92px);
    }

    .swm-intro-main-image {
        height: 440px;
    }

    .swm-intro-side {
        grid-template-columns: 1fr;
    }

    .swm-mini-image {
        height: 300px;
    }

    .swm-quote {
        min-height: 280px;
    }

    .swm-quote p {
        font-size: 35px;
    }

    .swm-range-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .swm-range-card-offset {
        margin-top: 0;
    }

    .swm-range-card-red {
        min-height: 440px;
    }

    .swm-card-photo {
        height: 330px;
    }

    .swm-statement {
        min-height: 620px;
    }

    .swm-statement-inner {
        padding: 85px 0;
    }

    .swm-statement-word {
        font-size: clamp(90px, 24vw, 145px);
    }

    .swm-statement-word em {
        margin-left: 7%;
    }

    .swm-statement-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .swm-vertical-note {
        writing-mode: horizontal-tb;
    }

    .swm-feature-row {
        min-height: auto;

        grid-template-columns: 45px 58px 1fr;
        gap: 12px;

        padding: 23px 0;
    }

    .swm-feature-row > strong {
        font-size: 25px;
    }

    .swm-feature-icon {
        width: 46px;
        height: 46px;
    }

    .swm-feature-row h3 {
        font-size: 30px;
    }

    .swm-feature-row p {
        font-size: 10px;
    }

    .swm-feature-symbol {
        display: none;
    }

    .swm-band-track {
        grid-template-columns: 1fr 1fr;
    }

    .swm-band-image:nth-of-type(3) {
        display: none;
    }

    .swm-band-image img {
        height: 270px;
    }

    .swm-band-text {
        padding: 30px 22px;
    }

    .swm-band-text strong {
        font-size: 43px;
    }

    .swm-app-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .swm-app-photo {
        height: 360px;
    }

    .swm-detail-image {
        min-height: 430px;
    }

    .swm-detail-copy {
        padding: 75px 16px;
    }

    .swm-detail-copy h2 {
        font-size: clamp(62px, 17vw, 92px);
    }

    .swm-detail-points {
        grid-template-columns: 1fr;
    }

    .swm-detail-points > div,
    .swm-detail-points > div:not(:first-child) {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .swm-detail-points > div:last-child {
        border-bottom: 0;
    }

    .swm-final {
        min-height: 610px;
    }

    .swm-final-inner {
        padding: 85px 0;
    }

    .swm-final h2 {
        font-size: clamp(76px, 20vw, 120px);
    }

    .swm-final-code {
        right: 16px;
        bottom: 16px;
    }
}

/* =========================================================
   360
========================================================= */

@media (max-width: 360px) {

    .swm-rail {
        width: calc(100% - 26px);
    }

    .swm-hero,
    .swm-hero-content {
        min-height: 650px;
    }

    .swm-hero-copy h1 {
        font-size: 72px;
    }

    .swm-circle-link {
        width: 88px;
        height: 88px;
    }

    .swm-intro-top h2,
    .swm-range-head h2,
    .swm-feature-intro h2,
    .swm-app-top h2 {
        font-size: 57px;
    }

    .swm-intro-main-image {
        height: 370px;
    }

    .swm-card-photo {
        height: 285px;
    }

    .swm-range-card-red {
        min-height: 390px;
    }

    .swm-range-card-red h3 {
        font-size: 42px;
    }

    .swm-statement-word {
        font-size: 83px;
    }

    .swm-feature-row {
        grid-template-columns: 38px 48px 1fr;
    }

    .swm-feature-row h3 {
        font-size: 26px;
    }

    .swm-app-photo {
        height: 300px;
    }

    .swm-final h2 {
        font-size: 72px;
    }
}

/* =========================================================
   HERO UPDATE — CLEAN FULL-BLEED IMAGE
========================================================= */

.swm-hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    background: #080a0c;
    color: #fff;
}

.swm-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
}

.swm-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
}

.swm-photo-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.90) 0%,
            rgba(5,7,9,.68) 32%,
            rgba(5,7,9,.30) 58%,
            rgba(5,7,9,.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5,7,9,.28) 0%,
            transparent 35%,
            rgba(5,7,9,.25) 100%
        );
}

/* Remove the large red panel */
.swm-hero-red {
    display: none !important;
}

.swm-hero-content {
    position: relative;
    z-index: 3;
    min-height: 820px;
    display: flex;
    align-items: center;
}

.swm-hero-copy {
    width: 58%;
    padding-left: 3.5%;
}

.swm-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.86);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.swm-eyebrow b {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.7);
    background: rgba(8,10,12,.35);
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    font-weight: 400;
}

.swm-hero-copy h1 {
    max-width: 760px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(105px, 11vw, 165px);
    font-weight: 400;
    line-height: .69;
    letter-spacing: -.5px;
    text-transform: uppercase;
    text-shadow: 0 5px 24px rgba(0,0,0,.28);
}

.swm-hero-copy h1 span {
    color: var(--swm-red);
}

.swm-hero-copy p {
    max-width: 510px;
    margin-top: 38px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.85;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.swm-circle-link {
    width: 105px;
    height: 105px;
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 50%;
    background: rgba(8,10,12,.18);
    color: #fff !important;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    backdrop-filter: blur(3px);
}

.swm-circle-link i {
    color: var(--swm-red);
}

.swm-hero-mark {
    z-index: 1;
    color: rgba(255,255,255,.07);
}

.swm-hero-caption span {
    color: rgba(255,255,255,.60);
}

.swm-hero-caption strong {
    color: #fff;
}

/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 760px;
    }

    .swm-hero-copy {
        width: 65%;
        padding-left: 2%;
    }
}

@media (max-width: 900px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 730px;
    }

    .swm-hero-copy {
        width: 72%;
        padding-left: 0;
    }

    .swm-hero-photo img {
        object-position: 58% center;
    }

    .swm-photo-shade {
        background:
            linear-gradient(
                90deg,
                rgba(5,7,9,.90) 0%,
                rgba(5,7,9,.68) 45%,
                rgba(5,7,9,.25) 100%
            ),
            linear-gradient(
                180deg,
                rgba(5,7,9,.25),
                transparent 45%,
                rgba(5,7,9,.30)
            );
    }
}

@media (max-width: 650px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 700px;
    }

    .swm-hero-photo img {
        object-position: 62% center;
    }

    .swm-hero-copy {
        width: 100%;
        padding-right: 35px;
    }

    .swm-hero-copy h1 {
        font-size: clamp(78px, 21vw, 120px);
    }

    .swm-hero-copy p {
        max-width: 390px;
        margin-top: 30px;
        font-size: 12px;
    }

    .swm-circle-link {
        width: 88px;
        height: 88px;
        margin-top: 32px;
    }

    .swm-hero-caption {
        right: 16px;
        bottom: 18px;
    }

    .swm-hero-mark {
        right: 2%;
        top: 90px;
        font-size: 130px;
    }
}

@media (max-width: 360px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 650px;
    }

    .swm-hero-copy h1 {
        font-size: 72px;
    }

    .swm-eyebrow {
        margin-bottom: 26px;
    }

    .swm-hero-copy p {
        font-size: 11px;
    }
}


/* =========================================================
   FINAL HERO ONLY UPDATE
   Everything outside .swm-hero remains unchanged.
========================================================= */

.swm-hero {
    position: relative !important;
    min-height: 820px !important;
    overflow: hidden !important;
    background: #080a0c !important;
    color: #fff !important;
}

/* Full image — no red side panel */
.swm-hero-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.swm-hero-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

/* Dark left-to-right overlay so white logo/text stay visible */
.swm-photo-shade {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.72) 24%,
            rgba(0,0,0,.40) 48%,
            rgba(0,0,0,.12) 78%,
            rgba(0,0,0,.05) 100%
        ) !important;
}

/* Remove the red panel completely */
.swm-hero-red {
    display: none !important;
}

/* Hero content */
.swm-hero-content {
    position: relative !important;
    z-index: 5 !important;
    min-height: 820px !important;
    display: flex !important;
    align-items: center !important;
}

.swm-hero-copy {
    width: 58% !important;
    padding-left: 4.5% !important;
}

/* Hero number / label */
.swm-eyebrow {
    color: rgba(255,255,255,.92) !important;
}

.swm-eyebrow b {
    background: rgba(255,255,255,.96) !important;
    color: #111 !important;
    border: none !important;
}

/* Main heading */
.swm-hero-copy h1 {
    color: #fff !important;
    text-shadow: 0 4px 22px rgba(0,0,0,.45) !important;
}

.swm-hero-copy h1 span {
    color: #ed2d35 !important;
    text-shadow: 0 4px 22px rgba(0,0,0,.30) !important;
}

/* Description */
.swm-hero-copy p {
    color: rgba(255,255,255,.92) !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.55) !important;
}

/* Explore button */
.swm-circle-link {
    border-color: rgba(255,255,255,.72) !important;
    background: rgba(0,0,0,.20) !important;
    color: #fff !important;
}

.swm-circle-link:hover {
    background: #ed2d35 !important;
    border-color: #ed2d35 !important;
}

.swm-circle-link i {
    color: #ed2d35 !important;
}

/* Decorative SW */
.swm-hero-mark {
    z-index: 2 !important;
    color: rgba(255,255,255,.07) !important;
}

/* Bottom caption */
.swm-hero-caption {
    z-index: 5 !important;
}

.swm-hero-caption span {
    color: rgba(255,255,255,.62) !important;
}

.swm-hero-caption strong {
    color: #fff !important;
}

/* Desktop */
@media (max-width: 1100px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 760px !important;
    }

    .swm-hero-copy {
        width: 66% !important;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 720px !important;
    }

    .swm-hero-copy {
        width: 76% !important;
        padding-left: 2% !important;
    }

    .swm-hero-photo img {
        object-position: 60% center !important;
    }

    .swm-photo-shade {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.90) 0%,
                rgba(0,0,0,.72) 42%,
                rgba(0,0,0,.22) 100%
            ) !important;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 680px !important;
    }

    .swm-hero-copy {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 25px !important;
    }

    .swm-hero-photo img {
        object-position: 65% center !important;
    }

    .swm-hero-copy h1 {
        font-size: clamp(78px, 20vw, 120px) !important;
    }

    .swm-hero-copy p {
        max-width: 390px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 360px) {
    .swm-hero,
    .swm-hero-content {
        min-height: 640px !important;
    }

    .swm-hero-copy h1 {
        font-size: 72px !important;
    }
}
