@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;600&display=swap');

/* --- GLOBAL STYLES --- */
:root {
    --bg-dark: #1a1a1a;
    --text-light: #f4f1eb;
    --accent-gold: #b5a999;
    --text-muted: #d1cdcf;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* --- HEADER & NAVIGATION --- */
.header {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(244, 241, 235, 0.1);
    z-index: 100;
}

.logo { 
    font-family: 'Cinzel', serif; 
    font-size: 20px; 
    letter-spacing: 4px; 
}

.nav { display: flex; gap: 30px; }

.nav-link { 
    font-size: 11px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    transition: color 0.3s ease;
}

.nav-link:hover { color: var(--accent-gold); }

.btn-book { 
    border: 1px solid var(--text-light); 
    padding: 12px 24px; 
    font-size: 11px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* --- HOME PAGE: FULL BLEED HERO --- */
.hero-full {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(26,26,26,0.3), rgba(26,26,26,0.8)), url('https://images.unsplash.com/photo-1512496115851-a908dc4357c9?auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 0 5%;
}

.hero-full h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 400;
    margin: 10px 0;
    line-height: 1.1;
}

.hero-full .subtitle {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* --- HOME PAGE: PHILOSOPHY (No-Photo About) --- */
.philosophy {
    padding: 120px 10%;
    text-align: center;
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.philosophy h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.philosophy p {
    font-size: 1.1rem;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #444;
}

/* --- HOME PAGE: SNEAK PEEK GALLERY --- */
.sneak-peek-section {
    padding: 100px 5%;
    text-align: center;
}

.sneak-peek-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
}

.sneak-peek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.sneak-peek-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.sneak-peek-img:hover { filter: grayscale(0%); }

.btn-solid {
    background-color: var(--text-light);
    color: var(--bg-dark);
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

/* --- PAGE HEADERS (For Gallery & FAQs) --- */
.page-header {
    padding: 180px 5% 80px 5%;
    text-align: center;
    border-bottom: 1px solid rgba(244, 241, 235, 0.1);
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
}

/* --- GALLERY PAGE: CURATED MASONRY --- */
.curated-gallery {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.gallery-item.landscape { grid-column: span 2; height: 500px; }

/* --- FAQS PAGE: NATIVE ACCORDION --- */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5%;
}

details {
    border-bottom: 1px solid rgba(244, 241, 235, 0.2);
    padding: 20px 0;
}

summary {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    cursor: pointer;
    list-style: none; /* Removes default arrow */
    outline: none;
}

summary::-webkit-details-marker { display: none; } /* Removes arrow in Safari */

details p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 15px;
    padding-left: 10px;
    border-left: 2px solid var(--accent-gold);
}

/* --- FOOTER --- */
.footer {
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(244, 241, 235, 0.1);
}

.footer-logo { font-family: 'Cinzel', serif; font-size: 18px; letter-spacing: 4px; margin-bottom: 20px; }
.footer p { font-size: 10px; color: #666; letter-spacing: 1px; text-transform: uppercase; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .nav { display: none; } /* Add a hamburger menu later if requested */
    .hero-full h1 { font-size: 3rem; }
    .sneak-peek-grid { grid-template-columns: 1fr; }
    .curated-gallery { grid-template-columns: 1fr; }
    .gallery-item.landscape { grid-column: span 1; height: 400px; }
    .philosophy { padding: 80px 5%; }
}