:root {
    /* High-Contrast Luxury Light Palette */
    --bg-light: #FAFAFA;
    /* Off-white background */
    --bg-alt: #FFFFFF;
    /* Pure white for cards */
    --primary: #121212;
    /* Nearly black for high contrast headings */
    --text-main: #333333;
    /* Dark grey for body text readability */
    --text-muted: #6B7280;
    /* Muted grey for secondary text */
    --accent: #B8860B;
    /* Dark Goldenrod - elegant and legible */
    --accent-light: #F9F1E5;
    /* Very subtle gold tint for backgrounds */
    --border-color: #E5E7EB;

    /* Soft, elegant shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lux: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

    --nav-height: 90px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.gradient-text {
    color: var(--accent);
    /* Removing gradient for better contrast, using pure accent color */
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    /* Sharp corners for high-end feel */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    border: 1px solid var(--primary);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
}

.btn-yellow {
    background: #FFD700;
    /* Bright Luxury Yellow */
    color: #121212;
    border-color: #FFD700;
}

.btn-yellow:hover {
    background: #E6C200;
    border-color: #E6C200;
    color: #121212;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lux);
}

/* Navbar */
nav {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo img {
    height: 132px;
    /* Tripled from 44px */
    width: auto;
    object-fit: contain;
}

.logo span {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: #FFFFFF;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-alt) 100%);
    padding-top: var(--nav-height);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Section Common */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 3.5rem 2.5rem;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lux);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--accent);
}

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

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

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lux);
    transform: scale(1.02);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #FFFFFF;
    padding: 0.3rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    height: 45px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.features-list li {
    padding: 0.8rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.features-list li:last-child {
    border-bottom: 1px solid var(--border-color);
}

.features-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
    background: var(--bg-alt);
}

.portfolio-grid {
    display: flex;
    justify-content: center;
}

.portfolio-item {
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--border-color);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9), transparent);
    color: #FFFFFF;
}

.portfolio-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lux);
}

.contact-info {
    padding: 4rem;
    background: var(--accent-light);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-info p {
    color: var(--text-main);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-form {
    padding: 4rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-alt);
}

footer {
    padding: 4rem 0 2rem;
    background: var(--primary);
    color: #FFFFFF;
}

footer .logo {
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.socials a {
    color: #FFFFFF;
    opacity: 0.7;
    margin-left: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.socials a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Hidden Cursor */
.cursor-glow {
    display: none;
    /* Removed for a cleaner, professional look */
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}