/* =========================================================
   WINDAARO CONTACT — GLASS + GOLD THEME
========================================================= */

.contact-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(198, 151, 63, 0.08),
            transparent 35%
        ),
        #070707;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.contact-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* .loader-logo {
    color: #fff;

    font-family: var(--font-heading);

    font-size: 42px;
    font-weight: 600;

    letter-spacing: 8px;

    text-shadow:
        0 0 25px rgba(198, 151, 63, 0.25);
} */

.loader-line {
    width: 180px;
    height: 1px;

    margin-top: 25px;

    background: rgba(255,255,255,0.12);

    overflow: hidden;
}

.loader-line span {
    display: block;

    width: 0;
    height: 100%;

    background: #c6973f;

    box-shadow:
        0 0 12px rgba(198,151,63,0.8);

    animation:
        loaderProgress 1s
        cubic-bezier(.65,0,.35,1)
        forwards;
}

.contact-loader p {
    margin-top: 15px;

    color: #777;

    font-size: 7px;

    letter-spacing: 4px;
}

@keyframes loaderProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* =========================================================
   HERO
========================================================= */

.contact-page-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #080808;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        grayscale(0.45)
        brightness(0.38)
        contrast(1.1);

    transform: scale(1.05);

    animation:
        heroImage 1.8s ease-out forwards;
}

@keyframes heroImage {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1.05);
    }
}


/* DARK GLASS OVERLAY */

.contact-hero-dark {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.94),
            rgba(5,5,5,0.58),
            rgba(5,5,5,0.78)
        );
}


/* ARCHITECTURAL GRID */

.contact-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(198,151,63,0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(198,151,63,0.055) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    opacity: 0.65;
}


/* HERO GLASS PANEL */

.contact-hero-content {
    position: relative;
    z-index: 5;

    width: min(1100px, 86%);

    margin: 0 auto;

    padding: 75px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 4px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.35),
        inset 0 1px rgba(255,255,255,0.08);
}

.hero-small-label {
    display: flex;
    align-items: center;

    gap: 15px;

    color: #d5aa61;

    font-size: 8px;

    letter-spacing: 4px;
}

.hero-small-label::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #c6973f;

    box-shadow:
        0 0 10px rgba(198,151,63,0.7);
}

.contact-hero-content h1 {
    margin: 28px 0 0;

    color: #fff;

    font-family: var(--font-heading);

    font-size: clamp(75px, 10vw, 145px);

    font-weight: 500;

    line-height: 0.82;

    letter-spacing: -7px;
}

.contact-hero-content h1 span {
    color: #c6973f;

    text-shadow:
        0 0 35px rgba(198,151,63,0.25);
}

.contact-hero-content > p {
    max-width: 440px;

    margin-top: 35px;

    color: rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.9;
}


/* HERO META */

.contact-hero-meta {
    position: absolute;

    right: 7%;
    bottom: 40px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 12px 18px;

    background:
        rgba(10,10,10,0.45);

    border:
        1px solid rgba(198,151,63,0.25);

    backdrop-filter: blur(10px);
}

.contact-hero-meta span {
    color: #c6973f;

    font-size: 10px;

    letter-spacing: 3px;
}

.contact-hero-meta div {
    width: 45px;
    height: 1px;

    background: #c6973f;
}

.contact-hero-meta small {
    color: #777;

    font-size: 7px;

    letter-spacing: 3px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,1,.36,1);
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-main-section {
    position: relative;

    padding: 110px 7%;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(198,151,63,0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(198,151,63,0.055),
            transparent 30%
        ),
        #090909;

    overflow: hidden;
}


/* GRID */

.contact-main-section::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


.contact-main-grid {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 35px;
}


/* =========================================================
   GLASS CARDS
========================================================= */

.contact-form-wrapper,
.company-info-wrapper {

    padding: 55px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    border:
        1px solid rgba(255,255,255,0.11);

    border-radius: 8px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 30px 90px rgba(0,0,0,0.35),
        inset 0 1px rgba(255,255,255,0.07);
}


/* GOLD CARD TOP LINE */

.contact-form-wrapper::before,
.company-info-wrapper::before {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-bottom: 30px;

    background: #c6973f;

    box-shadow:
        0 0 12px rgba(198,151,63,0.5);
}


/* =========================================================
   LABEL
========================================================= */

.section-top-label {
    display: flex;

    align-items: center;

    gap: 12px;
}

.section-top-label span {
    width: 25px;
    height: 1px;

    background: #c6973f;
}

.section-top-label p {
    margin: 0;

    color: #c6973f;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;
}


/* =========================================================
   HEADINGS
========================================================= */

.contact-form-wrapper h2,
.company-info-wrapper h2 {

    margin: 28px 0 0;

    color: #fff;

    font-family: var(--font-heading);

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -4px;
}

.contact-form-wrapper h2 span,
.company-info-wrapper h2 span {

    display: block;

    color: #c6973f;

    text-shadow:
        0 0 25px rgba(198,151,63,0.16);
}


.form-intro,
.company-intro {

    max-width: 440px;

    margin-top: 25px;

    color: #777;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   FORM
========================================================= */

.windaaro-contact-form {
    margin-top: 45px;
}

.windaaro-contact-form p {
    margin: 0 0 18px;
}

.windaaro-contact-form label {
    display: block;

    margin-bottom: 8px;

    color: #aaa;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.windaaro-contact-form input,
.windaaro-contact-form select,
.windaaro-contact-form textarea {

    width: 100%;

    padding: 16px;

    color: #fff;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.11);

    border-radius: 3px;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    backdrop-filter: blur(8px);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.windaaro-contact-form input::placeholder,
.windaaro-contact-form textarea::placeholder {
    color: #555;
}


.windaaro-contact-form input:focus,
.windaaro-contact-form select:focus,
.windaaro-contact-form textarea:focus {

    background:
        rgba(198,151,63,0.055);

    border-color:
        rgba(198,151,63,0.65);

    box-shadow:
        0 0 25px rgba(198,151,63,0.08);
}


.windaaro-contact-form textarea {

    min-height: 145px;

    resize: vertical;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 10px;

    padding: 15px 20px;

    color: #fff;

    background:
        rgba(198,151,63,0.12);

    border:
        1px solid rgba(198,151,63,0.55);

    cursor: pointer;

    font-family: inherit;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    overflow: hidden;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.contact-submit::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #c6973f;

    transform:
        translateX(-101%);

    transition:
        transform 0.35s ease;

    z-index: -1;
}


.contact-submit i {

    color: #d5aa61;

    font-size: 16px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-submit:hover::before {
    transform:
        translateX(0);
}


.contact-submit:hover {

    color: #111;

    transform:
        translateY(-3px);
}


.contact-submit:hover i {

    color: #111;

    transform:
        translate(3px,-3px);
}


/* =========================================================
   COMPANY DETAILS
========================================================= */

.company-detail {

    display: flex;

    gap: 17px;

    margin-top: 28px;

    padding: 15px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid rgba(255,255,255,0.055);

    backdrop-filter: blur(8px);
}


.detail-symbol {

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #c6973f;

    border:
        1px solid rgba(198,151,63,0.4);

    border-radius: 50%;

    box-shadow:
        0 0 18px rgba(198,151,63,0.06);
}


.company-detail span {

    display: block;

    margin-bottom: 6px;

    color: #c6973f;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 3px;
}


.company-detail p,
.company-detail a {

    margin: 0;

    color: #888;

    font-size: 11px;

    line-height: 1.7;
}


.company-detail a:hover {
    color: #d5aa61;
}


/* =========================================================
   MAP GLASS
========================================================= */

.contact-map {

    position: relative;

    height: 270px;

    margin-top: 35px;

    overflow: hidden;

    border:
        1px solid rgba(198,151,63,0.35);

    background: #111;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}


.contact-map::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.15),
            transparent 50%,
            rgba(5,5,5,0.25)
        );

    z-index: 2;
}


.contact-map iframe {

    width: 100%;

    height: 100%;

    display: block;

    border: 0;

    filter:
        grayscale(0.55)
        brightness(0.65)
        contrast(1.1);
}


.map-placeholder {

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(198,151,63,0.10),
            transparent 45%
        ),
        #101010;
}


.map-placeholder span {

    color: #c6973f;

    font-size: 9px;

    letter-spacing: 3px;
}


.map-placeholder p {

    margin-top: 10px;

    color: #666;

    font-size: 11px;
}


/* =========================================================
   DIRECTIONS
========================================================= */

.map-direction-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 10px;

    padding: 13px 18px;

    color: #fff;

    background:
        rgba(198,151,63,0.09);

    border:
        1px solid rgba(198,151,63,0.45);

    backdrop-filter: blur(10px);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.map-direction-btn i {

    color: #c6973f;

    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.map-direction-btn:hover {

    color: #111;

    background: #c6973f;

    transform:
        translateY(-2px);
}


.map-direction-btn:hover i {

    color: #111;

    transform:
        translate(3px,-3px);
}


/* =========================================================
   CTA
========================================================= */

.contact-cta-section {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #080808;

    border-top:
        1px solid rgba(198,151,63,0.2);
}


.cta-background {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.94),
            rgba(5,5,5,0.68)
        ),
        url("../images/contact-hero.jpg")
        center / cover no-repeat;

    filter:
        grayscale(0.45)
        brightness(0.6);
}


.cta-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(198,151,63,0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(198,151,63,0.055) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}


.cta-content {

    position: relative;

    z-index: 3;

    padding: 65px;

    text-align: center;

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid rgba(255,255,255,0.11);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.35);
}


.cta-content > span {

    color: #d5aa61;

    font-size: 8px;

    letter-spacing: 4px;
}


.cta-content h2 {

    margin: 22px 0 0;

    color: #fff;

    font-family: var(--font-heading);

    font-size: clamp(55px, 7vw, 90px);

    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -5px;
}


.cta-content h2 strong {

    display: block;

    color: #c6973f;

    font-weight: 500;

    text-shadow:
        0 0 30px rgba(198,151,63,0.18);
}


.cta-content p {

    margin-top: 25px;

    color: #777;

    font-size: 12px;
}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 30px;

    padding: 15px 23px;

    color: #111;

    background: #c6973f;

    border:
        1px solid #d5aa61;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.cta-button i {

    font-size: 15px;
}


.cta-button:hover {

    background: #fff;

    transform:
        translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-main-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .contact-page-hero {

        min-height: 560px;
    }


    .contact-hero-content {

        width: 90%;

        padding: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-hero-content {

        width: calc(100% - 40px);

        padding: 45px 25px;
    }


    .contact-hero-content h1 {

        font-size: 70px;

        letter-spacing: -5px;
    }


    .contact-hero-meta {

        right: 20px;

        bottom: 25px;
    }


    .contact-hero-meta small {

        display: none;
    }


    .contact-main-section {

        padding:
            75px 20px;
    }


    .contact-form-wrapper,
    .company-info-wrapper {

        padding: 30px 25px;

        border-radius: 6px;
    }


    .contact-form-wrapper h2,
    .company-info-wrapper h2 {

        font-size: 48px;
    }


    .contact-map {

        height: 230px;
    }


    .cta-content {

        width: calc(100% - 40px);

        padding: 45px 25px;
    }


    .cta-content h2 {

        font-size: 55px;

        letter-spacing: -4px;
    }

}


/* ==================================================
   FAQ — WINDAARO DARK THEME
================================================== */

.faq-section {

    position: relative;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(215, 168, 79, 0.055),
            transparent 30%
        ),
        #151515;

    color: var(--white);

    padding: 130px 7%;

    overflow: hidden;

}


/* ==================================================
   SUBTLE GRID
================================================== */

.faq-section::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    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: 52px 52px;

    opacity: .45;

}


/* ==================================================
   WRAPPER
================================================== */

.faq-wrapper {

    position: relative;

    z-index: 1;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 110px;

}


/* ==================================================
   HEADER
================================================== */

.faq-header {

    position: sticky;

    top: 130px;

    align-self: start;

}


.faq-header .section-label {

    color: var(--gold);

}


.faq-header h2 {

    margin-top: 22px;

    color: var(--white);

    font-family:
        var(--font-heading);

    font-size:
        clamp(45px, 5vw, 72px);

    font-weight: 500;

    line-height: .98;

    letter-spacing: -3px;

}


/* ==================================================
   FAQ LIST
================================================== */

.faq-list {

    border-top:
        1px solid var(--border-light);

}


.faq-item {

    border-bottom:
        1px solid var(--border);

    transition:
        border-color .3s ease;

}


.faq-item:hover {

    border-bottom-color:
        rgba(215, 168, 79, .45);

}


/* ==================================================
   QUESTION
================================================== */

.faq-item summary {

    list-style: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 28px 0;

    color: var(--white);

    font-family:
        var(--font-heading);

    font-size: 16px;

    font-weight: 500;

    line-height: 1.5;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


/* ==================================================
   PLUS ICON
================================================== */

.faq-icon {

    width: 38px;

    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(215, 168, 79, .55);

    border-radius: 50%;

    color: var(--gold);

    font-size: 22px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform .4s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


.faq-item:hover .faq-icon {

    border-color:
        var(--gold);

}


.faq-item[open] .faq-icon {

    transform:
        rotate(45deg);

    background:
        var(--gold);

    color:
        var(--black);

    border-color:
        var(--gold);

}


/* ==================================================
   ANSWER
================================================== */

.faq-answer {

    padding:
        0 75px 28px 0;

}


.faq-answer p {

    margin: 0;

    max-width: 650px;

    color:
        var(--white-soft);

    font-family:
        var(--font-main);

    font-size: 14px;

    line-height: 1.9;

}


/* ==================================================
   EMPTY STATE
================================================== */

.faq-empty {

    margin: 0;

    padding: 28px 0;

    color:
        var(--muted);

    font-size: 14px;

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {

    .faq-section {

        padding: 100px 7%;

    }


    .faq-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .faq-header {

        position: static;

    }


    .faq-header h2 {

        font-size: 48px;

        letter-spacing: -2px;

    }

}


@media (max-width: 600px) {

    .faq-section {

        padding: 80px 6%;

    }


    .faq-header h2 {

        font-size: 40px;

    }


    .faq-item summary {

        padding: 23px 0;

        font-size: 15px;

        gap: 20px;

    }


    .faq-icon {

        width: 34px;

        height: 34px;

        min-width: 34px;

        font-size: 19px;

    }


    .faq-answer {

        padding:
            0 45px 24px 0;

    }

}


.contact-final-cta {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 45px;

    padding: 17px 25px;

    border: 1px solid
        rgba(216,170,69,0.55);

    color: #ffffff;

    text-decoration: none;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        gap 0.4s ease;
}


.contact-final-cta:hover {
    gap: 40px;

    background: #d8aa45;

    color: #080808;
}











/* =========================================================
   CONTACT HERO — CINEMATIC PARALLAX
========================================================= */

.page-hero {
    position: relative;

    width: 100%;
    min-height: 78vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #080909;
}


/* =========================================================
   PARALLAX BACKGROUND
========================================================= */

.page-hero-bg {
    position: absolute;
    inset: -8% 0;

    z-index: 0;

    overflow: hidden;

    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.08);

    filter: saturate(0.78);

    transition:
        transform 1.5s cubic-bezier(.16,1,.3,1);
}


/* subtle zoom on page load */

.page-hero:hover .page-hero-bg img {
    transform: scale(1.12);
}


/* =========================================================
   CINEMATIC OVERLAY
========================================================= */

.page-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 7, 0.50),
            rgba(5, 7, 7, 0.28) 40%,
            rgba(5, 7, 7, 0.82) 100%
        );

    pointer-events: none;
}

.page-hero-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            transparent 20%,
            rgba(0,0,0,0.35) 100%
        );
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.page-hero-content {
    position: relative;

    z-index: 5;

    width: min(900px, 88%);

    margin: 0 auto;

    padding: 150px 0 120px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   LABEL
========================================================= */

.page-hero-label {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 28px;

    color: #d8aa45;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-hero-label::before,
.page-hero-label::after {
    content: "";

    width: 32px;
    height: 1px;

    background: rgba(216,170,69,0.65);
}


/* =========================================================
   TITLE
========================================================= */

.page-hero-content h1 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(
        58px,
        8vw,
        120px
    );

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -5px;

    color: #ffffff;

    text-shadow:
        0 10px 40px rgba(0,0,0,0.35);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.page-hero-content p {
    max-width: 560px;

    margin: 32px auto 0;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.65);

    text-wrap: balance;
}


/* =========================================================
   GOLD ACCENT
========================================================= */

.page-hero-content::after {
    content: "";

    width: 45px;
    height: 1px;

    margin-top: 38px;

    background: #d8aa45;

    box-shadow:
        0 0 15px rgba(216,170,69,0.35);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.page-hero-scroll {
    position: absolute;

    z-index: 6;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,0.42);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 3px;
}

.page-hero-scroll div {
    position: relative;

    width: 1px;
    height: 42px;

    overflow: hidden;

    background: rgba(255,255,255,0.15);
}

.page-hero-scroll div::after {
    content: "";

    position: absolute;

    left: 0;
    top: -100%;

    width: 1px;
    height: 50%;

    background: #d8aa45;

    animation:
        heroScroll 2s
        cubic-bezier(.77,0,.18,1)
        infinite;
}

@keyframes heroScroll {

    0% {
        top: -50%;
    }

    100% {
        top: 120%;
    }

}


/* =========================================================
   PARALLAX HOVER LIGHT
========================================================= */

.page-hero::before {
    content: "";

    position: absolute;

    z-index: 3;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216,170,69,0.07),
            transparent 65%
        );

    pointer-events: none;

    opacity: 0;

    transition:
        opacity 0.8s ease;
}

.page-hero:hover::before {
    opacity: 1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .page-hero {
        min-height: 70vh;
    }

    .page-hero-content {
        width: 90%;

        padding:
            130px 0
            100px;
    }

    .page-hero-content h1 {
        font-size: clamp(48px, 14vw, 76px);

        letter-spacing: -3px;
    }

    .page-hero-content p {
        max-width: 430px;

        font-size: 13px;
    }

    .page-hero-bg {
        inset: -5% 0;
    }

    .page-hero-bg img {
        transform: scale(1.15);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .page-hero {
        min-height: 65vh;
    }

    .page-hero-content {
        padding:
            120px 0
            90px;
    }

    .page-hero-label {
        gap: 10px;

        letter-spacing: 3px;
    }

    .page-hero-label::before,
    .page-hero-label::after {
        width: 20px;
    }

    .page-hero-content h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .page-hero-content p {
        margin-top: 24px;

        font-size: 12px;

        line-height: 1.7;
    }

}