/* ── ABOUT ── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 120px 8%;
    background: var(--off-white);
    align-items: center;
}

.about-left {
    padding-right: 8%;
    border-right: 1px solid var(--warm-gray);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-label-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-label span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-muted);
}

h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(40px, 4vw, 58px);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.about-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-right {
    padding-left: 8%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.meaning-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.meaning-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
}

.meaning-body h3 {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.meaning-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.meaning-divider {
    height: 1px;
    background: var(--warm-gray);
}