@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    --primary-bg: #111111;
    --secondary-bg: #1a1a1a;
    --accent: #d4af37; /* Gold */
    --accent-hover: #f1c40f;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border: #333333;
    --glass: rgba(255, 255, 255, 0.05);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Typography Extensions */
.text-gold { color: var(--accent); }
.text-uppercase { text-transform: uppercase; letter-spacing: 2px; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

/* Navigation */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.nav-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

/* Sections */
section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px; /* Adjusted for taller centered header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Social Proof */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.review-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.review-card .author {
    font-weight: 600;
    color: var(--accent);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--primary-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

.service-card a {
    display: block;
    padding: 0 20px 20px;
}

/* Dual Grid */
.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .dual-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-list {
    margin-top: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--accent);
}

.social-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
    header .btn {
        display: none;
    }
    
    .logo {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.4;
    }
    
    .hero-overlay {
        background: rgba(0,0,0,0.7);
    }
    
    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .dual-grid {
        gap: 30px;
    }

    .services-grid, .full-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky Action Bar for Mobile */
.mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border);
    z-index: 999;
}

@media (min-width: 769px) {
    .mobile-actions {
        display: none;
    }
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-primary);
    border-right: 1px solid var(--border);
    text-decoration: none;
}

.mobile-action-btn:last-child {
    border-right: none;
    background: var(--accent);
    color: #000;
}

.mobile-action-btn svg {
    margin-bottom: 4px;
}
