/* =========================================
   THILÉ & KIN / UTILITIES
========================================= */

/* ---------- Section Utility Classes ---------- */
.thk-ivory-section {
    background-color: var(--thk-ivory);
}

.thk-white-section {
    background-color: var(--thk-white);
}

.thk-beige-section {
    background-color: var(--thk-dusty-beige);
}

.thk-card {
    background-color: var(--thk-white);
    border: 1px solid var(--thk-light-beige);
    border-radius: var(--thk-radius-md);
    padding: 20px;
}

/* ---------- Optional Utility Helpers ---------- */
.thk-text-center {
    text-align: center;
}

.thk-rounded {
    border-radius: var(--thk-radius-md);
}

.thk-shadow-soft {
    box-shadow: 0 10px 24px rgba(43, 43, 43, 0.06);
}