/* CSS Reset & Variables */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-cream: #f7f8f2;
    --text-primary: #2d373c;
    --text-secondary: #485257;
    --text-muted: #70706F;
    --border-subtle: #DFE0D6;
    --teal-brand: #1C7F7A;
    --teal-button: #1C7F7A;
    --teal-button-hover: #135658;
    --font-family: "Source Sans 3", sans-serif;
}

html, body {
    height: 100%;
    font-family: var(--font-family);
    font-optical-sizing: auto;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    gap: 30px;
}

/* Page Layout */
.page-container {
    display: flex;
    height: 100vh;
    width: 100%;
    background-color: var(--bg-cream);
}

/* Left Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 50%;
    background-color: var(--bg-cream);
    z-index: 2;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* Brand Header */
.brand-header {
    /* margin-bottom: 2rem; */
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* Brand Footer */
footer {
    font-size: 16px;
    line-height: normal;
    text-align: left;
    color: var(--text-muted);
    
    
    
    
    
    
    p {
        margin: 0;
    }
}
/* Main Content Area */
.main-content {
    display: flex;
    flex-direction: column;
    max-width: 540px;
}

/* Section Label & Divider */
.section-label-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    text-transform: uppercase;
    white-space: nowrap;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--border-subtle);
    max-width: 320px;
}

/* Headline */
.headline {
    font-size: clamp(2.4rem, 3.8vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.headline .highlight {
    font-weight: 700;
    color: var(--teal-brand);
}

/* Description Text */
.description {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2.75rem;
    max-width: 480px;
}

/* Button & Actions */
.cta-wrapper {
    display: flex;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--teal-button);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--teal-button-hover);
    box-shadow: 0 4px 12px rgba(25, 107, 109, 0.25);
    transform: translateY(-1px);
    outline: none;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Right Image Section */
.image-section {
    flex: 1 1 52%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .content-section {
        padding: 3rem 3.5rem 3.5rem 3.5rem;
    }
}

@media (max-width: 992px) {
    .page-container {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        justify-content: flex-end;
    }

    .content-section {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 2rem 3rem 2rem;
        min-height: auto;
    }

    .main-content {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .divider-line {
        max-width: 100%;
    }

    .image-section {
        flex: none;
        width: 100%;
        height: 450px;
        min-height: 400px;
    }

    .hero-image {
        object-position: center center;
    }
}

@media (max-width: 600px) {
    .content-section {
        padding: 2rem 1.5rem 2.5rem 1.5rem;
    }

    .logo-img {
        height: 44px;
    }

    .section-label-wrapper {
        margin-bottom: 1.75rem;
    }

    .headline {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .description {
        font-size: 0.975rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .image-section {
        height: 320px;
        min-height: 300px;
    }
}

