:root {
    --ink: #16231f;
    --muted: #5f6f6a;
    --green: #12624f;
    --green-dark: #0d473c;
    --gold: #d49a2f;
    --coral: #c7604e;
    --sky: #347fa7;
    --paper: #f7f5ef;
    --white: #ffffff;
    --line: #d9ded9;
    --shadow: 0 18px 55px rgba(22, 35, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 10px 42px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(217, 222, 217, 0.85);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.brand img {
    width: 46px;
    height: 46px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 650;
}

.main-nav a,
.header-cta {
    text-decoration: none;
}

.main-nav a {
    color: #30443e;
}

.main-nav a[aria-current="page"] {
    color: var(--green);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    color: var(--white);
    background: var(--green);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 750;
}

.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 96px 42px 112px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(13, 35, 30, 0.92), rgba(13, 35, 30, 0.72) 46%, rgba(13, 35, 30, 0.18)),
        url("/wp-content/uploads/2025/02/minimalist_and_modern_workspace.jpeg") center / cover;
}

.hero-content {
    width: min(760px, 100%);
    margin-left: calc((100% - 1180px) / 2);
}

.eyebrow,
.section-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.intro-copy h2,
.split-copy h2,
.section-heading h2,
.method-copy h2,
.cta-section h2 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 820px;
    font-size: 56px;
}

.hero-lead {
    max-width: 710px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 21px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    color: var(--white);
    background: var(--green);
}

.button.secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.62);
}

.intro-section,
.split-section,
.method-section,
.cta-section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.intro-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    padding: 92px 0 54px;
}

.intro-copy h2,
.split-copy h2,
.section-heading h2,
.method-copy h2,
.cta-section h2 {
    font-size: 42px;
}

.intro-text p,
.split-copy p,
.method-copy p,
.cta-section p {
    margin: 0 0 20px;
    color: var(--muted);
}

.proof-band {
    width: min(1180px, calc(100% - 48px));
    margin: 36px auto 94px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.proof-band div {
    padding: 30px;
    border-right: 1px solid var(--line);
}

.proof-band div:last-child {
    border-right: 0;
}

.proof-band strong {
    display: block;
    color: var(--green);
    font-size: 32px;
    line-height: 1.1;
}

.proof-band span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
}

.split-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 72px;
    align-items: center;
    padding: 24px 0 96px;
}

.split-media {
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 440px;
    background:
        linear-gradient(180deg, #fff 0%, #eef6f3 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.split-media img {
    width: min(360px, 90%);
}

.work-section,
.team-section {
    padding: 90px 24px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.team-section {
    background: #f2f7f5;
}

.section-heading {
    width: min(1180px, 100%);
    margin: 0 auto 38px;
}

.section-heading h2 {
    max-width: 720px;
}

.work-grid,
.team-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.work-grid {
    grid-template-columns: repeat(3, 1fr);
}

.work-grid article,
.team-grid article {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.work-grid article {
    padding: 30px;
}

.work-grid h3,
.team-grid h3,
.method-list h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.work-grid h3 {
    color: var(--green-dark);
}

.work-grid p,
.team-grid p,
.method-list p {
    margin: 0;
    color: var(--muted);
}

.method-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: 94px 0;
}

.method-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.method-list li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.method-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--sky);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 850;
}

.team-grid {
    grid-template-columns: repeat(4, 1fr);
}

.team-grid article {
    min-height: 100%;
    padding: 26px;
}

.team-grid img {
    width: 92px;
    height: 92px;
    margin-bottom: 18px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 8px 24px rgba(22, 35, 31, 0.15);
}

.team-grid .role {
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 14px;
    font-weight: 800;
}

.cta-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    padding: 88px 0;
}

.cta-section p {
    max-width: 760px;
    margin-top: 20px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 42px;
    color: #53645f;
    background: var(--white);
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.site-footer a,
.site-footer button {
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
    text-decoration: none;
}

.site-footer button {
    padding: 0;
    cursor: pointer;
}

.tracking-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    width: min(560px, calc(100% - 36px));
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tracking-consent h2 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 22px;
    line-height: 1.16;
}

.tracking-consent p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.tracking-consent a {
    display: inline-block;
    margin-top: 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.tracking-consent a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tracking-options {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tracking-details[hidden] {
    display: none;
}

.tracking-option {
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.tracking-option.is-required {
    background: #eef6f3;
}

.tracking-option-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.tracking-option-head input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.tracking-option-head strong {
    color: var(--green-dark);
    font-size: 15px;
    line-height: 1.25;
}

.tracking-option-state {
    margin-left: auto;
    padding: 3px 8px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.tracking-option-copy {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.tracking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tracking-consent button {
    min-height: 38px;
    padding: 0 13px;
    color: var(--green-dark);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
}

.tracking-consent .tracking-primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

@media (max-width: 960px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 14px 24px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero {
        min-height: 560px;
        padding: 74px 24px 86px;
        background-position: center;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 19px;
    }

    .intro-section,
    .split-section,
    .method-section,
    .cta-section {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .proof-band,
    .work-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .proof-band div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-band div:last-child {
        border-bottom: 0;
    }

    .split-section {
        padding-bottom: 76px;
    }

    .split-media {
        min-height: 340px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        align-items: start;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .site-header {
        position: static;
    }

    .brand span {
        font-size: 16px;
    }

    .header-cta {
        width: 100%;
    }

    .hero {
        min-height: 520px;
        padding-top: 58px;
        background:
            linear-gradient(180deg, rgba(13, 35, 30, 0.92), rgba(13, 35, 30, 0.72)),
            url("/wp-content/uploads/2025/02/minimalist_and_modern_workspace.jpeg") center / cover;
    }

    .hero h1,
    .intro-copy h2,
    .split-copy h2,
    .section-heading h2,
    .method-copy h2,
    .cta-section h2 {
        font-size: 34px;
    }

    .hero-actions,
    .button,
    .cta-section .button {
        width: 100%;
    }

    .intro-section,
    .split-section,
    .method-section,
    .cta-section,
    .proof-band {
        width: min(100% - 32px, 1180px);
    }

    .work-section,
    .team-section {
        padding: 70px 16px;
    }

    .method-list li {
        grid-template-columns: 1fr;
    }

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

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 24px;
    }
}
