@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Manrope:wght@400;500;600;700&display=swap');


/* =========================================================
   WINDAARO — GLOBAL STYLES
========================================================= */

:root {
    --black: #151515;
    --black-light: #1d1d1d;
    --black-soft: #242424;

    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.72);
    --muted: #8e8e8e;

    --gold: #d7a84f;
    --gold-light: #e6c27d;

    --border: rgba(255, 255, 255, 0.10);
    --border-light: rgba(255, 255, 255, 0.16);

    --font-main: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;

    --header-height: 92px;
    --social-width: 72px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-main);
}

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

button {
    border: 0;
    outline: 0;
}

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


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

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

    background: var(--black);

    pointer-events: none;

    animation: loader-hide 0.8s ease 1.2s forwards;
}

.loader-logo {
    color: var(--gold);

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

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

    letter-spacing: 9px;

    animation: loader-logo 0.8s ease forwards;
}

@keyframes loader-logo {
    0% {
        opacity: 0;
        transform: translateY(12px);
        letter-spacing: 18px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 9px;
    }
}

@keyframes loader-hide {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}



/* =========================================================
   WINDAARO COOKIE CONSENT
========================================================= */

.cookie-consent {
    position: fixed;

    left: 50%;
    bottom: 24px;

    width: min(1050px, calc(100% - 40px));

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

    opacity: 0;
    visibility: hidden;

    z-index: 999999;

    background:
        rgba(21, 21, 21, 0.96);

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

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

    backdrop-filter:
        blur(18px);

    transition:
        transform 0.6s cubic-bezier(.22, .61, .36, 1),
        opacity 0.4s ease,
        visibility 0.4s ease;
}


/* =========================================================
   ACTIVE
========================================================= */

.cookie-consent.active {

    transform:
        translate(-50%, 0);

    opacity: 1;

    visibility: visible;
}


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

.cookie-consent-content {

    min-height: 92px;

    display: flex;

    align-items: center;

    gap: 24px;

    padding: 20px 24px;
}


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

.cookie-consent-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

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

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

    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   TEXT
========================================================= */

.cookie-consent-text {

    flex: 1;

    min-width: 0;
}


.cookie-consent-eyebrow {

    margin-bottom: 6px;

    color: var(--gold);

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

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.cookie-consent-text p {

    margin: 0;

    color: var(--white-soft);

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

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   ACTIONS
========================================================= */

.cookie-consent-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   BUTTON BASE
========================================================= */

.cookie-btn {

    height: 42px;

    padding: 0 18px;

    display: inline-flex;

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

    gap: 10px;

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

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

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    cursor: pointer;

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


/* =========================================================
   REJECT
========================================================= */

.cookie-btn-reject {

    background: transparent;

    color: var(--muted);
}


.cookie-btn-reject:hover {

    color: var(--white);

    border-color: var(--white-soft);
}


/* =========================================================
   ACCEPT
========================================================= */

.cookie-btn-accept {

    background: var(--gold);

    border-color: var(--gold);

    color: #151515;
}


.cookie-btn-accept span {

    font-size: 14px;

    font-weight: 400;
}


.cookie-btn-accept:hover {

    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: translateY(-2px);
}


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

@media (max-width: 700px) {

    .cookie-consent {

        bottom: 10px;

        width: calc(100% - 20px);

        max-width: none;
    }


    .cookie-consent-content {

        display: grid;

        grid-template-columns: 36px 1fr;

        align-items: start;

        gap: 12px;

        padding: 16px;
    }


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

    .cookie-consent-icon {

        width: 36px;
        height: 36px;

        font-size: 16px;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .cookie-consent-text {

        width: 100%;

        min-width: 0;
    }


    .cookie-consent-eyebrow {

        margin-bottom: 5px;

        font-size: 7px;

        letter-spacing: 2.5px;
    }


    .cookie-consent-text p {

        margin: 0;

        font-size: 11px;

        line-height: 1.5;
    }


    /* =====================================================
       BUTTONS
    ===================================================== */

    .cookie-consent-actions {

        grid-column: 1 / -1;

        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1.4fr;

        gap: 8px;
    }


    .cookie-btn {

        width: 100%;

        min-width: 0;

        height: 40px;

        padding: 0 8px;

        font-size: 8px;

        letter-spacing: 1px;

        white-space: nowrap;
    }

}


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

@media (max-width: 420px) {

    .cookie-consent {

        bottom: 8px;

        width: calc(100% - 16px);
    }


    .cookie-consent-content {

        grid-template-columns: 32px 1fr;

        gap: 10px;

        padding: 14px;
    }


    .cookie-consent-icon {

        width: 32px;
        height: 32px;

        font-size: 14px;
    }


    .cookie-consent-eyebrow {

        font-size: 6.5px;

        letter-spacing: 2px;
    }


    .cookie-consent-text p {

        font-size: 10px;

        line-height: 1.45;
    }


    .cookie-consent-actions {

        gap: 6px;
    }


    .cookie-btn {

        height: 38px;

        padding: 0 6px;

        font-size: 7px;

        letter-spacing: 0.8px;
    }


    .cookie-btn-accept {

        gap: 5px;
    }


    .cookie-btn-accept span {

        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   320px – 360px
========================================================= */

@media (max-width: 360px) {

    .cookie-consent {

        bottom: 6px;

        width: calc(100% - 12px);
    }


    .cookie-consent-content {

        grid-template-columns: 28px 1fr;

        gap: 8px;

        padding: 12px;
    }


    .cookie-consent-icon {

        width: 28px;
        height: 28px;

        font-size: 12px;
    }


    .cookie-consent-eyebrow {

        font-size: 6px;

        letter-spacing: 1.7px;
    }


    .cookie-consent-text p {

        font-size: 9px;

        line-height: 1.4;
    }


    .cookie-consent-actions {

        grid-template-columns: 1fr 1.3fr;

        gap: 5px;
    }


    .cookie-btn {

        height: 36px;

        padding: 0 4px;

        font-size: 6.5px;

        letter-spacing: 0.5px;
    }


    .cookie-btn-accept span {

        font-size: 11px;
    }

}

/* =========================================================
   ARCHITECTURAL GRID
========================================================= */

.site-grid {
    position: fixed;
    inset: 0;

    z-index: 2;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    pointer-events: none;
}

.site-grid span {
    border-right: 1px solid rgba(255, 255, 255, 0.035);
}


/* =========================================================
   SOCIAL RAIL
========================================================= */

.social-rail {
    position: fixed;

    left: 0;
    top: 0;
    bottom: 0;

    width: var(--social-width);

    z-index: 500;

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

    gap: 25px;

    background: rgba(15, 15, 15, 0.72);

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

    backdrop-filter: blur(8px);
}

.social-line {
    width: 1px;
    height: 55px;

    margin-bottom: 5px;

    background: var(--gold);
}

.social-rail a {
    width: 30px;
    height: 30px;

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

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

    font-size: 14px;

    transition: all 0.3s ease;
}

.social-rail a:hover {
    color: var(--gold);

    transform: translateY(-3px);
}


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

.main-header {
    position: absolute;

    top: 0;
    left: var(--social-width);
    right: 0;

    height: var(--header-height);

    z-index: 400;

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

    background: rgba(18, 18, 18, 0.48);

    backdrop-filter: blur(12px);
    position:sticky;
    top:0;
}

.header-inner {
    width: 100%;
    height: 100%;

    padding: 0 5%;

    display: flex;
    align-items: center;
}


/* =========================================================
   WINDAARO LOGO
========================================================= */

.brand {
    width: 230px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    display: block;
    width: 230px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 40px;
    
}

.main-nav a {
    position: relative;

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

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

    letter-spacing: 3px;

    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


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

.header-phone {
    margin-left: 55px;

    padding-left: 28px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid var(--border);
}

.header-phone span {
    margin-bottom: 5px;

    color: #777;

    font-size: 7px;
    letter-spacing: 2px;
}

.header-phone a {
    color: var(--gold-light);

    font-size: 9px;
    letter-spacing: 1px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    margin-left: auto;

    background: transparent;

    cursor: pointer;

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

    gap: 6px;
}

.menu-toggle span {
    display: block;

    width: 26px;
    height: 1px;

    background: var(--white);

    transition: 0.3s ease;
}

.menu-toggle span:nth-child(2) {
    width: 18px;
}


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

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 9990;

    background: var(--black);

    opacity: 0;
    visibility: hidden;

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

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    min-height: 100vh;

    padding: 100px 35px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-close {
    position: absolute;

    top: 28px;
    right: 28px;

    width: 42px;
    height: 42px;

    background: transparent;

    color: var(--white);

    font-size: 20px;

    cursor: pointer;
}

.mobile-menu-label {
    margin-bottom: 35px;

    color: var(--gold);

    font-size: 8px;
    letter-spacing: 4px;
}

.mobile-menu-inner a {
    padding: 18px 0;

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

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

    font-size: 28px;
    font-weight: 500;

    letter-spacing: 2px;
}

.mobile-menu-inner a span {
    display: inline-block;

    width: 48px;

    color: var(--gold);

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

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================================
   MAIN
========================================================= */

main {
    position: relative;
    z-index: 3;
}

/* =========================================================
   WINDAARO HERO — EXACT CINEMATIC STYLE
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 760px;

    overflow: hidden;

    background: #090b0b;
}


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

.hero-image {
    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transform: scale(1.01);
}


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

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

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 10, 10, 0.98) 0%,
            rgba(7, 10, 10, 0.94) 12%,
            rgba(7, 10, 10, 0.78) 30%,
            rgba(7, 10, 10, 0.48) 48%,
            rgba(7, 10, 10, 0.18) 72%,
            rgba(7, 10, 10, 0.08) 100%
        );

    pointer-events: none;
}


/* bottom darkness */

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

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(4, 6, 6, 0.88) 0%,
            rgba(4, 6, 6, 0.28) 30%,
            transparent 65%
        );
}


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

.hero-content {
    position: absolute;

    z-index: 10;

    left: 9.2%;

    top: 40%;

    transform: translateY(-43%);

    width: 650px;
}


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

.hero-label {
    display: flex;

    align-items: center;

    gap: 26px;

    margin-bottom: 42px;

    color: #d7a84f;

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

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero-label span {
    display: block;

    width: 48px;
    height: 2px;

    background: #d7a84f;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.hero h1 {
    margin: 0;

    color: #ffffff;

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

    font-size: clamp(68px, 6.8vw, 108px);

    font-weight: 600;

    line-height: 0.90;

    letter-spacing: -4px;

    text-transform: uppercase;
}

.hero h1 strong {
    color: #d7a84f;

    font-weight: 600;
}


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

.hero-description {
    margin: 38px 0 0;

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

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

    font-size: 16px;

    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   BUTTON AREA
========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 26px;

    margin-top: 25px;
}


/* =========================================================
   BUTTON COMMON
========================================================= */

.hero-button {
    width: 240px;
    height: 54px;

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

    padding: 0 23px;

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

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    transition:
        all 0.35s ease;
}

.hero-button b {
    font-size: 20px;

    font-weight: 400;

    transition:
        transform 0.35s ease;
}


/* =========================================================
   GOLD BUTTON
========================================================= */

.hero-button-primary {
    background: #d7a84f;

    border: 1px solid #d7a84f;

    color: #111111;
}

.hero-button-primary:hover {
    background: #e6c27d;

    border-color: #e6c27d;

    transform: translateY(-3px);
}

.hero-button-primary:hover b {
    transform: translate(4px, -4px);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.hero-button-secondary {
    background: rgba(10, 10, 10, 0.12);

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

    color: #ffffff;

    backdrop-filter: blur(5px);
}

.hero-button-secondary:hover {
    background: rgba(215, 168, 79, 0.95);

    border-color: #d7a84f;

    color: #111111;

    transform: translateY(-3px);
}

.hero-button-secondary:hover b {
    transform: translate(4px, -4px);
}


/* =========================================================
   SOCIAL RAIL
========================================================= */

.hero-social {
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    z-index: 20;

    width: 78px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 25px;

    background: rgba(5, 8, 8, 0.68);

    border-right: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(8px);
}

.hero-social a {
    display: flex;

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

    width: 30px;
    height: 30px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 18px;

    font-weight: 600;

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

.hero-social a:hover {
    color: #d7a84f;

    transform: translateY(-3px);
}


.hero-social-line {
    width: 1px;

    height: 78px;

    margin-top: 5px;

    background:
        linear-gradient(
            to bottom,
            #d7a84f,
            rgba(215, 168, 79, 0.15)
        );
}


.hero-social > span {
    color: #d7a84f;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: 4px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


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

.hero-scroll {
    position: absolute;

    right: 9.2%;
    bottom: 80px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 22px;
}

.hero-scroll > span {
    color: rgba(255, 255, 255, 0.82);

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

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 4px;
}


.scroll-track {
    position: relative;

    width: 1px;
    height: 52px;

    background: rgb(197, 127, 29);
}


.scroll-ball {
    position: absolute;

    left: 50%;
    top: 0;

    width: 8px;
    height: 8px;

    border: 1px solid #ffffff;

    border-radius: 50%;

    transform: translateX(-50%);

    animation:
        scroll-animation 2s ease-in-out infinite;
}


@keyframes scroll-animation {

    0% {
        top: 0;

        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        top: 44px;

        opacity: 0;
    }
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1600px) {

    .hero-content {
        left: 9%;

        width: 720px;
    }

    .hero h1 {
        font-size: 112px;
    }

    .hero-description {
        font-size: 17px;
    }

}


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

@media (max-width: 1100px) {

    .hero-content {
        left: 11%;

        width: 600px;
    }

    .hero h1 {
        font-size: 75px;
    }

    .hero-social {
        width: 65px;
    }

    .hero-button {
        width: 210px;
    }

}


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

@media (max-width: 900px) {

    .hero {
        min-height: 760px;

        height: calc(100vh - 78px);
    }

    .hero-social {
        display: none;
    }

    .hero-content {
        left: 0;

        top: 50%;

        width: 100%;

        padding: 0 25px;

        transform: translateY(-42%);
    }

    .hero-label {
        margin-bottom: 28px;

        gap: 15px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .hero-label span {
        width: 30px;
    }

    .hero h1 {
        font-size: clamp(48px, 12vw, 68px);

        line-height: 0.92;

        letter-spacing: -3px;
    }

    .hero-description {
        margin-top: 27px;

        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 30px;
    }

    .hero-button {
        width: 100%;
    }

    .hero-scroll {
        left: 25px;

        bottom: 20px;

        gap: 15px;
    }

    .hero-scroll > span {
        font-size: 6px;

        letter-spacing: 2.5px;
    }

    .scroll-track {
        height: 40px;
    }

}


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

@media (max-width: 480px) {

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 12px;
    }

}
/* =========================================================
   ABOUT WINDAARO — ARCHITECTURAL SECTION
========================================================= */

.intro-section {
    position: relative;

    min-height: 720px;

    padding: 125px 9% 80px;

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

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
}


/* =========================================================
   GIANT BACKGROUND NUMBER
========================================================= */

.intro-bg-number {
    position: absolute;

    right: -15px;
    top: 40px;

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

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

    font-size: clamp(300px, 35vw, 560px);

    font-weight: 600;

    line-height: 0.8;

    letter-spacing: -35px;

    user-select: none;

    pointer-events: none;
}


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

.intro-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 25px;

    color: #d7a84f;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 4px;
}

.intro-line {
    display: block;

    width: 50px;
    height: 1px;

    background: #d7a84f;
}


/* =========================================================
   MAIN GRID
========================================================= */

.intro-grid {
    position: relative;

    z-index: 2;

    max-width: 1350px;

    margin: 100px auto 0;

    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 100px;

    align-items: end;
}


/* =========================================================
   LEFT
========================================================= */

.intro-left {
    position: relative;
}

.intro-eyebrow {
    margin-bottom: 22px;

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

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 5px;
}

.intro-left h2 {
    margin: 0;

    max-width: 850px;

    color: #ffffff;

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

    font-size: clamp(70px, 8vw, 125px);

    font-weight: 600;

    line-height: 0.84;

    letter-spacing: -7px;

    text-transform: uppercase;
}

.intro-left h2 span {
    display: block;

    color: #d7a84f;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.intro-right {
    max-width: 450px;

    padding-bottom: 5px;
}

.intro-description {
    margin: 0;

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

    font-size: 15px;

    line-height: 1.9;
}

.intro-description.small {
    margin-top: 25px;

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

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   LINK
========================================================= */

.intro-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 35px;

    margin-top: 42px;

    padding-bottom: 13px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 3px;

    border-bottom: 1px solid rgba(215, 168, 79, 0.65);

    transition: all 0.35s ease;
}

.intro-link b {
    color: #d7a84f;

    font-size: 19px;

    font-weight: 400;

    transition: transform 0.35s ease;
}

.intro-link:hover {
    color: #d7a84f;

    padding-left: 8px;
}

.intro-link:hover b {
    transform: translate(5px, -5px);
}


/* =========================================================
   BOTTOM STATS
========================================================= */

.intro-bottom {
    position: relative;

    z-index: 3;

    max-width: 1350px;

    margin: 110px auto 0;

    padding-top: 30px;

    display: flex;

    align-items: center;

    gap: 80px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.intro-stat {
    display: flex;

    align-items: center;

    gap: 18px;
}

.intro-stat strong {
    color: #d7a84f;

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

    font-size: 16px;

    font-weight: 500;
}

.intro-stat span {
    color: rgba(255, 255, 255, 0.38);

    font-size: 7px;

    font-weight: 500;

    letter-spacing: 3px;
}


/* =========================================================
   DECORATIVE GOLD LINE
========================================================= */

.intro-section::before {
    content: "";

    position: absolute;

    left: 9%;

    bottom: 0;

    width: 180px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7a84f,
            transparent
        );
}


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

@media (max-width: 1000px) {

    .intro-section {
        padding: 110px 7% 70px;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        margin-top: 80px;
    }

    .intro-right {
        max-width: 600px;
    }

    .intro-bottom {
        margin-top: 80px;

        gap: 40px;
    }

}


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

@media (max-width: 600px) {

    .intro-section {
        min-height: auto;

        padding: 90px 25px 60px;
    }

    .intro-bg-number {
        right: -20px;

        top: 80px;

        font-size: 250px;

        letter-spacing: -20px;
    }

    .intro-top {
        gap: 15px;

        font-size: 7px;

        letter-spacing: 3px;
    }

    .intro-line {
        width: 30px;
    }

    .intro-grid {
        margin-top: 70px;

        gap: 50px;
    }

    .intro-eyebrow {
        margin-bottom: 18px;

        font-size: 7px;

        letter-spacing: 3px;
    }

    .intro-left h2 {
        font-size: 57px;

        line-height: 0.88;

        letter-spacing: -3px;
    }

    .intro-description {
        font-size: 13px;

        line-height: 1.8;
    }

    .intro-description.small {
        font-size: 11px;
    }

    .intro-link {
        margin-top: 30px;
    }

    .intro-bottom {
        margin-top: 70px;

        padding-top: 25px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;
    }

}





/* =========================================================
   PRODUCT ZIGZAG
========================================================= */

.product-zigzag {
    position: relative;

    width: min(1400px, 92vw);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(450px, 1.15fr);

    gap: clamp(60px, 9vw, 150px);

    align-items: start;

    padding: 120px 0 180px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.product-zigzag-content {

    position: sticky;

    top: 110px;

    align-self: start;

    height: fit-content;

    padding: 30px 0;

    z-index: 10;
}


/* Large section number */

.product-section-number {

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

    font-size: clamp(100px, 13vw, 190px);

    line-height: .75;

    letter-spacing: -10px;

    color: rgba(255,255,255,.055);

    margin-bottom: -20px;

    user-select: none;

    pointer-events: none;
}


/* Category */

.product-category-label {

    margin: 0 0 18px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;
}


/* Heading */

.product-zigzag-content h3 {

    margin: 0;

    color: #fff;

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

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

    line-height: .85;

    letter-spacing: -5px;

    text-transform: uppercase;
}


/* Gold line */

.product-title-line {

    width: 80px;

    height: 1px;

    margin: 35px 0;

    background: linear-gradient(
        90deg,
        var(--gold),
        transparent
    );
}


/* Description */

.product-zigzag-description {

    max-width: 470px;

    margin: 0 0 20px;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.9;
}


.product-zigzag-description.secondary {

    color: rgba(255,255,255,.35);
}


/* Button */

.product-zigzag-content .products-button {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 25px;

    padding: 17px 24px;

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

    color: #fff;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    text-decoration: none;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.product-zigzag-content .products-button span {

    color: var(--gold);

    font-size: 18px;

    transition:
        transform .35s ease;
}


.product-zigzag-content .products-button:hover {

    background: rgba(215,168,79,.08);

    border-color: var(--gold);

    transform: translateX(5px);
}


.product-zigzag-content .products-button:hover span {

    transform: translateX(6px);
}


/* =========================================================
   RIGHT SHOWCASE
========================================================= */

.product-zigzag-showcase {

    position: relative;

    width: 100%;

    min-width: 0;
}


/* Cards are vertical */

.product-card-stack {

    display: flex;

    flex-direction: column;

    gap: clamp(70px, 9vw, 150px);

    width: 100%;
}


/* =========================================================
   3D PRODUCT CARD
========================================================= */

.product-3d-card {

    position: relative;

    width: 100%;

    min-height: clamp(420px, 55vw, 720px);

    transform:
        perspective(1400px)
        rotateY(-5deg)
        translateZ(0);

    transform-origin: center center;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .8s ease;

    will-change: transform;

    overflow: hidden;

    background: #111;

    border: 1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 40px 100px rgba(0,0,0,.45);
}


/* Slight alternating 3D angle */

.product-3d-card:nth-child(even) {

    transform:
        perspective(1400px)
        rotateY(5deg);
}


/* Hover */

.product-3d-card:hover {

    transform:
        perspective(1400px)
        rotateY(0deg)
        translateY(-10px)
        scale(1.015);

    box-shadow:
        0 50px 120px rgba(0,0,0,.6);
}


.product-3d-card:nth-child(even):hover {

    transform:
        perspective(1400px)
        rotateY(0deg)
        translateY(-10px)
        scale(1.015);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.product-card-image {

    position: absolute;

    inset: 0;

    overflow: hidden;
}


.product-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}


.product-3d-card:hover
.product-card-image img {

    transform: scale(1.06);
}


/* =========================================================
   CARD OVERLAY
========================================================= */

.product-card-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to bottom,
            transparent 40%,
            rgba(0,0,0,.15) 55%,
            rgba(0,0,0,.92) 100%
        ),

        linear-gradient(
            120deg,
            rgba(215,168,79,.08),
            transparent 40%
        );

    pointer-events: none;
}


/* =========================================================
   CARD INFO
========================================================= */

.product-card-info {

    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 30px;

    z-index: 5;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}


.product-card-category {

    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.product-card-info h4 {

    margin: 0;

    color: #fff;

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

    font-size: clamp(28px, 3vw, 48px);

    line-height: .95;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.product-card-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

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

    color: var(--gold);

    font-size: 20px;

    transition:
        background .35s ease,
        transform .35s ease;
}


.product-3d-card:hover
.product-card-arrow {

    background: var(--gold);

    color: #080808;

    transform: rotate(45deg);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.product-card-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255,255,255,.2);

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

    font-size: 30px;

    letter-spacing: 8px;
}


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

.products-empty {

    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.08);

    text-align: center;
}


.products-empty span {

    color: var(--gold);

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

    font-size: 50px;
}


.products-empty p {

    color: rgba(255,255,255,.4);

    font-size: 13px;
}


/* =========================================================
   DOORS
========================================================= */

.doors-zigzag {

    grid-template-columns:
        minmax(450px, 1.15fr)
        minmax(320px, .85fr);
}


/*
   Reverse the visual order:

   CARDS | CONTENT
*/

.doors-zigzag .product-zigzag-content {

    grid-column: 2;

    grid-row: 1;
}


.doors-zigzag .product-zigzag-showcase {

    grid-column: 1;

    grid-row: 1;
}


.doors-zigzag .product-3d-card {

    transform:
        perspective(1400px)
        rotateY(5deg);
}


.doors-zigzag .product-3d-card:nth-child(even) {

    transform:
        perspective(1400px)
        rotateY(-5deg);
}


.doors-zigzag .product-3d-card:hover,
.doors-zigzag .product-3d-card:nth-child(even):hover {

    transform:
        perspective(1400px)
        rotateY(0deg)
        translateY(-10px)
        scale(1.015);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .product-zigzag {

        width: min(1500px, 90vw);

        gap: 160px;
    }

    .product-3d-card {

        min-height: 700px;
    }
}


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

@media (max-width: 1000px) {

    .product-zigzag {

        width: 90vw;

        grid-template-columns:
            minmax(260px, .8fr)
            minmax(360px, 1.2fr);

        gap: 50px;
    }


    .product-zigzag-content {

        top: 90px;
    }


    .product-section-number {

        font-size: 100px;

        letter-spacing: -6px;
    }


    .product-zigzag-content h3 {

        font-size: 65px;
    }


    .product-3d-card {

        min-height: 480px;
    }

}


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

@media (max-width: 700px) {

    .product-zigzag,
    .doors-zigzag {

        width: 92vw;

        display: flex;

        flex-direction: column;

        gap: 50px;

        padding: 80px 0 120px;
    }


    /*
       On mobile the content is no longer sticky.
    */

    .product-zigzag-content,
    .doors-zigzag .product-zigzag-content {

        position: relative;

        top: auto;

        width: 100%;

        order: 1;
    }


    .product-zigzag-showcase,
    .doors-zigzag .product-zigzag-showcase {

        width: 100%;

        order: 2;
    }


    .product-section-number {

        font-size: 100px;

        margin-bottom: -15px;
    }


    .product-zigzag-content h3 {

        font-size: clamp(52px, 17vw, 80px);

        letter-spacing: -4px;
    }


    .product-zigzag-description {

        max-width: 100%;

        font-size: 13px;
    }


    .product-card-stack {

        gap: 45px;
    }


    .product-3d-card,
    .product-3d-card:nth-child(even),
    .doors-zigzag .product-3d-card,
    .doors-zigzag .product-3d-card:nth-child(even) {

        min-height: 115vw;

        transform:
            perspective(1000px)
            rotateY(0deg);
    }


    .product-card-info {

        left: 22px;

        right: 22px;

        bottom: 22px;
    }


    .product-card-info h4 {

        font-size: 30px;
    }


    .product-card-arrow {

        width: 42px;

        height: 42px;
    }

}


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

@media (max-width: 420px) {

    .product-zigzag,
    .doors-zigzag {

        width: 90vw;
    }


    .product-zigzag-content h3 {

        font-size: 48px;

        letter-spacing: -3px;
    }


    .product-section-number {

        font-size: 85px;
    }


    .product-card-info h4 {

        font-size: 25px;
    }


    .product-card-info {

        left: 18px;

        right: 18px;

        bottom: 18px;
    }

}




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

.products-header {
    position: relative;

    z-index: 5;

    width: min(760px, 100%);

    margin: 50px auto;

    text-align: center;
}

.products-label {
    margin: 0 0 24px;

    color: #d7a84f;

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

    letter-spacing: 6px;

    text-transform: uppercase;
}

.products-header h2 {
    margin: 0;

    color: #ffffff;

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

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 600;

    line-height: 0.9;

    letter-spacing: -5px;

    text-transform: uppercase;
}



.products-header h2 span {
    color: #d7a84f;
}


.products-subtitle {
    width: min(500px, 100%);

    margin: 28px auto 0;

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

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   WINDAARO — WHY WINDAARO
========================================================= */

.why-windaaaro {
    position: relative;

    margin-left: var(--social-width);
    width: calc(100% - var(--social-width));

    min-height: 900px;

    padding: 130px 5% 100px;

    background: #070808;

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

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.why-grid-bg {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.28;

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

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}


/* =========================================================
   GOLD GLOW
========================================================= */

.why-glow {
    position: absolute;

    left: 50%;
    top: 48%;

    width: 600px;
    height: 500px;

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

    background:
        radial-gradient(
            ellipse,
            rgba(215,168,79,0.14) 0%,
            rgba(215,168,79,0.05) 35%,
            transparent 72%
        );

    filter: blur(45px);

    pointer-events: none;
}


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

.why-header {
    position: relative;

    z-index: 5;

    max-width: 720px;

    margin: 0 auto 90px;

    text-align: center;
}


.why-label {
    margin: 0 0 22px;

    color: #d7a84f;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 5px;
}


.why-header h2 {
    margin: 0;

    color: #ffffff;

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

    font-size: clamp(50px, 6vw, 82px);

    font-weight: 600;

    line-height: 0.9;

    letter-spacing: -5px;

    text-transform: uppercase;
}


.why-header h2 span {
    color: #d7a84f;
}


.why-subtitle {
    max-width: 500px;

    margin: 28px auto 0;

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

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.why-container {
    position: relative;

    z-index: 5;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        minmax(300px, 420px)
        1fr;

    align-items: center;

    gap: 60px;
}


/* =========================================================
   FEATURE COLUMNS
========================================================= */

.why-column {
    display: flex;

    flex-direction: column;

    gap: 100px;
}


.why-left {
    text-align: right;
}


.why-right {
    text-align: left;
}


/* =========================================================
   FEATURE
========================================================= */

.why-feature {
    display: flex;

    gap: 22px;

    align-items: flex-start;
}


.why-left .why-feature {
    flex-direction: row-reverse;
}


.why-number {
    flex-shrink: 0;

    color: #d7a84f;

    font-size: 10px;

    letter-spacing: 3px;

    padding-top: 3px;
}


.why-feature h3 {
    margin: 0 0 10px;

    color: #ffffff;

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

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 2px;
}


.why-feature p {
    max-width: 240px;

    margin: 0;

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

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   CENTER IMAGE
========================================================= */

.why-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 0.78;

    perspective: 1200px;
}


.why-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

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

    background: #111313;

    box-shadow:
        0 30px 100px rgba(0,0,0,0.75),
        0 0 60px rgba(215,168,79,0.08);

    transform:
        rotateY(-5deg)
        rotateX(2deg);

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.7s ease;
}


.why-image:hover {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px)
        scale(1.02);

    box-shadow:
        0 40px 120px rgba(0,0,0,0.85),
        0 0 80px rgba(215,168,79,0.14);
}


.why-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1),
        filter 0.7s ease;
}


.why-image:hover img {
    transform: scale(1.06);

    filter: brightness(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.why-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0,0,0,0.72) 100%
        );
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.why-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(215,168,79,0.16),
            transparent 45%
        ),
        #111313;
}


.why-image-placeholder span {
    color: #d7a84f;

    font-size: 11px;

    letter-spacing: 6px;
}


/* =========================================================
   GOLD LINE
========================================================= */

.why-image-line {
    position: absolute;

    left: -30px;

    top: 50%;

    width: 60px;

    height: 1px;

    background: #d7a84f;

    opacity: 0.65;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.why-bottom {
    position: relative;

    z-index: 5;

    max-width: 1200px;

    margin: 100px auto 0;

    padding-top: 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.why-bottom p {
    margin: 0;

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

    font-size: 9px;

    letter-spacing: 4px;
}


.why-bottom span {
    color: rgba(215,168,79,0.7);

    font-size: 10px;

    letter-spacing: 5px;
}



/* =========================================================
   WINDAARO — WHY WINDAARO
========================================================= */

.why-windaaro-section {
    position: relative;

    min-height: 850px;

    margin-left: var(--social-width);
    width: calc(100% - var(--social-width));

    padding: 140px 6% 110px;

    background: #0b0c0c;

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

    overflow: hidden;
}


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

.why-bg-grid {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.35;

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

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 75%,
            transparent
        );
}


.why-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    left: -300px;
    top: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,168,79,0.12),
            transparent 68%
        );

    filter: blur(40px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-container {
    position: relative;

    z-index: 5;

    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.9fr)
        minmax(500px, 1.1fr);

    gap: 100px;

    align-items: center;
}


/* =========================================================
   IMAGE
========================================================= */

.why-image-wrap {
    position: relative;

    padding: 20px;
}


.why-image-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 0.78;

    overflow: hidden;

    background: #141616;

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

    box-shadow:
        0 40px 100px rgba(0,0,0,0.65);
}


.why-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

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


.why-image-frame:hover .why-image {
    transform: scale(1.07);

    filter:
        brightness(1.08)
        contrast(1.03);
}


/* IMAGE OVERLAY */

.why-image-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.02),
            transparent 45%,
            rgba(0,0,0,0.75)
        );
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.why-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

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

    background:
        radial-gradient(
            circle,
            rgba(215,168,79,0.15),
            transparent 45%
        ),
        #121414;
}


.why-image-placeholder span {
    color: var(--gold);

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

    font-size: 13px;

    letter-spacing: 7px;
}


/* =========================================================
   CORNER LINES
========================================================= */

.why-image-corner {
    position: absolute;

    width: 65px;
    height: 65px;

    pointer-events: none;

    border-color: var(--gold);

    border-style: solid;
}


.why-image-corner.top-left {
    top: 0;
    left: 0;

    border-width: 1px 0 0 1px;
}


.why-image-corner.bottom-right {
    right: 0;
    bottom: 0;

    border-width: 0 1px 1px 0;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.why-image-caption {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    z-index: 5;

    display: flex;

    justify-content: space-between;

    align-items: center;

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

    font-size: 7px;

    letter-spacing: 3px;
}


.why-image-caption span:first-child {
    color: var(--gold);
}


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

.why-content {
    position: relative;
}


.why-heading {
    position: relative;

    padding-bottom: 45px;

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


.why-label {
    margin: 0 0 24px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 5px;
}


.why-section-number {
    position: absolute;

    right: 0;
    top: 0;

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

    font-size: 11px;

    letter-spacing: 3px;
}


.why-heading h2 {
    max-width: 720px;

    margin: 0;

    color: var(--white);

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

    font-size: clamp(
        50px,
        5.2vw,
        82px
    );

    font-weight: 600;

    line-height: 0.91;

    letter-spacing: -5px;
}


.why-heading h2 span {
    display: block;

    color: var(--gold);
}


.why-intro {
    max-width: 520px;

    margin: 30px 0 0;

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

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   FEATURES
========================================================= */

.why-features {
    margin-top: 5px;
}


.why-feature {
    position: relative;

    display: grid;

    grid-template-columns: 65px 1fr;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition:
        padding 0.4s ease,
        background 0.4s ease;
}


.why-feature::before {
    content: "";

    position: absolute;

    left: -25px;
    right: -25px;
    top: 0;
    bottom: 0;

    background:
        linear-gradient(
            90deg,
            rgba(215,168,79,0.08),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}


.why-feature:hover {
    padding-left: 15px;
}


.why-feature:hover::before {
    opacity: 1;
}


/* =========================================================
   NUMBER
========================================================= */

.why-feature-number {
    position: relative;

    z-index: 2;

    color: var(--gold);

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

    font-size: 11px;

    letter-spacing: 2px;
}


/* =========================================================
   FEATURE BODY
========================================================= */

.why-feature-body {
    position: relative;

    z-index: 2;
}


.why-feature-title-row {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.why-feature h3 {
    margin: 0;

    color: var(--white);

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

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 2px;

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


.why-feature:hover h3 {
    color: var(--gold-light);

    transform: translateX(5px);
}


.why-feature p {
    max-width: 500px;

    margin: 9px 0 0;

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

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   ARROW
========================================================= */

.why-feature-arrow {
    color: rgba(255,255,255,0.2);

    font-size: 18px;

    transform: translate(-10px, 5px);

    opacity: 0;

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


.why-feature:hover .why-feature-arrow {
    opacity: 1;

    color: var(--gold);

    transform:
        translate(0, 0)
        rotate(0deg);
}


/* =========================================================
   OPTIONAL ICON
========================================================= */

.why-feature-icon {
    position: absolute;

    right: 40px;
    top: 50%;

    width: 35px;
    height: 35px;

    object-fit: contain;

    opacity: 0;

    transform:
        translateY(-50%)
        scale(0.7);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


.why-feature:hover .why-feature-icon {
    opacity: 0.7;

    transform:
        translateY(-50%)
        scale(1);
}


/* =========================================================
   BOTTOM
========================================================= */

.why-bottom {
    position: relative;

    z-index: 5;

    max-width: 1350px;

    margin: 85px auto 0;

    display: flex;

    align-items: center;

    gap: 20px;

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

    font-size: 7px;

    letter-spacing: 3px;
}


.why-bottom-line {
    width: 100px;
    height: 1px;

    background: var(--gold);

    opacity: 0.6;
}


.why-bottom span:last-child {
    margin-left: auto;

    color: var(--gold);
}


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

[data-reveal] {
    opacity: 0;

    transform: translateY(25px);

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


[data-reveal].is-visible {
    opacity: 1;

    transform: translateY(0);
}


.why-feature:nth-child(1) {
    transition-delay: 0.05s;
}


.why-feature:nth-child(2) {
    transition-delay: 0.12s;
}


.why-feature:nth-child(3) {
    transition-delay: 0.19s;
}


.why-feature:nth-child(4) {
    transition-delay: 0.26s;
}


.why-feature:nth-child(5) {
    transition-delay: 0.33s;
}


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

@media (max-width: 1100px) {

    .why-container {
        grid-template-columns:
            0.8fr
            1.2fr;

        gap: 55px;
    }

    .why-heading h2 {
        font-size: 55px;

        letter-spacing: -3px;
    }

}


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

@media (max-width: 900px) {

    .why-windaaro-section {
        margin-left: 0;

        width: 100%;

        padding:
            100px
            25px
            80px;
    }


    .why-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .why-image-wrap {
        max-width: 600px;

        margin: 0 auto;

        width: 100%;
    }


    .why-image-frame {
        aspect-ratio: 1 / 1.05;
    }


    .why-heading h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }


    .why-bottom {
        margin-top: 60px;
    }

}


@media (max-width: 600px) {

    .why-windaaro-section {
        padding:
            85px
            20px
            65px;
    }


    .why-image-wrap {
        padding: 12px;
    }


    .why-image-caption {
        left: 25px;
        right: 25px;
        bottom: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }


    .why-heading {
        padding-bottom: 35px;
    }


    .why-heading h2 {
        font-size: 45px;

        line-height: 0.94;

        letter-spacing: -2.5px;
    }


    .why-intro {
        font-size: 12px;
    }


    .why-feature {
        grid-template-columns: 45px 1fr;

        padding: 22px 0;
    }


    .why-feature h3 {
        font-size: 13px;

        letter-spacing: 1.5px;
    }


    .why-feature p {
        font-size: 11px;
    }


    .why-feature-arrow {
        display: none;
    }


    .why-bottom {
        gap: 12px;

        font-size: 6px;

        letter-spacing: 2px;
    }


    .why-bottom-line {
        width: 45px;
    }

}



/* =========================================================
   CTA FAQ SECTION
========================================================= */

.cta-section {
    position: relative;
    padding: 120px 7%;
    background: #080808;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;

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

    background-size: 70px 70px;

    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;

    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT
========================================================= */

.cta-left {
    max-width: 650px;
}

.cta-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    color: var(--gold);

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

    letter-spacing: 4px;
}

.cta-label::before {
    content: "";

    width: 42px;
    height: 1px;

    background: var(--gold);
}

.cta-left h2 {
    margin: 0;

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

    font-size: clamp(50px, 5.5vw, 80px);

    font-weight: 600;

    line-height: .92;

    letter-spacing: -4px;

    color: #fff;
}

.cta-left h2 span {
    color: var(--gold);
}

.cta-description {
    max-width: 480px;

    margin-top: 30px;

    color: rgba(255,255,255,.48);

    font-size: 13px;

    line-height: 1.8;
}


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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;

    margin-top: 35px;

    padding: 17px 25px;

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

    color: #fff;

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

    letter-spacing: 3px;

    transition: .35s ease;
}

.cta-button span {
    color: var(--gold);
    font-size: 17px;

    transition: .35s ease;
}

.cta-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.cta-button:hover span {
    color: #111;
    transform: translate(4px,-4px);
}


/* =========================================================
   FAQ BOX
========================================================= */

.cta-faq {
    padding: 18px;

    background: #050505;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.55);
}


/* HEADER */

.cta-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 8px 18px;
}

.cta-faq-header span {
    color: var(--gold);

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

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

    letter-spacing: 4px;
}

.cta-faq-header small {
    color: #555;

    font-size: 7px;

    letter-spacing: 3px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.cta-faq-item {
    margin-top: 9px;

    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #101010
        );

    border: 1px solid rgba(255,255,255,.055);

    border-radius: 13px;

    overflow: hidden;

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

.cta-faq-item.active {
    border-color: rgba(215,168,79,.22);
}


/* QUESTION BUTTON */

.cta-question {
    width: 100%;

    padding: 19px 20px;

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

    gap: 20px;

    background: transparent;

    color: #fff;

    text-align: left;

    cursor: pointer;
}

.cta-question span {
    color: rgba(255,255,255,.86);

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

    font-size: 13px;

    line-height: 1.4;
}

.cta-question b {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

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

    border-radius: 50%;

    background: rgba(215,168,79,.12);

    color: var(--gold);

    font-size: 18px;

    font-weight: 400;
}


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

.cta-answer {
    max-height: 0;

    padding: 0 20px;

    overflow: hidden;

    color: #777;

    font-size: 11px;

    line-height: 1.7;

    transition:
        max-height .4s ease,
        padding .4s ease;
}

.cta-faq-item.active .cta-answer {
    max-height: 200px;

    padding:
        0 20px
        20px;
}


/* EMPTY */

.cta-empty {
    padding: 30px;

    text-align: center;

    color: #666;

    font-size: 11px;
}


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

@media (max-width: 900px) {

    .cta-section {
        padding: 90px 25px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cta-left {
        max-width: 100%;
    }
}


@media (max-width: 600px) {

    .cta-section {
        padding: 75px 20px;
    }

    .cta-left h2 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .cta-faq {
        padding: 12px;
        border-radius: 14px;
    }

    .cta-question {
        padding: 16px;
    }

    .cta-question span {
        font-size: 12px;
    }
}

/* =========================================================
   WINDAARO — FUTURISTIC FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #080909;
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(215, 168, 79, 0.22);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(215, 168, 79, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 168, 79, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -220px;
    bottom: -300px;
    border-radius: 50%;
    border: 1px solid rgba(215, 168, 79, 0.08);
    box-shadow:
        0 0 0 50px rgba(215, 168, 79, 0.025),
        0 0 0 100px rgba(215, 168, 79, 0.015);
    pointer-events: none;
}

/* TOP */

.footer-top {
    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: 0 auto;
    padding: 90px 7% 75px;
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr;
    gap: 80px;
}

/* BRAND */

.footer-brand {
    position: relative;
}

.footer-brand::before {
    content: "UPVC WINDOWS & DOORS";
    display: block;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 4px;
}

.footer-brand h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: -4px;
}

.footer-brand h2::first-letter {
    color: var(--gold);
}

.footer-brand p {
    max-width: 390px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
}

.footer-brand::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -35px;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* COLUMNS */

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
    margin: 0 0 28px;
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 4px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin-top: 12px;
    background: var(--gold);
}

/* LINKS */

.footer-links a,
.footer-contact a {
    position: relative;
    width: fit-content;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    letter-spacing: 1px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a::before {
    content: "↗";
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--gold);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(3px);
}

/* CONTACT */

.footer-contact a {
    color: rgba(255, 255, 255, 0.60);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    max-width: 220px;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

/* BOTTOM */

.footer-bottom {
    position: relative;
    z-index: 3;
    max-width: 1350px;
    margin: 0 auto;
    padding: 24px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 7px;
    letter-spacing: 2px;
}

.footer-bottom span:last-child {
    color: #777;
    letter-spacing: 3px;
}

/* FOOTER RESPONSIVE */

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
        padding: 75px 8% 65px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {

    .brand {
        width: 170px;
    }

    .brand img {
        width: 170px;
        max-height: 55px;
    }


    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 65px 25px 50px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand h2 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .footer-bottom {
        min-height: auto;
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.7;
    }
}



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

@media (max-width: 1100px) {

    .main-nav {
        gap: 25px;
    }

    .header-phone {
        margin-left: 30px;

        padding-left: 20px;
    }

    .brand {
        width: 200px;
    }

    .brand img {
        width: 200px;
        max-height: 65px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


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

@media (max-width: 900px) {

    :root {
        --social-width: 0px;
    }

    .social-rail {
        display: none;
    }

    .main-header {
        left: 0;

        background: rgba(15, 15, 15, 0.85);
    }

    .main-nav,
    .header-phone {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-left: 0;
    }

    .site-footer {
        padding-left: 0;
    }
}


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

@media (max-width: 600px) {

    .main-header {
        height: 78px;
    }

    .header-inner {
        padding: 0 22px;
    }

    .brand {
        width: 145px;
    }

    .brand img {
        width: 145px;

        max-height: 48px;
    }


    /* HERO */

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 135px 25px 100px;
    }

    .hero-label {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }

    .hero-label span {
        padding-left: 0;

        border-left: 0;
    }

    .hero h1 {
        max-width: 900px;
        font-size: clamp(58px, 6.8vw, 105px);
        line-height: 0.88;
        letter-spacing: -5px;
    }

    .hero-description {
        margin-top: 28px;

        font-size: 13px;
    }

    .hero-button {
        margin-top: 30px;

        padding: 15px 20px;
    }

    .hero-bottom {
        left: 25px;

        bottom: 25px;
    }


    /* INTRO */

    .intro-section {
        min-height: 580px;

        padding: 100px 25px 90px;
    }

    .intro-section > .section-number {
        top: 40px;
        left: 25px;
    }

    .intro-content h2,
    .section-heading h2,
    .cta-content h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    /* PRODUCTS */

    .products-section {
        padding: 90px 25px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-image {
        height: 330px;
    }


    /* CTA */

    .cta-section {
        min-height: 520px;

        padding: 100px 25px;
    }

    .cta-number {
        top: 40px;

        left: 25px;
    }


    /* FOOTER */

    .footer-top {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 60px 25px;
    }

    .footer-bottom {
        min-height: auto;

        padding: 20px 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    /* GRID */

    .site-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .brand {
        width: 125px;
    }

    .brand img {
        width: 125px;
    }

    .hero h1 {
        font-size: 49px;
    }

    .intro-content h2,
    .section-heading h2,
    .cta-content h2 {
        font-size: 42px;
    }
}




/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.customer-reviews-section {
    position: relative;

    padding: 120px 6vw;

    background: #111;

    color: #fff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.customer-reviews-container {
    width: min(1400px, 100%);

    margin: 0 auto;

    min-width: 0;
}


/* =========================================================
   HEADER
   SAME SPACING AS PROCESS
========================================================= */

.customer-reviews-header {
    margin-bottom: 70px;

    max-width: 650px;
}


.customer-reviews-eyebrow {
    margin-bottom: 22px;

    color: var(--gold);

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

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.customer-reviews-header h2 {
    margin: 0;

    max-width: 650px;

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

    font-size: clamp(50px, 5.5vw, 80px);

    font-weight: 600;

    line-height: .92;

    letter-spacing: -4px;
}


.customer-reviews-header h2 span {
    color: var(--gold);
}


.customer-reviews-header p {
    max-width: 420px;

    margin-top: 28px;

    color: #aaa;

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

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CUSTOMER REVIEW CAROUSEL
   SAME GEOMETRY AS PROCESS
========================================================= */

.customer-review-carousel {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 145px;

    min-height: 430px;

    width: 100%;

    border: 1px solid rgba(255,255,255,.12);

    background: #111;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   MAIN
========================================================= */

.customer-review-main {
    position: relative;

    min-width: 0;

    min-height: 0;

    padding: 45px;

    box-sizing: border-box;
}


/* =========================================================
   COUNTER
========================================================= */

.customer-review-counter {
    position: absolute;

    top: 42px;

    right: 50px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #777;

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

    font-size: 9px;

    letter-spacing: 2px;
}


.customer-review-counter-wrap {
    position: relative;

    width: 32px;

    height: 22px;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.customer-review-counter-number {
    display: block;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 3px;
}


.customer-review-counter i {
    display: block;

    width: 32px;

    height: 1px;

    background: rgba(255,255,255,.25);
}


/* =========================================================
   SLIDES
   SAME AS PROCESS
========================================================= */

.customer-review-slides {
    position: relative;

    min-height: 300px;

    width: 100%;

    min-width: 0;
}


.customer-review-slide {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateX(30px);

    transition:
        opacity .55s ease,
        transform .65s cubic-bezier(.22,.61,.36,1),
        visibility .55s ease;
}


.customer-review-slide.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(0);
}





/* =========================================================
   REVIEW CONTENT
========================================================= */

.customer-review-content {
    position: relative;

    width: 100%;

    min-width: 0;
}


/* =========================================================
   STARS
========================================================= */

.customer-review-stars {
    display: flex;

    align-items: center;

    gap: 4px;

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;
}


.customer-review-stars .empty-star {
    color: rgba(255,255,255,.12);
}


/* =========================================================
   QUOTE
========================================================= */

.customer-review-quote-mark {
    position: absolute;

    top: 20px;

    left: 0;

    color: rgba(215,168,79,.08);

    font-family: Georgia, serif;

    font-size: 90px;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.customer-review-text {
    position: relative;

    max-width: 650px;

    margin: 45px 0 0;

    color: #fff;

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

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

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;

    z-index: 2;
}


/* =========================================================
   CUSTOMER
========================================================= */

.customer-review-customer {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 55px;
}


.customer-review-image,
.customer-review-avatar {
    width: 40px;

    height: 40px;

    flex: 0 0 40px;

    border-radius: 50%;
}


.customer-review-image {
    display: block;

    object-fit: cover;
}


.customer-review-avatar {
    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gold);

    color: #111;

    font-size: 12px;

    font-weight: 700;
}


.customer-review-info {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.customer-review-name {
    color: #fff;

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

    font-size: 10px;

    font-weight: 700;
}


.customer-review-role {
    color: #666;

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

    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;
}






/* =========================================================
   RIGHT SIDE
========================================================= */

.customer-review-side {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-width: 145px;

    border-left: 1px solid rgba(255,255,255,.12);

    background: #121212;
}


.customer-review-side-number {
    display: block;

    color: var(--gold);

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

    font-size: 50px;

    font-weight: 300;

    line-height: 1;

    overflow: hidden;
}


.customer-review-side-line {
    width: 1px;

    height: 50px;

    margin: 22px 0;

    background: var(--gold);
}


.customer-review-side span {
    color: #666;

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

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 3px;

    line-height: 2;

    text-align: center;
}




/* =========================================================
   NAVIGATION
========================================================= */

.customer-review-navigation {
    position: absolute;

    right: 40px;

    bottom: 30px;

    z-index: 30;

    display: flex;

    align-items: center;

    gap: 12px;
}


.customer-review-nav {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);

    background: transparent;

    color: #fff;

    font-size: 16px;

    cursor: pointer;

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


.customer-review-nav:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #111;
}


.customer-review-prev:hover {
    transform: translateX(-3px);
}


.customer-review-next:hover {
    transform: translateX(3px);
}


/* =========================================================
   PROGRESS
========================================================= */

.customer-review-progress {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #777;

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

    font-size: 8px;

    letter-spacing: 2px;
}


#customerReviewProgressCurrent {
    color: var(--gold);
}


.customer-review-progress-line {
    width: 80px;

    height: 1px;

    background: rgba(255,255,255,.18);

    overflow: hidden;
}


.customer-review-progress-line span {
    display: block;

    width: 0;

    height: 100%;

    background: var(--gold);

    transition: width .5s ease;
}




/* =========================================================
   COUNTER ANIMATION
========================================================= */

.customer-review-counter-number.counter-up,
.customer-review-side-number.counter-up {

    animation:
        customerReviewCounterUp
        .45s
        cubic-bezier(.22,.61,.36,1);

}


@keyframes customerReviewCounterUp {

    0% {

        transform: translateY(100%);

        opacity: 0;

    }

    45% {

        transform: translateY(-10%);

        opacity: 1;

    }

    100% {

        transform: translateY(0);

        opacity: 1;

    }

}




/* =========================================================
   SMALL SCREEN
========================================================= */

@media (max-width: 700px) {

    .customer-review-side-number {

        width: 55px;

        height: 50px;

        font-size: 38px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .customer-review-side-number.counter-up {

        animation: none;

        transform: translateY(0);

        opacity: 1;

    }

}


/* =========================================================
   DYNAMIC EMPTY PLACEHOLDER
   SHOWN ONLY WHEN CURRENT PAGE HAS 5 PRODUCTS
========================================================= */

.product-collage-placeholder {
    position: relative;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    grid-column: 2 / span 3;
    grid-row: 3;

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

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(216, 170, 69, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(255, 255, 255, 0.025),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #151515 0%,
            #0d0d0d 50%,
            #080808 100%
        );

    isolation: isolate;

    box-shadow:
        inset 0 0 100px rgba(0, 0, 0, 0.35);

    transition:
        border-color .6s cubic-bezier(.22,1,.36,1),
        transform .6s cubic-bezier(.22,1,.36,1),
        box-shadow .6s cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.product-collage-placeholder::before {
    content: "";

    position: absolute;

    inset: -20%;

    z-index: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.022) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 75% 30%,
            rgba(216,170,69,.10),
            transparent 30%
        );

    background-size:
        42px 42px,
        42px 42px,
        100% 100%;

    opacity: .35;

    pointer-events: none;

    transform: translate3d(0,0,0);

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


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.product-collage-placeholder::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -120px;
    bottom: -120px;

    z-index: 1;

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

    border-radius: 50%;

    box-shadow:
        0 0 0 22px rgba(216,170,69,.012),
        0 0 0 44px rgba(216,170,69,.009),
        0 0 0 66px rgba(216,170,69,.006);

    pointer-events: none;

    animation:
        placeholderGlow
        5s
        ease-in-out
        infinite;

    transition:
        transform 1.2s cubic-bezier(.22,1,.36,1),
        border-color .6s ease;
}


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

.product-collage-placeholder
.placeholder-content {

    position: absolute;

    inset: 0;

    z-index: 5;

    width: 100%;
    height: 100%;

    padding: 42px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    overflow: hidden;

    transform: translateY(0);

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


/* =========================================================
   GOLD LINE
========================================================= */

.product-collage-placeholder
.placeholder-content::before {

    content: "";

    display: block;

    width: 32px;
    height: 1px;

    margin-bottom: 18px;

    background:
        linear-gradient(
            90deg,
            #d8aa45,
            rgba(216,170,69,.12)
        );

    transition:
        width .6s cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   NUMBER
========================================================= */

.product-collage-placeholder
.placeholder-number {

    display: block;

    margin-bottom: 9px;

    color: var(--gold);

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

    font-size: 10px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 4px;
}


/* =========================================================
   CATEGORY
========================================================= */

.product-collage-placeholder
.placeholder-label {

    display: block;

    margin-bottom: 12px;

    color: rgba(255,255,255,.42);

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

    font-size: 8px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}


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

.product-collage-placeholder
.placeholder-content h3 {

    margin: 0;

    width: 125%;

    max-width: none;

    color: #fff;

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

    font-size:
        clamp(
            72px,
            8.5vw,
            150px
        );

    font-weight: 400;

    line-height: .76;

    letter-spacing: -6px;

    white-space: normal;

    overflow-wrap: normal;

    transform:
        translate(-2%, 6%);

    transition:
        transform .8s cubic-bezier(.22,1,.36,1),
        letter-spacing .6s cubic-bezier(.22,1,.36,1),
        color .5s ease;
}


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

.product-collage-placeholder
.placeholder-content p {

    max-width: 360px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.36);

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

    font-size: 10px;

    line-height: 1.7;

    letter-spacing: .1px;
}


/* =========================================================
   HOVER
========================================================= */

.product-collage-placeholder:hover {

    border-color:
        rgba(216,170,69,.30);

    transform:
        translateY(-2px);

    box-shadow:
        inset 0 0 100px rgba(0,0,0,.28),
        0 25px 70px rgba(0,0,0,.35);
}


.product-collage-placeholder:hover::before {

    opacity: .58;

    transform:
        translate3d(16px,-16px,0)
        scale(1.03);
}


.product-collage-placeholder:hover::after {

    border-color:
        rgba(216,170,69,.35);

    transform:
        rotate(45deg)
        scale(1.12);
}


.product-collage-placeholder:hover
.placeholder-content {

    transform:
        translateX(-7px);
}


.product-collage-placeholder:hover
.placeholder-content::before {

    width: 58px;
}


.product-collage-placeholder:hover
.placeholder-content h3 {

    transform:
        translate(0, 2%);

    letter-spacing: -6.5px;

    color: #fff;
}


/* =========================================================
   GLOW
========================================================= */

@keyframes placeholderGlow {

    0%,
    100% {
        opacity: .35;
    }

    50% {
        opacity: .75;
    }
}


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

@media (max-width: 900px) {

    .product-collage-placeholder {

        grid-column: 2;
        grid-row: 4;

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 30px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 120%;

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

        line-height: .79;

        letter-spacing: -4px;

    }

}


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

@media (max-width: 600px) {

    .product-collage-placeholder {

        grid-column: 1;
        grid-row: auto;

        min-height: 320px;

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 24px;

    }


    .product-collage-placeholder
    .placeholder-number {

        font-size: 9px;

        letter-spacing: 3px;

    }


    .product-collage-placeholder
    .placeholder-label {

        font-size: 7px;

        letter-spacing: 2.5px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 125%;

        font-size:
            clamp(
                54px,
                15vw,
                86px
            );

        line-height: .79;

        letter-spacing: -3px;

        transform:
            translate(-1%, 4%);

    }


    .product-collage-placeholder
    .placeholder-content p {

        max-width: 250px;

        margin-top: 15px;

        font-size: 9px;

        line-height: 1.55;

    }


    .product-collage-placeholder::after {

        width: 150px;
        height: 150px;

        right: -75px;
        bottom: -75px;

    }


    .product-collage-placeholder:hover {

        transform: none;

    }

}


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

@media (max-width: 480px) {

    .product-collage-placeholder {

        min-height: 300px;

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 20px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 130%;

        font-size:
            clamp(
                48px,
                15.5vw,
                72px
            );

        line-height: .8;

        letter-spacing: -2.5px;

    }


    .product-collage-placeholder
    .placeholder-content p {

        max-width: 220px;

        font-size: 8px;

    }

}


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

@media (max-width: 380px) {

    .product-collage-placeholder {

        min-height: 280px;

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 18px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 135%;

        font-size:
            clamp(
                43px,
                15.5vw,
                62px
            );

        line-height: .8;

        letter-spacing: -2px;

    }


    .product-collage-placeholder
    .placeholder-content p {

        max-width: 190px;

        font-size: 7px;

    }


    .product-collage-placeholder
    .placeholder-label {

        font-size: 6px;

        letter-spacing: 2px;

    }

}


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

@media (max-width: 320px) {

    .product-collage-placeholder {

        min-height: 260px;

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 15px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 140%;

        font-size: 40px;

        line-height: .82;

        letter-spacing: -1.8px;

    }


    .product-collage-placeholder
    .placeholder-content p {

        max-width: 165px;

        font-size: 6.5px;

    }

}




/* =========================================================
   MOBILE — PLACEHOLDER + PAGINATION FIX
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       COLLAGE
    ----------------------------------------------------- */

    .products-collage {
        display: grid;

        grid-template-columns: 1fr;

        grid-auto-rows: auto;

        gap: 3px;

        width: 100%;

        height: auto;

    }


    /* -----------------------------------------------------
       ALL PRODUCT CARDS
    ----------------------------------------------------- */

    .products-collage
    .product-collage-card {

        grid-column: 1;

        grid-row: auto;

        width: 100%;

        min-height: 260px;

    }


    /* -----------------------------------------------------
       DYNAMIC PLACEHOLDER
    ----------------------------------------------------- */

    .products-collage
    .product-collage-placeholder {

        grid-column: 1;

        grid-row: auto;

        width: 100%;

        min-height: 320px;

        height: 320px;

        margin: 0;

        box-sizing: border-box;

    }


    /* -----------------------------------------------------
       PLACEHOLDER CONTENT
    ----------------------------------------------------- */

    .product-collage-placeholder
    .placeholder-content {

        position: absolute;

        inset: 0;

        width: 100%;

        height: 100%;

        padding: 24px;

        box-sizing: border-box;

        display: flex;

        flex-direction: column;

        justify-content: flex-end;

        align-items: flex-start;

    }


    /* -----------------------------------------------------
       LARGE PLACEHOLDER TITLE
    ----------------------------------------------------- */

    .product-collage-placeholder
    .placeholder-content h3 {

        width: 125%;

        max-width: none;

        margin: 0;

        font-size: clamp(
            52px,
            14vw,
            78px
        );

        line-height: .78;

        letter-spacing: -3px;

    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .product-collage-placeholder
    .placeholder-content p {

        max-width: 250px;

        margin-top: 14px;

        font-size: 9px;

        line-height: 1.55;

    }


    /* -----------------------------------------------------
       PAGINATION
       FORCE IT BELOW COLLAGE
    ----------------------------------------------------- */

    .products-pagination {

        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        display: flex;

        width: 100%;

        min-height: 42px;

        margin-top: 28px;

        margin-bottom: 0;

        padding: 0;

        justify-content: center;

        align-items: center;

        clear: both;

        z-index: 10;

    }


    .pagination-pages {

        display: flex;

        align-items: center;

        gap: 5px;

    }


    .pagination-page,
    .pagination-arrow {

        width: 38px;

        height: 38px;

        flex: 0 0 38px;

        box-sizing: border-box;

    }


    /* -----------------------------------------------------
       REMOVE EXTRA SPACE AFTER COLLAGE
    ----------------------------------------------------- */

    .products-section {

        padding-bottom: 60px;

    }


    .products-wrapper {

        overflow: visible;

    }

}


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

@media (max-width: 480px) {

    .products-collage
    .product-collage-placeholder {

        min-height: 300px;

        height: 280px;

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 20px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 130%;

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

        line-height: .8;

        letter-spacing: -2.5px;

    }


    .product-collage-placeholder
    .placeholder-content p {

        max-width: 220px;

        font-size: 8px;

    }


    .products-pagination {

        margin-top: 22px;

    }

}


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

@media (max-width: 360px) {

    .products-collage
    .product-collage-placeholder {

        min-height: 280px;

        height: 250px;
        

    }


    .product-collage-placeholder
    .placeholder-content {

        padding: 18px;

    }


    .product-collage-placeholder
    .placeholder-content h3 {

        width: 135%;

        font-size: 43px;

        line-height: .8;

        letter-spacing: -2px;

    }


    .product-collage-placeholder
    .placeholder-content p {

        max-width: 185px;

        font-size: 7px;

    }


    .products-pagination {

        margin-top: 18px;

    }


    .pagination-page,
    .pagination-arrow {

        width: 34px;

        height: 34px;

        flex-basis: 34px;

        font-size: 9px;

    }

}