*{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
    overflow:hidden;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#031d12;
}

.intro-page{
    position:relative;
    width:100%;
    height:100vh;
    height:100svh;
    min-height:100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
    color:#fff;
    background:#031d12;
    isolation:isolate;
}

.intro-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;
    transform:scale(1.04);
    animation:videoReveal 2s ease forwards;
}

.intro-overlay{
    position:absolute;
    inset:0;
    background:rgba(3,29,18,0.30);
    z-index:-2;
}

.page-fade{
    position:absolute;
    inset:0;
    background:#031d12;
    opacity:0;
    pointer-events:none;
    z-index:5;
    transition:opacity 1.1s ease;
}

body.is-transitioning .page-fade{
    opacity:1;
    pointer-events:auto;
}

.intro-inner{
    position:relative;
    z-index:2;
    width:min(100%,1300px);
    min-height:100svh;
    margin:0 auto;
    padding:clamp(32px,6vh,70px) 18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.center-logo{
    width:clamp(170px,17vw,300px);
    max-width:64vw;
    height:auto;
    margin:0 0 clamp(22px,4vh,44px);

    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:.2s;
    display:block;
}

.intro-kicker{
    margin:0 0 30px;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1.08rem,1.7vw,1.55rem);
    line-height:1;
    font-weight:300;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#c6a45a;
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:.4s;
}

.intro-title{
    margin:0 0 42px;
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1.75rem,3vw,3rem);
    line-height:1.2;
    font-weight:400;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#f6f1e7;
    white-space:nowrap;
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:.6s;
}

.intro-text{
    margin:0 auto 32px;
    max-width:1100px;
    font-family:'Montserrat',sans-serif;
    font-size:16px;
    line-height:1.8;
    font-weight:300;
    letter-spacing:1px;
    text-transform:none;
    color:rgba(255,255,255,.9);
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:.8s;
}

.intro-text-small{
    margin-bottom:34px;
    max-width:1040px;
    animation-delay:1s;
}

.intro-signature{
    margin:0 0 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:1.15s;
}

.intro-signature img{
    width:clamp(170px,17vw,260px);
    max-width:60vw;
    height:auto;
    display:block;
}

.intro-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:230px;
    padding:17px 34px;
    background:#efebe4;
    color:#1d1d1d;
    text-decoration:none;
    border:1px solid transparent;
    font-family:'Cormorant Garamond',serif;
    font-size:1.12rem;
    letter-spacing:1.4px;
    transition:transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease, opacity .35s ease;
    opacity:0;
    animation:fadeUp 1s ease forwards;
    animation-delay:1.3s;
}

.intro-btn:hover{
    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,.78);
    transform:translateY(-1px);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(24px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes videoReveal{
    from{
        opacity:0;
        transform:scale(1.1);
    }
    to{
        opacity:1;
        transform:scale(1.04);
    }
}

@media (max-width:991px){
    .intro-inner{
        width:min(94%,820px);
    }

    .center-logo{
        width:clamp(145px,34vw,400px);
        margin-bottom:26px;
    }

    .intro-kicker{
        font-size:1rem;
        letter-spacing:5px;
        margin-bottom:24px;
    }

    .intro-title{
        font-size:clamp(1.45rem,4vw,2.3rem);
        letter-spacing:8px;
        margin-bottom:30px;
    }

    .intro-text{
        max-width:720px;
        font-size:.82rem;
        line-height:1.85;
        letter-spacing:1px;
        margin-bottom:24px;
    }
}

@media (max-width:768px){
    html,
    body{
        overflow:hidden;
    }

    .intro-inner{
        width:100%;
        padding:24px 20px 28px;
        min-height:100svh;
        justify-content:center;
    }

    .c{
        width:300px;
        max-width:45vw;
        margin-bottom:18px;
    }

    .intro-kicker{
        font-size:.78rem;
        letter-spacing:1.2px;
        line-height:1.55;
        margin-bottom:18px;
        max-width:92vw;
    }

    .intro-title{
        font-size:1.28rem;
        letter-spacing:1.2px;
        line-height:1.35;
        margin-bottom:22px;
        max-width:92vw;
        white-space:normal;
    }

    .intro-text{
        max-width:92vw;
        font-size:.66rem;
        line-height:1.85;
        letter-spacing:2px;
        margin-bottom:18px;
    }

    .intro-text-small{
        margin-bottom:20px;
    }

    .intro-signature{
        margin-bottom:22px;
    }

    .intro-signature img{
        width:150px;
        max-width:48vw;
    }

    .intro-btn{
        min-width:170px;
        padding:12px 20px;
        font-size:.96rem;
        letter-spacing:1px;
    }
}

@media (max-width:420px){
    .intro-inner{
        padding-left:14px;
        padding-right:14px;
    }

    .center-logo{
        width:300px;
    }

    .intro-kicker{
        font-size:.68rem;
          letter-spacing:1.2px;
    }

    .intro-title{
        font-size:1.08rem;
        letter-spacing:1.2px;
    }

    .intro-text{
        font-size:.58rem;
        line-height:1.75;
        letter-spacing:1px;
    }

    .intro-signature img{
        width:132px;
    }
}

@media (max-height:700px){
    .center-logo{
        width:300px;
        margin-bottom:14px;
    }

    .intro-kicker{
        margin-bottom:12px;
        font-size:.72rem;
    }

    .intro-title{
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: bold;
    }

    .intro-text{
        font-size:.58rem;
        line-height:1.55;
        margin-bottom:12px;
    }

    .intro-signature{
        margin-bottom:14px;
    }

    .intro-signature img{
        width:120px;
    }

    .intro-btn{
        padding:10px 16px;
        min-width:150px;
        font-size:.85rem;
    }
}
