/*==========================================
    Story Hero
==========================================*/

.story-hero{

    position:relative;

    width:100%;

   	min-height:100svh;

    padding:0;

    margin:0;

    overflow:hidden;

}

.story-hero img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.story-overlay{

    position:absolute;

    inset:0;

background:linear-gradient(

        180deg,

        rgba(0,0,0,.22) 0%,

        rgba(0,0,0,.12) 38%,

        rgba(0,0,0,.60) 100%

    );

}

.story-hero-content{

    position:absolute;

    left:50%;

    bottom:12%;

    transform:translateX(-50%);
	
	text-shadow:0 2px 12px rgba(0,0,0,.20);

    width:90%;

    max-width:1200px;

    color:#fff;

}

.story-hero-content span{

    display:block;

    margin-bottom:16px;

    font-family:"Montserrat",sans-serif;

    font-size:.9rem;

    letter-spacing:3px;

    text-transform:uppercase;

}

.story-hero-content h1{
	
	margin-bottom:12px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(4rem,8vw,7rem);

    font-weight:500;
	
	letter-spacing:.01em;

    line-height:1;

}




/*==========================================
    Story Intro
==========================================*/

.story-intro{

    padding:160px 0;

    background:#fff;

}

.story-intro .container{

    max-width:900px;

}

.story-subtitle{

    display:block;

    margin-bottom:20px;

    font-family:"Montserrat",sans-serif;

    font-size:.85rem;

    letter-spacing:.32em;

    text-transform:uppercase;

    color:#C9A14A;

}

.story-intro h2{

    margin-bottom:40px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(2.8rem,5vw,4.5rem);

    font-weight:500;

    line-height:1.08;

    color:#222;

}

.story-intro p{

    max-width:680px;

    font-family:"Montserrat",sans-serif;

    font-size:1.1rem;

    line-height:2;

    color:#666;

}

.story-intro p + p{

    margin-top:34px;

}


/*==========================================
    Large Photo
==========================================*/

.story-photo-large{

    padding:0 0 160px;

}

.story-photo-large img{

    display:block;

    width:100%;

    border-radius:12px;

    transition:transform .8s ease;

}

.story-photo-large img:hover{

    transform:scale(1.02);

}


/*==========================================
    Photo Grid
==========================================*/

.story-photo-grid{

    padding-bottom:160px;

}

.story-photo-grid .container{

    display:grid;

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

    gap:40px;

}

.story-photo-grid img{

    display:block;

    width:100%;

    border-radius:8px;

}


/*==========================================
    Wedding Film
==========================================*/

.story-film{

    padding:160px 0;

    background:#f8f8f8;

}

.film-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.film-header p{

    margin-top:30px;

    font-family:"Montserrat",sans-serif;

    font-size:1.05rem;

    line-height:2;

    color:#666;

}

.film-video{

    position:relative;

    overflow:hidden;

    border-radius:12px;

    aspect-ratio:16/9;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.film-video iframe{

    width:100%;

    height:100%;

    border:0;

}

.film-header span{

    display:block;

    margin-bottom:20px;

    font-family:"Montserrat",sans-serif;

    font-size:.85rem;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#C9A14A;

}

.film-header h2{

    font-family:"Cormorant Garamond",serif;

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

    font-weight:500;

    color:#222;

}

.film-video{

    aspect-ratio:16/9;

    background:#000;

    border-radius:10px;

    overflow:hidden;

}
/*==========================================
    Vertical Photo
==========================================*/

.story-photo-vertical{

    padding:180px 0;

    background:#FCFCFB;

}

.story-photo-vertical .container{

    display:flex;

    justify-content:center;

}

.story-photo-vertical img{

    display:block;

    width:100%;

    max-width:700px;

    margin:0 auto;

    border-radius:12px;

    transition:transform .8s ease;

}

.story-photo-vertical img:hover{

    transform:scale(1.02);

}
/*==========================================
    Story Gallery
==========================================*/

.story-gallery{

    padding:0 0 180px;

    background:var(--color-white);

}

.story-gallery .container{

    max-width:1200px;

}

.story-gallery-grid{

    display:grid;

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

    gap:24px;

}

.gallery-item{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:12px;

    text-decoration:none;

    background:#f5f5f5;

}

/*------------------------------------------
    Aspect Ratio
------------------------------------------*/

.gallery-item.landscape{

    grid-column:span 7;

    aspect-ratio:3/2;

}

.gallery-item.portrait{

    grid-column:span 5;

    aspect-ratio:2/3;

}

/*------------------------------------------
    Images
------------------------------------------*/

.gallery-item img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:

        transform .8s ease,

        filter .4s ease;

    will-change:transform;

}

.gallery-item:hover img{

    transform:scale(1.02);

    filter:brightness(.97);

}

/*------------------------------------------
    Responsive
------------------------------------------*/

@media (max-width:992px){

    .story-gallery-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .gallery-item.landscape{

        grid-column:span 1;

        aspect-ratio:3/2;

    }

    .gallery-item.portrait{

        grid-column:span 1;

        aspect-ratio:2/3;

    }

}

@media (max-width:576px){

    .story-gallery{

        padding:0 0 120px;

    }

    .story-gallery .container{

        gap:18px;

    }

}
/*------------------------------------------
    Layout
------------------------------------------*/

.landscape{

    grid-column:span 7;

}

.portrait{

    grid-column:span 5;

}

/*==========================================
    Next Story
==========================================*/

.next-story{

    position:relative;

    min-height:80vh;

    overflow:hidden;

}

.next-story img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.next-story-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.18),

        rgba(0,0,0,.72)

    );

}

.next-story-content{

    position:relative;

    z-index:2;

    min-height:80vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

    padding:40px;

}

.next-story-content span{

    margin-bottom:20px;

    font-family:"Montserrat",sans-serif;

    font-size:.85rem;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#C9A14A;

}

.next-story-content h2{

    margin-bottom:25px;

    font-family:"Cormorant Garamond",serif;

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

    font-weight:500;

}

.next-story-content p{

    max-width:620px;

    margin-bottom:45px;

    line-height:2;

    color:#eee;

}

/*==========================================
    Story Contact
==========================================*/

.story-contact{

    padding:180px 0;

    background:#fff;

}

.story-contact .container{

    max-width:900px;

    text-align:center;

}

.story-contact span{

    display:block;

    margin-bottom:20px;

    font-family:"Montserrat",sans-serif;

    font-size:.85rem;

    letter-spacing:4px;

    text-transform:uppercase;

    color:var(--color-primary);

}

.story-contact h2{

    margin-bottom:30px;

    font-family:"Cormorant Garamond",serif;

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

    font-weight:500;

    line-height:1.1;

    color:var(--color-black);

}

.story-contact p{

    max-width:700px;

    margin:0 auto 60px;

    font-family:"Montserrat",sans-serif;

    font-size:1.05rem;

    line-height:2;

    color:var(--color-text);

}

.story-contact-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/*==========================================
    Scroll Indicator
==========================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:calc(48px + env(safe-area-inset-bottom));

    transform:translateX(-50%);

    width:36px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    border:2px solid rgba(255,255,255,.70);

    border-radius:30px;

    z-index:5;

    text-decoration:none;

}

.scroll-indicator span{

    width:6px;

    height:10px;

    margin-top:10px;

    border-radius:10px;

    background:#fff;

    animation:scroll-down 2s infinite;

}

@keyframes scroll-down{

    0%{

        opacity:0;

        transform:translateY(0);

    }

    30%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(24px);

    }

}

.story-date{

    margin-top:14px;

    font-family:"Montserrat",sans-serif;

    font-size:.9rem;

    letter-spacing:3px;

    text-transform:uppercase;

}
/*==========================================
    Story Quote
==========================================*/

.story-quote{

    padding:180px 0;

    background:#f8f8f8;

}

.story-quote .container{

    max-width:900px;

    text-align:center;

}

.story-quote blockquote{

    margin:0;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(2.4rem,5vw,4rem);

    font-weight:400;

    line-height:1.35;

    color:#222;

}

.story-quote cite{

    display:block;

    margin-top:40px;

    font-family:"Montserrat",sans-serif;

    font-size:.9rem;

    font-style:normal;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#C9A14A;

}

/*==========================================
    STORY HERO MOBILE
==========================================*/

@media (max-width:768px){

    .story-hero{

        min-height:100svh;

    }

    .story-hero-content{

        width:88%;

        bottom:16%;

    }

    .story-hero-content h1{

        font-size:clamp(3rem,11vw,4.2rem);

        line-height:1.05;

    }

    .story-hero-content span{

        font-size:.78rem;

        letter-spacing:.28em;

    }

    .story-date{

        font-size:.78rem;

        letter-spacing:.18em;

    }

}

/*==========================================
    STORY INTRO MOBILE
==========================================*/

@media (max-width:768px){

    .story-intro{

        padding:90px 0;

    }

    .story-intro .container{

        width:min(92%,680px);

    }

    .story-subtitle{

        margin-bottom:14px;

        font-size:.76rem;

        letter-spacing:.28em;

    }

    .story-intro h2{

        margin-bottom:28px;

        font-size:clamp(2.2rem,8vw,3rem);

        line-height:1.15;

    }

    .story-intro p{

        font-size:1rem;

        line-height:1.9;

    }

    .story-intro p + p{

        margin-top:24px;

    }

}

/*==========================================
    EDITORIAL PHOTO MOBILE
==========================================*/

@media (max-width:768px){

    .story-photo-large{

        padding:0 0 90px;

    }

    .story-photo-large .container{

        width:min(94%,900px);

    }

    .story-photo-large img{

        border-radius:8px;

    }

}

/*==========================================
    STORY GALLERY MOBILE
==========================================*/

@media (max-width:768px){

    .story-gallery{

        padding:0 0 90px;

    }

    .story-gallery .container{

        width:min(94%,900px);

    }

    .story-gallery-grid{

        gap:16px;

    }

    .gallery-item{

        border-radius:10px;

    }

}

/*==========================================
    STORY FILM MOBILE
==========================================*/

@media (max-width:768px){

    .story-film{

        padding:90px 0;

    }

    .film-header{

        margin:0 auto 42px;

        width:min(92%,680px);

    }

    .film-header span{

        font-size:.76rem;

        letter-spacing:.28em;

    }

    .film-header h2{

        font-size:clamp(2.2rem,8vw,3rem);

        line-height:1.15;

    }

    .film-header p{

        margin-top:22px;

        font-size:1rem;

        line-height:1.85;

    }

    .film-video{

        border-radius:8px;

    }

}

/*==========================================
    VERTICAL PHOTO MOBILE
==========================================*/

@media (max-width:768px){

    .story-photo-vertical{

        padding:90px 0;

    }

    .story-photo-vertical .container{

        width:min(92%,700px);

    }

    .story-photo-vertical img{

        border-radius:8px;

    }

}

/*==========================================
    STORY QUOTE MOBILE
==========================================*/

@media (max-width:768px){

    .story-quote{

        padding:90px 0;

    }

    .story-quote .container{

        width:min(90%,760px);

    }

    .story-quote blockquote{

        font-size:clamp(2rem,8vw,2.8rem);

        line-height:1.3;

    }

    .story-quote cite{

        margin-top:28px;

        font-size:.75rem;

        letter-spacing:.28em;

    }

}

/*==========================================
    NEXT STORY MOBILE
==========================================*/

@media (max-width:768px){

    .next-story{

        min-height:60vh;

    }

    .next-story-content{

        min-height:60vh;

        padding:32px;

    }

    .next-story-content span{

        margin-bottom:14px;

        font-size:.76rem;

        letter-spacing:.28em;

    }

    .next-story-content h2{

        margin-bottom:18px;

        font-size:clamp(2.3rem,9vw,3.3rem);

        line-height:1.1;

    }

    .next-story-content p{

        max-width:92%;

        margin-bottom:34px;

        font-size:1rem;

        line-height:1.8;

    }

}

/*==========================================
    STORY CONTACT MOBILE
==========================================*/

@media (max-width:768px){

    .story-contact{

        padding:90px 0;

    }

    .story-contact .container{

        width:min(92%,760px);

    }

    .story-contact span{

        font-size:.76rem;

        letter-spacing:.28em;

    }

    .story-contact h2{

        font-size:clamp(2.2rem,8vw,3rem);

        margin-bottom:22px;

    }

    .story-contact p{

        margin-bottom:40px;

        font-size:1rem;

        line-height:1.85;

    }

    .story-contact-actions{

        gap:14px;

    }

}



