/* Section Wrapper */
.bespoke-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
}

.bespoke-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-black);
}

.bespoke-section p {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 50px;
}

/* Grid Layout */
.bespoke-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Card */
.bespoke-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: var(--color-white);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.bespoke-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Icon */
.bespoke-card .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.bespoke-card:hover .icon {
    transform: rotate(8deg) scale(1.1);
}

/* Title */
.bespoke-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-black);
}

/* Optional hover accent */
.bespoke-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(0, 0, 0, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bespoke-card:hover::after {
    opacity: 1;
}
