.eyebrow,
.card-kicker {
    margin-bottom: 1.25rem;
    color: var(--color-sage);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--dark,
.card-kicker {
    color: var(--color-moss);
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button-row--center {
    justify-content: center;
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    padding: 0.9rem 1.35rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 100vmax;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 240ms var(--ease-out),
        border-color 240ms var(--ease-out),
        color 240ms var(--ease-out),
        transform 240ms var(--ease-out);
}

.button:hover {
    transform: translateY(-0.12rem);
}

.button--small {
    min-height: 2.65rem;
    padding: 0.65rem 1rem;
    font-size: var(--text-xs);
}

.button--cream,
.button--light {
    background: var(--color-cream);
    color: var(--color-deep-green);
}

.button--ghost {
    border-color: var(--color-line-light);
    background: transparent;
    color: var(--color-cream);
}

.button--dark {
    background: var(--color-deep-green);
    color: var(--color-cream);
}

.button--outline-dark {
    border-color: var(--color-line-dark);
    color: var(--color-deep-green);
}

.text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.55rem;
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
}

.text-link::after {
    content: "↗";
    font-size: 1.05em;
    transition: transform 220ms var(--ease-out);
}

.text-link:hover::after {
    transform: translate(0.18rem, -0.18rem);
}

.prose {
    max-width: 39rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.section-heading {
    display: grid;
    margin-bottom: var(--space-7);
    align-items: end;
    gap: var(--space-6);
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.65fr);
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 31rem;
    color: var(--color-moss);
}

.section-heading--light > p {
    color: var(--color-muted);
}

.status-row {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--color-muted);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-chip {
    display: inline-flex;
    padding: 0.4rem 0.65rem;
    border: 1px solid var(--color-line-light);
    border-radius: 100vmax;
    color: var(--color-cream);
}

.status-chip--dark {
    border-color: var(--color-line-dark);
    color: var(--color-deep-green);
}

.leaf-outline {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-with-leaf {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section-with-leaf > :not(.section-leaf-bg) {
    position: relative;
    z-index: 1;
}

.section-with-leaf--dark {
    color: var(--color-cream);
}

.section-with-foliage::before {
    position: absolute;
    z-index: 0;
    background-image:
        linear-gradient(rgba(7, 11, 8, 0.58), rgba(16, 39, 22, 0.72)),
        url("/assets/images/creeper-leaves-background.jpg");
    background-position: center;
    background-size: cover;
    content: "";
    inset: 0;
    opacity: 0.52;
}

.section-with-foliage {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section-with-foliage > :not(.section-leaf-bg) {
    position: relative;
    z-index: 1;
}

.section-with-foliage--left::before {
    background-position: left center;
}

.section-with-foliage--right::before {
    background-position: right center;
}

.section-leaf-bg {
    position: absolute;
    z-index: 0;
    width: clamp(28rem, 52vw, 50rem);
    color: var(--color-sage-light);
    opacity: 0.06;
    pointer-events: none;
}

.section-leaf-bg--right {
    top: 50%;
    right: -13rem;
    transform: translateY(-50%) rotate(-13deg);
}

.section-leaf-bg--left {
    top: 50%;
    left: -14rem;
    transform: translateY(-50%) rotate(12deg);
}

.section-leaf-bg--upper-right {
    top: -13rem;
    right: -9rem;
    transform: rotate(17deg);
}

.section-leaf-bg--lower-left {
    bottom: -15rem;
    left: -9rem;
    transform: rotate(-18deg);
}

@media (max-width: 48rem) {
    .section-with-foliage::before {
        opacity: 0.44;
    }

    .section-leaf-bg {
        width: 30rem;
        opacity: 0.05;
    }

    .section-leaf-bg--right,
    .section-leaf-bg--upper-right {
        right: -12rem;
    }

    .section-leaf-bg--left,
    .section-leaf-bg--lower-left {
        left: -12rem;
    }
}

.menu-close {
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--color-line-dark);
    border-radius: 50%;
    background: transparent;
}

.menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1rem;
    height: 1px;
    background: currentColor;
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 48rem) {
    .section-heading {
        margin-bottom: var(--space-6);
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
