:root {
    --navy: #1F396C;
    --navy-d: #152848;
    --navy-dp: #0f1e3a;
    --gold: #D2A43B;
    --gold-l: #e8bc55;
    --dark: #140f08;
    --white: #fff;
    --off: #f8f7f4;
    --stone: #f0eeea;
    --border: #e5e2db;
    --body: #444;
    --mid: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

body {
    padding-top: 72px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid var(--border);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
}

nav.sc {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.nlogo {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nlogo img {
    height: 36px;
    width: auto;
    max-width: 160px;
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.nl {
    color: #333;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s;
    text-decoration: none;
    white-space: nowrap;
}

.nl:hover, .nl.active {
    color: var(--navy);
}

.nl.ncta {
    background: var(--navy);
    color: #fff !important;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.nl.ncta:hover {
    background: var(--navy-d);
}

.nhb {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nhb span {
    width: 22px;
    height: 2px;
    background: #333;
    display: block;
}

/* IMAGES */
/* .bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* BUTTONS */
.btn-g {
    background: var(--gold);
    color: #fff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-g:hover {
    background: var(--gold-l);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-navy:hover {
    background: var(--navy-d);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

.btn-outline-w {
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-outline-dk {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-dk:hover {
    background: var(--navy);
    color: #fff;
}

.btn-outline-g {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline-g:hover {
    background: var(--gold);
    color: #fff;
}

/* SECTIONS */
.sec {
    padding: 88px 56px;
}

.inner {
    max-width: 1280px;
    margin: 0 auto;
}

.bg-white {
    background: var(--white);
}

.bg-off {
    background: var(--off);
}

.bg-stone {
    background: var(--stone);
}

.bg-dark {
    background: var(--dark);
}

@media(max-width:768px){

    .nhb{
        display:flex;
        z-index:10001;
    }

    .nlinks{
        position:fixed;
        top:72px;
        left:0;
        width:100%;
        height:calc(100vh - 72px);

        background:#fff;

        flex-direction:column;
        align-items:flex-start;

        padding:20px;

        gap:0;

        overflow-y:auto;

        transform:translateY(-20px);
        opacity:0;
        visibility:hidden;

        transition:
            transform .35s ease,
            opacity .35s ease,
            visibility .35s ease;

        pointer-events:none;
    }

    .nlinks.open{
        transform:translateY(0);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .nlinks li{
        width:100%;
        list-style:none;
    }

    .nlinks li a{
        width:100%;
        display:block;
        padding:14px 0;
        border-bottom:1px solid #eee;
    }

    .nav-dd{
        position:static;
        display:block;
        width:100%;

        border:none;
        box-shadow:none;

        padding-left:14px;
        margin-top:6px;
    }

    .nav-dd li a{
        font-size:13px;
        padding:10px 0;
    }

}
/* GRIDS */
.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TYPE */
.h2w {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.h2w em {
    font-style: normal;
    color: rgba(255, 255, 255, .3);
}

.h2d {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 700;
    color: #111;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

.h2d em {
    font-style: normal;
    color: #bbb;
}

.h3d {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 12px;
}

.tag-w {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
}

.tag-d {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 12px;
}

.tag-g {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.body-w {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .58);
    font-weight: 300;
}

.body-d {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    font-weight: 300;
}

/* HERO */
.hero-wrap {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 560px;
    overflow: hidden;
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 16, 30, .92) 0%, rgba(10, 16, 30, .7) 45%, rgba(10, 8, 4, .2) 100%);
    z-index: 2;
    pointer-events:none;

}

.hero-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 56px 60px;
    z-index: 3;
    max-width: 760px;
}

.hero-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-h1 {
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 700;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.hero-h2 {
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 400;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(31, 57, 108, .85);
    padding: 32px 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(210, 164, 59, .15);
}

.hs {
    border-left: 2px solid var(--gold);
    padding-left: 14px;
}

.hs-n {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hs-n sup {
    font-size: 16px;
    color: var(--gold);
}

.hs-l {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-top: 3px;
}

/* CAROUSEL */
.carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.c-slides {
    display: flex;
    height: 100%;
    transition: transform .7s ease;
}

.c-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.c-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.c-note {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(210, 164, 59, .9);
    color: #111;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    white-space: nowrap;
    z-index: 2;
}

.c-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    border: none;
}

.cdot.on {
    background: var(--gold);
}

.c-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-btn:hover {
    background: rgba(210, 164, 59, .5);
}

.c-prev {
    left: 16px;
}

.c-next {
    right: 16px;
}

/* PAGE HERO */
.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.ph-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 16, 30, .92) 0%, rgba(10, 16, 30, .65) 55%, rgba(10, 8, 4, .25) 100%);
    z-index: 2;
}

.page-hero .bg-img {
    z-index: 1;
}

.ph-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 52px 56px;
    z-index: 3;
}

.ph-cnt h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    max-width: 680px;
}

.ph-cnt p {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 20px;
}

.ph-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bc {
    font-size: 11px;
    color: rgba(255, 255, 255, .38);
    letter-spacing: .08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.split-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-img>div:first-child {
    border-right: 2px solid rgba(255, 255, 255, .05);
}

/* INS HERO */
.ins-hero {
    background: var(--dark);
    padding: 80px 56px 56px;
}

.ins-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.ins-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    max-width: 520px;
}

/* TICKER */
.ticker {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-in {
    display: inline-flex;
    animation: tick 30s linear infinite;
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ti {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--dark);
}

.td {
    width: 3px;
    height: 3px;
    background: var(--dark);
    border-radius: 50%;
    opacity: .3;
}

/*Animation*/
.page-hero .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: heroMove 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroMove {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }

    50% {
        transform: scale(1.08) translateX(-2%) translateY(-1%);
    }

    100% {
        transform: scale(1.12) translateX(2%) translateY(1%);
    }
}

.ph-cnt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 52px 56px;
    z-index: 3;

    opacity: 0;
    transform: translateY(40px);

    animation: contentReveal 1s ease forwards;
    animation-delay: .3s;
}

@keyframes contentReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(50px);
    }
}

/*Services pages effect*/

.hero-content {
    opacity: 0;
    transform: translateY(-50px);
    animation: contentDown 1s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes contentDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bc,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
    transform: translateY(-30px);
}

.bc {
    animation: revealDown .7s .1s forwards;
}

.hero-content h1 {
    animation: revealDown .8s .3s forwards;
}

.hero-content p {
    animation: revealDown .8s .5s forwards;
}

.hero-buttons {
    animation: revealDown .8s .7s forwards;
}

@keyframes revealDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider {
    opacity: 0;
    transform: translateY(80px);
    animation: sliderUp 1.2s cubic-bezier(.22,.61,.36,1) forwards;
    animation-delay: .4s;
}

@keyframes sliderUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide.active img {
    animation: slideZoom 8s ease-in-out forwards;
}

@keyframes slideZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* Home page animation */
.c-slide img {
    transform: scale(1);
    transition: transform 8s ease-in-out;
}

.c-slide.active img {
    transform: scale(1.12) translateX(2%);
}

.hero-tag,
.hero-h1,
.hero-h2,
.hero-sub,
.hero-btns {
    opacity: 0;
    transform: translateY(40px);
}

.hero-tag {
    animation: revealUp .8s .2s forwards;
}

.hero-h1 {
    animation: revealUp .8s .4s forwards;
}

.hero-h2 {
    animation: revealUp .8s .6s forwards;
}

.hero-sub {
    animation: revealUp .8s .8s forwards;
}

.hero-btns {
    animation: revealUp .8s 1s forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hs {
    opacity: 0;
    transform: translateY(50px);
}

.hs:nth-child(1) {
    animation: statUp .7s 1s forwards;
}

.hs:nth-child(2) {
    animation: statUp .7s 1.15s forwards;
}

.hs:nth-child(3) {
    animation: statUp .7s 1.3s forwards;
}

.hs:nth-child(4) {
    animation: statUp .7s 1.45s forwards;
}

@keyframes statUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-glow {
    position: absolute;
    right: -200px;
    top: -100px;

    width: 700px;
    height: 700px;

    background: radial-gradient(
        circle,
        rgba(194,157,113,.25),
        transparent 70%
    );

    filter: blur(90px);

    z-index: 2;
    pointer-events: none;

    animation: glowMove 10s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.c-slide {
    overflow: hidden;
}

.c-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.08) translateX(-2%);
    }

    100% {
        transform: scale(1.12) translateX(2%);
    }
}

/* ABOUT 3-COL */
.about-3 {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.big-l {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: #111;
    line-height: 1;
    letter-spacing: -.03em;
}

.big-l span {
    color: #ccc;
    display: block;
}

/* SERVICE CARDS */
.sc-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sc-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.sc {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 20px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .3s;
}

.sc:hover {
    background: rgba(31, 57, 108, .15);
    border-color: rgba(210, 164, 59, .25);
    transform: translateY(-3px);
}

.sc-arr {
    width: 30px;
    height: 30px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.sc-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
    line-height: 1.2;
}

.sc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65;
    font-weight: 300;
}

/* SVR */
.svr {
    display: grid;
    grid-template-columns: 40px 1fr 1.1fr 16px;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .2s, padding-left .2s;
}

.svr:first-child {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.svr:hover {
    background: rgba(31, 57, 108, .2);
    padding-left: 32px;
}

.svr-n {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
    font-weight: 600;
}

.svr-t {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

.svr-d {
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
    font-weight: 300;
    line-height: 1.5;
}

.svr svg {
    color: rgba(255, 255, 255, .25);
}

.svr:hover svg {
    color: var(--gold);
}

.fl-b {
    font-size: 8.5px;
    background: var(--gold);
    color: #fff;
    padding: 2px 7px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ACCORDION */
.acc-list {
    border-top: 1px solid var(--border);
}

.acc {
    border-bottom: 1px solid var(--border);
}

.acc-q {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
    font-weight: 600;
    color: #111;
    gap: 14px;
    cursor: pointer;
}

.aiq {
    flex-shrink: 0;
    transition: transform .3s;
}

.acc-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.acc-a p {
    padding-bottom: 14px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--body);
    font-weight: 300;
}

.acc.open .aiq {
    transform: rotate(180deg);
}

.acc.open .acc-a {
    max-height: 300px;
}

/* FAQ */
.faq-list {
    border-top: 1px solid var(--border);
}

.faq {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    gap: 14px;
    cursor: pointer;
}

.fiq {
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a p {
    padding-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--body);
    font-weight: 300;
}

.faq.open .fiq {
    transform: rotate(45deg);
}

.faq.open .faq-a {
    max-height: 400px;
}

/* DELIVER */
.di-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.di {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 26px 22px;
    transition: background .25s;
}

.di:hover {
    background: rgba(31, 57, 108, .2);
}

.di-bar {
    width: 26px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 12px;
}

.di-t {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.di-d {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65;
    font-weight: 300;
}

/* CHECK */
.chk-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chk {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--body);
    line-height: 1.5;
}

/* STATS */
.stats4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat {
    background: var(--navy);
    padding: 26px 22px;
    border-left: 3px solid var(--gold);
}

.stat.sg {
    background: var(--gold);
    border-left-color: var(--navy-dp);
}

.sv {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sv sup {
    font-size: 16px;
    color: var(--gold);
}

.stat.sg .sv {
    color: var(--navy-dp);
}

.stat.sg .sv sup {
    color: rgba(15, 30, 58, .4);
}

.sl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    margin-top: 4px;
}

.stat.sg .sl {
    color: rgba(15, 30, 58, .5);
}

.si {
    border-left: 2px solid var(--gold);
    padding-left: 12px;
}

.siv {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.siv sup {
    font-size: 14px;
    color: var(--gold);
}

.sil {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 3px;
}

/* CAP */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.cap-item {
    background: #fff;
    padding: 24px 20px;
}

.cap-ic {
    margin-bottom: 10px;
    color: var(--navy);
}

.cap-t {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.cap-d {
    font-size: 12.5px;
    color: var(--body);
    line-height: 1.6;
    font-weight: 300;
}

/* PROJECTS */
.proj-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 8px;
}

.pg-main {
    grid-row: 1/3;
}

.proj-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pc {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .25s, transform .2s;
}

.pc:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}

.pc-body {
    padding: 18px;
}

.pc-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.pc-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.2;
}

.pc-desc {
    font-size: 13px;
    color: var(--body);
    font-weight: 300;
    line-height: 1.55;
}

.proj-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pf-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    color: var(--body);
    font-family: 'Inter', sans-serif;
}

.pf-btn.active, .pf-btn:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

/* BLOG */
.bc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bc-card {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .25s, transform .2s;
}

.bc-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
    transform: translateY(-3px);
}

.bc-body {
    padding: 20px;
}

.bc-cat {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 7px;
}

.bc-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bc-ex {
    font-size: 13px;
    color: var(--body);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
}

.bc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.bc-rd {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy);
}

/* IND */
.ind-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.ind-card {
    padding: 40px 36px;
    transition: background .25s;
}

.ind-lt {
    background: var(--off);
}

.ind-dk {
    background: var(--dark);
}

.ind-lt:hover {
    background: #fff;
}

.ind-dk:hover {
    background: #1a1208;
}

.ind-num {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.ind-lt .ind-num {
    color: rgba(0, 0, 0, .06);
}

.ind-dk .ind-num {
    color: rgba(255, 255, 255, .05);
}

.ind-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ind-lt .ind-title {
    color: #111;
}

.ind-dk .ind-title {
    color: #fff;
}

.ind-desc {
    font-size: 13.5px;
    line-height: 1.7;
    font-weight: 300;
}

.ind-lt .ind-desc {
    color: var(--body);
}

.ind-dk .ind-desc {
    color: rgba(255, 255, 255, .42);
}

/* TIMELINE */
.tl-wrap {
    padding-left: 20px;
    border-left: 1px solid rgba(210, 164, 59, .25);
}

.tl-item {
    padding: 0 0 24px 20px;
    position: relative;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--dark);
}

.tl-yr {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.tl-t {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.tl-d {
    font-size: 13px;
    color: var(--body);
    line-height: 1.65;
    font-weight: 300;
}

/* RS */
.rs-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 18px;
}

.rs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rs-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 22px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .25s, box-shadow .25s;
    display: block;
}

.rs-card:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(31, 57, 108, .1);
}

.rs-arr {
    width: 28px;
    height: 28px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
}

.rs-t {
    font-size: 13.5px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.rs-d {
    font-size: 12.5px;
    color: var(--body);
    font-weight: 300;
    line-height: 1.5;
}

/* MID CTA */
.mid-cta {
    background: var(--navy);
    padding: 32px 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mid-t {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.mid-s {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    margin-top: 3px;
}

.mid-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* CTA */
.cta-sec {
    background: var(--dark);
    padding: 72px 56px;
    border-top: 1px solid rgba(210, 164, 59, .1);
}

.cta-in {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.cta-h {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-p {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 10px;
    flex-direction: column;
    flex-shrink: 0;
}

/* LOGO */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 24px;
}

.logo-ph {
    height: 60px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ccc;
}

.logo-ph img {
    height: 100%;
}

/* Mobile */
@media (max-width: 767px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DOWNLOAD BANNER */
.dl-banner {
    background: linear-gradient(105deg, var(--navy-dp) 0%, var(--navy) 100%);
    padding: 44px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    border-top: 3px solid var(--gold);
}

.dl-t {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.dl-s {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

/* FORM */
.cf-wrap {
    background: var(--navy);
    padding: 36px;
    border-top: 3px solid var(--gold);
}

.cf-h {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-f {
    margin-bottom: 14px;
}

.cf-l {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: 6px;
}

.cf-i {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 13px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 300;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}

.cf-i:focus {
    border-color: rgba(210, 164, 59, .45);
}

.cf-sel {
    cursor: pointer;
    appearance: none;
}

.cf-sel option {
    background: var(--navy-dp);
    color: #fff;
}

.cf-sub {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
    margin-top: 6px;
}

.cf-sub:hover {
    background: var(--gold-l);
}

.cf-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .2);
    text-align: center;
    margin-top: 10px;
    font-weight: 300;
}

/* FOOTER */
footer {
    background: #060c18;
    padding: 56px 56px 28px;
}

.ft {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ft-logo img {
    width: 150px;
    margin-bottom: 14px;
    display: block;
}

.ft-logo p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .28);
    line-height: 1.7;
    font-weight: 300;
    max-width: 220px;
}

.ft-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.ft-col a {
    display: block;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    margin-bottom: 7px;
    transition: color .2s;
    cursor: pointer;
    font-weight: 300;
}

.ft-col a:hover {
    color: #fff;
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .15);
    font-weight: 300;
}

.ft-geo {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(210, 164, 59, .28);
}

/* RESPONSIVE */
@media(max-width:1100px) {
    nav {
        padding: 0 28px;
    }

    .sec {
        padding: 64px 28px;
    }

    .cta-sec, .mid-cta, .dl-banner, .ins-hero {
        padding-left: 28px;
        padding-right: 28px;
    }

    footer, .ph-cnt {
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero-cnt {
        padding-left: 28px;
        padding-bottom: 72px;
    }

    .about-3, .g2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .di-grid, .bc-grid, .rs-grid, .sc-grid3 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .sc-grid2 {
        grid-template-columns: 1fr 1fr;
    }

    .stats4 {
        grid-template-columns: 1fr 1fr;
    }

    .cap-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .ind-grid {
        grid-template-columns: 1fr;
    }

    .cta-in {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-btns {
        flex-direction: row;
    }

    .svr {
        grid-template-columns: 34px 1fr 14px;
    }

    .svr-d {
        display: none;
    }

    .proj-cards {
        grid-template-columns: 1fr 1fr;
    }

    .ft {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .hero-stats {
        display: none;
    }

    .split-img {
        grid-template-columns: 1fr;
        height: auto !important;
    }

    .split-img>div {
        min-height: 200px;
    }
}

@media(max-width:768px) {
    body {
        padding-top: 64px;
    }

    nav {
        padding: 0 18px;
        height: 64px;
    }

    .nlogo img {
        height: 30px;
    }

    .nlinks {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, .98);
        flex-direction: column;
        padding: 20px 18px;
        gap: 0;
        z-index: 9998;
        overflow-y: auto;
    }

    .nlinks.open {
        display: flex;
    }

    .nl {
        font-size: 16px;
        font-weight: 600;
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #111;
    }

    .nl.ncta {
        background: var(--navy);
        color: #fff !important;
        padding: 12px 18px;
        margin-top: 14px;
        text-align: center;
        font-size: 14px;
    }

    .nhb {
        display: flex;
    }

    .sec {
        padding: 44px 18px;
    }

    .cta-sec {
        padding: 44px 18px;
    }

    footer {
        padding: 40px 18px 24px;
    }

    .ins-hero, .dl-banner, .mid-cta, .ph-cnt {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-cnt {
        padding: 0 18px 52px;
    }

    .hero-h1 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns a {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: none;
    }

    .about-3, .g2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .di-grid, .bc-grid, .rs-grid, .sc-grid3, .sc-grid2, .cap-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stats4 {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .proj-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 6px;
    }

    .proj-grid>div, .pg-main {
        min-height: 160px;
    }

    .pg-main {
        grid-row: auto;
    }

    .proj-cards {
        grid-template-columns: 1fr;
    }

    .ind-grid {
        grid-template-columns: 1fr;
    }

    .cta-in {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btns a, .mid-btns a, .ph-btns a {
        width: 100%;
        justify-content: center;
    }

    .mid-btns {
        flex-direction: column;
        width: 100%;
    }

    .ft {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ft-bot {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }
}

.img-hero_pool {
    background-image: url("../images/slide_1.jpg")
}

.img-hero_signage {
    background-image: url("../images/slide_3.jpg")
}

.img-hero_metal {
    background-image: url("../images/slide_2.jpg")
}

.img-hero_fitout {
    background-image: url("../images/slide_4.jpg")
}

.img-home_about {
    background-image: url("")
}

.img-home_turnkey {
    background-image: url("../images/project_work.jpg")
}

.img-proj1 {
    background-image: url("../images/projects_1.jpg")
}

.img-proj2 {
    background-image: url("../images/projects_2.jpg")
}

.img-proj3 {
    background-image: url("../images/slide_2.jpg")
}

.img-proj4 {
    background-image: url("../images/projects_3.jpg")
}

.img-proj5 {
    background-image: url("../images/projects_4.jpg")
}

.img-pool_hero1 {
    background-image: url("../images/insight_1.jpg")
}

.img-pool_hero2 {
    background-image: url("../images/acrylic_pool_banner.jpg")
}

.img-pool_pioneer {
    background-image: url("")
}

.img-pool_install {
    background-image: url("")
}

.img-pool_process {
    background-image: url("")
}

.img-metal_hero1 {
    background-image: url("../images/insight_2.jpg")
}

.img-metal_hero2 {
    background-image: url("../images/archit_metal_1.jpg")
}

.img-metal_approach {
    background-image: url("")
}

.img-metal_sec {
    background-image: url("")
}

.img-sign_hero1 {
    background-image: url("../images/slide_2.jpg")
}

.img-sign_hero2 {
    background-image: url("../images/sabiin_sign_in.jpg")
}

.img-sign_approach {
    background-image: url("")
}

.img-sign_sec {
    background-image: url("")
}

.img-fit_hero1 {
    background-image: url("../images/slide_4.jpg")
}

.img-fit_hero2 {
    background-image: url("../images/projects_3.jpg")
}

.img-fit_approach {
    background-image: url("")
}

.img-poly_hero1 {
    background-image: url("../images/acrylic_polycarbonate.jpg")
}

.img-poly_hero2 {
    background-image: url("../images/polycarbonate-in.jpg")
}

.img-poly_approach {
    background-image: url("")
}

.img-poly_sec {
    background-image: url("")
}

.img-cap_workshop {
    background-image: url("../images/insight_3.jpg")
}

.img-cap_img2 {
    background-image: url("")
}

.img-svc_overview {
    background-image: url("../images/insight_4.jpg")
}

.img-ind_hero {
    background-image: url("../images/industries_banner.jpg")
}

.img-ind_img1 {
    background-image: url("")
}

.img-about_heritage {
    background-image: url("../images/heritage.jpg")
}

.img-about_team {
    background-image: url("../images/about_banner.jpg")
}

.img-pc1 {
    background-image: url("../images/projects_1.jpg")
}

.img-pc2 {
    background-image: url("../images/projects_2.jpg")
}

.img-pc3 {
    background-image: url("../images/projects_3.jpg")
}

.img-pc4 {
    background-image: url("../images/projects_4.jpg")
}

.img-pc5 {
    background-image: url("../images/projects_3.jpg")
}

.img-pc6 {
    background-image: url("../images/projects_1.jpg")
}

.img-pc7 {
    background-image: url("../images/projects_2.jpg")
}

.img-pc8 {
    background-image: url("../images/projects_3.jpg")
}

.img-pc9 {
    background-image: url("../images/projects_4.jpg")
}

.img-pc10 {
    background-image: url("../images/projects_2.jpg")
}

.img-pc11 {
    background-image: url("../images/projects_1.jpg")
}

.img-pc12 {
    background-image: url("../images/projects_3.jpg")
}

.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .2s;
}

.svc-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--navy);
}

.svc-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 10px;
}

.svc-card-desc {
    font-size: 13.5px;
    color: var(--body);
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
    margin-bottom: 20px;
}

.svc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: "Inter", sans-serif;
    align-self: flex-start;
    transition: background .2s;
}

.svc-card-btn:hover {
    background: #e8bc55;
}

.svc-flagship::after {
    content: "FLAGSHIP";
    background: var(--gold);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 2px 6px;
    margin-left: 8px;
    vertical-align: middle;
}

@media(max-width:1100px) {
    .svc-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .svc-cards-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        padding: 24px 20px;
    }
}

.nl-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nl-wrap:hover .nav-dd {
    display: block;
}

.nav-dd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2px solid var(--navy);
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 99999;
}

.nav-dd li {
    list-style-type: none;
}

.nav-dd a {
    display: block;
    padding: 11px 18px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .15s, color .15s;
}

.nav-dd a:last-child {
    border-bottom: none;
}

.nav-dd a:hover {
    background: var(--off);
    color: var(--navy);
}

.dd-flagship {
    position: relative;
}

.dd-flagship::after {
    content: "FLAGSHIP";
    background: var(--gold);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 2px 5px;
    margin-left: 8px;
    vertical-align: middle;
}

.nl-arr {
    font-size: 9px;
    margin-left: 3px;
    color: #999;
}

.nlogo {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.nlogo-sub {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #999;
    line-height: 1;
}


/*//*/

/* Default */
.mobile-hero{
    display:none;
}

/* Desktop */
@media (min-width:768px){

    .desktop-hero{
        display:block;
    }

    .mobile-hero{
        display:none;
    }
}

/* Mobile */
@media (max-width:767px){

    .hero-wrap{
        display:none;
    }

    .mobile-hero{
        display:block;
        background:#fff;
    }

    .mobile-hero-content{
        padding:30px 24px 20px;
        margin-top: 64px;
    }
    
    .mobile-hero-content .hero-cnt {
        padding: 0 18px;
        position: relative;
    }
    
    .mobile-hero-content .hero-h2 {
        color: rgb(75 75 75 / 78%);
    }

    .mobile-tag{
        display:block;
        font-size:11px;
        text-transform:uppercase;
        color:#999;
        letter-spacing:.1em;
        margin-bottom:20px;
    }

    .mobile-hero h1{
        font-size:28px;
        line-height:1.1;
        font-weight:300;
        color:#2a2a2a;
        margin-bottom: 20px;
    }
    
    .mobile-hero-content .hero-sub {
        color:#999;
    }

    .mobile-line{
        width:60px;
        height:2px;
        background:#999;
        margin-top:30px;
    }

    .mobile-hero .carousel {
    position: relative;
    inset: 0;
    z-index: 1;
    height: 300px;
}
}

.section-line {
    width: 55px;
    height: 2px;
    background: #9e9e9e;
    margin-top: 15px;
}