*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --black:#050505;
    --dark:#0d0d0d;
    --card:#151515;
    --orange:#f28c18;
    --gold:#c79a3d;
    --white:#ffffff;
    --gray:#c7c7c7;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--black);
    color:var(--white);
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

/* HEADER */

.site-header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(242,140,24,.35);
}

.nav-container{
    max-width:1500px;
    margin:auto;
    padding:10px 40px;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
}

.nav-logo{
    justify-self:end;
    order:2;
}

.nav-logo img{
    width:auto;
    height:95px;
}

.nav-links{
    order:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:48px;
}

.nav-links a{
    font-family:'Cinzel', serif;
    font-size:21px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
    transition:.3s ease;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--orange);
    transition:.3s ease;
}

.nav-links a:hover{
    color:var(--orange);
}

.nav-links a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:34px;
    cursor:pointer;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.56),rgba(0,0,0,.88)),
    url("westside-trailer.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:170px 25px 100px;
}

.hero-overlay{
    display:none;
}

.hero-content{
    max-width:1050px;
    position:relative;
    z-index:2;
}

.hero-logo{
    width:430px;
    max-width:90%;
    margin:0 auto 25px;
}

.eyebrow{
    color:var(--orange);
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:900;
    font-size:14px;
    margin-bottom:12px;
}

.hero h1{
    font-size:clamp(52px,8vw,110px);
    line-height:.95;
    text-transform:uppercase;
    font-weight:900;
}

.hero h1 span{
    color:var(--orange);
    display:block;
}

.hero-text{
    max-width:780px;
    margin:25px auto 35px;
    font-size:22px;
    color:#eeeeee;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:5px;
    font-weight:900;
    text-transform:uppercase;
    border:none;
    cursor:pointer;
    transition:.3s ease;
    text-align:center;
}

.btn-primary{
    background:var(--orange);
    color:#000;
}

.btn-primary:hover{
    background:var(--gold);
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid var(--orange);
    color:#fff;
    background:transparent;
}

.btn-outline:hover{
    background:var(--orange);
    color:#000;
}

/* QUICK CTA */

.quick-cta{
    background:linear-gradient(135deg,var(--orange),var(--gold));
    color:#000;
    padding:18px 25px;
}

.quick-cta-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    font-weight:900;
    text-transform:uppercase;
}

.quick-cta a{
    background:#000;
    color:#fff;
    padding:10px 18px;
    border-radius:4px;
}

/* GLOBAL SECTIONS */

section{
    padding:95px 25px;
}

.container{
    max-width:1300px;
    margin:auto;
}

.section-dark{
    background:#080808;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-size:clamp(36px,5vw,58px);
    text-transform:uppercase;
    font-weight:900;
}

.section-title p{
    max-width:760px;
    margin:12px auto 0;
    color:var(--gray);
    font-size:18px;
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.feature-card{
    background:var(--card);
    padding:34px;
    border-radius:14px;
    border:1px solid rgba(242,140,24,.22);
    transition:.3s ease;
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:var(--orange);
}

.feature-card span{
    color:var(--gold);
    font-size:14px;
    font-weight:900;
}

.feature-card h3{
    color:var(--orange);
    font-size:24px;
    margin:10px 0;
}

.feature-card p{
    color:#d0d0d0;
}

/* MENU */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.menu-card{
    background:var(--card);
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(242,140,24,.24);
    transition:.3s ease;
}

.menu-card:hover{
    transform:translateY(-6px);
    border-color:var(--orange);
}

.menu-card img{
    height:235px;
    object-fit:cover;
}

.menu-card div{
    padding:24px;
}

.menu-card h3{
    color:var(--orange);
    font-size:24px;
    margin-bottom:8px;
}

.menu-card p{
    color:#d0d0d0;
}

/* SPLIT SECTIONS */

.trailer-section{
    background:
    linear-gradient(rgba(0,0,0,.87),rgba(0,0,0,.94)),
    url("westside-trailer.jpg");
    background-size:cover;
    background-position:center;
}

.wedding-section{
    background:#0b0b0b;
}

.split{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:45px;
    align-items:center;
}

.text-box{
    background:rgba(10,10,10,.92);
    border:1px solid rgba(242,140,24,.35);
    border-radius:14px;
    padding:42px;
    box-shadow:0 18px 50px rgba(0,0,0,.48);
}

.text-box h2{
    font-size:clamp(34px,5vw,52px);
    line-height:1.05;
    text-transform:uppercase;
    margin-bottom:18px;
}

.text-box p{
    color:#dddddd;
    margin-bottom:18px;
}

.text-box ul{
    margin:0 0 25px 20px;
    color:#dddddd;
}

.text-box li{
    margin-bottom:8px;
}

.image-frame img{
    height:520px;
    object-fit:cover;
    border-radius:14px;
    border:2px solid rgba(242,140,24,.35);
    box-shadow:0 18px 50px rgba(0,0,0,.55);
}

/* GALLERY */

.gallery-section{
    background:#050505;
    overflow:hidden;
}

.full-gallery{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
}

.full-gallery img{
    height:320px;
    object-fit:cover;
    transition:.4s ease;
}

.full-gallery img:hover{
    transform:scale(1.05);
    z-index:2;
}

/* TESTIMONIALS */

.testimonials-section{
    background:linear-gradient(135deg,#080808,#151515);
}

.testimonial-slider{
    max-width:850px;
    margin:auto;
    position:relative;
    min-height:220px;
}

.testimonial-card{
    display:none;
    background:#111;
    border:1px solid rgba(242,140,24,.28);
    border-radius:14px;
    padding:42px;
    text-align:center;
}

.testimonial-card.active{
    display:block;
    animation:fadeIn .7s ease;
}

.testimonial-card p{
    font-size:22px;
    font-style:italic;
    color:#dddddd;
    margin-bottom:18px;
}

.testimonial-card h4{
    color:var(--orange);
    text-transform:uppercase;
}

/* QUOTE FORM */

.quote-section{
    background:
    linear-gradient(rgba(0,0,0,.9),rgba(0,0,0,.95)),
    url("smith-wedding.jpg");
    background-size:cover;
    background-position:center;
}

.quote-form{
    max-width:950px;
    margin:auto;
    background:rgba(10,10,10,.94);
    border:1px solid rgba(242,140,24,.35);
    border-radius:16px;
    padding:42px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:var(--orange);
    font-weight:900;
    margin-bottom:8px;
}

input,
select,
textarea{
    width:100%;
    padding:15px;
    border:none;
    outline:none;
    border-radius:5px;
    background:#222;
    color:#fff;
    font-size:16px;
}

textarea{
    min-height:145px;
    resize:vertical;
}

.full{
    grid-column:1/-1;
}

/* MAP */

.map-section{
    background:#0b0b0b;
}

.map-box{
    min-height:360px;
    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.75)),
    #1d1d1d;
    border:1px solid rgba(242,140,24,.35);
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.map-box p{
    color:var(--orange);
    font-size:28px;
    font-weight:900;
}

.map-box span{
    color:#ccc;
}

/* CONTACT */

.contact-section{
    background:linear-gradient(135deg,var(--orange),var(--gold));
    color:#000;
    text-align:center;
}

.contact-section h2{
    font-size:clamp(38px,6vw,64px);
    text-transform:uppercase;
    font-weight:900;
}

.phone-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin:25px 0;
}

.phone-links a{
    font-size:clamp(26px,4vw,42px);
    font-weight:900;
}

/* FOOTER */

.site-footer{
    background:#000;
    padding:55px 25px 90px;
    color:#bbbbbb;
}

.footer-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
}

.footer-logo{
    width:190px;
    margin-bottom:15px;
}

.site-footer h3{
    color:var(--orange);
    text-transform:uppercase;
    margin-bottom:15px;
}

.site-footer a{
    display:block;
    margin-bottom:8px;
    color:#bbbbbb;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--orange);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.footer-bottom{
    max-width:1300px;
    margin:35px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
    font-size:14px;
}

/* REVEAL ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:.8s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE STICKY CTA */

.mobile-sticky-cta{
    display:none;
}

/* TABLET */

@media(max-width:1000px){

    .nav-container{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:10px 20px;
    }

    .nav-logo{
        order:1;
        justify-self:auto;
    }

    .nav-logo img{
        height:78px;
    }

    .menu-toggle{
        display:block;
        order:2;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000;
        display:none;
        flex-direction:column;
        gap:0;
        padding:15px 0;
        border-top:1px solid rgba(242,140,24,.3);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        width:100%;
        text-align:center;
        padding:14px;
        font-size:18px;
    }

    .split{
        grid-template-columns:1fr;
    }

    .reverse-mobile .image-frame{
        order:2;
    }

    .reverse-mobile .text-box{
        order:1;
    }

    .full-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .form-grid{
        grid-template-columns:1fr;
    }
}

/* MOBILE */

@media(max-width:600px){

    body{
        padding-bottom:70px;
    }

    .hero{
        min-height:92vh;
        padding:120px 18px 70px;
        background-position:center;
    }

    .hero-logo{
        width:230px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.05;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:100%;
        max-width:310px;
        padding:14px 20px;
    }

    .quick-cta{
        display:none;
    }

    section{
        padding:65px 18px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:16px;
    }

    .feature-card,
    .text-box,
    .quote-form{
        padding:26px;
    }

    .menu-card img{
        height:220px;
    }

    .image-frame img{
        height:310px;
    }

    .full-gallery{
        grid-template-columns:1fr;
    }

    .full-gallery img{
        height:250px;
    }

    .testimonial-card{
        padding:28px;
    }

    .testimonial-card p{
        font-size:18px;
    }

    .map-box{
        min-height:260px;
    }

    .phone-links{
        flex-direction:column;
        gap:10px;
    }

    .mobile-sticky-cta{
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        display:grid;
        grid-template-columns:1fr 1fr;
        z-index:2000;
        box-shadow:0 -5px 20px rgba(0,0,0,.45);
    }

    .mobile-sticky-cta a{
        background:var(--orange);
        color:#000;
        font-weight:900;
        text-align:center;
        padding:16px 8px;
        text-transform:uppercase;
        border-right:1px solid rgba(0,0,0,.25);
    }

    .mobile-sticky-cta a:last-child{
        background:var(--gold);
    }
}