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

:root {
    --navy: #0B1323;
    --gold: #D49A3D;
    --white: #FFFFFF;
    --smoke: #F0F0F0;
    --light: #F8F9FA;
    --muted: #6C757D;
    --border: #E5E7EB;
    --green: #4A6E2A;
    --font-d: "Cormorant Garamond", Georgia, serif;
    --font-b: "Inter", system-ui, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body {
    font-family: var(--font-b);
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

/* HEADER */
#hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 19, 35, .97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 154, 61, .18);
    transition: transform .3s ease
}

#hdr.hide {
    transform: translateY(-100%)
}

.htop {
    border-bottom: 1px solid rgba(212, 154, 61, .12);
    padding: .5rem 0
}

.W {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.htop .W {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.hcl {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--smoke);
    font-size: .78rem;
    transition: color .2s
}

.hcl:hover {
    color: var(--gold)
}

.hcl svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0
}

.sr {
    display: flex;
    align-items: center;
    gap: .8rem
}

.sr a {
    color: var(--smoke);
    transition: color .2s;
    display: flex;
    align-items: center
}

.sr a:hover {
    color: var(--gold)
}

.sr svg {
    width: 14px;
    height: 14px
}

.hmain .W {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px
}

.logo {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .03em;
    line-height: 1
}

.logo span {
    color: var(--gold)
}

.dnav {
    display: flex;
    align-items: center;
    gap: 2.2rem
}

.nl {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    padding: .25rem 0;
    position: relative;
    transition: color .2s
}

.nl::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s
}

.nl:hover,
.nl.act {
    color: var(--gold)
}

.nl:hover::after,
.nl.act::after {
    transform: scaleX(1)
}

.mtg {
    display: none;
    padding: 5px;
    color: var(--white)
}

.mtg svg {
    width: 22px;
    height: 22px
}

.mnav {
    display: none;
    margin-top: var(--hdr-height);
    background: var(--navy);
    border-top: 1px solid rgba(212, 154, 61, .12);
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    gap: .85rem
}

.mnav.open {
    display: flex
}

.mnav .nl {
    font-size: .8rem
}

/* LAYOUT */
.SP {
    padding: 6rem 0
}

.SPL {
    padding: 8rem 0
}

/* SECTION HEADER */
.SH {
    text-align: center;
    margin-bottom: 3.5rem
}

.EB {
    display: block;
    color: var(--gold);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .5rem
}

.ST {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: .6rem
}

.SD {
    color: var(--muted);
    max-width: 580px;
    margin: .6rem auto 0;
    line-height: 1.75;
    font-size: .98rem
}

.GB {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: .4rem auto 0
}

/* BUTTONS */
.BG {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--gold);
    color: var(--white);
    padding: .8rem 1.8rem;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s, transform .15s
}

.BG:hover {
    background: rgba(212, 154, 61, .85);
    transform: translateY(-1px)
}

.BGH {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .8rem 1.8rem;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color .2s, color .2s
}

.BGH:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.BGHL {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--navy);
    border: 1px solid rgba(11, 19, 35, .3);
    padding: .8rem 1.8rem;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color .2s, color .2s
}

.BGHL:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* PAGE BANNER */
.PB {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 3rem
}

.PBG {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.POV {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11, 19, 35, .94) 0%, rgba(11, 19, 35, .55) 100%)
}

.PBC {
    position: relative;
    z-index: 2
}

.PB h1 {
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: .55rem
}

.PB .sub {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold)
}

/* ALTERNATING CONTENT BLOCKS */
.CB {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
    border-bottom: 1px solid var(--border)
}

.CB:last-child {
    border-bottom: none
}

.CB.R .CI {
    order: 2
}

.CB.R .CT {
    order: 1
}

.CIW {
    position: relative;
    height: 440px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .15)
}

.CIW img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.CIW:hover img {
    transform: scale(1.03)
}

.CIW::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .28) 0%, transparent 55%)
}

.CIB {
    position: absolute;
    bottom: -1.1rem;
    right: -1.1rem;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    z-index: 2
}

.CIB svg {
    width: 34px;
    height: 34px;
    color: var(--white)
}

.CT .EB {
    text-align: left
}

.CT h2 {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.1
}

.CT p {
    color: var(--muted);
    line-height: 1.8;
    font-size: .98rem
}

/* STATS */
.STBG {
    background: var(--light)
}

.SGR {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center
}

.SIC {
    width: 66px;
    height: 66px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .9rem
}

.SIC svg {
    width: 29px;
    height: 29px;
    color: var(--white)
}

.SV {
    font-family: var(--font-d);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .35rem
}

.SL {
    color: var(--muted);
    font-size: .88rem
}

/* BRANDS */
.BGR {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem
}

.BC {
    border: 2px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: border-color .25s, box-shadow .25s, transform .2s;
    color: var(--navy);
    padding: 0
}

.BC-img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.BC:hover .BC-img {
    transform: scale(1.03)
}

.BC-txt {
    padding: 1.1rem 1.25rem 1.25rem;
    text-align: center;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.BC:hover>div {
    background: rgba(255, 255, 255, 0.65) !important
}

.BC:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(212, 154, 61, .1);
    transform: translateY(-2px)
}

.BN {
    font-family: var(--font-d);
    font-size: 1.15rem;
    font-weight: 600;
    transition: color .2s;
    display: block;
    line-height: 1.2
}

.BC:hover .BN {
    color: var(--gold)
}

.BU {
    font-size: .72rem;
    color: var(--muted);
    display: block;
    margin-top: .15rem;
    letter-spacing: .03em
}

/* PROJECT CARDS */
.PGR {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem
}

.PC {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, box-shadow .25s, transform .2s
}

.PC:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 32px rgba(212, 154, 61, .12);
    transform: translateY(-3px)
}

.PCI {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #1a1a2e
}

.PCI img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.PC:hover .PCI img {
    transform: scale(1.04)
}

.PCI::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .42) 0%, transparent 60%)
}

.PCB {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.PCT {
    font-family: var(--font-d);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .55rem;
    line-height: 1.2
}

.PCD {
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem
}

.PCL {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    background: var(--gold);
    color: var(--white);
    padding: .65rem 1.2rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s
}

.PCL:hover {
    background: rgba(212, 154, 61, .85)
}

.PCL.OFF {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
    pointer-events: none
}

.PST {
    font-size: .7rem;
    color: var(--muted);
    text-align: center;
    margin-top: .3rem;
    font-style: italic
}

/* CONTACT */
.CGR {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem
}

.CII {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem
}

.CIIC {
    width: 66px;
    height: 66px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.CIIC svg {
    width: 27px;
    height: 27px;
    color: var(--white)
}

.CILB {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold)
}

.CIVL {
    color: var(--muted);
    font-size: .88rem;
    transition: color .2s
}

a.CII:hover .CIVL {
    color: var(--gold)
}

.CFW {
    max-width: 680px;
    margin: 0 auto
}

.FR {
    margin-bottom: 1.1rem
}

.FR label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .4rem
}

.FR input,
.FR textarea {
    width: 100%;
    padding: .78rem 1rem;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--navy);
    font-family: var(--font-b);
    font-size: .92rem;
    border-radius: 2px;
    outline: none;
    transition: border-color .2s
}

.FR input::placeholder,
.FR textarea::placeholder {
    color: #aaa
}

.FR input:focus,
.FR textarea:focus {
    border-color: var(--gold)
}

.FR textarea {
    resize: none;
    height: 130px
}

.FSEC {
    background: var(--light);
    padding: 5rem 0
}

.MW {
    height: 450px
}

.MW iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

/* FOOTER */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(212, 154, 61, .18);
    padding: 4.5rem 0 0
}

.FGR {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem
}

.FBN {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .55rem
}

.FBN span {
    color: var(--gold)
}

.FT {
    color: var(--smoke);
    font-size: .83rem;
    line-height: 1.6;
    margin-bottom: 1.2rem
}

.FS {
    display: flex;
    gap: .8rem
}

.FS a {
    color: var(--smoke);
    transition: color .2s;
    display: flex;
    align-items: center
}

.FS a:hover {
    color: var(--gold)
}

.FS svg {
    width: 16px;
    height: 16px
}

.FCT {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem
}

.FCI {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--smoke);
    font-size: .83rem;
    margin-bottom: .75rem;
    transition: color .2s
}

.FCI:hover {
    color: var(--gold)
}

.FCI svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--gold)
}

.FND {
    color: var(--smoke);
    font-size: .83rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.NIR {
    display: flex
}

.NIR input {
    flex: 1;
    padding: .72rem .9rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(212, 154, 61, .28);
    color: var(--white);
    font-family: var(--font-b);
    font-size: .83rem;
    outline: none;
    border-radius: 2px 0 0 2px;
    transition: border-color .2s
}

.NIR input::placeholder {
    color: rgba(240, 240, 240, .33)
}

.NIR input:focus {
    border-color: var(--gold)
}

.NIR button {
    background: var(--gold);
    color: var(--white);
    padding: .72rem 1rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 0 2px 2px 0;
    transition: background .2s;
    white-space: nowrap
}

.NIR button:hover {
    background: rgba(212, 154, 61, .85)
}

.FBOT {
    border-top: 1px solid rgba(212, 154, 61, .12);
    padding: 1.4rem 0;
    text-align: center
}

.FBOT p {
    color: rgba(240, 240, 240, .42);
    font-size: .77rem
}

/* HERO IMAGE */
#img {
    padding-top: 0
}

.hero-img {
    width: 100%;
    height: clamp(180px, 50vw, 80vh);
    object-fit: cover;
    object-position: center;
    display: block;
}


/* RESPONSIVE */
@media(max-width:1024px) {
    .BGR {
        grid-template-columns: repeat(2, 1fr)
    }

    .SGR {
        grid-template-columns: repeat(2, 1fr)
    }

    .PGR {
        grid-template-columns: repeat(2, 1fr)
    }

    .CGR {
        grid-template-columns: repeat(2, 1fr)
    }

    .CB {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 0
    }

    .CB.R .CI,
    .CB.R .CT {
        order: unset
    }

    .CIW {
        height: 300px
    }
}

@media(max-width:768px) {
    .dnav {
        display: none !important
    }

    .mtg {
        display: flex
    }

    .FGR {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .SP {
        padding: 4rem 0
    }

    .SPL {
        padding: 5rem 0
    }

    .PGR {
        grid-template-columns: 1fr
    }

    .CGR {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .BGR {
        grid-template-columns: 1fr
    }

    .CGR {
        grid-template-columns: 1fr
    }

    .SGR {
        grid-template-columns: 1fr 1fr
    }
}

#hero {
    background: var(--navy);
    padding-top: 3rem;
    padding-bottom: 4rem
}

.HC {
    width: 100%
}

.HC h3 {
    font-size: 1rem;
    color: var(--gold);
    margin: 1.6rem 0 .55rem;
    font-weight: 600Fd
}

.HC p:not(.HS):not(.HD) {
    color: var(--smoke);
    line-height: 1.8;
    font-size: .96rem;
    margin-bottom: .85rem;
    text-align: justify
}

.HC a {
    color: var(--gold)
}

.HB {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: rgba(212, 154, 61, .1);
    border: 1px solid rgba(212, 154, 61, .28);
    padding: .5rem 1.1rem .5rem .6rem;
    border-radius: 2rem;
    margin-bottom: 1.6rem
}

.HBI {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.HBI svg {
    width: 16px;
    height: 16px;
    color: var(--white)
}

.HBT {
    color: var(--gold);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase
}

.HT {
    font-family: var(--font-d);
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    margin-bottom: .8rem;
    text-align: center
}

.HS {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.3rem;
    line-height: 1.3;
    text-align: center
}

.HD {
    font-size: 1.25rem;
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 1.65rem;
    text-align: left
}

.HBR {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center
}

.HEX {
    display: none;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 154, 61, .18);
    color: var(--smoke);
    line-height: 1.8
}

.HEX.open {
    display: block
}

.HEX p {
    font-size: .96rem;
    margin-bottom: .85rem
}

.HEX p:last-of-type {
    margin-bottom: 0
}

.HEX h3 {
    font-family: var(--font-d);
    font-size: 1.15rem;
    color: var(--gold);
    margin: 1.6rem 0 .55rem;
    font-weight: 600
}

.HEX .BG {
    margin-top: 1.6rem
}