.cc-hero {
    position: relative;
    min-height: 29rem;
    background:
        linear-gradient(120deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.28)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cc-hero::before,
.cc-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
}

.cc-hero::before {
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.08);
    top: -4rem;
    right: 8%;
}

.cc-hero::after {
    width: 11rem;
    height: 11rem;
    background: rgba(230, 57, 70, 0.22);
    bottom: -2rem;
    left: 10%;
}

.cc-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 44rem;
    text-align: left;
}

.cc-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cc-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.cc-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 33rem;
    margin-bottom: 1.6rem;
}

.cc-hero-cta {
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
}

.cc-home-section {
    padding: 5.5rem 0;
}

.cc-section-heading {
    margin-bottom: 2.5rem;
}

.cc-section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.cc-section-heading p {
    color: var(--cc-slate);
    margin-bottom: 0;
}

.cuisine-card {
    position: relative;
    display: block;
    height: 15rem;
    border-radius: 1.4rem;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cuisine-card:hover {
    transform: translateY(-0.45rem);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.cuisine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cuisine-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.82) 100%);
}

.cuisine-card .card-label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.1rem 1.1rem;
    color: #fff;
}

.cuisine-card .code {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.82;
}

.cuisine-card .name {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

@media (max-width: 767.98px) {
    .cc-hero { min-height: 24rem; }
    .cc-hero-content { text-align: center; margin: 0 auto; }
    .cc-hero-content p { margin-left: auto; margin-right: auto; }
    .cuisine-card { height: 12rem; }
}
