.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 750;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
    background: var(--ich-text);
    color: #fff;
}

.button--primary {
    background: var(--ich-text);
    color: #fff;
}

.button--primary:hover {
    background: var(--ich-accent-dark);
}

.button--secondary {
    background: transparent;
    color: var(--ich-text);
    border-color: var(--ich-border);
}

.section--dark .button--secondary,
.section--cta .button--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ich-accent-dark);
    font-weight: 750;
}

.text-link::after {
    content: "→";
    transition: transform 160ms ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--ich-accent-dark);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.section--dark .eyebrow,
.section--cta .eyebrow {
    color: var(--ich-accent);
}
