/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    --bg-color: #faf9f6; 
    --text-dark: #1a1a1a;
    --text-light: #7a7a7a;
    --gold: #c5a059;
    --transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   2. BOUTIQUE NAVIGATION
   ========================================= */
.boutique-nav {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #fff;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.nav-link:hover { border-bottom: 1px solid var(--gold); color: var(--gold); }

/* =========================================
   3. THE HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/248077/pexels-photo-248077.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content { color: #fff; max-width: 800px; }

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 40px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
}
.cta-btn:hover { background: #fff; color: var(--text-dark); }

/* =========================================
   4. PRODUCT SHOWCASE (MOBILE-FIRST GRID)
   ========================================= */
.showcase {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.section-header h2 em { color: var(--gold); font-style: italic; }
.section-header p { color: var(--text-light); font-weight: 300; }

/* The Magic Responsive Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card { cursor: pointer; }

/* The Image Hover Effect */
.img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
    background: #eaeaea; 
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover .img-wrapper img {
    transform: scale(1.08);
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* =========================================
   6. THE NARRATIVE (STORY)
   ========================================= */
.narrative {
    padding: 120px 5%;
    background-color: #ffffff;
}

.narrative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow.dark { color: var(--gold); }

.narrative-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.narrative-text h2 em { color: var(--gold); font-style: italic; font-weight: 400; }

.narrative-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.narrative-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* =========================================
   7. INQUIRY FOOTER (THE VIP ROOM)
   ========================================= */
.inquiry-section {
    background-color: #080808; 
    color: #ffffff;
    padding: 120px 5% 40px;
    text-align: center;
}

.inquiry-container {
    max-width: 700px;
    margin: 0 auto 100px;
}

.inquiry-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}
.inquiry-container h2 em { color: var(--gold); font-style: italic; font-weight: 400; }

.inquiry-container p {
    color: #888;
    font-weight: 300;
    margin-bottom: 50px;
}

/* Minimalist Form Elements */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.inquiry-form input, 
.inquiry-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.inquiry-form input:focus, 
.inquiry-form textarea:focus {
    border-bottom-color: var(--gold);
}

.submit-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px; 
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}
.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* =========================================
   CEO DIRECT CONTACT BLOCK
   ========================================= */
.direct-contact {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-title {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.contact-link:hover {
    color: #ffffff;
}

/* =========================================
   8. MOBILE RESPONSIVENESS (NEW SECTIONS)
   ========================================= */
@media (max-width: 768px) {
    .narrative { padding: 80px 5%; }
    .narrative-content { grid-template-columns: 1fr; gap: 40px; }
    .narrative-text { text-align: center; }
    
    .inquiry-section { padding: 80px 5% 30px; }
    .form-row { flex-direction: column; gap: 30px; }
}
/* =========================================
   5. MOBILE TWEAKS
   ========================================= */
@media (max-width: 768px) {
    .showcase { padding: 60px 5%; }
    .product-grid { gap: 30px; }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 600px) {
    
    /* Shrink the Logo */
    .logo {
        font-size: 1.0rem; /* Was likely 2rem+ */
        letter-spacing: 2px;
    }

    /* Shrink the Nav Link */
    .nav-link {
        font-size: 0.8rem;
    }

    /* Fix the Hero Title (Elegance, Forged in Light) */
    .hero-content h1 {
        font-size: 2.2rem; /* Makes it fit on 2 lines instead of 4 */
        line-height: 1.1;
    }

    /* Resize the Button */
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 80%; /* Prevents the button from touching the screen edges */
    }

    /* Adjust the Header Spacing */
    .boutique-nav {
        padding: 15px 20px;
    }
}