

.container{

    width:min(1280px,92%);

    margin-inline:auto;

}

.container--narrow{

    width:min(860px,92%);

    margin-inline:auto;

}

.container--wide{

    width:min(1600px,96%);

    margin-inline:auto;

}

.section{

    padding-block:clamp(5rem,10vw,9rem);

    position:relative;

}

.section--small{

    padding-block:4rem;

}

.section--large{

    padding-block:10rem;

}

.section--dark{

    background:#111;

    color:white;

}

.section--light{

    background:white;

}

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:28px 0;

    z-index:1000;

    transition:.35s ease;

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;

}

.logo img{

    width:185px;

    height:auto;

    display:block;

}

.main-nav ul{

    display:flex;

    align-items:center;

    gap:52px;

    list-style:none;

    margin:0;

    padding:0;

}

.main-nav a{

    font-size:16px;

    font-weight:500;

    color:#111;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--color-gold);

    transition:.3s;

}

.main-nav a:hover{

    color:var(--color-gold);

}

.main-nav a:hover::after{

    width:100%;

}

.site-header.scrolled{

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

    backdrop-filter:blur(18px);

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

    box-shadow:0 12px 40px rgba(0,0,0,.08);

}

.site-header.scrolled .header-container{

    padding:0;

}

.hero{
    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:#ffffff;
}

.hero-label{

    opacity:0;

    animation:

        fadeUp .8s ease forwards;

    animation-delay:.15s;

}

.hero-content{

    position:relative;

    z-index:2;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    position:relative;

    z-index:2;

}

.hero__eyebrow{

    display:inline-flex;

    align-items:center;

    gap:.75rem;

    text-transform:uppercase;

    letter-spacing:.25em;

    font-size:.78rem;

    color:var(--color-gold);

    font-weight:600;

    margin-bottom:2rem;

}

.hero__title{

    margin-bottom:2rem;

}

.hero-text{

    max-width:620px;

    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;

    opacity:0;

    animation:

        fadeUp .9s ease forwards;

    animation-delay:.85s;
}

.hero-image{

    position:absolute;

    right:0;
    top:0;

    width:68%;
    height:100%;

    object-fit:cover;

    object-position:center;

    opacity:.48;

    animation:heroZoom 18s ease-in-out infinite alternate;

    filter:

        brightness(1.05)

        saturate(.92)

        contrast(.96);

    z-index:0;

    opacity:0;

    animation:

    heroReveal 1.8s ease forwards,

    heroZoom 18s ease-in-out 2s infinite alternate;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,

            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.98) 18%,
            rgba(255,255,255,.92) 34%,
            rgba(255,255,255,.72) 50%,
            rgba(255,255,255,.40) 68%,
            rgba(255,255,255,.15) 82%,
            rgba(255,255,255,0) 100%
        );

    z-index:1;

}

.hero h1{

    font-size:clamp(52px,5vw,82px);

    line-height:.95;

    font-weight:300;

    letter-spacing:-.04em;

    max-width:620px;
    
    color:#111111;

    opacity:0;

    animation:

        fadeUp .9s ease forwards;

    animation-delay:.35s;

}
.hero p{

    max-width:520px;

    font-size:20px;

    line-height:1.8;

    margin-bottom:48px;

    color:#5E5E5E;

    opacity:0;

    animation:

        fadeUp .9s ease forwards;

    animation-delay:.60s;

}

.grid{

    display:grid;

    gap:2rem;

}

.grid--2{

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

}

.grid--3{

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

}

.grid--4{

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

}

.grid--auto{

    grid-template-columns:

    repeat(auto-fit,minmax(320px,1fr));

}

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.flex-column{

    display:flex;

    flex-direction:column;

}

.flex-wrap{

    flex-wrap:wrap;

}

.gap-1{

    gap:1rem;

}

.gap-2{

    gap:2rem;

}

.gap-3{

    gap:3rem;

}

.split{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:6rem;

    align-items:center;

}

.split__content{

    max-width:600px;

}

.split__image img{

    border-radius:28px;

    box-shadow:var(--shadow);

}

.site-header{

    position:fixed;

    inset:0 0 auto 0;

    z-index:1000;

    padding:24px 0;

    background:transparent;

    transition:

        background .35s,
        padding .35s,
        box-shadow .35s;

}
.site-header.scrolled{

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

    backdrop-filter:blur(18px);

    box-shadow:

        0 10px 30px rgba(0,0,0,.05);

    padding:1rem 0;

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.divider{

    width:100%;

    height:1px;

    background:var(--color-border);

}

.stack>*+*{

    margin-top:2rem;

}

.stack--small>*+*{

    margin-top:1rem;

}

.stack--large>*+*{

    margin-top:4rem;

}

.features{

    display:grid;

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

    gap:4rem;

}

.feature{

    display:flex;

    flex-direction:column;

}

.feature__number{

    font-size:4rem;

    font-weight:200;

    color:#d7d7d7;

    margin-bottom:1rem;

}

.feature__title{

    margin-bottom:1rem;

}

.stats{

    display:grid;

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

    gap:4rem;

    text-align:center;

}

.stat__value{

    font-size:clamp(3rem,7vw,5rem);

    color:var(--color-gold);

    font-weight:300;

}

.stat__label{

    margin-top:1rem;

}

.cta{

    background:white;

    border-radius:36px;

    padding:5rem;

    box-shadow:var(--shadow);

    text-align:center;

}

.cta>*{

    margin-inline:auto;

}

.cta h2{

    margin-bottom:2rem;

}

.cta p{

    margin-bottom:3rem;

}

.space-top{

    margin-top:8rem;

}

.space-bottom{

    margin-bottom:8rem;

}

.space-y{

    padding-block:8rem;

}

.image-cover{

    width:100%;

    height:100%;

    object-fit:cover;

}

.rounded{

    border-radius:24px;

}

.shadow{

    box-shadow:var(--shadow);

}

.shadow-lg{

    box-shadow:var(--shadow-lg);

}

.section-heading{

    max-width:760px;

    margin:0 auto 8rem;

    text-align:center;

}

.services{

    display:flex;

    flex-direction:column;

    padding:10rem 0;

    background:#ffffff;

}

.service{

    display:grid;

    grid-template-columns:

        1fr

        1.2fr;

    gap:6rem;

    align-items:center;

}
.service-image img{

    width:100%;

    border-radius:28px;

    display:block;

}

.service:first-child{

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

}

.service__index{

    font-size:4rem;

    font-weight:200;

    color:#d8d8d8;

    line-height:1;

}

.service__content h3{

    margin-bottom:1rem;

}

.service__content p{

    max-width:60ch;

}

.service__meta{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.service__meta span{

    padding-bottom:.75rem;

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

    font-size:.95rem;

    color:var(--color-text-light);

}
.service-number{

    display:block;

    font-size:8rem;

    font-weight:700;

    color:#ECE8E1;

    line-height:1;

    margin-bottom:2rem;

}
.service h3{

    font-size:3rem;

    line-height:1.1;

    margin-bottom:2rem;

}
.service ul{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

    margin:2rem 0;

    padding:0;

    list-style:none;

}
.service li{

    padding:.6rem 1rem;

    border-radius:999px;

    background:#F7F7F7;

    font-size:.9rem;

}
.showcase{

    display:grid;

    gap:8rem;

}

.showcase__item{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:5rem;

    align-items:center;

}

.showcase__item:nth-child(even){

    grid-template-columns:.8fr 1.2fr;

}

.showcase__image{

    overflow:hidden;

    border-radius:32px;

}

.showcase__image img{

    width:100%;

    height:720px;

    object-fit:cover;

}

.showcase__content{

    max-width:500px;

}

.showcase__label{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--color-gold);

    text-transform:uppercase;

    letter-spacing:.2em;

    font-size:.75rem;

}

.showcase__content h2{

    margin-bottom:2rem;

}

.showcase__content p{

    margin-bottom:2rem;

}

.gallery{

    display:grid;

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

    gap:2rem;

}

.gallery__item{

    overflow:hidden;

    border-radius:24px;

    position:relative;

}

.gallery__item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.gallery__item:hover img{

    transform:scale(1.05);

}

.gallery__item:nth-child(1){

    grid-column:span 7;

    height:600px;

}

.gallery__item:nth-child(2){

    grid-column:span 5;

    height:600px;

}

.gallery__item:nth-child(3){

    grid-column:span 4;

    height:420px;

}

.gallery__item:nth-child(4){

    grid-column:span 4;

    height:420px;

}

.gallery__item:nth-child(5){

    grid-column:span 4;

    height:420px;

}

.gallery__caption{

    position:absolute;

    left:2rem;

    bottom:2rem;

    color:white;

}

.gallery__caption h3{

    color:white;

    margin-bottom:.5rem;

}

.gallery__overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        transparent,

        rgba(0,0,0,.55)

    );

}

.metrics{

    display:grid;

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

    gap:3rem;

}

.metric{

    border-left:2px solid var(--color-gold);

    padding-left:1.5rem;

}

.metric__value{

    font-size:3rem;

    font-weight:300;

}

.metric__label{

    margin-top:.5rem;

    color:var(--color-text-light);

}

.editorial{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:6rem;

    align-items:center;

}

.editorial__image{

    overflow:hidden;

    border-radius:32px;

}

.editorial__image img{

    width:100%;

    height:780px;

    object-fit:cover;

}

.editorial__content{

    max-width:480px;

}

.editorial__content h2{

    margin-bottom:2rem;

}

.editorial__content p{

    margin-bottom:1.5rem;

}

.testimonial{

    max-width:920px;

    margin:auto;

    text-align:center;

}

.testimonial blockquote{

    font-size:clamp(2rem,4vw,3rem);

    line-height:1.3;

    font-weight:300;

}

.testimonial footer{

    margin-top:2rem;

    color:var(--color-text-light);

}

.logo-strip{

    display:grid;

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

    gap:3rem;

    align-items:center;

}

.logo-strip img{

    width:100%;

    max-width:150px;

    margin:auto;

    opacity:.55;

    filter:grayscale(100%);

    transition:all .35s ease;

}

.logo-strip img:hover{

    opacity:1;

    filter:none;

}

.contact-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:6rem;

    align-items:start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:2rem;

}

.contact-item{

    padding-bottom:1.5rem;

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

}

.contact-item h4{

    margin-bottom:.5rem;

}

.timeline{

    display:grid;

    gap:4rem;

    position:relative;

    margin-inline:auto;

    max-width:960px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:26px;

    top:0;

    bottom:0;

    width:1px;

    background:var(--color-border);

}

.timeline__item{

    display:grid;

    grid-template-columns:70px 1fr;

    gap:2rem;

    position:relative;

}

.timeline__dot{

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--color-surface);

    border:2px solid var(--color-gold);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:.8rem;

    color:var(--color-gold);

    z-index:2;

}

.timeline__content{

    padding-bottom:2rem;

}

.timeline__year{

    color:var(--color-gold);

    font-size:.9rem;

    letter-spacing:.15em;

    text-transform:uppercase;

    margin-bottom:.75rem;

}

.full-image{

    width:100%;

    height:85svh;

    overflow:hidden;

}

.full-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.parallax{

    position:relative;

    overflow:hidden;

    height:90svh;

}

.parallax img{

    width:100%;

    height:120%;

    object-fit:cover;

}

.media{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:5rem;

    align-items:center;

}

.media--reverse{

    direction:rtl;

}

.media--reverse>*{

    direction:ltr;

}

.media__image{

    border-radius:32px;

    overflow:hidden;

}

.media__image img{

    width:100%;

    height:700px;

    object-fit:cover;

}

.media__content{

    max-width:560px;

}

.sticky{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:6rem;

}

.sticky__aside{

    position:sticky;

    top:120px;

    align-self:start;

}

.sticky__content{

    display:grid;

    gap:6rem;

}

.image-strip{

    display:grid;

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

    gap:1.5rem;

}

.image-strip img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:24px;

}

.banner{

    min-height:70svh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:#111;

    color:white;

    overflow:hidden;

}

.banner h2{

    color:white;

    max-width:900px;

}

.footer{

    background:#111;

    color:#d0d0d0;

    padding-top:6rem;

}

.footer__grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:4rem;

}

.footer__logo{

    max-width:180px;

    margin-bottom:2rem;

}

.footer h4{

    color:white;

    margin-bottom:1.5rem;

}

.footer ul{

    display:grid;

    gap:.8rem;

}

.footer a{

    color:#bdbdbd;

}

.footer a:hover{

    color:white;

}

.footer__bottom{

    margin-top:5rem;

    padding:2rem 0;

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

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:.9rem;

}

.page-intro{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:5rem;

    align-items:end;

}

.page-intro__title{

    max-width:900px;

}

.page-intro__text{

    max-width:420px;

}

.pb-0{padding-bottom:0;}
.pt-0{padding-top:0;}

.mt-auto{margin-top:auto;}

.w-100{width:100%;}

.h-100{height:100%;}

.overflow-hidden{

    overflow:hidden;

}

.position-relative{

    position:relative;

}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }

}

@keyframes fadeUp {

    0%{

        opacity:0;
        transform:translateY(40px);

    }

    100%{

        opacity:1;
        transform:translateY(0);

    }
    

}
@keyframes heroReveal{

    from{

        opacity:0;

        transform:scale(1.08);

        filter:blur(8px);

    }

    to{

        opacity:.48;

        transform:scale(1);

        filter:blur(0);

    }

}
