/* --- EDITORIAL DESIGN VARIABLES --- */
:root {
    --bg-color: #fcfcfc; /* Off-white paper look */
    --text-main: #111111; /* Sharp black */
    --text-light: #555555;
    --accent: #d4af37; /* Muted Gold */
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif; /* Editorial feel */
    --font-body: 'Lato', sans-serif;
    --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-weight: 300;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400; /* Editorial style is usually lighter */
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--text-main);
}

/* --- NAVIGATION --- */
.navbar {
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(252, 252, 252, 0.95);
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- LAYOUTS --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

/* Hero Section */
.hero {
    height: 90vh;
    background-image: url('https://images.pexels.com/photos/2113994/pexels-photo-2113994.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.3); }

.hero-content { position: relative; z-index: 2; color: #fff; max-width: 800px; }
.hero-content h1 { font-size: 4.5rem; margin-bottom: 20px; font-style: italic; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; font-weight: 300; letter-spacing: 1px; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #fff;
}
.btn:hover { background: transparent; color: #fff; }

/* Editorial Grids */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.editorial-item { position: relative; overflow: hidden; border: 1px solid var(--border-color); }
.editorial-text { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.caption { text-transform: uppercase; color: var(--accent); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 10px; display: block; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.review-card { padding: 40px; border: 1px solid var(--border-color); text-align: center; }
.quote-icon { font-size: 3rem; font-family: var(--font-heading); color: var(--border-color); line-height: 1; }

/* Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 30px; border-bottom: 1px solid var(--border-color); }
input, textarea { width: 100%; padding: 15px 0; border: none; background: transparent; font-family: var(--font-heading); font-size: 1.2rem; outline: none; }
input::placeholder { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 1px; }
button[type="submit"] { background: #000; color: #fff; width: 100%; padding: 20px; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; }

/* Footer */
footer { border-top: 1px solid var(--border-color); padding: 60px 0; text-align: center; margin-top: 50px; }
.footer-links { margin-bottom: 30px; display: flex; justify-content: center; gap: 30px; }
.footer-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.phone { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; display: block; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 80px; left: -100%; width: 100%; height: 100vh;
        background: #fff; flex-direction: column; align-items: center; justify-content: center;
        transition: 0.4s;
    }
    .nav-links.active { left: 0; }
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-item { border-bottom: 1px solid var(--border-color); }
}