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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #5a8a6a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: transparent;
    --border-color: #444;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    padding-top: 100px;
    position: relative;
    background: #1a1a1a;
}

/* Global text color - black everywhere */
body * {
    color: #1a1a1a;
}

/* WebGL Gradient Canvas */
#gradient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Full screen blur overlay */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    backdrop-filter: blur(50px);
    pointer-events: none;
}

/* Very slow moving grain texture */
.grain-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: grain-drift 120s linear infinite;
}

@keyframes grain-drift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2%, -1%); }
    50% { transform: translate(-1%, -2%); }
    75% { transform: translate(-2%, -1%); }
    100% { transform: translate(0, 0); }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-container {
    max-width: 1100px;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 102;
    padding: 2rem 20px;
    background: rgba(245, 245, 245, 0.3);
    backdrop-filter: blur(20px);
}

.site-tagline {
    font-size: 1.15rem;
    text-align: center;
    font-weight: 500;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
}

.navbar .container {
    padding: 0;
    position: relative;
}

.logo {
    display: none;
}

.nav-indicator {
    position: absolute;
    left: -15px;
    right: -15px;
    top: 0;
    height: 60px;
    background: rgba(245, 240, 230, 0.2);
    border-radius: 4px;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: -1;
}

.nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    position: relative;
}

.nav-links li {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    transition: opacity 0.3s;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: block;
    padding: 0 1rem;
    line-height: 1.2;
    opacity: 0.7;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-statement {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Sections */
.section {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}


.section h2 {
    display: none;
}

.section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.section p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.section h3 {
    color: inherit;
}

/* About Section */
.about-description {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

/* Team Section */
.team-subtitle {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: var(--text-dark);
    text-align: left;
}

.team-story {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-story p {
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Contact Section */
.contact-subtitle {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 1rem;
}

#contact-message {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-primary {
    background: rgba(45, 77, 61, 0.8);
    color: white;
    padding: 0.75rem 3rem;
    border: 1px solid rgba(45, 77, 61, 0.5);
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(45, 77, 61, 1);
    border-color: rgba(45, 77, 61, 0.8);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--accent-color);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}
