:root {
    --primary: #d4a373;
    --dark: #121212;
    --light: #fefae0;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* Shared Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo { color: white; font-weight: 800; letter-spacing: 1px; }
nav span { color: var(--primary); }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 2rem; }
nav ul li a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: var(--primary); }

/* Home / Hero */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 4.5rem; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; color: #ddd; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin: 0 10px;
}

.btn-outline { background: transparent; border: 2px solid white; color: white; }

/* Pricing Layout */
.light-bg { background-color: #f9f9f9; }
.pricing-container { padding: 5rem 10%; text-align: center; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.card { background: white; padding: 3rem 2rem; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; }
.card.featured { border: 2px solid var(--primary); transform: translateY(-10px); }
.price { font-size: 3rem; font-weight: bold; margin: 1rem 0; }
.price span { font-size: 1rem; color: #888; }
.card ul { list-style: none; margin: 2rem 0; text-align: left; }
.card li { padding: 8px 0; border-bottom: 1px solid #f4f4f4; }
.btn-sm { width: 100%; padding: 12px; background: var(--dark); color: white; border: none; cursor: pointer; border-radius: 4px; }

/* About Layout */
.dark-bg { background-color: var(--dark); color: white; }
.about-page { padding: 8rem 10%; min-height: 80vh; }
.about-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; }
.text-block span { color: var(--primary); font-weight: bold; text-transform: uppercase; }
.text-block h2 { font-size: 3rem; margin: 1rem 0; }
.text-block p { line-height: 1.8; color: #aaa; margin-bottom: 1.5rem; }
.stat-item { background: #1e1e1e; padding: 2rem; border-radius: 8px; margin-bottom: 1rem; text-align: center; }
.stat-item h3 { font-size: 2.5rem
