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

:root {
    --color-background: #0a0a0a;
    --color-surface: #141414;
    --color-surface-elevated: #1a1a1a;
    --color-border: #2a2a2a;
    --color-gold: #d4af37;
    --color-gold-muted: #b8964f;
    --color-text-primary: #e8e8e8;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #707070;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.01) 2px,
            rgba(212, 175, 55, 0.01) 4px
        );
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 32px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 100px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    animation: fadeInDown 0.8s ease-out;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e8e8e8 0%, var(--color-gold) 50%, #e8e8e8 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.header-subtitle {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

.main-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-section {
    text-align: center;
    margin-bottom: 120px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-label {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.coming-soon-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.services-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.service-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    padding: 48px 40px;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(32, 32, 32, 1) 100%);
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-gold) 0%, rgba(212, 175, 55, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    margin-bottom: 24px;
    line-height: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    margin: 80px 0;
    position: relative;
    opacity: 0.3;
}

.divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    filter: blur(3px);
}

.philosophy-section {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.contact-section {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 1px solid var(--color-border);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, rgba(184, 150, 79, 1) 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contact-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-button:hover {
    color: var(--color-background);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.contact-button:hover::before {
    width: 100%;
}

.contact-button:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.footer {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

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

.footer-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--color-gold-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 24px;
    }

    .header {
        margin-bottom: 60px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .hero-section {
        margin-bottom: 80px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-section {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 80px;
    }

    .service-card {
        padding: 40px 32px;
    }

    .philosophy-section {
        margin-bottom: 80px;
    }

    .philosophy-title {
        font-size: 1.75rem;
    }

    .contact-section {
        padding: 60px 32px;
    }

    .contact-title {
        font-size: 1.875rem;
    }

    .contact-button {
        padding: 16px 40px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-number {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .contact-section {
        padding: 48px 24px;
    }

    .contact-button {
        width: 100%;
        padding: 16px 32px;
    }
}
