:root {
    --primary-bg: #EAEAEA;
    --text-dark: #333333;
    --accent: #E86B32;
    /* Match the orange launch button */
    --footer-bg: #404040;
    --footer-text: #E0E0E0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.hero {
    height: 60vh;
    min-height: 500px;
    background-color: #61605c;
    background-image: url('bg_small.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin-top: -2rem;
    /* visually center slightly higher */
}

.hero-main-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.hero-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 0.2rem;
}

.hero-logo p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section.about-section {
    padding-top: 2rem;
    display: none;
}

.about-section .block {
    display: flex;
    align-items: stretch;
    /* Match heights */
    gap: 0;
    /* Removing gap, text wrapper will have padding */
    margin-bottom: 2rem;
    background-color: var(--primary-bg);
}

.image-wrapper {
    flex: 1;
    min-width: 300px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
}

.text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.15rem;
    padding: 3rem 4rem;
    color: #4a4a4a;
}

.contact-section {
    background-color: var(--primary-bg);
}

.contact-section .container {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.contact-section p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
}

.contact-info a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.contact-info .separator {
    color: var(--accent);
    font-weight: 800;
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem 0;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 2rem;
}

.footer-content span {
    opacity: 0.8;
}

.footer-content span:nth-child(even) {
    opacity: 0.4;
    /* Divider pipes */
}

@media (max-width: 900px) {
    .about-section .block {
        flex-direction: column;
    }

    .text-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-main-text {
        font-size: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info .separator {
        display: none;
    }

    .footer-content {
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-content span:nth-child(even) {
        display: none;
    }
}