:root {
    --primary: #c9a96e; /* Muted Gold */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Nav */
nav {
    height: 100px;
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    font-size: 0.8rem;
    font-family: 'Inter';
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    margin-top: -5px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: relative;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.badge {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

/* Buttons */
.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--bg-dark);
}

/* Services */
.services {
    padding: 10rem 0;
    background-color: var(--bg-dark);
}

.section-header {
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.line {
    width: 80px;
    height: 2px;
    background-color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.service-card {
    background-color: var(--bg-card);
    padding: 4rem 3rem;
    flex: 1;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 10rem 0;
    background-color: #050505;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    background-color: var(--bg-card);
    padding: 4rem;
    width: 450px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.featured {
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.popular-tag {
    position: absolute;
    top: 2rem;
    right: -10px;
    background-color: var(--primary);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    font-family: 'Playfair Display';
}

.price span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.features {
    list-style: none;
    margin-bottom: 4rem;
}

.features li {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features li::before {
    content: '✓';
    color: var(--primary);
}

/* Footer */
footer {
    padding: 8rem 0 4rem;
    background-color: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10rem;
    margin-bottom: 6rem;
}

.footer-info .logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-info p {
    color: var(--text-muted);
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Inter';
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.text-center { text-align: center; }

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .services-grid, .pricing-grid { flex-direction: column; align-items: center; }
    .pricing-card { width: 100%; max-width: 450px; }
    .footer-grid { grid-template-columns: 1fr; gap: 4rem; }
}
