/* ==========================
   Picture Palace Productions
   Global Styles
========================== */

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

:root{

    --primary:#D4AF37;
    --secondary:#111111;
    --black:#050505;
    --white:#ffffff;
    --text:#cfcfcf;

    --radius:18px;

    --transition:.35s ease;

    --container:1320px;

}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);

    color:var(--white);

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

section{

    position: relative;

}

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

#loader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.8s ease;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:140px;

    animation:logoPulse 2s infinite;

}

.loader-content h2{

    color:#fff;

    margin-top:20px;

    font-family:'Cinzel',serif;

}

.loader-content span{

    color:#D4AF37;

    letter-spacing:3px;

    font-size:14px;

}

@keyframes logoPulse{

    0%{transform:scale(.95);}
    50%{transform:scale(1.05);}
    100%{transform:scale(.95);}

}
/*==============================
SCROLL PROGRESS
==============================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#D4AF37;

    z-index:999999;

}
/*==============================
TOP BUTTON
==============================*/

#topBtn{

    position:fixed;

    bottom:120px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:#000;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

}

#topBtn:hover{

    transform:translateY(-5px);

}

#topBtn.show{

    display:block;

}
#lightbox{

position:fixed;

inset:0;

background:rgba(0,0,0,.95);

display:none;

justify-content:center;

align-items:center;

z-index:99999;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:12px;

}

#close-lightbox{

position:absolute;

top:30px;

right:40px;

font-size:50px;

color:white;

cursor:pointer;

}
/* ===========================
BOOKING POPUP
=========================== */

#booking-popup{
display:none;
justify-content:center;
align-items:center;
position:fixed;
inset:0;
z-index:999999;
background:rgba(0,0,0,.7);
}

.booking-box{

    width:500px;
    max-width:90%;

    background:#111;

    padding:40px;

    border-radius:20px;

    border:1px solid #D4AF37;

    position:relative;

}

.booking-box h2{

    color:#D4AF37;
    text-align:center;
    margin-bottom:10px;

}

.booking-box p{

    text-align:center;
    color:#ccc;
    margin-bottom:30px;

}

.booking-box input,
.booking-box textarea,
.booking-box select{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    background:#1c1c1c;

    color:white;

    border:1px solid #333;

    border-radius:10px;

    font-size:16px;

}

.booking-box textarea{

    height:120px;
    resize:none;

}

.booking-box button{

    width:100%;

    padding:16px;

    background:#D4AF37;

    color:#000;

    font-size:18px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-weight:700;

}

.booking-box button:hover{

    background:white;

}

#close-booking{

    position:absolute;

    top:15px;

    right:20px;

    color:white;

    font-size:35px;

    cursor:pointer;

}
/* ===========================
FEATURED WEDDING FILMS
=========================== */

.featured-films{
    padding:90px 8%;
    background:#0b0b0b;
}

.featured-films .section-title{
    text-align:center;
    margin-bottom:50px;
}

.featured-films h2{
    font-size:42px;
    color:#fff;
    margin-bottom:15px;
}

.featured-films p{
    color:#bbb;
    font-size:17px;
}

.film-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

}

.film-grid iframe{

    width:100%;

    aspect-ratio:16/9;

    border:none;

    border-radius:18px;

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

    transition:.35s;

}

.film-grid iframe:hover{

    transform:translateY(-8px);

}
/* ===========================
WHATSAPP FLOAT BUTTON
=========================== */

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    z-index: 99999;
    transition: 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    background: #20ba5a;
}
/*==========================================
        PORTFOLIO PAGE
==========================================*/

.portfolio-hero{
    height:65vh;
    background:url("../assets/images/portfolio/banner.jpg") center center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h5{
    color:#d4af37;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:70px;
    color:#fff;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content p{
    color:#ddd;
    font-size:20px;
}


/*================ FILTER =================*/

.portfolio-filter{

    padding:70px 0;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    background:#080808;

}

.filter-btn{

    padding:14px 35px;

    border:1px solid #d4af37;

    background:transparent;

    color:white;

    border-radius:50px;

    cursor:pointer;

    transition:.4s;

    font-size:15px;

}

.filter-btn:hover,
.filter-btn.active{

    background:#d4af37;

    color:#111;

}
/* ==========================================================
   PICTURE PALACE PREMIUM ALBUM SHOWCASE
========================================================== */

#ppAlbumShowcase{
    width:100%;
    padding:100px 0;
}

#ppAlbumShowcase .container{
    width:min(1400px,92%);
    margin:auto;
}

/* Heading */

.pp-album-heading{
    text-align:center;
    margin-bottom:70px;
}

.pp-album-subtitle{
    display:inline-block;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#D4AF37;
    font-weight:600;
    margin-bottom:15px;
}

.pp-album-title{

    font-family:'Cormorant Garamond',serif;

    font-size:52px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:20px;

}
.pp-album-description{

    max-width:700px;

    margin:auto;

    font-size:18px;

    line-height:1.8;

    color:#cfcfcf;

}


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

.ppAlbumGrid{

    display:grid;

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

    gap:28px;

    align-items:start;

}

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

.ppAlbumCard{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    background:#f5f5f5;

    transition:.45s;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);

}

.ppAlbumCard img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

/* Overlay */

.ppAlbumOverlay{

    position:absolute;

    left:18px;
    right:18px;
    bottom:18px;

    padding:16px 22px;

    border-radius:14px;

    background:rgba(15,15,15,.55);

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

    border:1px solid rgba(212,175,55,.35);

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);

    transition:.4s ease;

}

.ppAlbumOverlay h3{

    margin:0;

    color:#ffffff;

    font-family:'Cormorant Garamond', serif;

    font-size:32px;

    font-weight:600;

    letter-spacing:1.2px;

    text-shadow:0 2px 10px rgba(0,0,0,.5);

}

/* Hover */

.ppAlbumCard:hover .ppAlbumOverlay{

    transform:translateY(-6px);

    border-color:#D4AF37;

    box-shadow:
        0 12px 35px rgba(212,175,55,.22);

}
/* ==========================================================
   ALBUM RATIOS
========================================================== */

/* 12×36 (3:1) */

.ppRatio1236{

    grid-column:span 8;

    aspect-ratio:3 / 1;

}

/* 18×24 Portrait (3:4) */

.ppRatio1824{

    grid-column:span 4;

    aspect-ratio:3 / 4;

}

/* 14×40 Panorama (20:7) */

.ppRatio1440{

    grid-column:span 12;

    aspect-ratio:20 / 7;

}

/* 20×30 Landscape (3:2) */

.ppRatio2030{

    grid-column:span 6;

    aspect-ratio:3 / 2;

}

/* Custom Album */

.ppRatioSquare{

    grid-column:span 6;

    aspect-ratio:1 / 1;

}

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

.ppAlbumCard:hover{

    transform:translateY(-10px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.18);

}

.ppAlbumCard:hover img{

    transform:scale(1.08);

}

.ppAlbumCard::after{

    content:"";

    position:absolute;

    inset:0;

    border:3px solid transparent;

    transition:.45s;

    pointer-events:none;

    border-radius:18px;

}

.ppAlbumCard:hover::after{

    border-color:#d4af37;

}

/* Overlay Animation */

.ppAlbumOverlay{

    transition:.45s;

}

.ppAlbumCard:hover .ppAlbumOverlay{

    padding-bottom:34px;

}

.ppAlbumOverlay h3{

    transition:.35s;

}

.ppAlbumCard:hover h3{

    letter-spacing:2px;

}

/* ============================
   ALBUM MODAL VIEWER
============================ */

.ppAlbumViewer{

    position:fixed;
    inset:0;

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

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);

    z-index:9999;

    padding:25px;

}

.ppAlbumViewer.active{

    display:flex;

}

.ppAlbumViewerContent{

    width:min(1400px,92vw);
    height:90vh;

    background:#111;

    border-radius:18px;

    overflow:hidden;

    display:flex;
    flex-direction:column;

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

}

.ppAlbumViewerHeader{

    flex-shrink:0;

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

    padding:20px 30px;

    background:#181818;

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

}

.ppAlbumImages{

    flex:1;

    overflow-y:auto;

    padding:30px;

    display:flex;
    flex-direction:column;
    gap:30px;

}

.ppAlbumImages img{

    width:100%;
    height:auto;

    border-radius:12px;

    display:block;

}

#ppAlbumClose{

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:22px;

    background:#222;

    color:#fff;

    transition:.3s;

}

#ppAlbumClose:hover{

    background:#c59d5f;

    color:#000;

}
/*=========================================
            ABOUT HERO
==========================================*/

.about-hero{

    position:relative;

    width:100%;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:url("../assets/about/hero.jpg") center center/cover no-repeat;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.75)
    );

}

.about-content{

    position:relative;

    z-index:2;

    max-width:900px;

    text-align:center;

    color:#fff;

    padding:0 20px;

}

.about-subtitle{

    display:inline-block;

    color:#C8A46A;

    letter-spacing:5px;

    font-size:14px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.about-content h1{

    font-family:"Cinzel",serif;

    font-size:72px;

    line-height:1.15;

    margin-bottom:25px;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#dddddd;

    max-width:750px;

    margin:auto;

}

.about-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.about-btn{

    background:#C8A46A;

    color:#111;

    text-decoration:none;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.about-btn:hover{

    transform:translateY(-3px);

}

.about-btn-outline{

    border:1px solid #fff;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:50px;

    transition:.35s;

}

.about-btn-outline:hover{

    background:#fff;

    color:#111;

}

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    z-index:5;

}

.scroll-down span{

    display:block;

    width:2px;

    height:60px;

    background:#C8A46A;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:0;

        transform:translateY(0);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(18px);

    }

}
/*=========================================
            OUR LEGACY
=========================================*/

.legacy-section{

    background:#050505;

    padding:120px 0;

}

.legacy-section .section-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;

}

.legacy-section .section-heading span{

    color:#C8A46A;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

    font-weight:600;

}

.legacy-section .section-heading h2{

    color:#fff;

    font-size:52px;

    margin:18px 0;

    font-family:"Cinzel",serif;

}

.legacy-section .section-heading p{

    color:#bfbfbf;

    line-height:1.9;

    font-size:17px;

}

/* Timeline */

.legacy-timeline{

    max-width:900px;

    margin:0 auto;

    position:relative;

    padding-left:45px;

    border-left:2px solid rgba(200,164,106,.35);

}

.legacy-item{

    position:relative;

    margin-bottom:60px;

}

.legacy-item:last-child{

    margin-bottom:0;

}

.legacy-item::before{

    content:"";

    position:absolute;

    left:-56px;

    top:8px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#C8A46A;

    border:4px solid #050505;

    box-shadow:0 0 0 2px #C8A46A;

}

.legacy-year{

    color:#C8A46A;

    font-size:30px;

    font-weight:700;

    font-family:"Cinzel",serif;

    margin-bottom:15px;

}

.legacy-card{

    background:#101010;

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

    border-radius:18px;

    padding:35px;

    transition:.4s;

}

.legacy-card:hover{

    transform:translateY(-6px);

    border-color:#C8A46A;

}

.legacy-card h3{

    color:#fff;

    font-size:28px;

    margin-bottom:18px;

    font-family:"Cinzel",serif;

}

.legacy-card p{

    color:#cfcfcf;

    line-height:1.9;

    font-size:17px;

}

/* Quote */

.legacy-quote{

    margin-top:100px;

    text-align:center;

    padding:70px 40px;

    border-top:1px solid rgba(200,164,106,.25);

}

.legacy-quote h2{

    color:#fff;

    font-size:42px;

    font-family:"Cinzel",serif;

    font-style:italic;

    line-height:1.5;

    max-width:900px;

    margin:auto;

}

.legacy-quote span{

    display:block;

    margin-top:25px;

    color:#C8A46A;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:13px;

}

/*====================================

TRIBUTE SECTION

====================================*/

.tribute-section{

padding:140px 0;

background:#090909;

overflow:hidden;

position:relative;

}

.tribute-grid{

display:grid;

grid-template-columns:430px 1fr;

gap:90px;

align-items:center;

}

.tribute-image{

position:relative;

}

.tribute-image img{

width:100%;

display:block;

border-radius:20px;

filter:grayscale(100%);

box-shadow:0 30px 70px rgba(0,0,0,.45);

transition:.6s;

}

.tribute-image:hover img{

transform:scale(1.03);

filter:grayscale(0);

}

.tribute-year{

position:absolute;

left:50%;

bottom:-30px;

transform:translateX(-50%);

background:#111;

padding:20px;

width:85%;

border-radius:14px;

border:1px solid rgba(200,164,106,.35);

text-align:center;

}

.tribute-year h2{

font-family:"Cinzel",serif;

color:#C8A46A;

font-size:32px;

margin-bottom:10px;

}

.tribute-year p{

color:#ddd;

font-size:13px;

letter-spacing:3px;

text-transform:uppercase;

}

.tribute-content span{

color:#C8A46A;

letter-spacing:4px;

font-size:13px;

text-transform:uppercase;

}

.tribute-content h1{

font-family:"Cinzel",serif;

font-size:62px;

color:white;

margin:15px 0;

}

.tribute-content h3{

font-size:28px;

color:#C8A46A;

margin-bottom:35px;

font-style:italic;

font-weight:400;

}

.tribute-content p{

color:#d2d2d2;

line-height:2;

font-size:17px;

margin-bottom:22px;

text-align:justify;

}
/*====================================
        SHAYARI SECTION
====================================*/

.legacy-poetry{

    margin-top:150px;

    text-align:center;

}

.legacy-poetry h2{

    font-family:"Cinzel",serif;

    font-size:38px;

    color:#C8A46A;

    margin-bottom:45px;

    letter-spacing:2px;

}

.poetry-box{

    max-width:950px;

    margin:auto;

    background:#111;

    border:1px solid rgba(200,164,106,.25);

    border-radius:22px;

    padding:60px;

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

}

.poetry-box .hindi{

    color:#fff;

    font-size:34px;

    line-height:1.9;

    font-weight:600;

    margin-bottom:50px;

    font-family:"Noto Serif Devanagari", serif;

}

.poetry-box .urdu{

    color:#d8c39b;

    font-size:34px;

    line-height:2.2;

    direction:rtl;

    font-family:"Noto Nastaliq Urdu","Jameel Noori Nastaleeq","Noto Sans Arabic",serif;

}

/*====================================
        LEGACY ENDING
====================================*/

.legacy-ending{

    margin-top:120px;

    text-align:center;

    border-top:1px solid rgba(200,164,106,.20);

    padding-top:80px;

}

.legacy-ending h2{

    max-width:none;
    
    width:100%;
    
    margin:auto;

    color:#C8A46A;

    font-family:"Cinzel",serif;

    font-size:52px;

    font-style:italic;

    line-height:1.3;

    

}

.legacy-ending p{

    margin-top:35px;

    color:#e6e6e6;

    font-size:22px;

    letter-spacing:1px;

    line-height:1.8;

}

.legacy-ending h3{

    margin-top:35px;

    color:#ffffff;

    font-size:28px;

    font-weight:500;

    letter-spacing:1px;

}

.legacy-ending h3 span{

    color:#C8A46A;

    margin:0 18px;

    font-size:22px;

}

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

.poetry-box{

    transition:.45s;

}

.poetry-box:hover{

    transform:translateY(-8px);

    border-color:#C8A46A;

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.legacy-ending h2{

    transition:.4s;

}

.legacy-ending:hover h2{

    letter-spacing:1px;

}

/*=========================================
NEWSROOM
=========================================*/

.newsroom-section{

position:relative;

padding:150px 0;

background:#070707;

overflow:hidden;

}

.news-overlay{

position:absolute;

inset:0;

background:

radial-gradient(circle at left,
rgba(26,72,130,.25),
transparent 40%),

radial-gradient(circle at right,
rgba(180,30,30,.18),
transparent 35%);

}

.news-title{

position:relative;

text-align:center;

margin-bottom:90px;

}

.news-title span{

color:#C8A46A;

letter-spacing:5px;

font-size:13px;

text-transform:uppercase;

}

.news-title h2{

font-family:"Cinzel",serif;

font-size:64px;

color:white;

margin-top:20px;

line-height:1.2;

}

.news-grid{

position:relative;

display:grid;

grid-template-columns:520px 1fr;

gap:100px;

align-items:center;

}

.news-image{

position:relative;

overflow:hidden;

}

.news-image img{

width:100%;

display:block;

box-shadow:

0 40px 80px rgba(0,0,0,.45);

transition:.6s;

}

.news-image:hover img{

transform:scale(1.03);

}

.image-caption{

position:absolute;

bottom:0;

left:0;

right:0;

padding:35px;

background:

linear-gradient(

to top,

rgba(0,0,0,.55),

rgba(0,0,0,0)

);

z-index:2;

}

.image-caption h3{

font-family:"Cinzel",serif;

font-size:28px;

color:white;

margin-bottom:10px;

}

.image-caption p{

color:#C8A46A;

letter-spacing:2px;

font-size:13px;

text-transform:uppercase;

}

.news-story{

position:relative;

padding-left:60px;

}

.gold-line{

position:absolute;

left:0;

top:0;

bottom:0;

width:2px;

background:#C8A46A;

}

.news-story h3{

font-family:"Cinzel",serif;

font-size:56px;

line-height:1.25;

color:white;

margin-bottom:45px;

}

.news-story p{

color:#d6d6d6;

font-size:18px;

line-height:2;

margin-bottom:25px;

text-align:justify;

}

.news-story strong{

color:#C8A46A;

font-weight:600;

}

.story-quote{

margin-top:50px;

font-family:"Cinzel",serif;

font-size:34px;

line-height:1.6;

color:#C8A46A;

font-style:italic;

}
/*=========================================
        NEWSROOM - PART 2
=========================================*/

/* Story Fade Animation */

.news-story,
.news-image{

    animation:fadeUp 1.2s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* Image Hover */

.news-image{

    border:1px solid rgba(200,164,106,.18);

}

.news-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.65),

        rgba(0,0,0,0)

    );

    pointer-events:none;

}

.news-image:hover{

    border-color:#C8A46A;

    box-shadow:

    0 35px 80px rgba(0,0,0,.55);

}


/* Story Card */

.news-story{

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

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

    padding:70px 70px 70px 90px;

    backdrop-filter:blur(8px);

    transition:.4s;

}

.news-story:hover{

    border-color:rgba(200,164,106,.35);

    transform:translateY(-6px);

}


/* First Letter */

.news-story p:first-of-type:first-letter{

    font-size:64px;

    float:left;

    line-height:50px;

    padding-right:12px;

    color:#C8A46A;

    font-family:"Cinzel",serif;

}


/* Quote */

.story-quote{

    position:relative;

    padding-top:35px;

}

.story-quote::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:120px;

    height:2px;

    background:#C8A46A;

}


/* Decorative Circle */

.newsroom-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    border:1px solid rgba(200,164,106,.08);

    right:-180px;

    top:120px;

}

.newsroom-section::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    border:1px solid rgba(200,164,106,.08);

    left:-120px;

    bottom:100px;

}



/*=========================================
    THE LEGACY CONTINUES
=========================================*/

.legacy-brothers{
    position:relative;
    padding:140px 0;
    background:#070707;
    overflow:hidden;
}

.legacy-brothers::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border:1px solid rgba(200,164,106,.08);
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.legacy-brothers::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border:1px solid rgba(200,164,106,.06);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

/* Heading */

.legacy-heading{
    max-width:900px;
    margin:0 auto 90px;
    text-align:center;
}

.legacy-heading span{
    color:#C8A46A;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;
}

.legacy-heading h2{
    margin-top:18px;
    color:#fff;
    font-size:60px;
    line-height:1.2;
    font-family:"Cinzel",serif;
}

.legacy-heading p{
    margin-top:30px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.9;
}

/* Grid */

.brothers-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:45px;
}

/* Card */

.brother-card{
    background:#111;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.05);
    transition:.45s;
}

.brother-card:hover{
    transform:translateY(-12px);
    border-color:#C8A46A;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

/* Image */

.brother-image{
    overflow:hidden;
    position:relative;
}

.brother-image img{
    width:100%;
    display:block;
    transition:.7s;
}

.brother-card:hover img{
    transform:scale(1.06);
}

.brother-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.15),
    transparent);
}

/* Content */

.brother-content{
    padding:38px;
}

.role-label{
    display:inline-block;
    color:#C8A46A;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.brother-content h3{
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
    font-family:"Cinzel",serif;
}

.brother-content p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.9;
}

/* ====== UNIQUE ENDING ====== */

.brothers-legacy-ending{
    max-width:900px;
    margin:110px auto 0;
    padding-top:55px;
    position:relative;
    text-align:center;
}

.brothers-legacy-ending::before{
    content:"";
    width:130px;
    height:2px;
    background:#C8A46A;
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
}

.brothers-legacy-ending h3{
    font-family:"Cinzel",serif;
    color:#C8A46A;
    font-size:42px;
    line-height:1.5;
    margin-bottom:25px;
}

.brothers-legacy-ending p{
    color:#bdbdbd;
    font-size:18px;
    line-height:2;
}

/* Animation */

.brother-card{
    animation:brotherFade .9s ease forwards;
}

.brother-card:nth-child(2){
    animation-delay:.2s;
}

.brother-card:nth-child(3){
    animation-delay:.4s;
}

@keyframes brotherFade{

from{
opacity:0;
transform:translateY(60px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/*=========================================
        BEHIND THE SCENES
=========================================*/

.bts-section{
    position:relative;
    padding:140px 0;
    background:#070707;
    overflow:hidden;
}

/* Decorative Background */

.bts-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border:1px solid rgba(200,164,106,.08);
    border-radius:50%;
    top:-220px;
    left:-180px;
}

.bts-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:1px solid rgba(200,164,106,.06);
    border-radius:50%;
    bottom:-180px;
    right:-120px;
}

/*================================*/

.bts-heading{

    max-width:900px;

    margin:0 auto 90px;

    text-align:center;

}

.bts-heading span{

    color:#C8A46A;

    letter-spacing:4px;

    font-size:13px;

    text-transform:uppercase;

}

.bts-heading h2{

    margin:20px 0 30px;

    color:#fff;

    font-size:60px;

    line-height:1.2;

    font-family:"Cinzel",serif;

}

.bts-heading p{

    color:#bfbfbf;

    font-size:18px;

    line-height:1.9;

}

/*================================*/

.bts-gallery{

    display:grid;

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

    gap:22px;

    grid-auto-flow:dense;

}

/*================================*/

.bts-item{

    position:relative;

    overflow:hidden;

    background:#111;

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

    cursor:pointer;

    transition:.45s;

}

/* Tall Image */

.bts-item.tall{

    grid-row:span 2;

}

/* Wide Image */

.bts-item.wide{

    grid-column:span 2;

}

/*================================*/

.bts-item img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:.8s;

}

/*================================*/

.bts-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.75),

        rgba(0,0,0,.15),

        transparent

    );

    opacity:0;

    transition:.4s;

}

/*================================*/

.bts-item:hover{

    transform:translateY(-8px);

    border-color:#C8A46A;

    box-shadow:

    0 25px 70px rgba(0,0,0,.45);

}

.bts-item:hover img{

    transform:scale(1.08);

}

.bts-item:hover::before{

    opacity:1;

}

/*================================*/

.bts-item::after{

    content:"+";

    position:absolute;

    left:50%;

    top:50%;

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

    color:#fff;

    font-size:44px;

    opacity:0;

    transition:.35s;

}

.bts-item:hover::after{

    opacity:1;

}

/*================================*/
/* Lightbox */
/*================================*/

.bts-lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.bts-lightbox.active{

    display:flex;

}

#bts-preview{

    max-width:90%;

    max-height:88vh;

    border:2px solid rgba(200,164,106,.4);

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

}

/*================================*/

.bts-close{

    position:absolute;

    top:30px;

    right:45px;

    color:#fff;

    font-size:48px;

    cursor:pointer;

    transition:.3s;

}

.bts-close:hover{

    color:#C8A46A;

}

/*================================*/

.bts-prev,
.bts-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:65px;

    height:65px;

    border:none;

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

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

    backdrop-filter:blur(8px);

}

.bts-prev{

    left:35px;

}

.bts-next{

    right:35px;

}

.bts-prev:hover,
.bts-next:hover{

    background:#C8A46A;

    color:#000;

}

/*================================*/

.bts-item{

    animation:btsFade .8s ease forwards;

}

@keyframes btsFade{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/*=========================================
        EXTRA LAYOUT FOR 22 IMAGES
=========================================*/

/* Large Hero Image */
.bts-item:nth-child(1){
    grid-column:span 2;
    grid-row:span 2;
}

/* Tall Images */
.bts-item:nth-child(6),
.bts-item:nth-child(18){
    grid-row:span 2;
}

/* Wide Images */
.bts-item:nth-child(13),
.bts-item:nth-child(22){
    grid-column:span 2;
}

/* Image Heights */

.bts-item{
    min-height:260px;
}

.bts-item.tall,
.bts-item:nth-child(6),
.bts-item:nth-child(18){
    min-height:545px;
}

.bts-item.wide,
.bts-item:nth-child(13),
.bts-item:nth-child(22){
    min-height:260px;
}

.bts-item:nth-child(1){
    min-height:545px;
}
/*=================================================
                OUR FAMILY
=================================================*/

.team-family{
    position:relative;
    padding:140px 0;
    background:#070707;
    overflow:hidden;
}

.team-family::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border:1px solid rgba(200,164,106,.08);
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.team-family::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border:1px solid rgba(200,164,106,.06);
    border-radius:50%;
    bottom:-140px;
    left:-120px;
}

/*========================*/

.team-family-heading{

    max-width:900px;
    margin:0 auto 90px;
    text-align:center;

}

.team-family-heading span{

    color:#C8A46A;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;

}

.team-family-heading h2{

    margin:18px 0 25px;

    font-size:60px;
    font-family:"Cinzel",serif;
    color:#fff;
    line-height:1.2;

}

.team-family-heading p{

    color:#bdbdbd;
    font-size:18px;
    line-height:1.9;

}

/*=================================================
            FEATURED MEMBERS
=================================================*/

.featured-team{

    display:grid;

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

    gap:35px;

    margin-bottom:70px;

}

.featured-member{

    background:#111;

    overflow:hidden;

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

    transition:.45s;

}

.featured-member:hover{

    transform:translateY(-10px);

    border-color:#C8A46A;

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.featured-image{

    overflow:hidden;

    position:relative;

}

.featured-image img{

    width:100%;

    height:560px;

    object-fit:cover;

    transition:.8s;

    display:block;

}

.featured-member:hover img{

    transform:scale(1.06);

}

.featured-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,

    rgba(0,0,0,.8),

    rgba(0,0,0,.15),

    transparent);

}

.featured-content{

    padding:35px;

}

.featured-content span{

    color:#C8A46A;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.featured-content h3{

    margin-top:15px;

    color:#fff;

    font-family:"Cinzel",serif;

    font-size:30px;

}

/*=================================================
                TEAM GRID
=================================================*/

.team-grid{

    display:grid;

    gap:28px;

    margin-bottom:35px;

}

.team-grid.four{

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

}

.team-grid.five{

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

}

.team-card{

    background:#111;

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

    overflow:hidden;

    transition:.45s;

    text-align:center;

}

.team-card:hover{

    transform:translateY(-8px);

    border-color:#C8A46A;

}

.team-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.7s;

}

.team-card:hover img{

    transform:scale(1.07);

}

.team-card h4{

    margin:22px 15px 10px;

    color:#fff;

    font-family:"Cinzel",serif;

    font-size:23px;

}

.team-card p{

    padding:0 20px 25px;

    color:#bdbdbd;

    line-height:1.7;

    font-size:15px;

}

/*=================================================
              GEM OF THE TEAM
=================================================*/

.gem-member{

    margin-top:80px;

    max-width:500px;

    margin-left:auto;

    margin-right:auto;

    background:linear-gradient(180deg,#111,#0b0b0b);

    border:1px solid rgba(200,164,106,.35);

    text-align:center;

    padding:45px;

    transition:.4s;

}

.gem-member:hover{

    transform:translateY(-8px);

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

}

.gem-badge{

    display:inline-block;

    margin-bottom:28px;

    padding:10px 26px;

    border:1px solid rgba(200,164,106,.35);

    color:#C8A46A;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.gem-image{

    width:220px;

    height:220px;

    margin:auto;

    border-radius:50%;

    overflow:hidden;

    border:3px solid #C8A46A;

}

.gem-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.gem-member h3{

    margin-top:30px;

    color:#fff;

    font-family:"Cinzel",serif;

    font-size:34px;

}

.gem-member span{

    display:block;

    margin-top:12px;

    color:#C8A46A;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:14px;

}

.gem-member p{

    margin-top:28px;

    color:#bdbdbd;

    line-height:1.9;

    font-size:17px;

}

/*=================================================
              Animation
=================================================*/

.featured-member,
.team-card,
.gem-member{

    animation:teamFade .9s ease forwards;

}

@keyframes teamFade{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*=================================================
                OUR STUDIO
=================================================*/

.our-studio{

    padding:140px 0;
    background:#0a0a0a;

}

.studio-heading{

    max-width:900px;
    margin:auto;
    text-align:center;
    margin-bottom:90px;

}

.studio-heading span{

    color:#C8A46A;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;

}

.studio-heading h2{

    margin:18px 0 25px;
    font-size:60px;
    color:#fff;
    font-family:"Cinzel",serif;

}

.studio-heading p{

    color:#bdbdbd;
    font-size:18px;
    line-height:1.9;

}

/*========================*/

.studio-wrapper{

    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:70px;
    align-items:center;

}

.studio-content h3{

    color:#fff;
    font-size:42px;
    margin-bottom:25px;
    font-family:"Cinzel",serif;

}

.studio-content p{

    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:35px;

}

.studio-features{

    list-style:none;
    padding:0;
    margin:0;

}

.studio-features li{

    color:#fff;
    margin-bottom:18px;
    position:relative;
    padding-left:32px;
    font-size:17px;

}

.studio-features li::before{

    content:"✓";
    color:#C8A46A;
    position:absolute;
    left:0;
    font-weight:bold;

}

/*========================*/

.studio-gallery{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.studio-main{

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

}

.studio-main img{

    width:100%;
    height:560px;
    object-fit:cover;
    display:block;
    transition:.7s;

}

.studio-main:hover img{

    transform:scale(1.05);

}

.studio-small{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}

.studio-small img{

    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
    transition:.6s;
    border:1px solid rgba(255,255,255,.08);

}

.studio-small img:hover{

    transform:translateY(-6px) scale(1.05);
    border-color:#C8A46A;

}
/*=================================================
            FINAL CTA
=================================================*/

.about-cta{

    position:relative;

    padding:180px 0;

    background:url("../assets/about/cta-bg.jpg") center center/cover no-repeat;

    background-attachment:fixed;

    overflow:hidden;

}

.about-cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.78),

        rgba(0,0,0,.82)

    );

}

.about-cta .container{

    position:relative;

    z-index:2;

}

.about-cta-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.about-cta-content span{

    color:#C8A46A;

    letter-spacing:4px;

    font-size:13px;

    text-transform:uppercase;

}

.about-cta-content h2{

    margin:25px 0;

    color:#fff;

    font-size:62px;

    line-height:1.25;

    font-family:"Cinzel",serif;

}

.about-cta-content p{

    color:#d0d0d0;

    font-size:18px;

    line-height:2;

    max-width:760px;

    margin:0 auto 50px;

}

/*========================*/

.about-cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.btn-gold{

    display:inline-block;

    padding:18px 42px;

    background:#C8A46A;

    color:#111;

    text-decoration:none;

    font-weight:600;

    letter-spacing:1px;

    transition:.35s;

}

.btn-gold:hover{

    background:#fff;

    transform:translateY(-4px);

}

.btn-outline{

    display:inline-block;

    padding:18px 42px;

    border:1px solid #C8A46A;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.btn-outline:hover{

    background:#C8A46A;

    color:#111;

    transform:translateY(-4px);

}
/*=================================================
            THE NEXT CHAPTER
=================================================*/

.next-chapter{

    padding:140px 0;
    background:#0b0b0b;
    position:relative;
    overflow:hidden;

}

.next-heading{

    max-width:900px;
    margin:0 auto 90px;
    text-align:center;

}

.next-heading span{

    color:#C8A46A;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;

}

.next-heading h2{

    margin:18px 0 25px;
    color:#fff;
    font-size:58px;
    font-family:"Cinzel",serif;

}

.next-heading p{

    color:#bdbdbd;
    line-height:1.9;
    font-size:18px;

}

/*========================*/

.next-generation{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:45px;

}

/*========================*/

.next-card{

    background:#111;
    border:1px solid rgba(255,255,255,.05);
    overflow:hidden;
    transition:.45s;

}

.next-card:hover{

    transform:translateY(-10px);
    border-color:#C8A46A;
    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.next-image{

    overflow:hidden;

}

.next-image img{

    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    transition:.8s;

}

.next-card:hover img{

    transform:scale(1.06);

}

.next-content{

    padding:35px;
    text-align:center;

}

.next-content span{

    color:#C8A46A;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;

}

.next-content h3{

    margin-top:18px;
    color:#fff;
    font-size:34px;
    font-family:"Cinzel",serif;

}

/*========================*/

.next-quote{

    margin-top:80px;
    text-align:center;

}

.next-quote h3{

    color:#C8A46A;
    font-size:34px;
    font-family:"Cormorant Garamond",serif;
    font-style:italic;
    font-weight:500;
    line-height:1.6;

}
/*=================================================
                CONTACT HERO
=================================================*/

.contact-hero{

    position:relative;
    height:75vh;

    background:url("../assets/contact/contact-hero.jpg") center center/cover no-repeat;

    display:flex;
    align-items:center;
    overflow:hidden;

}

.contact-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.65),

        rgba(0,0,0,.75)

    );

}

.contact-hero .container{

    position:relative;
    z-index:2;

}

.contact-hero-content{

    max-width:760px;

}

.contact-hero-content span{

    color:#C8A46A;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

}

.contact-hero-content h1{

    color:#fff;

    margin:25px 0;

    font-size:72px;

    line-height:1.15;

    font-family:"Cinzel",serif;

}

.contact-hero-content p{

    color:#ddd;

    font-size:19px;

    line-height:1.9;

    max-width:650px;

}
/*=================================================
            CONTACT SECTION
=================================================*/

.contact-section{

    padding:140px 0;
    background:#080808;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;

}

/*========================*/

.contact-info span{

    color:#C8A46A;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;

}

.contact-info h2{

    color:#fff;
    font-size:58px;
    margin:20px 0;
    font-family:"Cinzel",serif;

}

.contact-info>p{

    color:#bfbfbf;
    line-height:1.9;
    margin-bottom:45px;

}

/*========================*/

.contact-card{

    display:flex;
    gap:25px;

    margin-bottom:35px;

}

.contact-icon{

    width:70px;
    height:70px;

    background:#111;

    border:1px solid rgba(200,164,106,.3);

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

    color:#C8A46A;

    font-size:24px;

    flex-shrink:0;

}

.contact-card h4{

    color:#fff;
    margin-bottom:10px;
    font-size:22px;

}

.contact-card p{

    color:#bfbfbf;
    line-height:1.8;

}

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

.contact-form-box{

    background:#101010;

    padding:50px;

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

}

.contact-form-box h3{

    color:#fff;

    margin-bottom:35px;

    font-size:36px;

    font-family:"Cinzel",serif;

}

.form-grid{

    display:grid;

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

    gap:20px;

}

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

    width:100%;

    padding:18px;

    margin-bottom:22px;

    background:#161616;

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

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;

}

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

    border-color:#C8A46A;

}

.contact-form-box textarea{

    resize:none;

}

.contact-form-box button{

    width:100%;

    padding:18px;

    background:#C8A46A;

    color:#111;

    border:none;

    font-size:17px;

    cursor:pointer;

    transition:.35s;

}

.contact-form-box button:hover{

    background:#fff;

}
/*=================================================
            VISIT OUR STUDIO
=================================================*/

.visit-studio{

    padding:140px 0;
    background:#0d0d0d;

}

.visit-wrapper{

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;

}

.visit-image{

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

}

.visit-image img{

    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    transition:.8s;

}

.visit-image:hover img{

    transform:scale(1.05);

}

.visit-content span{

    color:#C8A46A;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;

}

.visit-content h2{

    margin:20px 0 30px;

    color:#fff;

    font-size:58px;

    line-height:1.2;

    font-family:"Cinzel",serif;

}

.visit-content p{

    color:#c4c4c4;

    line-height:2;

    margin-bottom:40px;

    font-size:17px;

}

.studio-features{

    display:grid;
    gap:22px;
    margin-bottom:45px;

}

.feature-item{

    display:flex;
    align-items:center;
    gap:18px;

    color:#fff;

}

.feature-item i{

    width:55px;
    height:55px;

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

    background:#111;

    color:#C8A46A;

    border:1px solid rgba(200,164,106,.35);

    font-size:20px;

}

.visit-btn{

    display:inline-block;

    padding:18px 40px;

    background:#C8A46A;

    color:#111;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.visit-btn:hover{

    background:#fff;

    transform:translateY(-5px);

}
/*=================================================
                GOOGLE MAP
=================================================*/

.contact-map{

    padding:0;
    background:#080808;
    overflow:hidden;

}

.contact-map iframe{

    width:100%;
    height:600px;
    border:none;

    filter:grayscale(100%)
           contrast(115%)
           brightness(90%);

    transition:.5s;

}

.contact-map:hover iframe{

    filter:grayscale(0%)
           contrast(100%)
           brightness(100%);

}
/*=================================================
        BUSINESS HOURS + SOCIAL
=================================================*/

.business-social{

    background:#0b0b0b;

    padding:140px 0;

}

.business-wrapper{

    display:grid;

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

    gap:60px;

}

.business-card,
.social-card{

    background:#111;

    padding:60px;

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

    transition:.4s;

}

.business-card:hover,
.social-card:hover{

    border-color:#C8A46A;

}

.business-card span,
.social-card span{

    color:#C8A46A;

    letter-spacing:3px;

    font-size:13px;

    text-transform:uppercase;

}

.business-card h2,
.social-card h2{

    color:#fff;

    margin:20px 0;

    font-size:46px;

    font-family:"Cinzel",serif;

}

.business-card p,
.social-card p{

    color:#bbb;

    line-height:1.9;

    margin-bottom:40px;

}

.hour-row{

    display:flex;

    justify-content:space-between;

    padding:18px 0;

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

}

.hour-row span{

    color:#ddd;

    letter-spacing:0;

    font-size:17px;

}

.hour-row strong{

    color:#fff;

}

.sunday strong{

    color:#C8A46A;

}

/*======================*/

.social-grid{

    display:grid;

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

    gap:20px;

}

.social-box{

    background:#191919;

    padding:35px;

    text-align:center;

    text-decoration:none;

    transition:.35s;

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

}

.social-box:hover{

    background:#C8A46A;

    transform:translateY(-8px);

}

.social-box i{

    font-size:42px;

    color:#C8A46A;

    margin-bottom:20px;

    transition:.35s;

}

.social-box h4{

    color:#fff;

    font-size:20px;

}

.social-box:hover i,
.social-box:hover h4{

    color:#111;

}
/*=================================================
                FINAL CTA
=================================================*/

.contact-cta{

    position:relative;

    padding:180px 0;

    background:url("../assets/contact/final-cta.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.78),

        rgba(0,0,0,.88)

    );

}

.contact-cta .container{

    position:relative;

    z-index:2;

}

.cta-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-content span{

    color:#C8A46A;

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:14px;

}

.cta-content h2{

    color:#fff;

    font-size:72px;

    margin:25px 0;

    line-height:1.2;

    font-family:"Cinzel",serif;

}

.cta-content p{

    color:#d5d5d5;

    font-size:18px;

    line-height:2;

    max-width:720px;

    margin:0 auto 55px;

}

/*========================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 42px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.4s;

}

/*========================*/

.gold-btn{

    background:#C8A46A;

    color:#111;

}

.gold-btn:hover{

    background:#fff;

    transform:translateY(-6px);

}

/*========================*/

.outline-btn{

    border:2px solid #C8A46A;

    color:#fff;

}

.outline-btn:hover{

    background:#C8A46A;

    color:#111;

    transform:translateY(-6px);

}
/*=================================================
            SUCCESS TOAST
=================================================*/

.toast{

    position:fixed;

    top:30px;
    right:30px;

    width:360px;

    background:#111;

    color:#fff;

    border-left:5px solid #C8A46A;

    padding:18px 22px;

    display:flex;
    align-items:center;
    gap:18px;

    border-radius:8px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    transform:translateX(450px);

    opacity:0;

    transition:.45s;

    z-index:99999;

}

.toast.show{

    transform:translateX(0);

    opacity:1;

}

.toast i{

    font-size:34px;

    color:#C8A46A;

}

.toast h4{

    margin:0 0 6px;

    font-size:18px;

    color:#fff;

}

.toast p{

    margin:0;

    color:#cfcfcf;

    font-size:14px;

    line-height:1.5;

}
/*==================================
SUCCESS TOAST
==================================*/

@media (max-width:991px){

    .toast{

        width:320px;

        top:25px;

        right:20px;

        padding:16px 20px;

    }

    .toast i{

        font-size:30px;

    }

}

@media (max-width:768px){

    .toast{

        width:calc(100% - 30px);

        max-width:420px;

        top:20px;

        right:15px;

        left:15px;

        padding:16px 18px;

        gap:15px;

        transform:translateY(-120px);

    }

    .toast.show{

        transform:translateY(0);

    }

    .toast i{

        font-size:28px;

    }

    .toast h4{

        font-size:17px;

    }

    .toast p{

        font-size:14px;

    }

}

@media (max-width:480px){

    .toast{

        width:calc(100% - 20px);

        left:10px;

        right:10px;

        top:15px;

        padding:14px 15px;

        gap:12px;

        border-radius:6px;

    }

    .toast i{

        font-size:24px;

    }

    .toast h4{

        font-size:16px;

        margin-bottom:4px;

    }

    .toast p{

        font-size:13px;

        line-height:1.4;

    }

}
