:root {
    --green-900: #173d2a;
    --green-800: #24553a;
    --green-700: #2f6b49;
    --green-100: #eaf3eb;
    --cream: #f8f3e8;
    --cream-2: #fffaf0;
    --brown: #8a5a2b;
    --text: #223027;
    --muted: #637064;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(23, 61, 42, .12);
    --radius: 24px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    margin: 0;
    padding-top: var(--header-height);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--cream-2);
    line-height: 1.65;
}

a {
    color: inherit;
}

img, video {
    max-width: 100%;
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 70px);
    background: rgba(255, 250, 240, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(47, 107, 73, .12);
    box-shadow: 0 8px 24px rgba(23, 61, 42, .08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--green-900);
}

    .brand img {
        width: 44px;
        height: 44px;
        object-fit: contain;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .94rem;
    font-weight: 600;
}

    .main-nav a {
        text-decoration: none;
        color: var(--green-900);
        opacity: .82;
    }

        .main-nav a:hover {
            opacity: 1;
            color: var(--brown);
        }

.nav-toggle {
    display: none;
    border: 0;
    background: var(--green-900);
    color: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 1.25rem;
}

.section {
    padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 70px);
}

.section-soft {
    background: var(--cream);
}

.container {
    width: min(1160px, 100%);
    margin: 0 auto;
}

    .container.narrow {
        width: min(850px, 100%);
    }

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
}

    .section-heading h2, .hero h1 {
        margin: 8px 0 14px;
        line-height: 1.1;
        color: var(--green-900);
    }

    .section-heading h2 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.section-kicker {
    display: inline-block;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
    font-size: .78rem;
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    background: radial-gradient(circle at 15% 15%, rgba(47, 107, 73, .15), transparent 30%), linear-gradient(135deg, #fffaf0 0%, #edf5e9 100%);
}

.hero-content {
    align-self: center;
}

.card, .widget-placeholder, .map-placeholder, .policy-card, .info-box, .package-box {
    background: var(--white);
    border: 1px solid rgba(47, 107, 73, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.glass-card {
    padding: clamp(26px, 4vw, 44px);
    background: rgba(255,255,255,.88);
}

.highlight-card {
    padding: 30px;
    margin-top: 34px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

    .btn.primary {
        background: var(--green-800);
        color: white;
    }

    .btn.secondary {
        background: var(--green-100);
        color: var(--green-900);
    }

    .btn:hover {
        transform: translateY(-1px);
    }

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #dfe8de;
    box-shadow: var(--shadow);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

    .carousel-slide.active {
        display: block;
    }

    .carousel-slide img, .carousel-slide video {
        width: 100%;
        height: 100%;
        display: block;
        object-position: center;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: var(--green-900);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

    .carousel-btn.prev {
        left: 14px;
    }

    .carousel-btn.next {
        right: 14px;
    }
.hero-carousel {
    height: 520px;
    background: #f5f2e9;
}
    .hero-carousel .carousel-slide img,
    .hero-carousel .carousel-slide video {
        object-fit: contain;
        background: #f5f2e9;
    }
.room-carousel {
    height: 280px;
    background: #f5f2e9;
}

    .room-carousel .carousel-slide img {
        object-fit: contain;
        background: #f5f2e9;
    }

.dining-carousel {
    height: 560px;
    background: #fffaf0;
}

    .dining-carousel .carousel-slide img {
        object-fit: fill;
        background: #fffaf0;
        padding: 12px;
    }

.about-carousel {
    min-height: 420px;
}
/* About carousel -mobile */
@media (max-width: 768px) {
    .about-carousel {
        position: relative;
        padding-bottom: 0;
    }

        .about-carousel .about-slide {
            position: relative;
        }

            .about-carousel .about-slide img {
                display: block;
                width: 100%;
                height: 280px;
                object-fit: cover;
            }

        .about-carousel .carousel-btn {
            top: 140px;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            font-size: 1.7rem;
            z-index: 20;
            background: rgba(255, 255, 255, .92);
            color: var(--green-900);
            box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
        }

            .about-carousel .carousel-btn.prev {
                left: 14px;
            }

            .about-carousel .carousel-btn.next {
                right: 14px;
            }

        .about-carousel .about-slide h3 {
            margin-top: 18px;
        }
}
.room-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.room-card {
    overflow: hidden;
}

.small-carousel {
    height: 340px;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: none;
}

.card-body {
    padding: 26px;
}

    .card-body h3, .highlight-card h3, .info-box h3, .package-box h3 {
        margin-top: 0;
        color: var(--green-900);
    }

.feature-list {
    columns: 2;
    padding-left: 18px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

    .plan-grid div {
        background: var(--green-100);
        border-radius: 18px;
        padding: 18px;
    }

    .plan-grid strong, .plan-grid span {
        display: block;
    }

    .plan-grid span {
        color: var(--muted);
        margin-top: 8px;
    }

.muted, .distance {
    color: var(--muted);
}

.widget-placeholder, .map-placeholder {
    min-height: 280px;
    padding: 36px;
    display: grid;
    place-items: center;
    text-align: center;
    border-style: dashed;
    background: linear-gradient(135deg, #ffffff 0%, #f2f8ef 100%);
}

    .widget-placeholder h3, .map-placeholder h3 {
        margin: 0 0 8px;
        color: var(--green-900);
    }

.two-col, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(26px, 4vw, 54px);
    align-items: center;
}

.info-box, .package-box {
    padding: 24px;
    margin-top: 24px;
}

.dining-carousel {
    height: 470px;
}

.policy-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 380px);
    gap: 20px;
    overflow-x: auto;
    padding: 10px 8px 26px;
    scroll-snap-type: x mandatory;
}

.policy-card {
    padding: 24px;
    scroll-snap-align: start;
}

    .policy-card h3 {
        margin-top: 0;
        color: var(--green-900);
    }

.sight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sight-card {
    overflow: hidden;
}

    .sight-card img {
        height: 160px;
        width: 100%;
        object-fit: cover;
        background: var(--green-100);
    }

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--brown);
    font-weight: 800;
    text-decoration: none;
}

.about-carousel {
    min-height: 420px;
}

.about-slide {
    grid-template-columns: 380px 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
    background: #fff;
}

    .about-slide.active {
        display: grid;
    }

    .about-slide img {
        border-radius: 22px;
        height: 330px;
        width: 100%;
        object-fit: cover;
        background: var(--green-100);
    }

    .about-slide h3 {
        margin-top: 0;
        color: var(--green-900);
        font-size: 1.6rem;
    }

.contact-section {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: white;
}

    .contact-section h2, .contact-section .section-kicker {
        color: white;
    }

    .contact-section a {
        color: white;
    }

    .contact-section .package-box, .contact-section .map-placeholder {
        color: var(--text);
    }

address {
    font-style: normal;
}
.contact-address {
    margin-top: 18px;
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #ffffff;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

    .contact-method:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, .18);
    }

.contact-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
    font-size: 1.15rem;
}

    .contact-method-icon svg {
        display: block;
    }

.whatsapp-method-icon {
    background: #25D366;
}

.contact-method strong {
    display: block;
    line-height: 1.2;
    color: #ffffff;
}

.contact-method small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .82);
}

.contact-section .contact-method {
    color: #ffffff;
}
.site-footer {
    padding: 26px;
    text-align: center;
    background: #112d1f;
    color: rgba(255,255,255,.8);
}

@media (max-width: 1024px) {
    .hero, .two-col, .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        height: 460px;
    }

    .sight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + 8px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: white;
        padding: 18px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        z-index: 5001;
    }

        .main-nav.open {
            display: flex;
        }

        .main-nav a {
            padding: 10px 12px;
        }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        columns: 1;
    }

    .about-slide.active {
        display: block;
    }

    .about-slide img {
        margin-bottom: 22px;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        padding: 12px 16px;
    }

    .brand span {
        font-size: 1.05rem;
    }

    .hero-carousel, .dining-carousel {
        height: 340px;
    }

    .small-carousel {
        height: 280px;
    }

    .sight-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .card-body, .glass-card, .highlight-card, .about-slide {
        padding: 22px;
    }
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-subtitle {
    margin-top: -8px;
    margin-bottom: 14px;
    color: var(--green-700);
    font-weight: 600;
}

.booking-options-section {
    background: linear-gradient(135deg, #f7f3e8 0%, #edf6ea 100%);
}

.booking-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.booking-option-card {
    padding: 34px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

    .booking-option-card h3 {
        margin-top: 0;
        margin-bottom: 16px;
        color: var(--green-900);
        font-size: 1.6rem;
    }

.rate-plan-list {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.rate-plan-item {
    padding: 18px;
    border-radius: 16px;
    background: #f6faf4;
    border: 1px solid rgba(48, 89, 57, 0.12);
}

    .rate-plan-item h4 {
        margin: 0 0 8px;
        color: var(--green-800);
        font-size: 1.05rem;
    }

    .rate-plan-item p {
        margin: 0;
    }

.highlighted-option {
    background: linear-gradient(135deg, #ffffff 0%, #f2f8ef 100%);
    border: 1px solid rgba(48, 89, 57, 0.16);
}

.booking-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .three-column-grid {
        grid-template-columns: 1fr;
    }

    .booking-options-grid {
        grid-template-columns: 1fr;
    }
}

.local-guide-disclaimer {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 16px;
    background: #fffaf0;
    border: 1px solid rgba(120, 87, 38, 0.22);
}

    .local-guide-disclaimer h4 {
        margin: 0 0 12px;
        color: var(--green-900);
        font-size: 1.1rem;
    }

    .local-guide-disclaimer p {
        margin: 0 0 12px;
        font-size: 0.95rem;
        line-height: 1.65;
        color: var(--text);
    }

        .local-guide-disclaimer p:last-child {
            margin-bottom: 0;
        }
.sightseeing-map-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 36px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff 0%, #f2f8ef 100%);
    box-shadow: var(--shadow);
    border: 1px solid rgba(48, 89, 57, 0.12);
}

.sightseeing-map-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--green-900);
    font-size: 1.6rem;
}

.sightseeing-map-content p {
    line-height: 1.7;
}

.small-note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .sightseeing-map-box {
        padding: 26px 22px;
    }
}


/* =========================================================
   Responsive / mobile overflow fixes
   Added to prevent right-side whitespace in mobile simulator
   and to make embedded maps/media fully responsive.
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-width: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

.site-header,
.section,
.container,
.hero,
.hero-grid,
.room-grid,
.three-column-grid,
.booking-options-grid,
.contact-grid,
.two-col,
.carousel,
.carousel-track,
.carousel-slide,
.card,
.room-card,
.booking-option-card,
.widget-placeholder,
.map-placeholder,
.sightseeing-map-box {
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.container.narrow {
    width: min(850px, calc(100% - 32px));
}

/* Keep media inside carousel bounds */
.carousel-slide img,
.carousel-slide video {
    max-width: 100%;
}

/* Make Google Maps iframe responsive */
.map-placeholder {
    overflow: hidden;
    padding: clamp(18px, 4vw, 36px);
}

.map-placeholder iframe {
    width: 100%;
    max-width: 100%;
    height: 480px;
    display: block;
    border: 0;
    border-radius: 16px;
}

/* Prevent long buttons/links from forcing horizontal scroll */
.button-row,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-row .btn,
.contact-actions .btn {
    white-space: nowrap;
}

/* Prevent long address/map content from expanding the grid */
.contact-grid > *,
.two-col > *,
.hero > *,
.room-grid > *,
.three-column-grid > *,
.booking-options-grid > * {
    min-width: 0;
}

/* Better mobile behaviour */
@media (max-width: 1024px) {
    .hero,
    .two-col,
    .contact-grid,
    .booking-options-grid,
    .room-grid,
    .three-column-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container,
    .container.narrow {
        width: min(100%, calc(100% - 24px));
    }

    .section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-nav {
        left: 12px;
        right: 12px;
    }

    .map-placeholder iframe {
        height: 360px;
    }

    .widget-placeholder,
    .map-placeholder {
        padding: 22px;
    }

    .sightseeing-map-box {
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    .button-row .btn,
    .contact-actions .btn {
        width: 100%;
        text-align: center;
    }

    .map-placeholder iframe {
        height: 320px;
    }
}
/* Reviews / Jotform widget */
.review-widget-wrapper {
    width: min(100%, 1180px);
    max-width: 100%;
    min-height: 660px;
    padding-left: 80px;
    padding-right: 80px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: visible;
}

    .review-widget-wrapper > div[id^="JFWebsiteWidget"] {
        width: 100%;
        min-height: 600px;
        overflow: visible;
    }

    /* Jotform may inject iframe/content inside the widget container */
    .review-widget-wrapper iframe {
        width: 100% !important;
        max-width: 100% !important;
    }
.reviews-section .container {
    width: min(1280px, calc(100% - 32px));
}

/* Tablet / mobile */
@media (max-width: 768px) {
    .review-widget-wrapper {
        min-height: 720px;
        padding: 24px 36px;
        overflow: visible;
    }

        .review-widget-wrapper > div[id^="JFWebsiteWidget"] {
            min-height: 660px;
            overflow: visible;
        }
}

/* Small phones */
@media (max-width: 480px) {
    .review-widget-wrapper {
        min-height: 760px;
        padding: 22px 30px;
        overflow: visible;
    }

        .review-widget-wrapper > div[id^="JFWebsiteWidget"] {
            min-height: 700px;
            overflow: visible;
        }
}
/* Floating call and WhatsApp widget */
.floating-contact-widget {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 6000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 138px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .floating-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
        opacity: .96;
    }

.floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: .95rem;
}

.floating-call-btn {
    background: var(--green-800);
}
.floating-icon svg {
    display: block;
}

.whatsapp-icon {
    color: #ffffff;
}
.floating-whatsapp-btn {
    background: #25D366;
}

/* Mobile: compact circular buttons */
@media (max-width: 560px) {
    .floating-contact-widget {
        right: 12px;
        bottom: 14px;
        gap: 10px;
    }

    .floating-contact-btn {
        min-width: auto;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-text {
        display: none;
    }

    .floating-icon {
        width: auto;
        height: auto;
        background: transparent;
        font-size: 1.1rem;
    }
}
/* Dining menu carousel */
.dining-menu-carousel {
    min-height: 620px;
    background: #ffffff;
}

.dining-menu-slide {
    padding: 34px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f3e8 100%);
}

    .dining-menu-slide.active {
        display: block;
    }

.menu-slide-card {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(47, 107, 73, .12);
}

.menu-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
    font-size: .78rem;
}

.menu-slide-card h3 {
    margin: 0 0 16px;
    color: var(--green-900);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.menu-section-block {
    margin-top: 24px;
    padding: 20px;
    border-radius: 18px;
    background: #f6faf4;
    border: 1px solid rgba(47, 107, 73, .12);
}

    .menu-section-block h4 {
        margin: 0 0 12px;
        color: var(--green-800);
        font-size: 1.15rem;
    }

    .menu-section-block p {
        margin: 0 0 14px;
        color: var(--muted);
    }

.menu-time {
    display: inline-block;
    margin: 4px 0 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-900);
    font-weight: 800;
}

.menu-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: .95rem;
}

.menu-list,
.menu-price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list {
    display: grid;
    gap: 14px;
}

    .menu-list.large {
        gap: 18px;
        margin-top: 22px;
    }

    .menu-list.two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-list li {
        padding-bottom: 12px;
        border-bottom: 1px dashed rgba(47, 107, 73, .18);
    }

        .menu-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

    .menu-list span {
        display: block;
        color: var(--text);
        font-weight: 800;
    }

    .menu-list small {
        display: block;
        margin-top: 4px;
        color: var(--muted);
        line-height: 1.5;
    }

.menu-price-list {
    display: grid;
    gap: 10px;
}

    .menu-price-list li {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 10px;
        border-bottom: 1px dashed rgba(47, 107, 73, .18);
    }

        .menu-price-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

    .menu-price-list span {
        color: var(--text);
        font-weight: 700;
    }

    .menu-price-list strong {
        color: var(--green-900);
        white-space: nowrap;
    }

.menu-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.menu-info-item {
    padding: 18px;
    border-radius: 16px;
    background: #f6faf4;
    border: 1px solid rgba(47, 107, 73, .12);
}

    .menu-info-item strong {
        display: block;
        margin-bottom: 6px;
        color: var(--green-800);
    }

    .menu-info-item span {
        color: var(--muted);
    }

.menu-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.menu-slide-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
}

.menu-slide-title {
    min-width: 0;
}

.menu-slide-image {
    width: 180px;
    height: 130px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(23, 61, 42, .16);
    background: #f6faf4;
    border: 1px solid rgba(47, 107, 73, .14);
}

    .menu-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
@media (max-width: 768px) {
    .dining-menu-carousel {
        min-height: 760px;
    }

    .dining-menu-slide {
        padding: 22px;
    }

    .menu-info-grid,
    .menu-grid-two,
    .menu-list.two-column {
        grid-template-columns: 1fr;
    }

    .menu-section-block {
        padding: 18px;
    }

    .menu-slide-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .menu-slide-image {
        width: 100%;
        height: 190px;
    }

    @media (max-width: 480px) {
        .dining-menu-carousel {
            min-height: 840px;
        }

        .dining-menu-slide {
            padding: 18px;
        }

        .menu-slide-card {
            padding: 24px 20px;
        }

        .menu-price-list li {
            gap: 10px;
        }

        .menu-slide-image {
            height: 160px;
            border-radius: 18px;
        }
    }
}