/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

.container{
    width:min(1200px,90%);
    margin:auto;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

section{
    position:relative;
}

.eyebrow{
    color:#c8a97e;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:0.8rem;
    margin-bottom:14px;
    font-weight:700;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:clamp(2rem,5vw,4rem);
    font-family:'Playfair Display',serif;
    margin-bottom:18px;
}

.section-heading p{
    max-width:650px;
    margin:auto;
    color:rgba(255,255,255,0.7);
    line-height:1.7;
}

/* =========================
   HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.nav-wrap{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-mark{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#c8a97e;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.brand-text{
    font-weight:700;
    font-size:1rem;
}

.desktop-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.desktop-nav a{
    color:rgba(255,255,255,0.82);
    transition:0.3s ease;
}

.desktop-nav a:hover{
    color:#fff;
}

.nav-cta{
    padding:12px 20px;
    background:#c8a97e;
    border-radius:999px;
    color:#000 !important;
    font-weight:700;
}

/* =========================
   HERO
========================= */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-background{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.78)
        ),
        url("../images/background.jpg");

    background-size:cover;
    background-position:center;
    z-index:0;
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
}

.hero-copy h1{
    font-size:clamp(3rem,8vw,6rem);
    line-height:0.95;
    margin-bottom:24px;
    font-family:'Playfair Display',serif;
}

.hero-text{
    color:rgba(255,255,255,0.72);
    line-height:1.8;
    max-width:620px;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 28px;
    border-radius:999px;
    font-weight:700;
    transition:0.35s ease;
}

.btn-primary{
    background:#c8a97e;
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.08);
}

.hero-card{
    background:rgba(20,20,20,0.8);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:38px;
    backdrop-filter:blur(14px);
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.hero-card-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.status-dot{
    width:12px;
    height:12px;
    background:#32ff7e;
    border-radius:50%;
}

.hero-card h2{
    font-size:2rem;
    margin-bottom:20px;
}

.info-stack a{
    font-size:1.3rem;
    font-weight:700;
}

.address-box{
    margin-top:30px;
    color:rgba(255,255,255,0.72);
    line-height:1.8;
}

/* =========================
   SERVICES
========================= */

.services-section{
    padding:120px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#171717;
    border-radius:28px;
    padding:40px;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:2rem;
    margin-bottom:20px;
    display:block;
}

.service-card h3{
    margin-bottom:18px;
    font-size:1.4rem;
}

.service-card p{
    color:rgba(255,255,255,0.7);
    line-height:1.7;
}

/* =========================
   GALLERY
========================= */

.gallery-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
}

.gallery-background{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.82)
        ),
        url("../images/gallery-bg.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    z-index:0;
}

.gallery-content{
    position:relative;
    z-index:2;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:50px;
}

.gallery-card{
    overflow:hidden;
    border-radius:24px;
    background:#161616;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s ease;
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-card img{
    height:360px;
    object-fit:cover;
    transition:0.5s ease;
}

.gallery-card:hover img{
    transform:scale(1.06);
}

.gallery-card figcaption{
    padding:24px;
}

.gallery-card strong{
    display:block;
    margin-bottom:10px;
    font-size:1.2rem;
}

.gallery-card span{
    color:rgba(255,255,255,0.7);
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:120px 0;
}

.contact-panel{
    background:#171717;
    border-radius:30px;
    padding:60px;
    border:1px solid rgba(255,255,255,0.08);
}

.contact-panel h2{
    font-size:clamp(2rem,5vw,4rem);
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.contact-panel p{
    color:rgba(255,255,255,0.72);
    line-height:1.8;
}

.contact-actions-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.contact-action{
    background:#0f0f0f;
    border-radius:22px;
    padding:28px;
    border:1px solid rgba(255,255,255,0.06);
}

.contact-action span{
    display:block;
    margin-bottom:10px;
    color:rgba(255,255,255,0.65);
}

.contact-action strong{
    font-size:1.2rem;
}

.whatsapp{
    background:#1c2b22;
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.about-hero-bg{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.78)
        ),
        url("../images/about-bg.jpg");

    background-size:cover;
    background-position:center;
}

.about-hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
}

.about-hero h1{
    font-size:clamp(3rem,8vw,6rem);
    line-height:0.95;
    margin-bottom:28px;
    font-family:'Playfair Display',serif;
}

.about-hero p{
    line-height:1.8;
    color:rgba(255,255,255,0.75);
}

.about-story{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-copy h2{
    font-size:clamp(2rem,5vw,4rem);
    margin-bottom:24px;
    font-family:'Playfair Display',serif;
}

.about-copy p{
    color:rgba(255,255,255,0.72);
    line-height:1.8;
    margin-bottom:20px;
}

.about-image-stack{
    display:grid;
    gap:24px;
}

.about-image-card{
    overflow:hidden;
    border-radius:28px;
}

.about-image-card img{
    height:340px;
    object-fit:cover;
}

.values-section{
    padding:120px 0;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.value-card{
    background:#171717;
    border-radius:28px;
    padding:40px;
    border:1px solid rgba(255,255,255,0.06);
}

.value-card span{
    font-size:2rem;
    display:block;
    margin-bottom:20px;
}

.value-card h3{
    margin-bottom:16px;
}

.value-card p{
    color:rgba(255,255,255,0.72);
    line-height:1.7;
}

.about-feature-image{
    position:relative;
    height:80vh;
    overflow:hidden;
}

.about-feature-image img{
    height:100%;
    object-fit:cover;
}

.feature-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.feature-overlay h2{
    font-size:clamp(2rem,6vw,5rem);
    font-family:'Playfair Display',serif;
    text-align:center;
}

/* =========================
   FOOTER
========================= */

.footer{
    padding:60px 0;
    background:#0a0a0a;
}

.footer-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-links{
    display:flex;
    gap:24px;
}

/* =========================
   FLOATING BUTTON
========================= */

.floating-whatsapp{
    position:fixed;
    right:24px;
    bottom:24px;

    background:#25D366;
    color:#000;

    padding:16px 24px;
    border-radius:999px;

    font-weight:700;

    z-index:999;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px){

    .hero-grid,
    .about-grid,
    .services-grid,
    .values-grid,
    .contact-actions-grid{
        grid-template-columns:1fr;
    }

    .desktop-nav{
        display:none;
    }

    .hero-section,
    .about-hero{
        padding:140px 0 100px;
    }

    .hero-copy h1,
    .about-hero h1{
        line-height:1;
    }

    .contact-panel{
        padding:40px 24px;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

}