:root {
    --bg: #ffffff;
    --text: #20262b;
    --muted: #66727a;
    --accent: #2f7d6d;
    --accent-dark: #245f54;
    --panel: #f4f7f6;
    --border: #dfe7e4;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: var(--accent-dark);
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.header-wrap {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--max);
    padding: 1rem 1.25rem;
}

.site-logo img {
    display: block;
    height: auto;
    max-width: 220px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--accent);
}

.hero {
    align-items: center;
    background:
        linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)),
        url('/assets/img/lp-main-corp-banner-globe.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    min-height: 520px;
}

.hero-wrap {
    margin: 0 auto;
    max-width: var(--max);
    padding: 4rem 1.25rem;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    max-width: 850px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 760px;
}

.section {
    padding: 4.5rem 1.25rem;
}

.section-wrap {
    margin: 0 auto;
    max-width: var(--max);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 0;
}

.lead {
    color: var(--muted);
    font-size: 1.2rem;
    max-width: 900px;
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 2rem;
}

.feature-card h3 {
    margin-top: 0;
}

.cta {
    background: var(--accent-dark);
    color: #fff;
}

.cta a {
    color: #fff;
    font-weight: 700;
}

.site-footer {
    background: #18211f;
    color: #d8e1de;
    padding: 2.5rem 1.25rem;
}

.footer-wrap {
    margin: 0 auto;
    max-width: var(--max);
}

@media (max-width: 800px) {
    .header-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 420px;
    }
}

.page-hero {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    min-height: 310px;
}

.page-hero-wrap {
    margin: 0 auto;
    max-width: var(--max);
    padding: 3rem 1.25rem;
    width: 100%;
}

.page-hero h1 {
    font-size: clamp(2.7rem, 6vw, 4.5rem);
    margin: 0;
}

.about-video-section {
    background: var(--panel);
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.about-video {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
}

.service-break {
    min-height: 260px;
}

.service-break h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin: 0;
}

.team-list {
    margin-top: 3rem;
}

.team-member {
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 3rem;
    grid-template-columns: 280px 1fr;
    padding: 3rem 0;
}

.team-member:first-child {
    padding-top: 0;
}

.team-member-reverse {
    grid-template-columns: 1fr 280px;
}

.team-member-reverse .team-photo {
    grid-column: 2;
    grid-row: 1;
}

.team-member-reverse .team-story {
    grid-column: 1;
    grid-row: 1;
}

.team-photo img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.team-story h2 {
    margin-bottom: .25rem;
    margin-top: 0;
}

.team-story h3 {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

@media (max-width: 800px) {
    .team-member,
    .team-member-reverse {
        grid-template-columns: 1fr;
    }

    .team-member-reverse .team-photo,
    .team-member-reverse .team-story {
        grid-column: auto;
        grid-row: auto;
    }

    .team-photo {
        max-width: 300px;
    }
}
