body.landing{
    background:#0D0D0F;
    color:#fff;
}

body.landing #header{
    background:rgba(13,13,15,.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

#banner{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)),
        url("../images/ban.jpg");
    background-size:cover;
    background-position:center;
}

#banner h2{
    font-size:clamp(3rem,8vw,7rem);
    letter-spacing:.08em;
    color:#fff;
}

#banner p{
    max-width:760px;
    margin:0 auto 40px;
    color:#EDEDED;
    font-size:1.25rem;
}

.wrapper{
    background:#0D0D0F;
}

.wrapper.style1,
.wrapper.style2{
    background:
        radial-gradient(circle at top left, rgba(184,115,51,.10), transparent 35%),
        #0D0D0F;
}

header.major h2,
.feature h4{
    color:#B87333;
}

header.major p,
.feature header p,
p{
    color:#EDEDED;
}

.image.captioned{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.image.captioned img{
    border-radius:24px 24px 0 0;
}

.image.captioned h3{
    background:transparent !important;
    color:#fff;
    box-shadow:none !important;
}

.feature{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:28px;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.button{
    border-radius:18px !important;
    background:rgba(255,255,255,.06) !important;
    border:1px solid rgba(255,255,255,.12) !important;
    color:#fff !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.button.special{
    background:linear-gradient(
        135deg,
        rgba(184,115,51,.95),
        rgba(217,145,82,.85)
    ) !important;
    color:#111 !important;
    border:1px solid rgba(217,145,82,.55) !important;
}

.button:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.wrapper.style3{
    background:
        linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.78)),
        url("../images/ban.jpg");
    background-size:cover;
    background-position:center;
}

#footer{
    background:#09090B;
    color:#aaa;
    border-top:1px solid rgba(255,255,255,.08);
}

/* Header refinement */

body.landing #header{
    height:86px;
    line-height:86px;
    padding:0 32px;
}

body.landing #header h1{
    display:flex;
    align-items:center;
    height:86px;
}

body.landing #header h1 img{
    height:72px;
    width:auto;
}

body.landing #nav ul{
    display:flex;
    align-items:center;
    gap:28px;
}

body.landing #nav a{
    color:rgba(255,255,255,.82) !important;
    letter-spacing:.08em;
    font-size:.78rem;
}

body.landing #nav a:hover{
    color:#D99152 !important;
}

/* Hero polish */

#banner{
    position:relative;
    overflow:hidden;
}

#banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 35%, rgba(184,115,51,.18), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,.06), transparent 30%);
    pointer-events:none;
}

#banner h2,
#banner p,
#banner .actions{
    position:relative;
    z-index:2;
}

#banner h2{
    text-transform:uppercase;
    text-shadow:0 20px 60px rgba(0,0,0,.55);
}

#banner p{
    text-transform:none;
    line-height:1.8;
}

/* Section spacing */

.wrapper{
    padding:110px 0 90px 0;
}

.wrapper header.major{
    margin-bottom:70px;
}

.wrapper header.major h2{
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.wrapper header.major p{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
}

/* Intro section glass feel */

#one .container{
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:70px 60px;
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    box-shadow:0 30px 90px rgba(0,0,0,.28);
}

/* Image card polish */

.image.captioned{
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.image.captioned:hover{
    transform:translateY(-8px);
    border-color:rgba(184,115,51,.35);
    box-shadow:
        0 35px 100px rgba(0,0,0,.45),
        0 0 35px rgba(184,115,51,.12);
}

.image.captioned img{
    height:420px;
    object-fit:cover;
}

/* Services / feature grid */

.feature-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px;
}

.feature-grid .feature{
    width:auto !important;
    float:none !important;
    display:flex !important;
    align-items:center;
    gap:28px;
    min-height:260px;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.feature-grid .feature:hover{
    transform:translateY(-6px);
    border-color:rgba(184,115,51,.35);
    box-shadow:
        0 30px 80px rgba(0,0,0,.35),
        0 0 30px rgba(184,115,51,.10);
}

.feature-grid .feature .image{
    width:120px !important;
    min-width:120px;
    margin:0 !important;
    float:none !important;
}

.feature-grid .feature .content{
    width:auto !important;
    float:none !important;
    margin:0 !important;
    text-align:left !important;
}

.feature-grid .feature:nth-child(odd) .content,
.feature-grid .feature:nth-child(odd) .image,
.feature-grid .feature:nth-child(even) .content,
.feature-grid .feature:nth-child(even) .image{
    float:none !important;
    margin:0 !important;
    text-align:left !important;
}

.image.rounded img{
    border:1px solid rgba(184,115,51,.28) !important;
    padding:4px;
    background:rgba(255,255,255,.04);
}

/* CTA section */

#four{
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}

#four .container{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    border-radius:32px;
    padding:70px 40px;
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    box-shadow:0 35px 100px rgba(0,0,0,.4);
}

#four h2{
    color:#fff !important;
}

#four p{
    color:#EDEDED !important;
}

/* Button refinement */

.actions{
    margin-top:34px;
}

.actions .button{
    min-width:190px;
    height:56px;
    line-height:56px !important;
    padding:0 28px !important;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

/* Footer polish */

#footer{
    padding:70px 0 55px 0;
}

#footer .icons a{
    color:#D99152 !important;
}

#footer .icons a:hover{
    color:#fff !important;
    transform:translateY(-2px);
}

/* Responsive */

@media(max-width:980px){

    body.landing #header{
        height:auto;
        line-height:normal;
        padding:22px 20px;
    }

    body.landing #header h1{
        height:auto;
        position:relative;
        left:auto;
        top:auto;
        justify-content:center;
        margin-bottom:16px;
    }

    body.landing #nav{
        position:relative;
        right:auto;
        top:auto;
        text-align:center;
    }

    body.landing #nav ul{
        justify-content:center;
        flex-wrap:wrap;
        gap:18px;
    }

    #one .container{
        padding:45px 28px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .image.captioned img{
        height:320px;
    }
}

@media(max-width:600px){

    #banner{
        min-height:85vh;
        padding:140px 22px 80px;
    }

    #banner h2{
        font-size:2.8rem;
    }

    #banner p{
        font-size:1rem;
    }

    .wrapper{
        padding:75px 0 65px 0;
    }

    .feature-grid .feature{
        flex-direction:column;
        text-align:center;
    }

    .feature-grid .feature .content{
        text-align:center !important;
    }

    .actions .button{
        width:100%;
        margin-bottom:14px;
    }

    #four .container{
        padding:50px 24px;
    }
}

body.landing #header{
    border-bottom:none !important;
    box-shadow:none !important;
}

/* LANGUAGE SWITCHER */

.lang-menu{
    position:relative;
}

.lang-button{
    height:42px;
    padding:0 18px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    color:#fff;
    cursor:pointer;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    font-weight:600;
    letter-spacing:.04em;
}

.lang-dropdown{
    position:absolute;
    top:calc(100% + 12px);
    right:0;
    min-width:180px;
    padding:10px;
    border-radius:18px;
    background:rgba(18,18,22,.94);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    box-shadow:0 25px 70px rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:.25s ease;
    z-index:99999;
}

.lang-menu:hover .lang-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.lang-dropdown a{
    display:block !important;
    padding:12px 14px;
    border-radius:12px;
    color:#fff !important;
    text-decoration:none;
    font-size:.85rem !important;
}

.lang-dropdown a:hover{
    background:rgba(184,115,51,.14);
    color:#D99152 !important;
}

/* ABOUT PAGE */

.about-page{
    background:#0D0D0F;
}

.about-hero{
    min-height:70vh !important;
}

.about-glass{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    padding:70px 60px;
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    box-shadow:0 35px 100px rgba(0,0,0,.35);
}

.about-image{
    overflow:hidden;
    border-radius:28px;
    margin-bottom:45px;
    border:1px solid rgba(255,255,255,.08);
}

.about-image img{
    border-radius:28px;
    max-height:520px;
    width:100%;
    object-fit:cover;
}

.about-page .feature{
    min-height:auto !important;
    justify-content:center;
    text-align:center;
}

.about-page .feature h4{
    color:#fff;
    margin:0;
}

@media(max-width:700px){

    .about-glass{
        padding:42px 26px;
        border-radius:24px;
    }

}

.internal-access{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:18px;
    height:18px;

    color:rgba(255,255,255,.18);

    font-size:18px;
    line-height:1;

    text-decoration:none;

    transition:.25s ease;
}

.internal-access:hover{
    color:#B87333;
    transform:scale(1.25);
}


/*======================================================
    FOOTER LEGAL LINKS
======================================================*/

.footer-legal{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 16px;

    margin-top:22px;

    font-size:.72rem;
    letter-spacing:.04em;
}

.footer-legal li{
    color:rgba(255,255,255,.42);
}

.footer-legal a{
    color:rgba(255,255,255,.42);
    text-decoration:none;
    transition:.25s ease;
}

.footer-legal a:hover{
    color:#B87333;
}

.internal-access{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:16px;
    height:16px;

    color:rgba(255,255,255,.16) !important;

    font-size:18px;
    line-height:1;

    text-decoration:none;

    transition:.25s ease;
}

.internal-access:hover{
    color:#B87333 !important;
    transform:scale(1.25);
}

/*======================================================
    LEGAL PAGES
======================================================*/

.legal-page{
    background:#0D0D0F;
    color:#fff;
}

.legal-hero{
    min-height:58vh;
    padding:150px 7% 80px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        radial-gradient(circle at 50% 10%, rgba(184,115,51,.16), transparent 34%),
        linear-gradient(180deg, #111114 0%, #0D0D0F 100%);
}

.legal-card{
    width:min(900px,100%);
    text-align:center;

    padding:58px 48px;

    border-radius:34px;

    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(26px);
    -webkit-backdrop-filter:blur(26px);

    box-shadow:0 35px 110px rgba(0,0,0,.42);
}

.legal-kicker{
    display:block;

    margin-bottom:18px;

    color:#B87333;

    font-size:.74rem;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.legal-card h1{
    margin:0 0 22px;

    color:#fff;

    font-size:clamp(2.4rem,5vw,4.8rem);
    line-height:1;
}

.legal-card p{
    max-width:680px;
    margin:0 auto 18px;

    color:rgba(255,255,255,.72);

    font-size:1rem;
    line-height:1.75;
}

.legal-card small{
    color:rgba(255,255,255,.42);
    font-size:.78rem;
}

.legal-content{
    padding:80px 7% 110px;
}

.legal-wrapper{
    width:min(920px,100%);
    margin:0 auto;
}

.legal-section{
    padding:34px 0;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.legal-section h2{
    margin:0 0 14px;

    color:#B87333;

    font-size:1.15rem;
    line-height:1.35;
}

.legal-section p{
    margin:0;

    color:rgba(255,255,255,.74);

    font-size:.96rem;
    line-height:1.8;
}

@media(max-width:700px){

    .legal-hero{
        min-height:auto;
        padding:130px 22px 60px;
    }

    .legal-card{
        padding:42px 26px;
        border-radius:26px;
    }

    .legal-content{
        padding:60px 24px 90px;
    }

}