:root {
    --gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b49321 100%);
    --dark-blue: #020617;
    --dark-blue-card: #0f172a;
    --text-light: #f8fafc;
    --text-grey: #94a3b8;
    --serif: 'Playfair Display', serif;
    --sans: 'Lato', sans-serif;
}

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

body {
    font-family: var(--sans);
    background-color: var(--dark-blue);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: var(--serif);
}

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

/* Header */
header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 40px 0;
    transition: background 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.logo-symbol {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-left: 50px;
    transition: color 0.3s;
    position: relative;
    font-weight: 700;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    width: 100%;
}

.btn-outline {
    border: 1px solid var(--gold);
    padding: 12px 30px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-blue);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #020617 10%, rgba(2, 6, 23, 0.9) 40%, rgba(2, 6, 23, 0.2) 100%);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.overline {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 24px;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.subtitle {
    color: var(--text-grey);
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    border-left: 1px solid var(--gold);
    padding-left: 20px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark-blue);
    padding: 20px 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Services */
.services {
    padding: 160px 0;
    background-color: var(--dark-blue);
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.separator {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.4s ease;
}

.service-item:hover {
    background: var(--dark-blue-card);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-item:hover::before {
    height: 100%;
}

.service-number {
    display: block;
    font-family: var(--serif);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    font-style: italic;
    transition: color 0.4s;
}

.service-item:hover .service-number {
    color: var(--gold);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-item p {
    color: var(--text-grey);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.footer-info {
    color: var(--text-grey);
    margin-bottom: 60px;
    font-weight: 300;
}

.copyright {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

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

    nav a {
        margin: 0;
    }
}