﻿:root {
    --lvn-blue: #1a365d;
    --lvn-blue-light: #2c5282;
    --lvn-gold: #c9a962;
    --lvn-cream: #faf8f5;
    --lvn-warm-white: #fffef9;
    --lvn-charcoal: #2d3748;
    --lvn-gray: #718096;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--lvn-warm-white);
    color: var(--lvn-charcoal);
    overflow-x: hidden;
}

/* Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

    .main-header.scrolled {
        background: rgba(26, 54, 93, 0.97);
        padding: 1rem 3rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    }

.header-logo {
    font-family: 'Copperplate Gothic Bold', 'Montserrat', sans-serif;
    color: var(--lvn-cream);
    font-weight: 600;
    font-size: 0.975rem;
    text-transform: uppercase;
    letter-spacing: 0.75em;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .header-logo:hover {
        color: var(--lvn-gold);
    }

.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--lvn-cream);
        text-decoration: none;
        position: relative;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--lvn-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--lvn-gold);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.header-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lvn-blue);
    background: var(--lvn-gold);
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    border: 1px solid var(--lvn-gold);
    transition: all 0.3s ease;
}

    .header-cta:hover {
        background: transparent;
        color: var(--lvn-gold);
    }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

    .mobile-toggle span {
        width: 24px;
        height: 1px;
        background: var(--lvn-cream);
        transition: all 0.3s ease;
    }

/* Hero Section with Parallax */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient( 135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.75) 50%, rgba(26, 54, 93, 0.9) 100% ), url('../images/Eindhoven.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.logo-text {
    font-family: 'Copperplate Gothic Bold', 'Montserrat', sans-serif;
    color: var(--lvn-cream);
    font-weight: 600;
    font-size: 0.975rem;
    text-transform: uppercase;
    letter-spacing: 0.75em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeSlideDown 1.2s ease-out 0.3s forwards;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--lvn-cream);
    letter-spacing: 0.05em;
    line-height: 1.2;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1.2s ease-out 0.6s forwards;
}

    .hero-tagline em {
        font-style: italic;
        color: var(--lvn-gold);
    }

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--lvn-gold);
    margin: 2.5rem 0;
    opacity: 0;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 1s forwards;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(250, 248, 245, 0.8);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.8s forwards;
}

    .scroll-indicator span {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        color: rgba(250, 248, 245, 0.6);
        text-transform: uppercase;
    }

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--lvn-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}



/* About Section */
.about-section {
    position: relative;
    padding: 10rem 2rem;
    background: var(--lvn-warm-white);
    overflow: hidden;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to bottom, rgba(26, 54, 93, 0.03), transparent);
    }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .about-content.visible {
        opacity: 1;
        transform: translateX(0);
    }

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--lvn-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .section-label::before {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--lvn-gold);
    }

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--lvn-blue);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--lvn-charcoal);
    margin-bottom: 1.5rem;
}

    .about-text:last-of-type {
        margin-bottom: 2.5rem;
    }

.about-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--lvn-blue);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lvn-gray);
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

    .about-visual.visible {
        opacity: 1;
        transform: translateX(0);
    }

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

    .about-image-wrapper::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--lvn-gold);
        z-index: -1;
    }

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-accent-text {
    position: absolute;
    bottom: -1rem;
    left: -2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: rgba(26, 54, 93, 0.05);
    line-height: 1;
    pointer-events: none;
}


/* Services Section */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}

.logo-wrapper {
    position: relative;
    width: 200px;
    height: 280px;
}

.zigzag {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    max-width: 150px;
    height: auto;
    opacity: 0;
}

    .zigzag.animate {
        animation: slideInFade 0.5s ease-out forwards;
    }

    .zigzag img {
        width: 100%;
        height: auto;
        display: block;
    }

.zigzag-1 {
    top: 0;
}

.zigzag-2 {
    top: 80px;
}

.zigzag-3 {
    top: 160px;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(0.8);
    }

    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Text styling */
.logo-text {
    text-align: center;
    opacity: 0;
}

    .logo-text.animate {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .logo-text h1 {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 0.3em;
        color: var(--lvn-blue);
        text-transform: uppercase;
    }

    .logo-text p {
        font-size: 0.85rem;
        color: var(--lvn-gray);
        letter-spacing: 0.15em;
        margin-top: 8px;
    }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Replay button */
.replay-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background: var(--lvn-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

    .replay-btn:hover {
        background: var(--lvn-gold);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
    }

/* Text styling */
.logo-text {
    text-align: center;
    opacity: 0;
}

    .logo-text.animate {
        animation: fadeInUp 0.6s ease-out 0.8s forwards;
    }

    .logo-text h1 {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 0.3em;
        color: var(--lvn-blue);
        text-transform: uppercase;
    }

    .logo-text p {
        font-size: 0.85rem;
        color: var(--lvn-gray);
        letter-spacing: 0.15em;
        margin-top: 8px;
    }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Replay button */
.replay-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background: var(--lvn-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

    .replay-btn:hover {
        background: var(--lvn-gold);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 169, 98, 0.4);
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}   
    
    
    
    
    /* Team Section */
.team-section {
    padding: 10rem 2rem;
    background: var(--lvn-cream);
    position: relative;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

    .team-header.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .team-header .section-label {
        justify-content: center;
    }

        .team-header .section-label::before,
        .team-header .section-label::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--lvn-gold);
        }

.team-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--lvn-blue);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--lvn-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.team-member {
    background: var(--lvn-warm-white);
    border: 1px solid rgba(26, 54, 93, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

    .team-member.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .team-member:nth-child(2) {
        transition-delay: 0.2s;
    }

.member-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--lvn-blue) 0%, var(--lvn-blue-light) 100%);
    overflow: hidden;
}

.member-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .member-image-placeholder svg {
        width: 40%;
        height: 40%;
        color: rgba(250, 248, 245, 0.2);
    }

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--lvn-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-member:hover .social-btn {
    transform: translateY(0);
    opacity: 1;
}

    .team-member:hover .social-btn:nth-child(1) {
        transition-delay: 0.1s;
    }

    .team-member:hover .social-btn:nth-child(2) {
        transition-delay: 0.2s;
    }

    .team-member:hover .social-btn:nth-child(3) {
        transition-delay: 0.3s;
    }

.social-btn:hover {
    background: var(--lvn-gold);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--lvn-gold);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.social-btn:hover svg {
    stroke: var(--lvn-blue);
}

.member-info {
    padding: 2.5rem;
}

.member-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--lvn-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lvn-gold);
    margin-bottom: 1.5rem;
}

.member-bio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--lvn-charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.member-contact-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.member-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--lvn-blue);
    background: transparent;
    border: 1px solid rgba(26, 54, 93, 0.2);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

    .member-btn:hover {
        background: var(--lvn-blue);
        border-color: var(--lvn-blue);
        color: var(--lvn-cream);
    }

    .member-btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        stroke-width: 1.5;
        fill: none;
    }

/* Services Section */
.services-section {
    padding: 10rem 2rem;
    background: var(--lvn-blue);
    position: relative;
    overflow: hidden;
}

    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

    .services-header.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .services-header .section-label {
        color: var(--lvn-gold);
        justify-content: center;
    }

        .services-header .section-label::before,
        .services-header .section-label::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--lvn-gold);
        }

.services-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--lvn-cream);
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        transition-delay: 0.4s;
    }

    .service-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--lvn-gold);
        transform: translateY(-5px);
    }

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    stroke: var(--lvn-gold);
    stroke-width: 1;
    fill: none;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lvn-cream);
    margin-bottom: 1rem;
}

.service-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.7;
}

/* Quote Section */
.quote-section {
    padding: 8rem 2rem;
    background: var(--lvn-cream);
    text-align: center;
    position: relative;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease-out;
}

    .quote-container.visible {
        opacity: 1;
        transform: scale(1);
    }

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--lvn-gold);
    line-height: 0.5;
    opacity: 0.4;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--lvn-blue);
    line-height: 1.5;
    margin: 2rem 0 3rem;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lvn-gray);
}

/* Contact Section */
.contact-section {
    padding: 10rem 2rem;
    background: var(--lvn-warm-white);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-side {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s ease-out;
}

    .contact-info-side.visible {
        opacity: 1;
        transform: translateX(0);
    }

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--lvn-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--lvn-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--lvn-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--lvn-gold);
        stroke-width: 1.5;
        fill: none;
    }

.contact-item-content {
    padding-top: 0.25rem;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lvn-gold);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--lvn-charcoal);
    line-height: 1.6;
}

    .contact-value a {
        color: var(--lvn-charcoal);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-value a:hover {
            color: var(--lvn-blue);
        }

/* Contact Form */
.contact-form-wrapper {
    background: var(--lvn-blue);
    padding: 3.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s ease-out 0.2s;
}

    .contact-form-wrapper.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: -15px;
        right: -15px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--lvn-gold);
        z-index: -1;
    }

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--lvn-cream);
    margin-bottom: 0.75rem;
}

.form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(250, 248, 245, 0.6);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lvn-gold);
}

.form-input,
.form-textarea {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--lvn-cream);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    outline: none;
}

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(250, 248, 245, 0.4);
    }

    .form-input:focus,
    .form-textarea:focus {
        border-color: var(--lvn-gold);
        background: rgba(255, 255, 255, 0.08);
    }

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lvn-blue);
    background: var(--lvn-gold);
    border: 1px solid var(--lvn-gold);
    padding: 1.25rem 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

    .form-submit:hover {
        background: transparent;
        color: var(--lvn-gold);
    }

.form-privacy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(250, 248, 245, 0.5);
    line-height: 1.6;
    margin-top: 1rem;
}

    .form-privacy a {
        color: var(--lvn-gold);
        text-decoration: none;
    }

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

    .form-success.show {
        display: block;
    }

.form-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--lvn-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .form-success-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--lvn-gold);
        stroke-width: 2;
        fill: none;
    }

.form-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--lvn-cream);
    margin-bottom: 1rem;
}

.form-success-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.7;
}



/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--lvn-blue);
    text-align: center;
}

.footer-logo {
    font-family: 'Copperplate Gothic Bold', 'Montserrat', sans-serif;
    color: var(--lvn-cream);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(250, 248, 245, 0.5);
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(250, 248, 245, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

    .footer-link:hover {
        color: var(--lvn-gold);
    }

/* Animations */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form-wrapper::before {
        top: -10px;
        right: -10px;
    }

    .team-grid {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .main-header {
        padding: 1.25rem 2rem;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--lvn-blue);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

        .header-nav.active {
            right: 0;
        }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

        .nav-links a {
            font-size: 0.85rem;
        }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual {
        order: -1;
    }

    .about-image-wrapper {
        aspect-ratio: 16/10;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-logo {
        font-size: 0.6rem;
        letter-spacing: 0.3em;
    }

    .logo-text {
        font-size: 0.7rem;
        letter-spacing: 0.4em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-accent-text {
        display: none;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.75rem;
    }

        .contact-form-wrapper::before {
            display: none;
        }

    .member-info {
        padding: 2rem 1.5rem;
    }

    .member-contact-buttons {
        flex-direction: column;
    }

    .member-btn {
        justify-content: center;
    }
}
