.img-fluid {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}

#bottom_menu {
    background: var(--nav-accent);
}

/* =========================
   MENU PAGE
========================= */

.menu-hero-section,
.menu-intro-section,
.menu-experience-section,
.menu-process-section,
.menu-cta-section {
    padding: 2.5rem 0;
}

.menu-hero-card,
.menu-process-card,
.menu-cta-card,
.menu-experience-card {
    border-radius: 22px;
    overflow: hidden;
}

.menu-hero-card {
    background: linear-gradient(135deg, rgba(255, 248, 235, 0.95), rgba(255, 255, 255, 1));
    position: relative;
}

.menu-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(244, 67, 54, 0.08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 193, 7, 0.10), transparent 28%);
    pointer-events: none;
}

.menu-eyebrow,
.section-kicker,
.menu-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.menu-eyebrow,
.section-kicker {
    color: #c24b41;
    margin-bottom: 0.9rem;
}

.menu-label {
    color: #d97a00;
    margin-bottom: 1rem;
}

.menu-hero-lead {
    max-width: 760px;
    font-size: 1.2rem;
}

.menu-hero-text {
    max-width: 820px;
    color: #555;
    line-height: 1.8;
}

.menu-intro-row {
    min-height: 460px;
}

.menu-intro-image-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.menu-intro-image,
.menu-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-intro-image {
    height: 440px;
}

.menu-card-image-wrap {
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #f7f7f7;
}

.menu-card-image {
    min-height: 420px;
}

.menu-image-caption {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #777;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.menu-text-block p,
.menu-experience-card p {
    color: #555;
    line-height: 1.85;
}

.menu-text-block {
    padding-left: 0.75rem;
}

.menu-experience-section {
    background: linear-gradient(to bottom, #fffdf9, #ffffff);
}

.menu-experience-card {
    background: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-experience-card:hover {
    transform: translateY(-4px);
}

.menu-detail-box {
    background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
    border: 1px solid rgba(244, 67, 54, 0.10);
    border-radius: 16px;
    padding: 1.25rem;
}

.menu-custom-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.menu-custom-list li:last-child {
    margin-bottom: 0;
}

.menu-custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nav-accent);
    box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.12);
}

.menu-process-card {
    background: linear-gradient(135deg, #fff7f3, #ffffff);
}

.menu-step-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.09);
}

.menu-step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--nav-accent);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(244, 67, 54, 0.22);
}

.menu-cta-card {
    background: linear-gradient(135deg, #fff0ed, #fffaf7);
}

.menu-cta-text {
    max-width: 720px;
}

.menu-cta-btn {
    border-radius: 999px;
    min-width: 220px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(244, 67, 54, 0.22);
}

/* title refinement */
.menu-hero-card h1,
.menu-intro-section h2,
.menu-experience-section h2,
.menu-process-section h2,
.menu-cta-section h2,
.menu-experience-card h3 {
    letter-spacing: -0.02em;
}

/* existing rule compatibility */
.img-fluid {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}

#bottom_menu {
    background: var(--nav-accent);
}

/* responsive */
@media (max-width: 991px) {
    .menu-intro-image {
        height: 340px;
    }

    .menu-card-image-wrap,
    .menu-card-image {
        min-height: 300px;
    }

    .menu-text-block {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .menu-hero-section,
    .menu-intro-section,
    .menu-experience-section,
    .menu-process-section,
    .menu-cta-section {
        padding: 2rem 0;
    }

    .menu-hero-lead {
        font-size: 1.05rem;
    }

    .menu-intro-image {
        height: 280px;
    }

    .menu-card-image-wrap,
    .menu-card-image {
        min-height: 240px;
    }

    .menu-detail-box {
        padding: 1rem;
    }
}