/* =========================================================
   REGAL — COMPLETE RESPONSIVE STYLESHEET
   Built for the supplied index.html
   Reference alignment:
   - Desktop content rail: 1316px centered
   - Tablet/mobile: consistent side padding
   - All major sections use the same horizontal rail
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
    --regal-red:#ed2d35;
    --regal-red-dark:#c91f28;
    --regal-black:#090b0e;
    --regal-black-2:#111417;
    --regal-white:#ffffff;
    --regal-paper:#f7f6f2;
    --regal-text:#171918;
    --regal-muted:#777b78;
    --regal-line:rgba(20,22,21,.12);

    --regal-max:1316px;
    --regal-side:22px;
    --regal-rail: min(var(--regal-max), calc(100% - (var(--regal-side) * 2)));

    --font-display:"Bebas Neue",sans-serif;
    --font-body:"Inter",sans-serif;

    --ease:cubic-bezier(.16,1,.3,1);
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    margin:0;
    padding:0;
    background:var(--regal-paper);
    color:var(--regal-text);
    font-family:var(--font-body);
    font-size:15px;
    line-height:1.6;
    overflow-x:hidden;
}

body.menu-open{
    overflow:hidden;
}

img,
svg{
    display:block;
    max-width:100%;
}

img{
    width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
}

main{
    width:100%;
    overflow:hidden;
}


/* =========================================================
   HEADER
========================================================= */

.main-header{
    position:fixed;
    inset:0 0 auto 0;
    width:100%;
    height:96px;
    z-index:9999;
    background:transparent;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.10);
    transition:
        background .4s ease,
        height .4s var(--ease),
        border-color .4s ease,
        box-shadow .4s ease;
}

.header-inner{
    position:relative;
    width:var(--regal-rail);
    height:100%;
    margin:0 auto;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    position:absolute;
    left:0;
    top:50%;
    z-index:200;
    display:flex;
    align-items:center;
    margin:0;
    transform:translateY(-50%);
}

.actual-logo{
    width:auto !important;
    height:78px !important;
    max-width:220px;
    object-fit:contain;
    object-position:left center;
}

.logo::before{
    content:"";
    position:absolute;
    width:125px;
    height:78px;
    left:-8px;
    top:50%;
    transform:translateY(-50%);
    background:radial-gradient(
        ellipse,
        rgba(255,255,255,.10) 0%,
        rgba(255,255,255,.035) 48%,
        transparent 75%
    );
    filter:blur(8px);
    pointer-events:none;
    z-index:-1;
}


/* Desktop navigation */

.navigation{
    position:absolute;
    left:50%;
    top:50%;
    z-index:100;
    width:max-content;
    height:auto;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    transform:translate(-50%,-50%);
}

.navigation > a,
.navigation > .services-dropdown > button{
    position:relative;
    height:42px;
    padding:0 17px;
    margin:0;
    border:0;
    outline:0;
    background:transparent;
    color:rgba(255,255,255,.88);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    font-size:13px;
    font-weight:600;
    line-height:1;
    white-space:nowrap;
    transition:color .25s ease;
}

.navigation > a::after,
.navigation > .services-dropdown > button::after{
    content:"";
    position:absolute;
    left:17px;
    right:17px;
    bottom:2px;
    height:2px;
    background:var(--regal-red);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .3s ease;
}

.navigation > a:hover,
.navigation > a.active,
.navigation > .services-dropdown > button:hover{
    color:var(--regal-red);
}

.navigation > a:hover::after,
.navigation > a.active::after,
.navigation > .services-dropdown > button:hover::after{
    transform:scaleX(1);
}

.services-dropdown{
    position:relative;
}

.services-dropdown > button i{
    font-size:9px;
    transition:transform .25s ease;
}

.services-dropdown:hover > button i{
    transform:rotate(180deg);
}


/* Desktop services dropdown */

.services-menu{
    position:absolute;
    top:calc(100% + 18px);
    left:50%;
    width:430px;
    padding:24px;
    background:rgba(10,12,15,.97);
    color:#fff;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 25px 70px rgba(0,0,0,.30);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translate(-50%,10px);
    transition:
        opacity .25s ease,
        transform .35s var(--ease),
        visibility .25s ease;
}

.services-dropdown:hover .services-menu,
.services-dropdown:focus-within .services-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
}

.menu-title{
    display:flex;
    align-items:center;
    gap:12px;
    padding-bottom:16px;
    margin-bottom:6px;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.menu-title span{
    color:var(--regal-red);
    font-size:11px;
    font-weight:700;
}

.menu-title strong{
    font-size:11px;
    letter-spacing:.18em;
}

.menu-items{
    display:flex;
    flex-direction:column;
}

.menu-items a{
    display:grid;
    grid-template-columns:30px 1fr 20px;
    align-items:center;
    gap:10px;
    min-height:54px;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:13px;
    font-weight:600;
    transition:padding .25s ease,color .25s ease;
}

.menu-items a:last-child{
    border-bottom:0;
}

.menu-items a span{
    color:var(--regal-red);
    font-size:10px;
}

.menu-items a i{
    font-size:10px;
    opacity:.6;
    transition:transform .25s ease;
}

.menu-items a:hover{
    color:var(--regal-red);
    padding-left:6px;
}

.menu-items a:hover i{
    transform:translateX(4px);
}


/* Header action */

.header-action{
    position:absolute;
    right:5%;
    top:50%;
    z-index:200;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:0;
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:.14em;
    transform:translateY(-50%);
    transition:color .25s ease;
}

.header-action i{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.30);
    font-size:10px;
}

.header-action:hover{
    color:var(--regal-red);
}


/* Menu button */

.menu-button{
    position:absolute;
    right:0;
    top:50%;
    z-index:300;
    width:54px;
    height:54px;
    padding:0;
    border:1px solid var(--regal-red);
    background:transparent;
    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    transform:translateY(-50%);
}

.menu-button span{
    display:block;
    width:18px;
    height:1px;
    background:var(--regal-red);
    transition:transform .3s ease,opacity .2s ease;
}

.menu-button.active span:first-child{
    transform:translateY(4px) rotate(45deg);
}

.menu-button.active span:last-child{
    transform:translateY(-4px) rotate(-45deg);
}


/* =========================================================
   HEADER STATE
   Landing: logo + menu button only
   Scrolled: white header + full navigation
========================================================= */

/* Desktop landing state */
@media (min-width:901px){
    .main-header .navigation,
    .main-header .header-action{
        display:none;
    }

    .main-header .menu-button{
        display:flex;
    }

    .main-header.scrolled .navigation{
        display:flex;
    }

    .main-header.scrolled .header-action{
        display:flex;
    }

    .main-header.scrolled .menu-button{
        display:none;
    }
}

/* Scrolled header */

.main-header.scrolled{
    height:82px;
    background:#fff;
    color:var(--regal-text);
    border-bottom:1px solid rgba(20,22,21,.10);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.main-header.scrolled .actual-logo{
    height:66px !important;
}

.main-header.scrolled .navigation > a,
.main-header.scrolled .navigation > .services-dropdown > button{
    color:var(--regal-text);
}

.main-header.scrolled .navigation > a:hover,
.main-header.scrolled .navigation > a.active,
.main-header.scrolled .navigation > .services-dropdown > button:hover{
    color:var(--regal-red);
}

.main-header.scrolled .header-action{
    color:var(--regal-text);
}

.main-header.scrolled .header-action i{
    border-color:rgba(20,22,21,.20);
}


/* =========================================================
   MOBILE DRAWER
========================================================= */

.mobile-navigation{
    position:fixed;
    top:0;
    right:0;
    width:min(560px,92vw);
    height:100dvh;
    z-index:10000;
    display:flex;
    flex-direction:column;
    padding:0;
    background:rgba(9,11,14,.97);
    color:#fff;
    border-left:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    overflow:hidden;
    transform:translateX(105%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
        transform .6s var(--ease),
        opacity .3s ease,
        visibility .3s ease;
}

.mobile-navigation.active{
    transform:translateX(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.mobile-navigation::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
    background-size:55px 55px;
    pointer-events:none;
}

.drawer-top,
.drawer-content,
.drawer-bottom{
    position:relative;
    z-index:2;
}

.drawer-top{
    min-height:96px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.drawer-index{
    color:rgba(255,255,255,.55);
    font-size:10px;
    font-weight:700;
    letter-spacing:.18em;
}

.drawer-close{
    width:48px;
    height:48px;
    padding:0;
    border:1px solid rgba(255,255,255,.20);
    background:transparent;
    position:relative;
}

.drawer-close span{
    position:absolute;
    left:50%;
    top:50%;
    width:19px;
    height:1px;
    background:#fff;
}

.drawer-close span:first-child{
    transform:translate(-50%,-50%) rotate(45deg);
}

.drawer-close span:last-child{
    transform:translate(-50%,-50%) rotate(-45deg);
}

.drawer-content{
    flex:1;
    overflow-y:auto;
    padding:20px 28px;
}

.drawer-link,
.mobile-service-title{
    width:100%;
    min-height:78px;
    display:grid;
    grid-template-columns:38px 1fr auto;
    align-items:center;
    gap:12px;
    border:0;
    border-bottom:1px solid rgba(255,255,255,.10);
    background:transparent;
    color:#fff;
    text-align:left;
}

.drawer-number{
    color:var(--regal-red);
    font-size:10px;
    font-weight:700;
}

.drawer-text{
    font-family:var(--font-display);
    font-size:44px;
    line-height:.95;
    letter-spacing:.02em;
}

.drawer-link i{
    font-size:10px;
    opacity:.65;
}

.mobile-service-title{
    cursor:pointer;
}

.service-plus{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.20);
    font-size:20px;
    line-height:1;
}

.mobile-service-title.open .service-plus{
    transform:rotate(45deg);
}

.mobile-service-list{
    display:none;
    padding:4px 0 8px 50px;
}

.mobile-service-list.show{
    display:block;
}

.mobile-service-list a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,.07);
    color:rgba(255,255,255,.72);
    font-size:12px;
    font-weight:600;
}

.mobile-service-list a:hover{
    color:var(--regal-red);
}

.drawer-bottom{
    min-height:74px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,.10);
    font-size:9px;
    letter-spacing:.14em;
}

.drawer-location{
    display:flex;
    align-items:center;
    gap:8px;
}

.drawer-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--regal-red);
}

.drawer-year{
    color:rgba(255,255,255,.45);
}


/* The supplied HTML contains a second legacy .mobile-navigation.
   Keep it out of the visual layout. */
.mobile-navigation:not(:has(.drawer-content)){
    display:none !important;
}


/* =========================================================
   SHARED SECTION RAIL
========================================================= */

.regal-profile-inner,
.rpi-header,
.rpi-item,
.reviews-header,
.reviews-slider,
.review-controls,
.cta-content,
.regal-footer-inner{
    width:var(--regal-rail);
    margin-left:auto;
    margin-right:auto;
}


/* =========================================================
   HERO
========================================================= */

.regal-hero{
    position:relative;
    min-height:100svh;
    padding:150px 0 48px;
    background:
        radial-gradient(circle at 82% 20%,rgba(237,45,53,.13),transparent 30%),
        linear-gradient(110deg,#0a0d10 0%,#111417 55%,#160d10 100%);
    color:#fff;
    overflow:hidden;
}

.hero-grid{
    position:absolute;
    inset:0;
    opacity:.28;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:72px 72px;
    pointer-events:none;
}

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    pointer-events:none;
}

.hero-glow-red{
    width:420px;
    height:420px;
    right:-120px;
    top:40px;
    background:rgba(237,45,53,.10);
}

.hero-glow-white{
    width:300px;
    height:300px;
    left:-180px;
    bottom:40px;
    background:rgba(255,255,255,.035);
}

.regal-hero-inner{
    position:relative;
    z-index:2;
    width:var(--regal-rail);
    min-height:calc(100svh - 198px);
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
    align-items:center;
    gap:42px;
}

.regal-hero-content{
    position:relative;
    z-index:4;
    padding-left:0;
}

.hero-kicker{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:rgba(255,255,255,.52);
    font-size:9px;
    font-weight:700;
    letter-spacing:.22em;
}

.hero-kicker span{
    width:32px;
    height:1px;
    background:var(--regal-red);
}

.hero-heading{
    margin:0;
    font-family:var(--font-display);
    font-size:clamp(82px,8vw,128px);
    line-height:.78;
    letter-spacing:.01em;
}

.hero-heading span{
    display:block;
}

.hero-heading-top{
    color:#fff;
}

.hero-heading-middle{
    padding-left:75px;
    color:#fff;
}

.hero-heading-bottom{
    color:var(--regal-red);
}

.hero-description{
    max-width:470px;
    margin:36px 0 0;
    color:rgba(255,255,255,.55);
    font-size:14px;
    line-height:1.8;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.hero-btn{
    min-height:46px;
    padding:0 18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    border:1px solid rgba(255,255,255,.18);
    font-size:9px;
    font-weight:800;
    letter-spacing:.13em;
}

.hero-btn i{
    font-size:9px;
}

.hero-btn-primary{
    background:var(--regal-red);
    border-color:var(--regal-red);
    color:#fff;
}

.hero-btn-outline{
    background:transparent;
    color:#fff;
}

.hero-btn:hover{
    transform:translateY(-2px);
}

.hero-service-list{
    display:flex;
    flex-wrap:wrap;
    gap:26px;
    margin-top:34px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.10);
}

.hero-service-list span{
    color:rgba(255,255,255,.40);
    font-size:8px;
    font-weight:700;
    letter-spacing:.15em;
}

.hero-service-list b{
    margin-right:6px;
    color:var(--regal-red);
}

.regal-hero-visual{
    position:relative;
    min-height:570px;
}

.hero-image-box{
    position:absolute;
    width:82%;
    height:78%;
    right:0;
    top:9%;
    overflow:hidden;
    clip-path:polygon(9% 0,100% 0,100% 88%,90% 100%,0 100%,0 12%);
    background:#1a1c1e;
}

.hero-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.28),transparent 50%,rgba(0,0,0,.08));
}

.hero-image-shine{
    position:absolute;
    inset:-20%;
    background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.10) 48%,transparent 58%);
    transform:translateX(-50%);
    animation:heroShine 7s ease-in-out infinite;
}

@keyframes heroShine{
    0%,55%{transform:translateX(-55%)}
    75%,100%{transform:translateX(55%)}
}

.hero-metal-ribbon{
    position:absolute;
    z-index:3;
    width:80%;
    height:100%;
    right:4%;
    top:0;
    overflow:visible;
    pointer-events:none;
}

.hero-spec-card{
    position:absolute;
    z-index:5;
    left:2%;
    bottom:10%;
    width:230px;
    min-height:88px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(10,12,15,.92);
    border:1px solid rgba(255,255,255,.10);
}

.hero-spec-number{
    color:var(--regal-red);
    font-size:20px;
    font-weight:700;
}

.hero-spec-content small{
    display:block;
    color:rgba(255,255,255,.38);
    font-size:6px;
    letter-spacing:.2em;
}

.hero-spec-content strong{
    display:block;
    margin-top:4px;
    font-family:var(--font-display);
    font-size:22px;
    line-height:.8;
}

.hero-material{
    position:absolute;
    right:0;
    top:40%;
    z-index:5;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:2px;
}

.hero-material span{
    color:rgba(255,255,255,.38);
    font-size:7px;
    letter-spacing:.18em;
}

.hero-material strong{
    font-size:8px;
    letter-spacing:.15em;
}

.regal-hero-bottom{
    position:absolute;
    left:50%;
    bottom:22px;
    width:var(--regal-rail);
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.10);
    padding-top:13px;
    color:rgba(255,255,255,.38);
    font-size:8px;
    font-weight:700;
    letter-spacing:.16em;
}

.hero-scroll{
    display:flex;
    align-items:center;
    gap:8px;
}

.scroll-dot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--regal-red);
}

.hero-location{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.hero-location i{
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--regal-red);
}

.hero-page{
    justify-self:end;
}

.hero-page strong{
    color:var(--regal-red);
    font-size:14px;
}


/* =========================================================
   BRAND PROFILE
========================================================= */

.regal-profile{
    position:relative;
    padding:105px 0 80px;
    background:var(--regal-paper);
    overflow:hidden;
}

.regal-profile-inner{
    position:relative;
    z-index:2;
}

.profile-heading-row{
    min-height:38px;
    display:grid;
    grid-template-columns:42px auto 1fr auto;
    align-items:center;
    gap:12px;
    border-bottom:1px solid var(--regal-line);
}

.profile-section-number{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid var(--regal-line);
    color:var(--regal-red);
    font-size:11px;
    font-weight:700;
}

.profile-section-label,
.profile-heading-code{
    color:#747873;
    font-size:8px;
    font-weight:700;
    letter-spacing:.19em;
}

.profile-heading-line{
    height:1px;
    width:100%;
    background:var(--regal-line);
}

.profile-main{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:90px;
    padding:72px 0 65px;
}

.profile-statement h2{
    margin:18px 0 0;
    font-family:var(--font-display);
    font-size:clamp(80px,7.2vw,116px);
    line-height:.78;
    font-weight:400;
}

.profile-statement h2 span{
    color:var(--regal-red);
}

.profile-mini-label{
    color:#999c98;
    font-size:8px;
    font-weight:700;
    letter-spacing:.18em;
}

.profile-lead{
    margin:22px 0 0;
    color:#5e625f;
    font-size:17px;
}

.profile-red-mark{
    width:56px;
    height:3px;
    margin-top:30px;
    background:var(--regal-red);
}

.profile-description{
    max-width:570px;
    align-self:end;
}

.profile-description p{
    margin:0 0 18px;
    color:#777b78;
    font-size:14px;
    line-height:1.85;
}

.profile-description strong{
    color:var(--regal-text);
}

.profile-link{
    width:max-content;
    margin-top:18px;
    padding-bottom:7px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    border-bottom:1px solid var(--regal-red);
    color:var(--regal-text);
    font-size:9px;
    font-weight:800;
    letter-spacing:.14em;
}

.profile-link i{
    color:var(--regal-red);
}

.profile-facts{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--regal-line);
    border-bottom:1px solid var(--regal-line);
}

.profile-fact{
    min-height:105px;
    padding:22px 24px;
    display:flex;
    align-items:center;
    gap:20px;
    border-right:1px solid var(--regal-line);
}

.profile-fact:last-child{
    border-right:0;
}

.fact-number{
    align-self:flex-start;
    color:var(--regal-red);
    font-size:8px;
    font-weight:700;
}

.fact-content strong{
    display:block;
    font-family:var(--font-display);
    font-size:34px;
    font-weight:400;
    line-height:1;
}

.fact-content small{
    display:block;
    margin-top:7px;
    color:#888c88;
    font-size:12px;
    font-weight:700;
    letter-spacing:.13em;
}

.profile-bottom{
    min-height:60px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    padding-top:20px;
    color:#8b8e8a;
    font-size:7px;
    font-weight:700;
    letter-spacing:.16em;
}

.profile-bottom-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.bottom-dot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--regal-red);
}

.bottom-divider{
    width:30px;
    height:1px;
    background:var(--regal-line);
}


/* =========================================================
   PRODUCT SYSTEMS
========================================================= */

.regal-product-index{
    position:relative;
    padding:115px 0 110px;
    background:#070809;
    color:#fff;
    overflow:hidden;
}

.regal-product-index::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.25;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:80px 80px;
    pointer-events:none;
}

.rpi-header{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1.6fr .9fr;
    align-items:end;
    gap:40px;
    padding-bottom:70px;
}

.rpi-label{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.45);
    font-size:8px;
    font-weight:700;
    letter-spacing:.17em;
}

.rpi-label span{
    color:var(--regal-red);
}

.rpi-label i{
    width:28px;
    height:1px;
    background:var(--regal-red);
}

.rpi-header h2{
    margin:0;
    font-family:var(--font-display);
    font-size:clamp(70px,7vw,108px);
    line-height:.78;
    font-weight:400;
}

.rpi-header h2 em{
    color:var(--regal-red);
    font-style:normal;
}

.rpi-header p{
    max-width:300px;
    margin:0;
    color:rgba(255,255,255,.43);
    font-size:12px;
    line-height:1.8;
}

.rpi-item{
    position:relative;
    z-index:2;
    min-height:480px;
    display:grid;
    grid-template-columns:45px 1.05fr 1fr .95fr;
    align-items:center;
    gap:30px;
    padding:62px 0;
    border-top:1px solid rgba(255,255,255,.10);
}

.rpi-item:last-child{
    border-bottom:1px solid rgba(255,255,255,.10);
}

.rpi-number{
    align-self:start;
    color:var(--regal-red);
    font-size:10px;
    font-weight:700;
    letter-spacing:.1em;
}

.rpi-name h3{
    margin:0;
    max-width:280px;
    font-family:var(--font-display);
    font-size:clamp(58px,5.4vw,82px);
    line-height:.82;
    font-weight:400;
}

.rpi-name h3 b{
    display:block;
    color:var(--regal-red);
    font-weight:400;
}

.rpi-image{
    position:relative;
    height:310px;
    overflow:hidden;
}

.rpi-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s var(--ease);
}

.rpi-item:hover .rpi-image img{
    transform:scale(1.04);
}

.rpi-image span{
    position:absolute;
    left:14px;
    bottom:12px;
    color:#fff;
    font-size:7px;
    font-weight:700;
    letter-spacing:.16em;
}

.rpi-info{
    max-width:340px;
}

.rpi-info-label{
    color:rgba(255,255,255,.42);
    font-size:7px;
    font-weight:700;
    letter-spacing:.18em;
}

.rpi-info p{
    margin:14px 0;
    color:rgba(255,255,255,.52);
    font-size:12px;
    line-height:1.8;
}

.rpi-info a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:8px;
    color:#fff;
    font-size:8px;
    font-weight:800;
    letter-spacing:.14em;
}

.rpi-info a b{
    color:var(--regal-red);
    font-size:14px;
}

.rpi-reverse .rpi-number{
    order:1;
}

.rpi-reverse .rpi-name{
    order:2;
}

.rpi-reverse .rpi-image{
    order:3;
}

.rpi-reverse .rpi-info{
    order:4;
}


/* =========================================================
   WHY REGAL — MATCH REFERENCE SECOND IMAGE
========================================================= */

.why-section{
    width:var(--regal-rail);
    margin:0 auto;
    padding:110px 0;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:84px;
    background:var(--regal-paper);
}

.why-image{
    position:relative;
    width:100%;
    height:570px;
    overflow:hidden;
}

.why-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.why-overlay{
    position:absolute;
    left:0;
    bottom:0;
    min-height:46px;
    padding:0 20px;
    display:flex;
    align-items:center;
    background:var(--regal-red);
    color:#fff;
    font-size:8px;
    font-weight:800;
    letter-spacing:.14em;
}

.why-content{
    min-width:0;
}

.section-tag{
    display:flex;
    align-items:center;
    gap:10px;
    color:#747873;
    font-size:9px;
    font-weight:700;
    letter-spacing:.17em;
}

.section-tag span{
    color:var(--regal-red);
}

.why-content h2{
    margin:24px 0 28px;
    font-family:var(--font-display);
    font-size:clamp(72px,6.1vw,98px);
    line-height:.78;
    font-weight:400;
}

.why-content h2 span{
    display:block;
    color:var(--regal-red);
}

.why-intro{
    max-width:510px;
    margin:0 0 45px;
    color:#858984;
    font-size:13px;
    line-height:1.8;
}

.why-list{
    border-top:1px solid var(--regal-line);
}

.why-item{
    min-height:76px;
    display:grid;
    grid-template-columns:38px 1fr;
    gap:12px;
    align-items:center;
    border-bottom:1px solid var(--regal-line);
}

.why-item > span{
    color:#c7cac7;
    font-size:7px;
    font-weight:700;
}

.why-item h4{
    margin:0 0 2px;
    font-size:13px;
    font-weight:700;
}

.why-item p{
    margin:0;
    color:#8b8f8b;
    font-size:11px;
    line-height:1.55;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section{
    padding:110px 0 115px;
    background:#f1f0eb;
    overflow:hidden;
}

.reviews-header{
    display:grid;
    grid-template-columns:1fr 1.4fr .9fr;
    align-items:end;
    gap:40px;
    padding-bottom:55px;
}

.reviews-header h2{
    margin:0;
    font-family:var(--font-display);
    font-size:clamp(72px,6.4vw,100px);
    line-height:.78;
    font-weight:400;
}

.reviews-header h2 span{
    display:block;
    color:var(--regal-red);
}

.reviews-header > p{
    max-width:300px;
    margin:0;
    color:#838782;
    font-size:12px;
    line-height:1.8;
}

.reviews-slider{
    overflow:hidden;
}

.reviews-track{
    display:flex;
    gap:14px;
    will-change:transform;
    transition:transform .55s var(--ease);
}

.review-card{
    flex:0 0 calc((100% - 28px) / 3);
    min-height:310px;
    padding:32px;
    background:#fff;
    border:1px solid rgba(20,22,21,.08);
    position:relative;
}

.review-card.featured{
    background:#171a1b;
    color:#fff;
}

.quote-mark{
    font-family:Georgia,serif;
    color:var(--regal-red);
    font-size:48px;
    line-height:.7;
}

.stars{
    display:flex;
    gap:4px;
    margin:22px 0;
    color:var(--regal-red);
    font-size:9px;
}

.review-text{
    max-width:420px;
    min-height:105px;
    margin:0;
    color:#707570;
    font-size:12px;
    line-height:1.8;
}

.review-card.featured .review-text{
    color:rgba(255,255,255,.62);
}

.review-author{
    margin-top:28px;
    display:flex;
    align-items:center;
    gap:12px;
}

.author-avatar{
    width:42px;
    height:42px;
    flex:0 0 42px;
    overflow:hidden;
    border-radius:50%;
}

.author-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.review-author strong{
    display:block;
    font-size:11px;
}

.review-author span{
    display:block;
    margin-top:2px;
    color:#999d99;
    font-size:9px;
}

.review-controls{
    margin-top:28px;
    display:flex;
    align-items:center;
    gap:24px;
}

.review-controls button{
    width:44px;
    height:44px;
    border:1px solid rgba(20,22,21,.15);
    background:transparent;
    color:var(--regal-text);
}

.review-controls button:hover{
    background:var(--regal-red);
    color:#fff;
    border-color:var(--regal-red);
}

.review-progress{
    flex:1;
    display:flex;
    align-items:center;
    gap:14px;
    color:#898d89;
    font-size:9px;
    font-weight:700;
}

.review-progress > div{
    flex:1;
    height:2px;
    background:rgba(20,22,21,.12);
    overflow:hidden;
}

#reviewProgressBar{
    display:block;
    width:0;
    height:100%;
    background:var(--regal-red);
}


/* =========================================================
   CTA
========================================================= */

.final-cta{
    position:relative;
    min-height:510px;
    padding:110px 0;
    display:flex;
    align-items:center;
    background:#0a0c0e;
    color:#fff;
    overflow:hidden;
}

.cta-content{
    position:relative;
    z-index:2;
}

.section-tag.light{
    color:rgba(255,255,255,.46);
}

.cta-content h2{
    max-width:950px;
    margin:25px 0 35px;
    font-family:var(--font-display);
    font-size:clamp(80px,8vw,128px);
    line-height:.78;
    font-weight:400;
}

.cta-content h2 span{
    display:block;
    color:var(--regal-red);
}

.cta-content > a{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding-bottom:8px;
    border-bottom:1px solid var(--regal-red);
    color:#fff;
    font-size:9px;
    font-weight:800;
    letter-spacing:.16em;
}

.cta-content > a i{
    color:var(--regal-red);
}

.cta-red-block{
    position:absolute;
    right:-100px;
    top:-100px;
    width:360px;
    height:360px;
    border:1px solid rgba(237,45,53,.25);
    transform:rotate(45deg);
}

.cta-number{
    position:absolute;
    right:max(var(--regal-side), calc((100% - var(--regal-max)) / 2));
    bottom:32px;
    color:rgba(255,255,255,.16);
    font-family:var(--font-display);
    font-size:72px;
}


/* =========================================================
   FOOTER
========================================================= */

.regal-footer{
    position:relative;
    background:#070809;
    color:#fff;
    overflow:hidden;
}

.regal-footer-inner{
    position:relative;
    z-index:2;
    padding-top:82px;
    padding-bottom:28px;
}

.footer-main{
    display:grid;
    grid-template-columns:1.5fr .8fr 1fr .9fr;
    gap:55px;
    padding-bottom:70px;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.footer-brand-mark{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.footer-mark-year{
    color:var(--regal-red);
    font-size:9px;
    font-weight:700;
}

.footer-mark-line{
    width:30px;
    height:1px;
    background:rgba(255,255,255,.18);
}

.footer-mark-name{
    font-family:var(--font-display);
    font-size:42px;
    line-height:1;
}

.footer-brand-mark > span{
    flex-basis:100%;
    color:rgba(255,255,255,.35);
    font-size:7px;
    font-weight:700;
    letter-spacing:.16em;
}

.footer-description{
    max-width:300px;
    margin:25px 0;
    color:rgba(255,255,255,.45);
    font-size:11px;
    line-height:1.8;
}

.footer-contact-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:8px;
    font-weight:800;
    letter-spacing:.15em;
}

.footer-contact-btn i{
    color:var(--regal-red);
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column-title{
    margin-bottom:16px;
    color:rgba(255,255,255,.36);
    font-size:16px;
    font-weight:700;
    letter-spacing:.18em;
}

.footer-column > a{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:rgba(255,255,255,.68);
    font-size:15px;
}

.footer-column > a i{
    color:var(--regal-red);
    font-size:8px;
}

.footer-column > a:hover{
    color:#fff;
}

.footer-location{
    margin-top:24px;
    display:flex;
    align-items:center;
    gap:10px;
}

.location-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--regal-red);
}

.footer-location small{
    display:block;
    color:rgba(255,255,255,.30);
    font-size:6px;
    letter-spacing:.16em;
}

.footer-location strong{
    display:block;
    margin-top:3px;
    font-size:9px;
}

.footer-statement{
    padding:58px 0;
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    align-items:end;
    gap:30px;
}

.footer-statement > span{
    color:rgba(255,255,255,.28);
    font-size:7px;
    font-weight:700;
    letter-spacing:.17em;
}

.footer-statement > span:last-child{
    text-align:right;
}

.footer-statement h2{
    margin:0;
    font-family:var(--font-display);
    font-size:clamp(56px,5.4vw,82px);
    line-height:.8;
    font-weight:400;
}

.footer-statement h2 em{
    color:var(--regal-red);
    font-style:normal;
}

.footer-bottom{
    min-height:55px;
    padding-top:20px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:20px;
    border-top:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.28);
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
}

.footer-bottom-center{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-bottom-center i{
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--regal-red);
}

.footer-legal{
    justify-self:end;
    display:flex;
    gap:18px;
}

.footer-legal a:hover{
    color:#fff;
}


/* =========================================================
   TABLET — 901px DOWN
========================================================= */

@media (max-width:1100px){

    :root{
        --regal-max:100%;
        --regal-side:28px;
    }

    .navigation > a,
    .navigation > .services-dropdown > button{
        padding:0 11px;
        font-size:12px;
    }

    .header-action{
        right:0;
    }

    .logo{
        left:0;
    }

    .regal-hero-inner{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .regal-hero-content{
        padding-left:0;
    }

    .hero-heading{
        font-size:clamp(76px,10vw,108px);
    }

    .hero-heading-middle{
        padding-left:50px;
    }

    .regal-hero-visual{
        min-height:500px;
    }

    .profile-main{
        gap:55px;
    }

    .rpi-header{
        grid-template-columns:1fr 1.5fr;
    }

    .rpi-header p{
        grid-column:2;
    }

    .rpi-item{
        grid-template-columns:35px .9fr 1fr 1fr;
        gap:20px;
    }

    .why-section{
        gap:45px;
    }

    .why-image{
        height:500px;
    }

    .reviews-header{
        grid-template-columns:1fr 1.4fr;
    }

    .reviews-header > p{
        grid-column:2;
    }

    .review-card{
        flex-basis:calc((100% - 14px)/2);
    }

    .footer-main{
        grid-template-columns:1.4fr .8fr .9fr;
    }

    .footer-connect{
        grid-column:3;
    }
}


/* =========================================================
   TABLET — 900px AND BELOW
========================================================= */

@media (max-width:900px){

    .main-header{
        height:82px;
    }

    .navigation,
    .header-action,
    .main-header.scrolled .navigation,
    .main-header.scrolled .header-action{
        display:none !important;
    }

    .menu-button,
    .main-header.scrolled .menu-button{
        display:flex;
        right:0;
    }

    .actual-logo{
        height:66px !important;
    }

    .main-header.scrolled{
        height:74px;
    }

    .main-header.scrolled .actual-logo{
        height:58px !important;
    }

    .regal-hero{
        min-height:auto;
        padding:125px 0 95px;
    }

    .regal-hero-inner{
        min-height:auto;
        grid-template-columns:1fr;
        gap:60px;
    }

    .regal-hero-content{
        padding-left:0;
        max-width:650px;
    }

    .hero-heading{
        font-size:clamp(82px,13vw,120px);
    }

    .regal-hero-visual{
        min-height:560px;
    }

    .hero-image-box{
        width:86%;
        height:82%;
        right:0;
        top:7%;
    }

    .hero-metal-ribbon{
        width:84%;
        right:3%;
    }

    .hero-spec-card{
        left:3%;
        bottom:6%;
    }

    .regal-hero-bottom{
        position:relative;
        left:auto;
        bottom:auto;
        transform:none;
        width:min(100%,calc(100% - (var(--regal-side) * 2)));
        margin:40px auto 0;
    }

    .regal-profile,
    .regal-product-index,
    .reviews-section,
    .final-cta{
        padding-top:90px;
        padding-bottom:90px;
    }

    .profile-main{
        grid-template-columns:1fr;
        gap:40px;
    }

    .profile-description{
        max-width:700px;
    }

    .profile-facts{
        grid-template-columns:repeat(2,1fr);
    }

    .profile-fact:nth-child(2){
        border-right:0;
    }

    .profile-fact:nth-child(-n+2){
        border-bottom:1px solid var(--regal-line);
    }

    .rpi-header{
        grid-template-columns:1fr;
        gap:25px;
    }

    .rpi-header p{
        grid-column:auto;
        max-width:500px;
    }

    .rpi-item,
    .rpi-reverse{
        min-height:auto;
        grid-template-columns:38px 1fr 1fr;
        gap:22px;
    }

    .rpi-name{
        grid-column:2;
    }

    .rpi-image{
        grid-column:3;
        grid-row:1 / span 2;
    }

    .rpi-info{
        grid-column:2 / 4;
        max-width:none;
        padding-top:10px;
    }

    .why-section{
        grid-template-columns:1fr;
        gap:55px;
    }

    .why-image{
        height:min(560px,70vw);
    }

    .reviews-header{
        grid-template-columns:1fr;
        gap:25px;
    }

    .reviews-header > p{
        grid-column:auto;
    }

    .footer-main{
        grid-template-columns:1.3fr 1fr 1fr;
        gap:35px;
    }

    .footer-brand-area{
        grid-column:1 / -1;
    }

    .footer-connect{
        grid-column:auto;
    }

    .footer-statement{
        grid-template-columns:1fr 1fr;
    }

    .footer-statement h2{
        grid-column:1 / -1;
        grid-row:1;
    }

    .footer-statement > span:last-child{
        text-align:right;
    }

    .footer-bottom{
        grid-template-columns:1fr 1fr;
    }

    .footer-bottom-center{
        display:none;
    }
}


/* =========================================================
   MOBILE — 650px AND BELOW
========================================================= */

@media (max-width:650px){

    :root{
        --regal-side:20px;
    }

    .mobile-navigation{
        width:100%;
    }

    .drawer-top{
        min-height:78px;
        padding:0 20px;
    }

    .drawer-content{
        padding:12px 20px;
    }

    .drawer-bottom{
        padding:0 20px;
    }

    .drawer-text{
        font-size:38px;
    }

    .regal-hero{
        padding-top:110px;
        padding-bottom:50px;
    }

    .regal-hero-inner{
        width:calc(100% - 40px);
        gap:42px;
    }

    .hero-kicker{
        font-size:7px;
        letter-spacing:.16em;
    }

    .hero-heading{
        font-size:clamp(70px,19vw,100px);
    }

    .hero-heading-middle{
        padding-left:38px;
    }

    .hero-description{
        margin-top:28px;
        font-size:12px;
        line-height:1.75;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-btn{
        width:100%;
    }

    .hero-service-list{
        gap:14px;
    }

    .regal-hero-visual{
        min-height:410px;
    }

    .hero-image-box{
        width:91%;
        height:78%;
        top:8%;
    }

    .hero-metal-ribbon{
        width:94%;
        right:0;
    }

    .hero-spec-card{
        width:190px;
        min-height:72px;
        padding:10px 12px;
    }

    .hero-spec-content strong{
        font-size:17px;
    }

    .hero-material{
        top:34%;
        right:0;
    }

    .regal-hero-bottom{
        width:calc(100% - 40px);
        grid-template-columns:1fr auto;
        gap:12px;
    }

    .hero-location{
        display:none;
    }

    .hero-page{
        justify-self:end;
    }

    .regal-profile,
    .regal-product-index,
    .reviews-section,
    .final-cta{
        padding-top:75px;
        padding-bottom:75px;
    }

    .regal-profile-inner,
    .rpi-header,
    .rpi-item,
    .reviews-header,
    .reviews-slider,
    .review-controls,
    .cta-content,
    .regal-footer-inner{
        width:calc(100% - 40px);
    }

    .profile-heading-row{
        grid-template-columns:34px auto 1fr;
    }

    .profile-heading-code{
        display:none;
    }

    .profile-section-number{
        width:30px;
        height:30px;
    }

    .profile-main{
        padding:55px 0;
    }

    .profile-statement h2{
        font-size:clamp(70px,20vw,105px);
    }

    .profile-description p{
        font-size:12px;
    }

    .profile-facts{
        grid-template-columns:1fr 1fr;
    }

    .profile-fact{
        min-height:92px;
        padding:16px 12px;
        gap:10px;
    }

    .fact-content strong{
        font-size:27px;
    }

    .fact-content small{
        font-size:6px;
    }

    .profile-bottom{
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
    }

    .rpi-header{
        padding-bottom:45px;
    }

    .rpi-header h2{
        font-size:clamp(70px,19vw,100px);
    }

    .rpi-item,
    .rpi-reverse{
        grid-template-columns:28px 1fr;
        gap:15px;
        padding:45px 0;
    }

    .rpi-name{
        grid-column:2;
    }

    .rpi-image{
        grid-column:1 / -1;
        grid-row:auto;
        height:280px;
        margin-top:10px;
    }

    .rpi-info{
        grid-column:2;
        padding-top:0;
    }

    .rpi-number{
        grid-column:1;
    }

    .rpi-name h3{
        font-size:58px;
    }

    .why-section{
        width:calc(100% - 40px);
        padding:75px 0;
        gap:45px;
    }

    .why-image{
        height:390px;
    }

    .why-content h2{
        font-size:clamp(68px,18vw,95px);
        margin:20px 0 24px;
    }

    .why-intro{
        margin-bottom:30px;
        font-size:12px;
    }

    .why-item{
        min-height:86px;
    }

    .why-item p{
        font-size:10px;
    }

    .reviews-header h2{
        font-size:clamp(70px,19vw,98px);
    }

    .review-card{
        flex-basis:100%;
        min-height:320px;
        padding:25px;
    }

    .review-text{
        min-height:120px;
    }

    .review-controls{
        gap:12px;
    }

    .review-progress{
        gap:8px;
    }

    .cta-content h2{
        font-size:clamp(72px,19vw,100px);
    }

    .cta-red-block{
        width:250px;
        height:250px;
        right:-120px;
        top:-80px;
    }

    .cta-number{
        right:20px;
        font-size:48px;
    }

    .regal-footer-inner{
        padding-top:65px;
    }

    .footer-main{
        grid-template-columns:1fr 1fr;
        gap:38px 24px;
        padding-bottom:50px;
    }

    .footer-brand-area{
        grid-column:1 / -1;
    }

    .footer-connect{
        grid-column:1 / -1;
    }

    .footer-statement{
        padding:45px 0;
        grid-template-columns:1fr;
        gap:18px;
    }

    .footer-statement h2{
        grid-column:auto;
    }

    .footer-statement > span:last-child{
        text-align:left;
    }

    .footer-bottom{
        grid-template-columns:1fr;
        gap:10px;
        padding-bottom:15px;
    }

    .footer-legal{
        justify-self:start;
    }
}


/* =========================================================
   SMALL MOBILE — 480px AND BELOW
========================================================= */

@media (max-width:480px){

    .main-header{
        height:76px;
    }

    .main-header.scrolled{
        height:68px;
    }

    .header-inner{
        padding:0 16px;
    }

    .logo{
        left:0;
    }

    .actual-logo{
        height:58px !important;
        max-width:170px;
    }

    .main-header.scrolled .actual-logo{
        height:50px !important;
    }

    .menu-button{
        right:0;
        width:46px;
        height:46px;
    }

    .regal-hero{
        padding-top:100px;
    }

    .regal-hero-inner{
        width:var(--regal-rail);
    }

    .hero-heading{
        font-size:clamp(64px,20vw,90px);
    }

    .hero-heading-middle{
        padding-left:28px;
    }

    .regal-hero-visual{
        min-height:330px;
    }

    .hero-spec-card{
        left:0;
        bottom:4%;
        width:175px;
    }

    .hero-spec-number{
        font-size:16px;
    }

    .hero-spec-content strong{
        font-size:15px;
    }

    .hero-material{
        right:4px;
        font-size:6px;
    }

    .regal-hero-bottom{
        width:calc(100% - 32px);
    }

    .regal-profile-inner,
    .rpi-header,
    .rpi-item,
    .reviews-header,
    .reviews-slider,
    .review-controls,
    .cta-content,
    .regal-footer-inner,
    .why-section{
        width:var(--regal-rail);
    }

    .profile-facts{
        grid-template-columns:1fr;
    }

    .profile-fact,
    .profile-fact:nth-child(2){
        border-right:0;
        border-bottom:1px solid var(--regal-line);
    }

    .profile-fact:last-child{
        border-bottom:0;
    }

    .profile-heading-label{
        font-size:7px;
    }

    .rpi-item,
    .rpi-reverse{
        grid-template-columns:24px 1fr;
    }

    .rpi-info{
        grid-column:2;
    }

    .rpi-name h3{
        font-size:53px;
    }

    .why-image{
        height:300px;
    }

    .why-overlay{
        min-height:40px;
        padding:0 14px;
        font-size:7px;
    }

    .why-item{
        grid-template-columns:28px 1fr;
    }

    .footer-main{
        grid-template-columns:1fr;
    }

    .footer-column,
    .footer-connect{
        grid-column:auto;
    }

    .footer-statement h2{
        font-size:58px;
    }
}


/* =========================================================
   VERY SMALL DEVICES — 360px AND BELOW
========================================================= */

@media (max-width:360px){

    .drawer-text{
        font-size:32px;
    }

    .hero-heading{
        font-size:60px;
    }

    .hero-description{
        font-size:11px;
    }

    .profile-statement h2{
        font-size:64px;
    }

    .rpi-name h3{
        font-size:48px;
    }

    .why-content h2{
        font-size:62px;
    }

    .reviews-header h2{
        font-size:64px;
    }

    .cta-content h2{
        font-size:64px;
    }
}



/* =========================================================
   FINAL GLOBAL ALIGNMENT LOCK
   Every major content block uses exactly the same rail as the header.
========================================================= */

@media (min-width:901px){
    .header-inner,
    .regal-hero-inner,
    .regal-hero-bottom,
    .regal-profile-inner,
    .rpi-header,
    .rpi-item,
    .why-section,
    .reviews-header,
    .reviews-slider,
    .review-controls,
    .cta-content,
    .regal-footer-inner{
        width:var(--regal-rail);
        max-width:var(--regal-max);
        margin-left:auto;
        margin-right:auto;
    }

    .regal-hero-content,
    .profile-main,
    .why-content{
        margin-left:0;
    }

    .header-inner > .logo{
        left:0;
    }

    .header-inner > .menu-button,
    .header-inner > .header-action{
        right:0;
    }
}

@media (max-width:900px){
    .header-inner,
    .regal-hero-inner,
    .regal-hero-bottom,
    .regal-profile-inner,
    .rpi-header,
    .rpi-item,
    .why-section,
    .reviews-header,
    .reviews-slider,
    .review-controls,
    .cta-content,
    .regal-footer-inner{
        width:var(--regal-rail);
        max-width:none;
        margin-left:auto;
        margin-right:auto;
    }
}

/* =========================================================
   ACCESSIBILITY / PERFORMANCE
========================================================= */

:focus-visible{
    outline:2px solid var(--regal-red);
    outline-offset:4px;
}

@media (prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}
/* =========================================================
   REGAL PRODUCT SYSTEMS
   FINAL ALIGNMENT
   Same content rail as the other main sections
========================================================= */

.regal-product-index {
    position: relative;
    width: 100%;
    box-sizing: border-box;

    background: #050505;
    color: #fff;

    padding: 145px 0 120px;

    overflow: hidden;
}


/* =========================================================
   COMMON PRODUCT CONTENT RAIL
========================================================= */

.rpi-header,
.rpi-item,
.all-services {

    width: calc(100% - 80px);
    max-width: 1400px;

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND
========================================================= */

.regal-product-index::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background: rgba(255,255,255,.055);

    pointer-events: none;
}


.regal-product-index::after {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 280px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(220,35,42,.035);

    filter: blur(110px);

    pointer-events: none;
}


/* =========================================================
   PRODUCT HEADER
========================================================= */

.rpi-header {

    position: relative;

    z-index: 2;

    margin-bottom: 95px;

    display: grid;

    grid-template-columns:
        180px
        minmax(0, 1fr)
        300px;

    column-gap: 45px;

    align-items: end;
}


/* SECTION LABEL */

.rpi-label {

    align-self: start;

    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 8px;
}


.rpi-label span {

    color: #e72c34;

    font-size: 11px;

    font-weight: 700;
}


.rpi-label i {

    width: 35px;
    height: 1px;

    background: #e72c34;
}


.rpi-label strong {

    color: #686868;

    font-size: 7px;

    letter-spacing: 2px;

    white-space: nowrap;
}


/* HEADER TITLE */

.rpi-header h2 {

    margin: 0;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(80px, 8vw, 140px);

    line-height: .76;

    letter-spacing: -2px;

    font-weight: 400;
}


.rpi-header h2 em {

    display: block;

    margin-left: 85px;

    color: #e72c34;

    font-style: normal;
}


/* HEADER DESCRIPTION */

.rpi-header > p {

    margin: 0;

    max-width: 270px;

    color: #707070;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT ITEM
========================================================= */

.rpi-item {

    position: relative;

    z-index: 2;

    min-height: 410px;

    padding: 65px 0;

    display: grid;

    /*
        01     PRODUCT NAME     IMAGE     CONTENT
    */

    grid-template-columns:
        70px
        minmax(300px, 1fr)
        400px
        340px;

    column-gap: 30px;

    align-items: center;
}


/* =========================================================
   PRODUCT NUMBER
========================================================= */

.rpi-number {

    align-self: start;

    padding-top: 8px;

    color: rgba(255,255,255,.17);

    font-family: "Bebas Neue", sans-serif;

    font-size: 52px;

    line-height: 1;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.rpi-name {

    position: relative;

    z-index: 4;

    align-self: center;
}


.rpi-name > span {

    display: block;

    margin-bottom: 18px;

    color: #686868;

    font-size: 7px;

    letter-spacing: 3px;
}


.rpi-name h3 {

    margin: 0;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(55px, 5.4vw, 88px);

    line-height: .78;

    letter-spacing: -1px;

    font-weight: 400;
}


.rpi-name h3 b {

    display: block;

    color: #e72c34;

    font-weight: 400;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.rpi-image {

    position: relative;

    width: 400px;
    height: 295px;

    overflow: visible;

    z-index: 3;

    justify-self: center;
}


.rpi-image::before {

    content: "";

    position: absolute;

    inset: -10px;

    border: 1px solid rgba(255,255,255,.1);

    pointer-events: none;
}


.rpi-image::after {

    content: "";

    position: absolute;

    width: 50px;
    height: 50px;

    top: -1px;
    left: -1px;

    border-top: 2px solid #e72c34;
    border-left: 2px solid #e72c34;

    pointer-events: none;
}


.rpi-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        grayscale(.15)
        saturate(.65)
        brightness(.82)
        contrast(1.08);

    transition:
        transform .8s cubic-bezier(.16,1,.3,1),
        filter .5s ease;
}


.rpi-item:hover .rpi-image img {

    transform: scale(1.045);

    filter:
        grayscale(0)
        saturate(.9)
        brightness(.96)
        contrast(1.04);
}


.rpi-image > span {

    position: absolute;

    right: -18px;
    bottom: -22px;

    padding: 7px 10px;

    background: #050505;

    border-left: 1px solid #e72c34;

    color: #666;

    font-size: 6px;

    letter-spacing: 2px;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.rpi-info {

    align-self: center;

    padding-left: 25px;

    border-left: 1px solid rgba(255,255,255,.12);
}


.rpi-info-label {

    display: block;

    margin-bottom: 18px;

    color: #e72c34;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;
}


.rpi-info p {

    margin: 0 0 13px;

    color: #858585;

    font-size: 14px;

    line-height: 1.75;
}


.rpi-info a {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 15px;

    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255,255,255,.2);

    color: #fff;

    text-decoration: none;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s ease;
}


.rpi-info a b {

    color: #e72c34;

    font-size: 16px;

    font-weight: 400;

    transition: .3s ease;
}


.rpi-info a:hover {

    color: #e72c34;
}


.rpi-info a:hover b {

    transform: translate(4px,-4px);
}


/* =========================================================
   DIVIDER
========================================================= */

.rpi-line {

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12) 12%,
            rgba(255,255,255,.12) 88%,
            transparent
        );
}


/* =========================================================
   REVERSE PRODUCT
   CONTENT ← IMAGE → TITLE
========================================================= */

.rpi-reverse {

    grid-template-columns:
        70px
        340px
        400px
        minmax(300px, 1fr);
}


/* TITLE → RIGHT */

.rpi-reverse .rpi-name {

    grid-column: 4;
    grid-row: 1;

    padding-left: 15px;
}


/* IMAGE → CENTER */

.rpi-reverse .rpi-image {

    grid-column: 3;
    grid-row: 1;
}


/* CONTENT → LEFT */

.rpi-reverse .rpi-info {

    grid-column: 2;
    grid-row: 1;

    padding-left: 0;
    padding-right: 25px;

    border-left: 0;
    border-right: 1px solid rgba(255,255,255,.12);

    text-align: right;
}


.rpi-reverse .rpi-info a {

    flex-direction: row-reverse;
}


/* =========================================================
   ALTERNATING IMAGE MOVEMENT
========================================================= */

.rpi-item:nth-of-type(2) .rpi-image {

    transform: translateY(-10px);
}


.rpi-item:nth-of-type(3) .rpi-image {

    transform: translateY(10px);
}


.rpi-item:nth-of-type(4) .rpi-image {

    transform: translateY(-10px);
}


.rpi-item:nth-of-type(5) .rpi-image {

    transform: translateY(10px);
}


/* =========================================================
   VIEW ALL SERVICES
========================================================= */

.all-services {

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.12);

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 8px;

    letter-spacing: .16em;
}


.all-services span {

    color: rgba(255,255,255,.35);
}


.all-services a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #e72c34;

    text-decoration: none;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1250px) {

    .rpi-header,
    .rpi-item,
    .all-services {

        width: calc(100% - 64px);

    }


    .rpi-header {

        grid-template-columns:
            150px
            minmax(0, 1fr)
            240px;

        column-gap: 30px;

    }


    .rpi-item {

        grid-template-columns:
            55px
            minmax(230px, 1fr)
            330px
            280px;

        column-gap: 24px;

    }


    .rpi-reverse {

        grid-template-columns:
            55px
            280px
            330px
            minmax(230px, 1fr);

    }


    .rpi-image {

        width: 330px;
        height: 250px;

    }


    .rpi-info p {

        font-size: 13px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .regal-product-index {

        padding-top: 110px;
        padding-bottom: 90px;

    }


    .rpi-header {

        display: grid;

        grid-template-columns:
            130px
            minmax(0, 1fr);

        row-gap: 35px;

        margin-bottom: 70px;

    }


    .rpi-header > p {

        grid-column: 2;

        max-width: 350px;

    }


    .rpi-item,
    .rpi-reverse {

        grid-template-columns:
            55px
            minmax(0, 1fr)
            300px;

        column-gap: 25px;

        min-height: 360px;

    }


    .rpi-name,
    .rpi-reverse .rpi-name {

        grid-column: 2;
        grid-row: 1;

        padding-left: 0;

    }


    .rpi-image,
    .rpi-reverse .rpi-image {

        grid-column: 3;
        grid-row: 1;

        width: 300px;
        height: 235px;

    }


    .rpi-info,
    .rpi-reverse .rpi-info {

        grid-column: 2 / 4;
        grid-row: 2;

        border-left: 1px solid rgba(255,255,255,.12);
        border-right: 0;

        padding-left: 20px;
        padding-right: 0;

        text-align: left;

        max-width: 600px;

    }


    .rpi-reverse .rpi-info a {

        flex-direction: row;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .regal-product-index {

        padding:
            85px 0 75px;

    }


    .regal-product-index::before {

        display: none;

    }


    .regal-product-index::after {

        width: 300px;
        height: 300px;

        top: 250px;

        filter: blur(80px);

    }


    .rpi-header,
    .rpi-item,
    .all-services {

        width: calc(100% - 44px);

    }


    /* HEADER */

    .rpi-header {

        display: block;

        margin-bottom: 55px;

    }


    .rpi-label {

        margin-bottom: 38px;

    }


    .rpi-header h2 {

        font-size: clamp(65px, 18vw, 95px);

        line-height: .78;

    }


    .rpi-header h2 em {

        margin-left: 28px;

    }


    .rpi-header > p {

        max-width: 320px;

        margin-top: 28px;

        font-size: 11px;

    }


    /* PRODUCT CARD */

    .rpi-item,
    .rpi-reverse {

        display: grid;

        grid-template-columns:
            42px
            minmax(0, 1fr);

        column-gap: 15px;

        row-gap: 30px;

        min-height: auto;

        padding: 55px 0;

    }


    /* NUMBER */

    .rpi-number {

        grid-column: 1;
        grid-row: 1;

        font-size: 38px;

        padding-top: 4px;

    }


    /* TITLE */

    .rpi-name,
    .rpi-reverse .rpi-name {

        grid-column: 2;
        grid-row: 1;

        padding: 0;

    }


    .rpi-name h3 {

        font-size: clamp(48px, 14vw, 72px);

        line-height: .8;

    }


    /* IMAGE */

    .rpi-image,
    .rpi-reverse .rpi-image {

        grid-column: 1 / 3;
        grid-row: 2;

        width: calc(100% - 8px);
        height: min(62vw, 300px);

        justify-self: start;

        transform: none !important;

    }


    /* INFO */

    .rpi-info,
    .rpi-reverse .rpi-info {

        grid-column: 2;
        grid-row: 3;

        width: 100%;

        padding:
            5px 0 0 18px;

        border-left:
            1px solid rgba(255,255,255,.14);

        border-right: 0;

        text-align: left;

    }


    .rpi-info p {

        font-size: 13px;

        line-height: 1.7;

    }


    .rpi-info a {

        flex-direction: row;

        margin-top: 10px;

    }


    .rpi-reverse .rpi-info a {

        flex-direction: row;

    }


    /* IMAGE LABEL */

    .rpi-image > span {

        right: -4px;
        bottom: -18px;

    }


    /* DIVIDER */

    .rpi-line {

        left: 0;
        right: 0;

    }


    /* ALL SERVICES */

    .all-services {

        margin-top: 25px;

        padding-top: 18px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rpi-header,
    .rpi-item,
    .all-services {

        width: calc(100% - 36px);

    }


    .rpi-header h2 {

        font-size: 62px;

    }


    .rpi-header h2 em {

        margin-left: 20px;

    }


    .rpi-item,
    .rpi-reverse {

        grid-template-columns:
            35px
            minmax(0, 1fr);

        column-gap: 12px;

    }


    .rpi-number {

        font-size: 32px;

    }


    .rpi-name h3 {

        font-size: 46px;

    }


    .rpi-image,
    .rpi-reverse .rpi-image {

        height: 230px;

    }


    .rpi-info {

        padding-left: 15px !important;

    }


    .rpi-info p {

        font-size: 12px;

    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .rpi-header,
    .rpi-item,
    .all-services {

        width: calc(100% - 30px);

    }


    .rpi-header h2 {

        font-size: 56px;

    }


    .rpi-name h3 {

        font-size: 42px;

    }


    .rpi-image,
    .rpi-reverse .rpi-image {

        height: 205px;

    }

}
/* =========================================================
   GLOBAL DESCRIPTION FONT SIZE
========================================================= */

/* Product descriptions */
.rpi-info p {
    font-size: 16px !important;
    line-height: 1.75;
}

/* Product section main description */
.rpi-header > p {
    font-size: 16px !important;
    line-height: 1.75;
}

/* Service descriptions */
.service-info p {
    font-size: 16px !important;
    line-height: 1.75;
}

/* Why Regal descriptions */
.why-content p {
    font-size: 16px !important;
    line-height: 1.75;
}

/* About / general section descriptions */
.about-content p,
.about-text p,
.section-description,
.section-desc {
    font-size: 16px !important;
    line-height: 1.75;
}

/* Contact section descriptions */
.contact-content p,
.contact-info p,
.contact-form p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   MOBILE — KEEP DESCRIPTION AT 16PX
========================================================= */

@media (max-width: 700px) {

    .rpi-info p,
    .rpi-header > p,
    .service-info p,
    .why-content p,
    .about-content p,
    .about-text p,
    .section-description,
    .section-desc,
    .contact-content p,
    .contact-info p,
    .contact-form p {
        font-size: 16px !important;
        line-height: 1.7;
    }

}
/* =========================================================
   REGAL — ALL SECTION DESCRIPTIONS
   STANDARD SIZE: 16PX
========================================================= */

/* HERO */
.regal-hero-content p,
.regal-hero-description,
.hero-description {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   ABOUT / WHO WE ARE
========================================================= */

.regal-profile p,
.profile-main p,
.profile-description,
.profile-intro p,
.intro-description p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.rpi-header > p,
.rpi-info p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   SERVICES
========================================================= */

.service-info p,
.services-header p,
.service-description {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   WHY REGAL
========================================================= */

.why-content p,
.why-description,
.why-section p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   REVIEWS
========================================================= */

.review-text,
.review-card p,
.reviews-header p {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-content p,
.contact-info p,
.contact-form p,
.contact-description {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   CTA / FINAL SECTION
========================================================= */

.final-cta p,
.cta-content p,
.cta-description {
    font-size: 16px !important;
    line-height: 1.75;
}


/* =========================================================
   FOOTER
========================================================= */

.regal-footer p,
.footer-main p,
.footer-statement p,
.footer-about p,
.footer-contact p {
    font-size: 16px !important;
    line-height: 1.7;
}


/* =========================================================
   MOBILE
   KEEP ALL DESCRIPTIONS 16PX
========================================================= */

@media (max-width: 700px) {

    .regal-hero-content p,
    .regal-hero-description,
    .hero-description,

    .regal-profile p,
    .profile-main p,
    .profile-description,
    .profile-intro p,
    .intro-description p,

    .rpi-header > p,
    .rpi-info p,

    .service-info p,
    .services-header p,
    .service-description,

    .why-content p,
    .why-description,
    .why-section p,

    .review-text,
    .review-card p,
    .reviews-header p,

    .contact-content p,
    .contact-info p,
    .contact-form p,
    .contact-description,

    .final-cta p,
    .cta-content p,
    .cta-description,

    .regal-footer p,
    .footer-main p,
    .footer-statement p,
    .footer-about p,
    .footer-contact p {

        font-size: 16px !important;
        line-height: 1.7;
    }

}
/* =========================================
   TWO LOGO STATES
========================================= */

.main-header .logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80px;
    height: 100%;
    flex-shrink: 0;
}

/* Both logos occupy exactly the same position */
.main-header .actual-logo {
    display: block;
    width: 78px;
    height: auto;
    object-fit: contain;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

/* Landing logo visible initially */
.main-header .logo-landing {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scrolling logo hidden initially */
.main-header .logo-scrolled {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-45%);
    opacity: 0;
    visibility: hidden;
}

/* =========================================
   AFTER SCROLL
========================================= */

.main-header.scrolled .logo-landing {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
}

.main-header.scrolled .logo-scrolled {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .main-header .logo {
        width: 80px;
    }

    .main-header .actual-logo {
        width: 78px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .main-header .logo {
        width: 75px;
    }

    .main-header .actual-logo {
        width: 72px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .main-header .logo {
        width: 70px;
    }

    .main-header .actual-logo {
        width: 67px;
    }

}
.footer-copyright a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #e52d35;
    text-decoration: underline;
    text-underline-offset: 4px;
}
/* =========================================================
   SERVICES DROPDOWN — SMOOTH HOVER
========================================================= */

.services-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Services button */
.services-dropdown > button {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

/* Small gap between button and dropdown is still hover-safe */
.services-dropdown::after {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    top: 100%;
    height: 18px;
    background: transparent;
}

/* =========================================================
   DROPDOWN PANEL
========================================================= */

.services-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 390px;

    padding: 25px;

    background: #111518;
    border: 1px solid rgba(255,255,255,.10);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25),
        0 8px 20px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, 15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .35s cubic-bezier(.16,1,.3,1);

    z-index: 9999;
}

/* KEEP DROPDOWN OPEN */
.services-dropdown:hover .services-menu,
.services-dropdown:focus-within .services-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   DROPDOWN TITLE
========================================================= */

.services-menu .menu-title {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 18px;
    margin-bottom: 8px;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.services-menu .menu-title span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.15);

    color: #ed1c24;

    font-size: 8px;
    font-weight: 700;
}

.services-menu .menu-title strong {
    color: rgba(255,255,255,.55);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-items a {
    min-height: 58px;

    display: grid;
    grid-template-columns: 32px 1fr 20px;

    align-items: center;
    gap: 12px;

    padding: 0 5px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.78);

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition:
        color .25s ease,
        padding-left .3s ease,
        background .25s ease;
}

.menu-items a:last-child {
    border-bottom: 0;
}

.menu-items a span {
    color: #ed1c24;

    font-size: 8px;
    font-weight: 700;
}

.menu-items a i {
    color: #ed1c24;

    font-size: 9px;

    opacity: .5;

    transform: translateX(-5px);

    transition:
        opacity .25s ease,
        transform .3s ease;
}

.menu-items a:hover {
    padding-left: 12px;
    color: #fff;
    background: rgba(255,255,255,.04);
}

.menu-items a:hover i {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   ARROW ON SERVICES BUTTON
========================================================= */

.services-dropdown > button i {
    font-size: 8px;

    transition:
        transform .3s ease;
}

.services-dropdown:hover > button i,
.services-dropdown:focus-within > button i {
    transform: rotate(180deg);
}


/* =========================================================
   IMPORTANT:
   REMOVE OLD FAST HOVER TRANSITIONS
========================================================= */

/*
If you already have something like this in style.css:

.services-menu {
    transition: all .1s ease;
}

.services-dropdown:hover .services-menu {
    display: block;
}

REMOVE IT.

Do not use display:none/display:block for this dropdown.
*/
/* =========================================================
   PRODUCT SECTION — CLEAR BACKGROUND IMAGE
========================================================= */

.regal-product-index {
    position: relative;
    width: 100%;
    padding: 150px 0 130px;

    background: #050607;

    color: #fff;

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND IMAGE
   IMAGE IS CLEARER NOW
========================================================= */

.regal-product-index::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 58%;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 7, .25) 0%,
            rgba(5, 6, 7, .35) 55%,
            rgba(5, 6, 7, .90) 100%
        ),
        url("images/aluminiumfab.jpg")
        center center / cover no-repeat;

    opacity: 1;

    z-index: -3;

    filter:
        grayscale(85%)
        contrast(1.12)
        brightness(.90);
}


/* =========================================================
   BLACK FADE INTO RIGHT SIDE
========================================================= */

.regal-product-index::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 75%;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(5, 6, 7, .08) 35%,
            rgba(5, 6, 7, .50) 68%,
            #050607 100%
        );

    pointer-events: none;

    z-index: -2;
}


/* =========================================================
   CONTENT ABOVE IMAGE
========================================================= */

.regal-product-index > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.rpi-header {
    position: relative;
    z-index: 3;
}


/* =========================================================
   LABEL
========================================================= */

.rpi-label {
    color: rgba(255,255,255,.65);
}

.rpi-label strong {
    color: rgba(255,255,255,.65);
}

.rpi-label span {
    color: var(--regal-red);
}

.rpi-label i {
    background: var(--regal-red);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.rpi-header h2 {
    color: #fff;
}

.rpi-header h2 em {
    color: var(--regal-red);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.rpi-header > p {
    color: rgba(255,255,255,.65);
}


/* =========================================================
   PRODUCT ITEMS
========================================================= */

.rpi-item {
    position: relative;

    border-bottom: 1px solid rgba(255,255,255,.14);

    transition:
        border-color .35s ease,
        transform .35s ease;
}

.rpi-item:hover {
    border-color: rgba(237,45,53,.50);
}


/* =========================================================
   PRODUCT NUMBER
========================================================= */

.rpi-number {
    color: var(--regal-red);
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.rpi-name h3 {
    color: #fff;
}

.rpi-name h3 b {
    color: var(--regal-red);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.rpi-image {
    position: relative;

    overflow: hidden;

    background: #0b0d0f;

    border: 1px solid rgba(255,255,255,.12);
}


/* Image overlay — very light */

.rpi-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,.08),
            transparent 45%,
            rgba(0,0,0,.20)
        );

    pointer-events: none;
}


/* Product images */

.rpi-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(.88)
        contrast(1.06);

    transition:
        transform .7s cubic-bezier(.16,1,.3,1),
        filter .5s ease;
}


/* Product image hover */

.rpi-item:hover .rpi-image img {
    transform: scale(1.045);

    filter:
        brightness(1)
        contrast(1.08);
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.rpi-image span {
    color: rgba(255,255,255,.75);
}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.rpi-info {
    color: rgba(255,255,255,.70);
}

.rpi-info-label {
    color: var(--regal-red);
}

.rpi-info p {
    color: rgba(255,255,255,.65);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.rpi-info a {
    color: #fff;

    transition:
        color .25s ease,
        padding-left .3s ease;
}

.rpi-info a:hover {
    color: var(--regal-red);

    padding-left: 7px;
}

.rpi-info a b {
    color: var(--regal-red);
}


/* =========================================================
   TECHNICAL GRID
========================================================= */

.regal-product-index .rpi-header::before {
    content: "";

    position: absolute;

    left: -100vw;
    right: -100vw;

    top: -40px;

    height: 500px;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   SUBTLE LIGHT EFFECT
========================================================= */

.regal-product-index .rpi-header::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 900px;

    top: -200px;
    left: 45%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.035),
            transparent
        );

    transform: rotate(18deg);

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .regal-product-index {
        padding: 110px 0 90px;
    }

    .regal-product-index::before {
        width: 75%;

        background:
            linear-gradient(
                90deg,
                rgba(5,6,7,.20),
                rgba(5,6,7,.55),
                rgba(5,6,7,.90)
            ),
            url("images/aluminiumfab.jpg")
            center / cover no-repeat;

        filter:
            grayscale(75%)
            contrast(1.1)
            brightness(.85);
    }

    .regal-product-index::after {
        width: 90%;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(5,6,7,.45),
                #050607
            );
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .regal-product-index {
        padding: 85px 0 70px;
    }

    .regal-product-index::before {
        width: 100%;

        height: 560px;

        bottom: auto;

        background:
            linear-gradient(
                180deg,
                rgba(5,6,7,.18) 0%,
                rgba(5,6,7,.35) 45%,
                rgba(5,6,7,.92) 100%
            ),
            url("images/aluminiumfab.jpg")
            center / cover no-repeat;

        filter:
            grayscale(70%)
            contrast(1.08)
            brightness(.82);
    }

    .regal-product-index::after {
        width: 100%;

        height: 600px;

        bottom: auto;

        background:
            linear-gradient(
                180deg,
                transparent 20%,
                rgba(5,6,7,.25) 50%,
                #050607 100%
            );
    }

    .rpi-item {
        border-bottom-color:
            rgba(255,255,255,.11);
    }
}
/* =========================================================
   REGAL CONTACT CTA SECTION
========================================================= */

.regal-contact-cta {
    position: relative;
    width: 100%;
    min-height: 650px;

    overflow: hidden;
    isolation: isolate;

    background: #080a0c;
    color: #fff;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.contact-cta-bg {
    position: absolute;
    inset: 0;

    background-image: url("images/contact-bg.png");
    background-size: cover;
    background-position: center;

    opacity: 1;

    z-index: -3;

    transform: scale(1.02);
}


/* =========================================================
   DARK OVERLAY
   Keeps image visible while maintaining dark theme
========================================================= */

.regal-contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 9, 0.82) 0%,
            rgba(5, 7, 9, 0.58) 42%,
            rgba(5, 7, 9, 0.72) 72%,
            rgba(5, 7, 9, 0.92) 100%
        );

    z-index: -2;
}


/* Bottom dark fade */

.regal-contact-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 180px;

    background: linear-gradient(
        to bottom,
        transparent,
        #080a0c
    );

    z-index: -1;
}


/* =========================================================
   MAIN INNER CONTAINER
========================================================= */

.contact-cta-inner {
    position: relative;

    width: min(1400px, calc(100% - 160px));
    min-height: 650px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   CONTENT
========================================================= */

.contact-cta-content {
    position: relative;

    max-width: 850px;

    padding: 100px 0;
}


/* =========================================================
   LABEL
========================================================= */

.contact-cta-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(255,255,255,.55);
}


.contact-cta-label span {
    display: block;

    width: 38px;
    height: 1px;

    background: #ed2d35;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.contact-cta-content h2 {
    margin: 0;

    font-size: 90px;
    line-height: .84;

    font-weight: 900;
    letter-spacing: -0.045em;

    text-transform: uppercase;

    color: #fff;
}


.contact-cta-content h2 strong {
    display: block;

    color: #ed2d35;

    font-weight: 900;
}


/* =========================================================
   START PROJECT LINK
========================================================= */

.contact-cta-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 24px;

    margin-top: 62px;
    padding-bottom: 14px;

    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;

    transition:
        color .3s ease,
        gap .3s ease;
}


.contact-cta-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #ed2d35;

    transform-origin: left;
    transition: transform .35s ease;
}


.contact-cta-link b {
    color: #ed2d35;

    font-size: 20px;
    font-weight: 400;

    transition:
        transform .3s ease;
}


.contact-cta-link:hover {
    color: #fff;

    gap: 32px;
}


.contact-cta-link:hover b {
    transform: translateX(5px);
}


.contact-cta-link:hover::after {
    transform: scaleX(.55);
}


/* =========================================================
   REGAL BRANDING
========================================================= */

.contact-cta-brand {
    position: absolute;

    right: 0;
    bottom: 75px;

    font-size: clamp(55px, 6vw, 100px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -.05em;

    color: rgba(255,255,255,.12);

    user-select: none;
}


/* =========================================================
   DECORATIVE DIAMOND
========================================================= */

.contact-cta-shape {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -80px;
    top: -180px;

    border: 1px solid rgba(237,45,53,.38);

    transform: rotate(45deg);

    z-index: -1;

    pointer-events: none;
}


.contact-cta-shape::after {
    content: "";

    position: absolute;
    inset: 55px;

    border: 1px solid rgba(237,45,53,.12);
}


/* =========================================================
   SUBTLE GRID
========================================================= */

.contact-cta-content::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 600px;

    left: -180px;
    top: -150px;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        90deg,
        rgba(0,0,0,.8),
        transparent
    );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .contact-cta-inner {
        width: min(100% - 100px, 1200px);
    }

    .contact-cta-content {
        max-width: 720px;
    }

    .contact-cta-content h2 {
        font-size: clamp(62px, 8vw, 105px);
    }

    .contact-cta-brand {
        right: 10px;
    }

    .contact-cta-shape {
        right: -180px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .regal-contact-cta {
        min-height: 620px;
    }

    .contact-cta-inner {
        width: calc(100% - 48px);
        min-height: 620px;

        align-items: flex-start;
    }

    .contact-cta-content {
        width: 100%;

        padding: 110px 0 80px;
    }

    .contact-cta-label {
        font-size: 10px;

        margin-bottom: 24px;
    }

    .contact-cta-label span {
        width: 28px;
    }

    .contact-cta-content h2 {
        font-size: clamp(52px, 14vw, 82px);

        line-height: .88;
        letter-spacing: -.035em;
    }

    .contact-cta-link {
        margin-top: 48px;

        font-size: 11px;
    }

    .contact-cta-brand {
        right: 0;
        bottom: 45px;

        font-size: 55px;
    }

    .contact-cta-shape {
        width: 280px;
        height: 280px;

        right: -180px;
        top: -90px;
    }

    .contact-cta-bg {
        background-position: 58% center;
        opacity: 0.42;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .regal-contact-cta {
        min-height: 560px;
    }

    .contact-cta-inner {
        width: calc(100% - 36px);
        min-height: 560px;
    }

    .contact-cta-content {
        padding-top: 90px;
    }

    .contact-cta-content h2 {
        font-size: clamp(45px, 13vw, 64px);
    }

    .contact-cta-link {
        margin-top: 40px;
    }

    .contact-cta-brand {
        font-size: 44px;
        bottom: 35px;
    }

    .contact-cta-bg {
        opacity: 0.38;
    }
}
/* =========================================================
   REGAL — NEW EDITORIAL GALLERY
========================================================= */

.regal-gallery-new {

    position: relative;

    padding: 120px 0 0;

    background: #f2f1ee;

    color: #111;

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.gallery-new-header {

    margin-bottom: 65px;

}


.gallery-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    font-family: 'Inter', sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .18em;

    color: #777;

}


.gallery-eyebrow span {

    color: #ed2d35;

    font-size: 12px;

}


.gallery-eyebrow b {

    width: 45px;

    height: 1px;

    background: #ed2d35;

}


.gallery-new-header h2 {

    margin: 0;

    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(70px, 9vw, 125px);

    font-weight: 400;

    line-height: .78;

    letter-spacing: .01em;

}


.gallery-new-header h2 span {

    color: #ed2d35;

}


.gallery-new-header p {

    max-width: 390px;

    margin: 0 0 5px;

    font-family: 'Inter', sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #666;

}


/* =========================================================
   MAIN GALLERY
========================================================= */

.gallery-new-carousel {

    position: relative;

}


.gallery-new-row {

    min-height: 590px;

}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.gallery-feature {

    position: relative;

    height: 590px;

    overflow: hidden;

    background: #ddd;

}


.gallery-feature img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:

        transform 1.2s cubic-bezier(.16,1,.3,1),

        filter .8s ease;

}


.carousel-item.active .gallery-feature img {

    animation: editorialGalleryZoom 4s ease both;

}


@keyframes editorialGalleryZoom {

    0% {

        transform: scale(1.10);

    }

    100% {

        transform: scale(1);

    }

}


.gallery-feature:hover img {

    transform: scale(1.06);

}


.gallery-feature-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            180deg,

            transparent 45%,

            rgba(0,0,0,.82) 100%

        );

}


.gallery-feature-content {

    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 32px;

    z-index: 2;

    color: #fff;

}


.gallery-feature-content small {

    display: block;

    margin-bottom: 12px;

    color: #ed2d35;

    font-family: 'Inter', sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .20em;

}


.gallery-feature-content h3 {

    margin: 0;

    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(45px, 5vw, 72px);

    font-weight: 400;

    line-height: .82;

}


.gallery-feature-content strong {

    color: #ed2d35;

    font-weight: 400;

}


/* =========================================================
   RIGHT SIDE
========================================================= */

.gallery-side {

    height: 590px;

    display: flex;

    flex-direction: column;

    gap: 18px;

    padding-left: 5px;

}


/* SIDE IMAGE */

.gallery-side-image {

    position: relative;

    height: 355px;

    overflow: hidden;

}


.gallery-side-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:

        transform .9s cubic-bezier(.16,1,.3,1);

}


.gallery-side-image:hover img {

    transform: scale(1.07);

}


.gallery-side-image span {

    position: absolute;

    left: 20px;

    bottom: 18px;

    z-index: 2;

    color: #fff;

    font-family: 'Inter', sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .15em;

}


/* =========================================================
   BOTTOM SIDE
========================================================= */

.gallery-side-bottom {

    flex: 1;

    display: grid;

    grid-template-columns: 42% 1fr;

    gap: 18px;

}


/* MINI IMAGE */

.gallery-mini {

    position: relative;

    overflow: hidden;

    background: #ddd;

}


.gallery-mini img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:

        transform .8s cubic-bezier(.16,1,.3,1);

}


.gallery-mini:hover img {

    transform: scale(1.08);

}


/* TEXT CARD */

.gallery-mini-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 30px;

    background: #ed2d35;

    border: 1px solid #deddda;

}


.gallery-mini-text span {

    margin-bottom: 15px;

    color: #fff;

    font-family: 'Inter', sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .18em;

}


.gallery-mini-text h4 {

    margin: 0 0 25px;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 38px;

    font-weight: 400;

    line-height: .9;

    color: #fff;

}


.gallery-mini-text a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    padding-bottom: 7px;

    border-bottom: 1px solid #111;

    color: #111;

    font-family: 'Inter', sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .14em;

    text-decoration: none;

    transition: .3s ease;

}


.gallery-mini-text a i {

    color: #ed2d35;

    transition: transform .3s ease;

}


.gallery-mini-text a:hover {

    color: #ed2d35;

}


.gallery-mini-text a:hover i {

    transform: translate(3px,-3px);

}


/* =========================================================
   CONTROLS
========================================================= */

.gallery-new-controls {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    margin-top: 28px;

}


.gallery-new-controls button {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    border: 1px solid #cfcfca;

    background: transparent;

    color: #111;

    transition:

        background .3s ease,

        color .3s ease,

        border-color .3s ease;

}


.gallery-new-controls button:hover {

    background: #ed2d35;

    border-color: #ed2d35;

    color: #fff;

}


.gallery-new-controls button i {

    font-size: 11px;

}


/* COUNTER */

.gallery-counter {

    display: flex;

    align-items: center;

    gap: 10px;

    margin: 0 8px;

    font-family: 'Inter', sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

}


.gallery-counter .gallery-current {

    color: #ed2d35;

}


.gallery-counter b {

    width: 25px;

    height: 1px;

    background: #aaa;

}


/* =========================================================
   MARQUEE
========================================================= */

.gallery-marquee {

    position: relative;

    width: 100vw;

    margin-top: 85px;

    padding: 22px 0;

    margin-left: calc((100vw - 100%) / -2);

    overflow: hidden;

    background: #111;

    color: #fff;

}


.gallery-marquee-track {

    display: flex;

    align-items: center;

    width: max-content;

    animation: galleryMarquee 24s linear infinite;

}


.gallery-marquee span {

    margin: 0 22px;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 24px;

    letter-spacing: .04em;

    white-space: nowrap;

}


.gallery-marquee i {

    color: #ed2d35;

    font-style: normal;

    font-size: 12px;

}


@keyframes galleryMarquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* =========================================================
   BOOTSTRAP SLIDE TRANSITION
========================================================= */

.gallery-new-carousel .carousel-item {

    transition:

        transform .8s cubic-bezier(.16,1,.3,1),

        opacity .5s ease;

}


.gallery-new-carousel .carousel-item-next,
.gallery-new-carousel .carousel-item-prev {

    opacity: .35;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .regal-gallery-new {

        padding-top: 90px;

    }


    .gallery-new-header {

        margin-bottom: 45px;

    }


    .gallery-new-header p {

        margin-top: 25px;

    }


    .gallery-new-row {

        min-height: auto;

    }


    .gallery-feature {

        height: 500px;

        margin-bottom: 18px;

    }


    .gallery-side {

        height: auto;

        padding-left: 0;

    }


    .gallery-side-image {

        height: 320px;

    }


    .gallery-side-bottom {

        min-height: 230px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .regal-gallery-new {

        padding-top: 75px;

    }


    .gallery-new-header h2 {

        font-size: 67px;

    }


    .gallery-new-header p {

        font-size: 13px;

    }


    .gallery-feature {

        height: 360px;

    }


    .gallery-feature-content {

        left: 20px;

        right: 20px;

        bottom: 22px;

    }


    .gallery-feature-content h3 {

        font-size: 47px;

    }


    .gallery-side-image {

        height: 240px;

    }


    .gallery-side-bottom {

        grid-template-columns: 1fr 1fr;

        min-height: 190px;

    }


    .gallery-mini-text {

        padding: 18px;

    }


    .gallery-mini-text h4 {

        font-size: 27px;

    }


    .gallery-new-controls {

        justify-content: space-between;

        margin-top: 22px;

    }


    .gallery-marquee {

        margin-top: 60px;

    }


    .gallery-marquee span {

        font-size: 20px;

    }

}
/* =========================================================
   REGAL GALLERY — ALIGNMENT FIX ONLY
   DO NOT CHANGE THE EXISTING GALLERY DESIGN
========================================================= */

.regal-gallery-new {
    width: 100%;
}

/* Make gallery header follow the same main content rail */
.regal-gallery-new > .container-fluid {
    width: min(1316px, calc(100% - 44px));
    max-width: 1316px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Header alignment */
.regal-gallery-new .gallery-new-header {
    margin-left: 0;
    margin-right: 0;
}

/* Carousel alignment */
.regal-gallery-new .gallery-new-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Remove Bootstrap row's negative horizontal margins */
.regal-gallery-new .gallery-new-row {
    margin-left: 0;
    margin-right: 0;
}

/* Keep columns but remove their default horizontal padding */
.regal-gallery-new .gallery-new-row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Preserve the original 18px gap between left/right gallery areas */
.regal-gallery-new .gallery-new-row > .col-lg-7 {
    padding-right: 9px;
}

.regal-gallery-new .gallery-new-row > .col-lg-5 {
    padding-left: 9px;
}

/* Keep vertical alignment consistent */
.regal-gallery-new .gallery-new-row {
    align-items: center !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .regal-gallery-new > .container-fluid {
        width: calc(100% - 44px);
        max-width: none;
    }

    .regal-gallery-new .gallery-new-row > .col-lg-7,
    .regal-gallery-new .gallery-new-row > .col-lg-5 {
        padding-left: 0;
        padding-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .regal-gallery-new > .container-fluid {
        width: calc(100% - 36px);
    }

}
/* =========================================================
   BOOTSTRAP STYLE REVEAL EFFECT — ALL SECTIONS
   NO DESIGN / LAYOUT CHANGES
========================================================= */

.bootstrap-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .9s ease,
        transform 1s cubic-bezier(.16, 1, .3, 1);
}

.bootstrap-reveal.reveal-show {
    opacity: 1;
    transform: translateY(0);
}


/* HERO — slightly stronger entrance */

.regal-hero.bootstrap-reveal {
    transform: translateY(25px);
}

.regal-hero.bootstrap-reveal.reveal-show {
    transform: translateY(0);
}


/* =========================================================
   INNER CONTENT EFFECT
========================================================= */

.bootstrap-reveal .profile-heading-row,
.bootstrap-reveal .gallery-new-header,
.bootstrap-reveal .rpi-header,
.bootstrap-reveal .why-content,
.bootstrap-reveal .reviews-header,
.bootstrap-reveal .contact-cta-content {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .7s ease .15s,
        transform .8s cubic-bezier(.16, 1, .3, 1) .15s;
}

.bootstrap-reveal.reveal-show .profile-heading-row,
.bootstrap-reveal.reveal-show .gallery-new-header,
.bootstrap-reveal.reveal-show .rpi-header,
.bootstrap-reveal.reveal-show .why-content,
.bootstrap-reveal.reveal-show .reviews-header,
.bootstrap-reveal.reveal-show .contact-cta-content {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   IMAGES — SMOOTH BOOTSTRAP-LIKE SCALE
========================================================= */

.bootstrap-reveal img {
    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1);
}

.bootstrap-reveal.reveal-show img {
    transform: scale(1);
}


/* =========================================================
   WHY REGAL IMAGE
========================================================= */

.why-section.bootstrap-reveal .why-image {
    opacity: 0;
    transform: translateX(-35px);
    transition:
        opacity .9s ease .2s,
        transform 1s cubic-bezier(.16, 1, .3, 1) .2s;
}

.why-section.bootstrap-reveal.reveal-show .why-image {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   PRODUCT ITEMS — STAGGERED EFFECT
========================================================= */

.regal-product-index.bootstrap-reveal .rpi-item {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .7s ease,
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.regal-product-index.bootstrap-reveal.reveal-show .rpi-item {
    opacity: 1;
    transform: translateY(0);
}

.regal-product-index.bootstrap-reveal.reveal-show .rpi-item:nth-child(2) {
    transition-delay: .05s;
}

.regal-product-index.bootstrap-reveal.reveal-show .rpi-item:nth-child(3) {
    transition-delay: .12s;
}

.regal-product-index.bootstrap-reveal.reveal-show .rpi-item:nth-child(4) {
    transition-delay: .19s;
}

.regal-product-index.bootstrap-reveal.reveal-show .rpi-item:nth-child(5) {
    transition-delay: .26s;
}

.regal-product-index.bootstrap-reveal.reveal-show .rpi-item:nth-child(6) {
    transition-delay: .33s;
}


/* =========================================================
   WHY REGAL ITEMS
========================================================= */

.why-section.bootstrap-reveal .why-item {
    opacity: 0;
    transform: translateX(25px);
    transition:
        opacity .6s ease,
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.why-section.bootstrap-reveal.reveal-show .why-item {
    opacity: 1;
    transform: translateX(0);
}

.why-section.bootstrap-reveal.reveal-show .why-item:nth-child(1) {
    transition-delay: .15s;
}

.why-section.bootstrap-reveal.reveal-show .why-item:nth-child(2) {
    transition-delay: .25s;
}

.why-section.bootstrap-reveal.reveal-show .why-item:nth-child(3) {
    transition-delay: .35s;
}

.why-section.bootstrap-reveal.reveal-show .why-item:nth-child(4) {
    transition-delay: .45s;
}


/* =========================================================
   REVIEW CARDS
========================================================= */

.reviews-section.bootstrap-reveal .review-card {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .65s ease,
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reviews-section.bootstrap-reveal.reveal-show .review-card {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   CONTACT CTA
========================================================= */

.regal-contact-cta.bootstrap-reveal .contact-cta-brand {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity .8s ease .25s,
        transform .9s cubic-bezier(.16, 1, .3, 1) .25s;
}

.regal-contact-cta.bootstrap-reveal.reveal-show .contact-cta-brand {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .bootstrap-reveal {
        transform: translateY(25px);
    }

    .why-section.bootstrap-reveal .why-image {
        transform: translateY(25px);
    }

    .why-section.bootstrap-reveal.reveal-show .why-image {
        transform: translateY(0);
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bootstrap-reveal,
    .bootstrap-reveal *,
    .why-section.bootstrap-reveal .why-image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}
/* =========================================================
   REGAL HEADER — MOBILE LOGO SPACING FIX
   Applies to ALL pages
========================================================= */

@media (max-width: 767px){

    .main-header{
        height: 76px !important;
    }

    .header-inner{
        width: 100% !important;
        padding: 0 16px !important;
        position: relative;
    }

    .main-header .logo{
        position: absolute !important;
        left: 16px !important;
        top: 50% !important;
        width: 125px !important;
        height: 58px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        transform: translateY(-50%) !important;
        z-index: 200 !important;
    }

    .main-header .actual-logo{
        width: 125px !important;
        height: 52px !important;
        max-width: 125px !important;
        object-fit: contain !important;
        object-position: left center !important;
        display: block !important;
    }

    .main-header .logo-landing{
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .main-header .logo-scrolled{
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        width: 125px !important;
        height: 52px !important;
        transform: translateY(-50%) !important;
    }

    .main-header.scrolled{
        height: 68px !important;
    }

    .main-header.scrolled .actual-logo{
        width: 112px !important;
        height: 48px !important;
        max-width: 112px !important;
    }

    .main-header.scrolled .logo{
        width: 112px !important;
        height: 52px !important;
        left: 16px !important;
    }

    .menu-button{
        right: 16px !important;
        top: 50% !important;
        width: 46px !important;
        height: 46px !important;
        transform: translateY(-50%) !important;
    }
}


/* Extra-small phones */
@media (max-width: 480px){

    .main-header .logo{
        left: 14px !important;
        width: 115px !important;
        height: 54px !important;
    }

    .main-header .actual-logo{
        width: 115px !important;
        height: 50px !important;
        max-width: 115px !important;
    }

    .main-header .logo-scrolled{
        width: 115px !important;
        height: 50px !important;
    }

    .main-header.scrolled .logo{
        left: 14px !important;
        width: 105px !important;
    }

    .main-header.scrolled .actual-logo{
        width: 105px !important;
        height: 46px !important;
        max-width: 105px !important;
    }

    .menu-button{
        right: 14px !important;
    }
}