/* --- CSS VARIABLES (Keep same) --- */
:root {
    --bg: #121212;
    --surface: #1e1e1e;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --gold: #c29b61;
    --gold-hover: #d4b075;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95); /* Always dark bg for readability */
    border-bottom: 1px solid rgba(194, 155, 97, 0.1);
}
.logo a {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: var(--gold);
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.menu-toggle { display: none; }

/* --- HERO SECTION (HOME ONLY) --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}
.subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.cta-button:hover { background: var(--gold); color: var(--bg); }

/* --- PAGE HEADER (FOR SUB-PAGES) --- */
.page-header {
    height: 50vh; /* Shorter than home hero */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1f1f1f 0%, #121212 70%);
    border-bottom: 1px solid rgba(194, 155, 97, 0.2);
}

/* --- SECTIONS --- */
.container { padding: 6rem 10%; min-height: 60vh; }
.narrow { padding: 6rem 20%; } /* Thinner column for reading text */
.section-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}
.section-tag { color: var(--gold); font-weight: 600; }
h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 400; }

/* --- BLOG LIST --- */
.blog-card {
    background: var(--surface);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}
.blog-card:hover { border-left: 3px solid var(--gold); transform: translateX(10px); }
.blog-card .date { font-size: 0.8rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.blog-card h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 1rem; }
.read-more { display: inline-block; margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.read-more:hover { color: var(--gold); }

/* --- GALLERY PLACEHOLDERS --- */
.gallery-item {
    position: relative;
    background: var(--surface);
    overflow: hidden;
    cursor: pointer;
}
.placeholder-img {
    width: 100%; height: 100%; background: #252525;
}
.overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.overlay h3 { font-family: var(--font-heading); color: var(--gold); }

/* --- FOOTER --- */
footer {
    text-align: center; padding: 2rem; border-top: 1px solid #222;
    font-size: 0.8rem; color: var(--text-muted);
}
