/* =================================
   CSS Reset & Base Styles
   ================================= */

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

:root {
    --surface-invert: #1e3a34;
    --surface-primary: #e6e1d8;
    --text-feature: #5f735f;
    --text-secondary: #1e3a34;
    --text-primary: #222222;
    --text-invert: #ffffff;
    --bullet-color: #ec825d;

    --font-display: 'ivymode', Georgia, 'Times New Roman', serif;
    --font-body: 'itc-avant-garde-gothic-pro', 'Century Gothic', Futura, Arial, sans-serif;
}

html {
    height: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.4;
    color: var(--text-primary);
    background-color: var(--surface-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--text-feature);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

.phone-link {
    white-space: nowrap;
}

/* =================================
   Header
   ================================= */

.site-header {
    background-color: var(--surface-invert);
    display: flex;
    align-items: center;
    padding: 16px 184px;
    width: 100%;
}

.logo-link {
    display: flex;
}

.site-logo {
    width: 222px;
    height: 52px;
    display: block;
}

/* =================================
   Main Split Container
   ================================= */

.split-container {
    display: flex;
    flex: 1;
    max-width: 1728px;
    width: 100%;
    align-self: center;
    background-color: var(--surface-primary);
}

/* =================================
   Hero Side (Left)
   ================================= */

.hero-side {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 120px 80px 120px 184px;
}

.hero-side h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.52px;
    color: var(--text-feature);
}

/* =================================
   Info Side (Right)
   ================================= */

.info-side {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 120px 184px 120px 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--text-secondary);
}

/* =================================
   Contact Information
   ================================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1;
    color: var(--text-primary);
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info li {
    position: relative;
    padding-left: 19px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-primary);
}

.contact-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bullet-color);
}

.contact-info li a {
    color: var(--text-feature);
    text-decoration: underline;
}

/* =================================
   Footer
   ================================= */

footer {
    background-color: var(--surface-invert);
    color: var(--text-invert);
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 184px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    max-width: 672px;
}

.footer-logo {
    width: 160px;
    height: 88px;
    display: block;
}

/* =================================
   Responsive Design - Small Desktop / Laptop
   ================================= */

@media (max-width: 1400px) {

    .site-header,
    .footer-content {
        padding-inline: 100px;
    }

    .hero-side {
        padding-left: 100px;
        padding-right: 60px;
    }

    .info-side {
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {

    .site-header,
    .footer-content {
        padding-inline: 45px;
    }

    .hero-side {
        padding-left: 45px;
        padding-right: 40px;
    }

    .info-side {
        padding-right: 45px;
    }

    .hero-side h1 {
        font-size: 40px;
        line-height: 1.15;
    }
}

/* =================================
   Responsive Design - Tablet
   ================================= */

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
    }

    .hero-side,
    .info-side {
        width: 100%;
        flex: 1;
        padding: 60px 45px 40px;
    }

    .info-side {
        padding-top: 0;
    }

    footer {
        height: fit-content;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}

/* =================================
   Responsive Design - Mobile
   ================================= */

@media (max-width: 480px) {

    .site-header,
    .footer-content {
        padding-inline: 20px;
    }

    .site-header {
        padding-block: 12px;
    }

    .site-logo {
        width: 160px;
        height: 38px;
    }

    .hero-side,
    .info-side {
        padding: 32px 20px 24px;
    }

    .info-side {
        padding-top: 0;
    }

    .hero-side h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .info-content h2 {
        font-size: 20px;
    }

    .contact-info-title,
    .contact-info li {
        font-size: 16px;
    }

    .footer-content {
        padding-block: 24px;
    }

    .footer-logo {
        width: 130px;
        height: 71px;
    }
}
