:root {
    --ink: #15211d;
    --muted: #61706a;
    --line: #dce4df;
    --soft: #f3f6f3;
    --green: #08764e;
    --green-dark: #045437;
    --cream: #f8faf7;
    --white: #fff;
    --display: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6
}

.shell {
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto
}

.section {
    padding: 120px 0
}

.skip-link {
    position: absolute;
    left: -999px
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 10;
    background: #fff;
    padding: .5rem 1rem
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(248, 250, 247, .92);
    position: sticky;
    top: 0;
    z-index: 4;
    backdrop-filter: blur(14px)
}

.header-inner,
.footer-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.brand {
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    line-height: 1.05;
    letter-spacing: -.035em;
    flex: 0 0 auto
}

.brand img {
    display: block;
    max-height: 40px;
    object-fit: contain;
}

.brand small {
    display: block;
    font-size: .65rem;
    color: var(--green);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 5px
}

.site-header nav {
    display: flex;
    gap: 1.75rem;
    margin-left: auto
}

.site-header nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .88rem
}

.site-header nav a:hover,
.text-link:hover,
.message-link:hover {
    color: var(--green)
}

.text-link:hover {
    background: #e7f5ed;
    transform: translateY(-1px)
}

.button {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: var(--green);
    border: 1px solid var(--green);
    color: #fff;
    text-decoration: none;
    padding: .82rem 1.15rem;
    font-size: .88rem;
    font-weight: 700;
    transition: .2s ease
}

.button:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px)
}

.button-small {
    padding: .6rem .85rem;
    font-size: .8rem
}

.hero {
    padding: 106px 0 92px;
    background: linear-gradient(120deg, #f8faf7 55%, #edf5f0)
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    align-items: center;
    gap: 6.5rem
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--green);
    font-weight: 750;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .11em;
    margin: 0 0 1.55rem
}

.eyebrow span {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .98
}

h1 {
    font-size: clamp(3.25rem, 6vw, 5.65rem);
    margin-bottom: 1.65rem
}

h1 em {
    font-style: italic;
    color: var(--green)
}

h2 {
    font-size: clamp(2.5rem, 4.2vw, 4.2rem);
    margin-bottom: 1.4rem
}

.lead,
.body-large {
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 42rem
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.1rem
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: var(--ink);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    border: 1px solid currentColor;
    padding: .76rem 1rem;
    transition: .2s ease
}

.microcopy {
    font-size: .75rem;
    color: var(--muted);
    margin: 1.15rem 0 0
}

.growth-map {
    background: #173329;
    color: #eef7f1;
    padding: 1.4rem;
    border: 1px solid #2b5142;
    box-shadow: 14px 14px 0 #dceae1
}

.map-topline,
.map-footer {
    display: flex;
    justify-content: space-between;
    color: #a2b9ad;
    font-size: .62rem;
    letter-spacing: .1em;
    font-weight: 700
}

.status {
    color: #c8e2d3
}

.status i {
    display: inline-block;
    background: #4ed789;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 5px
}

.map-flow {
    display: flex;
    align-items: stretch;
    gap: .75rem;
    padding: 3rem 0 1.6rem
}

.flow-node {
    border: 1px solid #496b5d;
    padding: 1rem .8rem;
    flex: 1;
    min-width: 0
}

.node-number {
    display: block;
    color: #84a696;
    font-size: .68rem;
    margin-bottom: .9rem
}

.flow-node strong {
    font-family: var(--display);
    font-size: 1.4rem;
    display: block;
    letter-spacing: -.04em
}

.flow-node small {
    display: block;
    color: #aac0b4;
    font-size: .68rem;
    line-height: 1.35;
    margin-top: .3rem
}

.flow-arrow {
    align-self: center;
    color: #6ed69c
}

.growth-output {
    border: 1px solid #70c696;
    background: #204a39;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 700;
    font-size: .82rem
}

.growth-output b {
    margin-left: auto;
    color: #8bd7a9
}

.pulse {
    width: 8px;
    height: 8px;
    background: #7becab;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(123, 236, 171, .12)
}

.map-footer {
    padding-top: 1.4rem;
    border-top: 1px solid #355748;
    margin-top: 1.4rem
}

.split-heading {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 3rem
}

.issue-grid {
    margin-top: 4.8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.issue-grid article {
    padding: 2.2rem 2rem 2.5rem 0
}

.issue-grid article+article {
    border-left: 1px solid var(--line);
    padding-left: 2rem
}

.issue-grid span,
.step-index {
    color: var(--green);
    font: italic 1.05rem var(--display)
}

h3 {
    font-family: var(--display);
    font-size: 1.7rem;
    letter-spacing: -.04em;
    line-height: 1.1;
    font-weight: 400;
    margin: 1rem 0 .8rem
}

.issue-grid p,
.process-item p,
.about p,
.final-cta p {
    color: var(--muted);
    font-size: .94rem
}

.insight-callout {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-left: 3px solid var(--green);
    padding: 1.25rem 0 1.25rem 1.6rem
}

.insight-callout p {
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: -.03em;
    line-height: 1.25;
    margin: 0;
    max-width: 52rem
}

.process {
    background: var(--soft)
}

.process-list {
    margin-top: 4.8rem;
    border-top: 1px solid var(--line)
}

.process-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1.4fr) minmax(220px, .6fr);
    gap: 2.3rem;
    padding: 2.7rem 1.4rem;
    border-bottom: 1px solid var(--line)
}

.process-item.featured {
    background: #e5f0e9
}

.process-item h3 {
    margin-top: 0
}

.process-item .step-note {
    font-size: .82rem;
    line-height: 1.55;
    margin: 0
}

.process-item strong,
.about strong {
    color: #fff;
}

.centered-action {
    text-align: center;
    margin-top: 3.5rem
}

.findings-intro {
    max-width: 790px;
    margin-left: max(24px, calc((100% - 1160px)/2 + 220px))
}

.finding-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4.8rem;
    border-top: 1px solid var(--ink)
}

.finding-columns article {
    padding: 1.7rem 2.2rem 0 0
}

.finding-columns article+article {
    border-left: 1px solid var(--line);
    padding-left: 2.2rem
}

.finding-heading {
    display: flex;
    align-items: center;
    gap: .75rem
}

.finding-heading h3 {
    margin: .3rem 0
}

.finding-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: var(--green);
    border: 1px solid #94bbaa;
    font-weight: 700
}

ul {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0
}

li {
    font-size: .9rem;
    color: var(--muted);
    padding: .8rem 0;
    border-top: 1px solid var(--line);
    line-height: 1.45
}

li:before {
    content: '↗';
    color: var(--green);
    margin-right: .6rem
}

.about {
    background: #173329;
    color: #eff7f1
}

.about .eyebrow {
    color: #83d9a7
}

.about-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 3rem
}

.about h2 {
    color: #fff;
    max-width: 700px
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.4rem
}

.about-intro h2 {
    margin: 0
}

.about p {
    max-width: 720px;
    color: #c1d2c8
}

.about .text-link {
    color: #fff;
    border-color: #fff;
    margin-top: .5rem
}

.about .text-link:hover {
    color: #fff;
    background: #204a39
}

.profile-placeholder {
    width: 150px;
    flex: 0 0 150px;
    aspect-ratio: 4 / 5;
    border-radius: 50%;
    border: 1px solid #83d9a7;
    background-color: #204a39;
    overflow: hidden;
}

.profile-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.final-cta {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 118px 0
}

.final-cta-inner {
    max-width: 760px
}

.final-cta .eyebrow {
    justify-content: center;
    color: #bfe8d0
}

.final-cta h2 {
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    margin-bottom: 1.3rem
}

.final-cta p {
    color: #d5ebde;
    font-size: 1.08rem;
    max-width: 610px;
    margin-inline: auto
}

.button-light {
    background: #fff;
    color: var(--green);
    border-color: #fff;
    margin-top: 1.6rem
}

.button-light:hover {
    background: #e7f5ed;
    border-color: #e7f5ed
}

.contact-helper {
    font-size: .83rem !important;
    margin-top: 1.3rem !important
}

.message-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    border: 1px solid currentColor;
    padding: .42rem .65rem;
    margin-left: .25rem;
    text-decoration: none;
    transition: .2s ease
}

.message-link:hover {
    color: #fff;
    background: var(--green-dark);
    transform: translateY(-1px)
}

.site-footer {
    background: #10251d;
    color: #c1d2c8
}

.footer-inner {
    height: 100px
}

.site-footer .brand {
    color: #fff
}

.site-footer p {
    font-size: .73rem;
    margin: 0;
    color: #93aa9f
}

.footer-social,
.social-links {
    display: flex;
    align-items: center;
}

.footer-social {
    display: none;
    gap: .8rem;
    color: #c1d2c8;
    font-size: .73rem;
    white-space: nowrap;
}

.contact-social {
    display: flex;
    justify-content: center;
    margin-top: .8rem;
}

.contact-social .social-links a {
    border-color: #bfe8d0;
    color: #fff;
}

.contact-social .social-links a:hover,
.contact-social .social-links a:focus-visible {
    border-color: #fff;
    background: var(--green-dark);
}

.social-links {
    gap: .45rem;
}

.social-links a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #486459;
    border-radius: 50%;
    color: #d9ebe0;
    transition: .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: #fff;
    border-color: #83d9a7;
    background: #204a39;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links .social-dot {
    fill: currentColor;
    stroke: none;
}

.social-links .instagram-icon rect,
.social-links .instagram-icon circle,
.social-links .email-icon rect,
.social-links .email-icon path {
    fill: none;
}

.social-links .instagram-icon .social-dot {
    fill: currentColor;
}

.social-links a[aria-label="WhatsApp"] svg {
    display: none;
}

.social-links a[aria-label="WhatsApp"]::after {
    content: '';
    width: 26px;
    height: 26px;
    background: url('whatsapp.svg') center / contain no-repeat;
}

@media(max-width:800px) {
    .shell {
        width: min(100% - 40px, 1160px)
    }

    .section {
        padding: 78px 0
    }

    .header-inner {
        height: 69px
    }

    .site-header nav {
        display: none
    }

    .header-inner .button {
        margin-left: auto
    }

    .hero {
        padding: 72px 0
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem
    }

    .growth-map {
        box-shadow: 9px 9px 0 #dceae1
    }

    .split-heading,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .split-heading>.eyebrow,
    .about-label .eyebrow {
        margin-bottom: 2rem
    }

    .issue-grid,
    .finding-columns {
        grid-template-columns: 1fr
    }

    .issue-grid article,
    .issue-grid article+article,
    .finding-columns article,
    .finding-columns article+article {
        border-left: 0;
        padding: 1.7rem 0;
        border-bottom: 1px solid var(--line)
    }

    .issue-grid article:last-child,
    .finding-columns article:last-child {
        border-bottom: 0
    }

    .issue-grid {
        margin-top: 3rem
    }

    .insight-callout {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 2.5rem
    }

    .process-list {
        margin-top: 3rem
    }

    .process-item {
        grid-template-columns: 55px 1fr;
        gap: 1rem;
        padding: 2rem 0
    }

    .process-item .step-note {
        grid-column: 2
    }

    .findings-intro {
        margin-left: auto
    }

    .finding-columns {
        margin-top: 3rem
    }

    .profile-placeholder {
        width: 100px;
        flex-basis: 100px
    }

    .footer-inner {
        height: auto;
        padding: 2rem 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.4rem
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .map-flow {
        gap: .4rem
    }

    .flow-arrow {
        font-size: .75rem
    }

    .flow-node {
        padding: .75rem .55rem
    }

    .flow-node strong {
        font-size: 1.25rem
    }

    .map-footer {
        font-size: .53rem
    }

    .hero-actions {
        gap: 1.2rem;
        flex-wrap: wrap
    }
}

@media(max-width:420px) {
    .shell {
        width: calc(100% - 32px)
    }

    h1 {
        font-size: 3rem
    }

    .header-inner .button {
        font-size: .72rem;
        padding: .55rem .65rem;
        white-space: nowrap
    }

    .growth-map {
        /* Keep the offset square inside the page gutter. */
        width: calc(100% - 9px);
        margin-right: 9px;
        padding: 1rem
    }

    .map-flow {
        padding: 2rem 0 1rem
    }

    .flow-node {
        padding: .75rem .4rem
    }

    .flow-node strong {
        font-size: 1rem
    }

    .node-number {
        margin-bottom: 1rem
    }

    .flow-node small {
        font-size: .58rem
    }

    .growth-output {
        font-size: .74rem
    }

    .insight-callout p {
        font-size: 1.35rem
    }
}
