/*==================================
DANYELLE CREATIONS DESIGN SYSTEM
==================================*/

:root{

--cream:#FAF8F5;

--white:#FFFFFF;

--charcoal:#1E1E1E;

--gray:#6D6D6D;

--champagne:#C8A96A;

--gold:#B88A44;

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

--radius:18px;

}

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

body{

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

    background:var(--cream);

    color:#222;

}
/* =====================================
   Navigation
===================================== */
/* ===========================
   NAVIGATION
=========================== */

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

    padding: 20px 80px;

    background: var(--white);

    position: sticky;
    top: 0;
    z-index: 1000;

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

.logo{

    display:flex;

    flex-direction:column;

    text-decoration:none;

    line-height:1;
    transition:.3s;

}

.logo:hover{

    transform:scale(1.03);

}


.logo-top{

    font-family:'Playfair Display', serif;

    font-size:38px;

    font-weight:700;

    letter-spacing:8px;

    color:var(--charcoal);

}

.logo-bottom{

    margin-top:8px;

    font-size:12px;

    letter-spacing:10px;

    color:var(--champagne);

    text-transform:uppercase;

}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
}


.nav-links a{

    color:var(--charcoal);

    text-decoration:none;

    font-weight:500;

    position:relative;

    transition:.3s;

}
.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--champagne);

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a:hover{
    color:var(--champagne);
}

.cta-button{

    background:#C8A96A;

    color:white;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.cta-button:hover{

    background:#B5924F;

    transform:translateY(-2px);

}
/* =====================================
   Hero Section
===================================== */

/*========================================
 HERO
========================================*/

.hero{

    position:relative;

    height:100vh;

    background-image:url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(20,20,20,.45);

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:900px;

    padding:20px;

}

.hero-subtitle{

    text-transform:uppercase;

    letter-spacing:6px;

    color:#E3C88A;

    margin-bottom:25px;

    font-weight:600;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:82px;

    line-height:1.05;

    margin-bottom:30px;

}

.hero-text{

    font-size:22px;

    line-height:1.8;

    margin-bottom:50px;

    color:#f5f5f5;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    letter-spacing:3px;

    font-size:14px;

    z-index:2;
}
.primary-btn{

    background:#C9A227;

    color:white;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    background:#b58a3b;

}

.secondary-btn{

    border:2px solid #C9A227;

    color:#C9A227;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#C9A227;

    color:white;

}
/*=====================================
ABOUT SECTION
=====================================*/

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    padding:120px 10%;

    background:white;

}

.about img{

    width:100%;

    border-radius:20px;

    display:block;

}

.section-tag{

    color:#C8A96A;

    letter-spacing:4px;

    font-weight:600;

    margin-bottom:20px;

}

.about h2{

    font-family:'Playfair Display',serif;

    font-size:52px;

    line-height:1.2;

    margin-bottom:30px;

}

.about p{

    font-size:18px;

    line-height:1.8;

    color:#666;

    margin-bottom:35px;

}

.about-highlights{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

    font-weight:600;

}
/*=====================================
BRAND SECTION
=====================================*/

.brands{

    padding:120px 10%;

    background:var(--cream);

    text-align:center;

}

.brands h2{

    font-family:'Playfair Display', serif;

    font-size:54px;

    max-width:800px;

    margin:20px auto;

}

.brands-text{

    max-width:700px;

    margin:30px auto 70px;

    line-height:1.8;

    color:#666;

    font-size:18px;

}

.brand-grid{

    display:grid;

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

    gap:30px;

}

.brand-card{

    background:white;

    padding:40px;

    border-radius:18px;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.brand-card:hover{

    transform:translateY(-10px);

}

.brand-card h3{

    margin-bottom:15px;

    font-family:'Playfair Display', serif;

}

.brand-card p{

    color:#666;

    line-height:1.7;

}

.media-kit{

    margin-top:60px;

}
/*=====================================
PORTFOLIO PREVIEW
=====================================*/

.portfolio-preview{

    padding:120px 10%;

    background:white;

    text-align:center;

}

.portfolio-preview h2{

    font-family:'Playfair Display', serif;

    font-size:54px;

    margin:20px 0 70px;

}

.portfolio-grid{

    display:grid;

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

    gap:30px;

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    text-decoration:none;

}

.portfolio-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

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

    display:flex;

    justify-content:center;

    align-items:center;

}

.portfolio-overlay h3{

    color:white;

    font-family:'Playfair Display', serif;

    font-size:42px;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-button{

    margin-top:60px;

}
/*=====================================
SERVICES
=====================================*/

.services{

    padding:120px 10%;

    background:#F8F5F2;

    text-align:center;

}

.services h2{

    font-family:'Playfair Display', serif;

    font-size:56px;

    margin:20px 0;

}

.services-intro{

    max-width:750px;

    margin:0 auto 70px;

    color:#666;

    line-height:1.8;

    font-size:18px;

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:white;

    padding:45px 35px;

    border-radius:20px;

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

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-icon{

    font-size:48px;

    margin-bottom:20px;

}

.service-card h3{

    font-family:'Playfair Display', serif;

    margin-bottom:15px;

    font-size:28px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

.services-button{

    margin-top:70px;

}
.work-btn{

    background:var(--champagne);

    color:white;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.work-btn:hover{

    background:var(--gold);

    transform:translateY(-3px);

}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media screen and (max-width:768px){

body{
    overflow-x:hidden;
}

/* Navigation */

.navbar{
    padding:20px;
    flex-wrap:wrap;
}

.logo-top{
    font-size:28px;
    letter-spacing:4px;
}

.logo-bottom{
    font-size:10px;
    letter-spacing:5px;
}

.nav-links{
    flex-direction:column;
    width:100%;
    gap:20px;
    margin-top:20px;
}

/* Hero */

.hero{
    height:auto;
    min-height:100vh;
    padding:120px 20px 80px;
}

.hero h1{
    font-size:42px;
}

.hero-subtitle{
    font-size:14px;
    letter-spacing:3px;
}

.hero-text{
    font-size:18px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.primary-btn,
.secondary-btn{
    width:100%;
    max-width:300px;
    text-align:center;
}

/* About */

.about{
    grid-template-columns:1fr;
    gap:40px;
    padding:80px 25px;
}

.about h2{
    font-size:38px;
}

.about-highlights{
    grid-template-columns:1fr;
}

/* Brands */

.brand-grid{
    grid-template-columns:1fr;
}

.brands h2{
    font-size:38px;
}

/* Portfolio */

.portfolio-grid{
    grid-template-columns:1fr;
}

.portfolio-preview h2{
    font-size:38px;
}

.portfolio-card img{
    height:300px;
}

/* Services */

.services-grid{
    grid-template-columns:1fr;
}

.services h2{
    font-size:40px;
}

.service-card{
    padding:35px 25px;
}

img{
    max-width:100%;
    height:auto;
}

}
/* =========================
   HAMBURGER MENU
========================= */

.hamburger{
    display:none;
    cursor:pointer;
    z-index:2000;
}

.hamburger span{
    display:block;
    width:25px;
    height:2px;
    margin:5px;
    background:#1E1E1E;
    transition:0.3s;
}

/* MOBILE */
@media screen and (max-width:768px){

    .hamburger{
        display:block;
        position:absolute;
        right:20px;
        top:25px;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        background:white;
        position:absolute;
        top:90px;
        left:0;
        padding:20px;
        box-shadow:var(--shadow);
    }

    .nav-links.active{
        display:flex;
    }
}

/* =====================================
ABOUT PAGE (NEW STYLING UPGRADE)
===================================== */

/* ABOUT HERO */
.about-hero{
    padding:140px 10% 80px;
    text-align:center;
    background:var(--cream);
}

.about-hero h1{
    font-family:'Playfair Display', serif;
    font-size:64px;
    margin:20px 0;
    color:var(--charcoal);
}

.about-hero p{
    max-width:750px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:var(--gray);
}

/* ABOUT GRID SECTION */
.about-page{
    padding:100px 10%;
    background:white;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-text h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

/* IMAGE STYLING */
.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* PILLARS SECTION */
.about-pillars{
    padding:120px 10%;
    background:var(--cream);
    text-align:center;
}

.about-pillars h2{
    font-family:'Playfair Display', serif;
    font-size:52px;
    margin-bottom:60px;
}

.pillars-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.pillar{
    background:white;
    padding:40px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.pillar:hover{
    transform:translateY(-8px);
}

.pillar h3{
    font-family:'Playfair Display', serif;
    margin-bottom:10px;
    color:var(--charcoal);
}

.pillar p{
    font-size:15px;
    color:var(--gray);
    line-height:1.6;
}

/* RESPONSIVE FIX */
@media screen and (max-width:768px){

    .about-hero h1{
        font-size:38px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .pillars-grid{
        grid-template-columns:1fr;
    }

    .about-page{
        padding:70px 25px;
    }
}

/* =====================================
ABOUT PAGE — PREMIUM UPGRADE v2
===================================== */

/* HERO IMPROVEMENT */
.about-hero{
    padding:160px 10% 90px;
    text-align:center;
    background:linear-gradient(180deg, var(--cream), #ffffff);
    position:relative;
}

.about-hero::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:2px;
    background:var(--champagne);
}

.about-hero h1{
    font-family:'Playfair Display', serif;
    font-size:70px;
    letter-spacing:1px;
    margin:20px 0;
}

.about-hero p{
    max-width:780px;
    margin:0 auto;
    font-size:19px;
    line-height:1.9;
    color:var(--gray);
}

/* MAIN GRID — ADD DEPTH */
.about-page{
    padding:120px 10%;
    background:white;
}

.about-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:90px;
    align-items:center;
}

/* TEXT STYLING */
.about-text h2{
    font-family:'Playfair Display', serif;
    font-size:46px;
    margin-bottom:25px;
    position:relative;
}

.about-text h2::after{
    content:"";
    width:60px;
    height:3px;
    background:var(--champagne);
    position:absolute;
    left:0;
    bottom:-10px;
}

.about-text p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}

/* IMAGE — MORE LUXURY FEEL */
.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transform:scale(1);
    transition:.6s ease;
}

.about-image:hover img{
    transform:scale(1.03);
}

/* FLOATING LAYER EFFECT */
.about-image::before{
    content:"";
    position:absolute;
    top:20px;
    left:20px;
    right:-20px;
    bottom:-20px;
    border:2px solid var(--champagne);
    border-radius:22px;
    z-index:-1;
}

/* PILLARS — MORE EDITORIAL */
.about-pillars{
    padding:140px 10%;
    background:var(--cream);
    text-align:center;
}

.about-pillars h2{
    font-family:'Playfair Display', serif;
    font-size:56px;
    margin-bottom:70px;
}

.pillars-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD UPGRADE */
.pillar{
    background:white;
    padding:45px 30px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.pillar::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg, var(--champagne), var(--gold));
}

.pillar:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.pillar h3{
    font-family:'Playfair Display', serif;
    font-size:22px;
    margin-bottom:10px;
}

.pillar p{
    font-size:15px;
    color:#777;
    line-height:1.7;
}

/* MICRO ANIMATION (ENTRY FEEL) */
.about-hero,
.about-grid,
.about-pillars{
    animation:fadeUp 1s ease both;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media screen and (max-width:768px){

    .about-hero h1{
        font-size:40px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .pillars-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .about-text h2{
        font-size:32px;
    }

    .about-pillars h2{
        font-size:38px;
    }
}

/* =====================================
SCROLL REVEAL ANIMATIONS
===================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =====================================
ABOUT PAGE (NEW STYLES)
===================================== */

.about-hero{
    padding:140px 10% 80px;
    text-align:center;
    background:var(--cream);
}

.about-hero h1{
    font-family:'Playfair Display', serif;
    font-size:56px;
    margin:20px 0;
    color:var(--charcoal);
}

.about-hero p{
    max-width:800px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* ABOUT MAIN GRID */

.about-page{
    padding:100px 10%;
    background:white;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-text h2{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* PILLARS SECTION */

.about-pillars{
    padding:120px 10%;
    background:var(--cream);
    text-align:center;
}

.about-pillars h2{
    font-family:'Playfair Display', serif;
    font-size:48px;
    margin-bottom:60px;
}

.pillars-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.pillar{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.pillar:hover{
    transform:translateY(-8px);
}

.pillar h3{
    font-family:'Playfair Display', serif;
    margin-bottom:10px;
}

/* MOBILE FIX */

@media screen and (max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .pillars-grid{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:38px;
    }
}

/* =====================================
RECIPES PAGE
===================================== */

.recipe-hero{
    padding:140px 10% 80px;
    text-align:center;
    background:var(--cream);
}

.recipe-hero h1{
    font-family:'Playfair Display', serif;
    font-size:64px;
    color:var(--charcoal);
    margin:20px 0;
}

.recipe-hero p{
    max-width:700px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:var(--gray);
}

.featured-recipe{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
    padding:100px 10%;
    background:white;
}

.recipe-video video{
    width:100%;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.recipe-content h2{
    font-family:'Playfair Display', serif;
    font-size:52px;
    margin-bottom:25px;
}

.recipe-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

.recipe-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.recipe-meta span{
    background:var(--cream);
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:var(--charcoal);
}

.recipe-content h3{
    font-family:'Playfair Display', serif;
    font-size:30px;
    margin:35px 0 15px;
}

.recipe-list{
    padding-left:20px;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.recipe-list li{
    margin-bottom:8px;
}

@media screen and (max-width:768px){

    .recipe-hero h1{
        font-size:40px;
    }

    .featured-recipe{
        grid-template-columns:1fr;
        padding:70px 25px;
        gap:45px;
    }

    .recipe-content h2{
        font-size:38px;
    }
}

/* =====================================
RECIPES LIST PAGE
===================================== */

.recipes-list{
    padding:80px 10% 120px;
    background:white;
}

.recipe-card{
    max-width:850px;
    margin:0 auto 40px;
    background:var(--cream);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.recipe-card img{
    width:100%;
    height:430px;
    object-fit:cover;
}

.recipe-card details{
    padding:30px;
}

.recipe-card summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    font-weight:600;
}

.recipe-card summary::-webkit-details-marker{
    display:none;
}

.recipe-card summary span{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:var(--charcoal);
}

.recipe-card summary small{
    background:var(--champagne);
    color:white;
    padding:10px 18px;
    border-radius:30px;
}

.recipe-details{
    margin-top:30px;
    color:#666;
    line-height:1.8;
}

.recipe-details h3{
    font-family:'Playfair Display', serif;
    font-size:28px;
    color:var(--charcoal);
    margin:30px 0 12px;
}

.recipe-details ul,
.recipe-details ol{
    padding-left:22px;
}

.recipe-meta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin:25px 0;
}

.recipe-meta span{
    background:white;
    padding:10px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

@media screen and (max-width:768px){

    .recipes-list{
        padding:60px 25px;
    }

    .recipe-card img{
        height:280px;
    }

    .recipe-card summary{
        flex-direction:column;
        align-items:flex-start;
    }

    .recipe-card summary span{
        font-size:28px;
    }
}

.recipe-video-dropdown{
    margin-top:40px;
}

.recipe-video-dropdown video{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.hide-text{
    display:none;
}

.recipe-card details[open] .view-text{
    display:none;
}

.recipe-card details[open] .hide-text{
    display:inline-block;
}

/* ==========================
   RECIPE VIDEO LINK
========================== */

.recipe-video-link{
    margin-top:45px;
    padding:35px;
    background:#faf8f5;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(200,169,106,.25);
}

.recipe-video-link h3{
    font-family:'Playfair Display', serif;
    font-size:30px;
    margin-bottom:15px;
    color:var(--charcoal);
}

.recipe-video-link p{
    color:var(--gray);
    margin-bottom:25px;
    line-height:1.7;
}

/* =====================================
TRAVEL & LIFESTYLE PAGE
===================================== */

.travel-hero{
    padding:140px 10% 80px;
    text-align:center;
    background:var(--cream);
}

.travel-hero h1{
    font-family:'Playfair Display', serif;
    font-size:64px;
    color:var(--charcoal);
    margin:20px 0;
}

.travel-hero p{
    max-width:750px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:var(--gray);
}

.travel-list{
    padding:80px 10% 120px;
    background:white;
}

.travel-card{
    max-width:1000px;
    margin:0 auto 40px;
    background:var(--cream);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.travel-card > img{
    width:100%;
    height:560px;
    object-fit:cover;
}

.travel-card details{
    padding:30px;
}

.travel-card summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    font-weight:600;
}

.travel-card summary::-webkit-details-marker{
    display:none;
}

.travel-card summary span{
    font-family:'Playfair Display', serif;
    font-size:38px;
    color:var(--charcoal);
}

.travel-card summary small{
    background:var(--champagne);
    color:white;
    padding:10px 18px;
    border-radius:30px;
}

.travel-details{
    margin-top:30px;
    color:#666;
    line-height:1.8;
}

.travel-details h3{
    font-family:'Playfair Display', serif;
    font-size:28px;
    color:var(--charcoal);
    margin:35px 0 12px;
}

.travel-details ul{
    padding-left:22px;
}

.travel-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:25px;
}

.travel-gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:16px;
}

.travel-video-link{
    margin-top:45px;
    padding:35px;
    background:white;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(200,169,106,.25);
}

.hide-text{
    display:none;
}

.travel-card details[open] .view-text{
    display:none;
}

.travel-card details[open] .hide-text{
    display:inline-block;
}

@media screen and (max-width:768px){

    .travel-hero h1{
        font-size:40px;
    }

    .travel-list{
        padding:60px 25px;
    }

    .travel-card > img{
        height:320px;
    }

    .travel-card summary{
        flex-direction:column;
        align-items:flex-start;
    }

    .travel-card summary span{
        font-size:30px;
    }

    .travel-gallery{
        grid-template-columns:1fr;
    }

    .travel-gallery img{
        height:300px;
    }
}

/* =====================================
COMING SOON PAGE - EDITORIAL STYLE
===================================== */

.coming-soon{
    min-height:85vh;
    padding:140px 10%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(180deg, var(--cream), #ffffff);
    position:relative;
}

.coming-soon::after{
    content:"";
    width:120px;
    height:2px;
    background:var(--champagne);
    margin-top:45px;
}

.coming-soon h1{
    font-family:'Playfair Display', serif;
    font-size:72px;
    line-height:1.05;
    margin:25px 0;
    color:var(--charcoal);
    max-width:900px;
}

.coming-soon p{
    max-width:680px;
    font-size:19px;
    line-height:1.9;
    color:var(--gray);
    margin-bottom:45px;
}

.coming-soon .primary-btn{
    background:var(--champagne);
}

.coming-soon .primary-btn:hover{
    background:var(--gold);
}

@media screen and (max-width:768px){

    .coming-soon{
        min-height:80vh;
        padding:120px 25px;
    }

    .coming-soon h1{
        font-size:44px;
    }

    .coming-soon p{
        font-size:17px;
    }
}

/* =====================================
COMING SOON — LUXURY PAGE STYLE
===================================== */

.coming-soon-hero{
    min-height:90vh;
    padding:150px 10%;
    background:linear-gradient(180deg, var(--cream), #ffffff);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.coming-soon-hero h1{
    font-family:'Playfair Display', serif;
    font-size:72px;
    line-height:1.05;
    max-width:900px;
    margin:20px auto;
    color:var(--charcoal);
}

.coming-soon-hero > p{
    max-width:760px;
    font-size:19px;
    line-height:1.9;
    color:var(--gray);
    margin:0 auto 50px;
}

.coming-soon-card{
    background:white;
    max-width:760px;
    padding:50px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border-top:4px solid var(--champagne);
}

.coming-soon-card h2{
    font-family:'Playfair Display', serif;
    font-size:38px;
    margin-bottom:15px;
    color:var(--charcoal);
}

.coming-soon-card p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:30px;
}

.coming-soon-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@media screen and (max-width:768px){

    .coming-soon-hero{
        padding:120px 25px;
    }

    .coming-soon-hero h1{
        font-size:44px;
    }

    .coming-soon-card{
        padding:35px 25px;
    }

    .coming-soon-buttons{
        flex-direction:column;
        align-items:center;
    }
}
/* =====================================
LIFESTYLE VIDEO LINKS
===================================== */

.lifestyle-feature-card{
    margin-top:60px;
}

.social-video-links{
    margin-top:45px;
    padding:38px;
    background:var(--white);
    border:1px solid rgba(200,169,106,.28);
    border-radius:20px;
    text-align:center;
}

.social-video-links h3{
    font-family:'Playfair Display', serif;
    font-size:30px;
    color:var(--charcoal);
    margin:0 0 12px;
}

.social-video-links p{
    max-width:600px;
    margin:0 auto 28px;
    color:var(--gray);
    line-height:1.8;
}

.social-video-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.social-video-buttons .primary-btn,
.social-video-buttons .secondary-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:210px;
    text-align:center;
}

@media screen and (max-width:768px){

    .social-video-links{
        padding:30px 22px;
    }

    .social-video-buttons{
        flex-direction:column;
    }

    .social-video-buttons .primary-btn,
    .social-video-buttons .secondary-btn{
        width:100%;
        max-width:300px;
    }
}

/* =====================================
CONTACT PAGE
===================================== */

.contact-hero{
    padding:150px 10% 95px;
    text-align:center;
    background:linear-gradient(180deg, var(--cream), var(--white));
    position:relative;
}

.contact-hero::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    width:120px;
    height:2px;
    background:var(--champagne);
    transform:translateX(-50%);
}

.contact-hero h1{
    max-width:900px;
    margin:20px auto 25px;
    font-family:'Playfair Display', serif;
    font-size:72px;
    line-height:1.05;
    color:var(--charcoal);
}

.contact-hero p:last-child{
    max-width:760px;
    margin:0 auto;
    font-size:19px;
    line-height:1.9;
    color:var(--gray);
}

/* Main contact section */

.contact-section{
    padding:120px 10%;
    background:var(--white);
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px;
    align-items:start;
    max-width:1250px;
    margin:0 auto;
}

.contact-intro h2,
.contact-form-card h2{
    font-family:'Playfair Display', serif;
    color:var(--charcoal);
}

.contact-intro h2{
    max-width:560px;
    margin-bottom:25px;
    font-size:48px;
    line-height:1.2;
}

.contact-intro > p:not(.section-tag):not(.contact-business-note){
    max-width:590px;
    margin-bottom:35px;
    font-size:18px;
    line-height:1.9;
    color:var(--gray);
}

/* Email card */

.contact-email-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin:35px 0;
    padding:30px;
    background:var(--cream);
    border:1px solid rgba(200,169,106,.26);
    border-radius:20px;
}

.contact-email-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 52px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--champagne);
    color:var(--white);
    font-size:23px;
}

.contact-label{
    margin-bottom:5px;
    color:var(--champagne);
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.contact-email-card a{
    color:var(--charcoal);
    font-family:'Playfair Display', serif;
    font-size:24px;
    font-weight:600;
    text-decoration:none;
    overflow-wrap:anywhere;
}

.contact-email-card a:hover{
    color:var(--gold);
}

.contact-response-time{
    margin-top:8px;
    color:var(--gray);
    font-size:14px;
    line-height:1.6;
}

.contact-business-note{
    margin:0 0 30px;
    color:var(--gray);
    line-height:1.8;
}

/* Form card */

.contact-form-card{
    padding:48px;
    background:var(--cream);
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border-top:4px solid var(--champagne);
}

.contact-form-card h2{
    margin-bottom:30px;
    font-size:42px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.form-group label{
    color:var(--charcoal);
    font-size:14px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid rgba(30,30,30,.15);
    border-radius:14px;
    background:var(--white);
    color:var(--charcoal);
    font:inherit;
    padding:15px 17px;
    outline:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.form-group textarea{
    min-height:180px;
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--champagne);
    box-shadow:0 0 0 4px rgba(200,169,106,.12);
}

.contact-submit{
    align-self:flex-start;
    border:0;
    cursor:pointer;
}

.hidden-field{
    position:absolute;
    left:-9999px;
}

/* Social section */

.contact-social{
    padding:120px 10%;
    text-align:center;
    background:var(--cream);
}

.contact-social h2{
    max-width:820px;
    margin:20px auto;
    font-family:'Playfair Display', serif;
    font-size:52px;
    line-height:1.2;
    color:var(--charcoal);
}

.contact-social > p:not(.section-tag):not(.contact-closing){
    max-width:700px;
    margin:0 auto 35px;
    color:var(--gray);
    font-size:18px;
    line-height:1.8;
}

.contact-social-links{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.contact-social-links a{
    min-width:160px;
    padding:13px 24px;
    border:1px solid var(--champagne);
    border-radius:50px;
    color:var(--charcoal);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.contact-social-links a:hover{
    background:var(--champagne);
    color:var(--white);
    transform:translateY(-2px);
}

.contact-closing{
    margin-top:55px;
    font-family:'Playfair Display', serif;
    color:var(--charcoal);
    font-size:25px;
    font-style:italic;
}

/* Contact mobile */

@media screen and (max-width:768px){

    .contact-hero{
        padding:120px 25px 75px;
    }

    .contact-hero h1{
        font-size:46px;
    }

    .contact-hero p:last-child{
        font-size:17px;
    }

    .contact-section{
        padding:80px 25px;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .contact-intro h2{
        font-size:38px;
    }

    .contact-email-card{
        flex-direction:column;
        padding:25px;
    }

    .contact-email-card a{
        font-size:21px;
    }

    .contact-form-card{
        padding:35px 24px;
    }

    .contact-form-card h2{
        font-size:34px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-submit{
        width:100%;
        max-width:none;
    }

    .contact-social{
        padding:90px 25px;
    }

    .contact-social h2{
        font-size:38px;
    }

    .contact-social-links{
        flex-direction:column;
        align-items:center;
    }

    .contact-social-links a{
        width:100%;
        max-width:300px;
    }
}

