:root {
    --primary-navy: #1a2b49;
    --accent-gold: #c8a882;
    --deep-teal: #2d5a5f;
    --warm-cream: #f7f5f2;
    --soft-gray: #e8e6e3;
    --text-dark: #2a2a2a;
    --text-light: #6b6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', serif;
    color: var(--text-dark);
    background: var(--warm-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Security Overlay */
.access-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.access-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.access-content {
    color: white;
    max-width: 400px;
}

.lock-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    stroke: var(--accent-gold);
}

.access-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.access-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-teal) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(200, 168, 130, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.linkedin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    padding: 8px 16px;
}

.lang-btn:hover {
    color: var(--accent-gold);
}

.hero {
    padding: 80px 0 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.hero-image-container {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1.2s ease 0.4s forwards;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(26, 43, 73, 0.25),
        0 0 0 1px rgba(26, 43, 73, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.image-wrapper:hover::before {
    left: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.accent-border {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-gold);
    border-radius: 8px;
    z-index: -1;
}

.hero-content {
    opacity: 0;
    animation: fadeInRight 1.2s ease 0.6s forwards;
}

.subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    color: var(--accent-gold);
    display: block;
    font-style: italic;
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    margin-top: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-btn:hover {
    background: rgba(200, 168, 130, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

main {
    background: var(--warm-cream);
    position: relative;
}

.expertise-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 32px auto 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expertise-card {
    background: white;
    padding: 48px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--accent-gold);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.expertise-card:nth-child(1) {
    animation-delay: 0.2s;
}

.expertise-card:nth-child(2) {
    animation-delay: 0.4s;
}

.expertise-card:nth-child(3) {
    animation-delay: 0.6s;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 43, 73, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--deep-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(26, 43, 73, 0.2);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 2;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-weight: 600;
}

.card-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-teal) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(200, 168, 130, 0.12) 0%, transparent 60%);
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 2;
}

.contact-link {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-link:hover {
    border-color: var(--accent-gold);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.3);
}

.cta-button:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(200, 168, 130, 0.4);
}

footer {
    background: var(--primary-navy);
    padding: 40px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

footer p {
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 24px;
    }

    .container {
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.4rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }
}