#values {
    background: var(--cream);
}

.value-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s, transform 0.6s;
}

.value-item.visible {
    opacity: 1;
    transform: none;
}

.value-number {
    font-family: var(--font-display), serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
    min-width: 2.5rem;
    user-select: none;
}

.value-content h4 {
    font-family: var(--font-display), serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.value-content p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-light);
}

.values-visual {
    background: linear-gradient(145deg, var(--brown) 0%, #3d2318 100%);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.values-visual::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-family: var(--font-display), serif;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.values-visual blockquote {
    font-family: var(--font-display), serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    position: relative;
    border: none;
    padding: 0;
    background: none;
    color: #fff;
}

.values-visual cite {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-style: normal;
}

.values-deco-circle {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 12rem;
    height: 12rem;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}